Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions go/types/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (

"go.opentelemetry.io/otel/attribute"
otlpv1 "go.opentelemetry.io/proto/otlp/common/v1"
"google.golang.org/protobuf/encoding/protojson"
"google.golang.org/protobuf/proto"
durationpb "google.golang.org/protobuf/types/known/durationpb"
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
Expand All @@ -20,10 +21,22 @@ func FromOTLPKVs(attrs []*otlpv1.KeyValue) []*KV {
return out
}

func ToOTLPKVs(attrs []*KV) []*otlpv1.KeyValue {
out := make([]*otlpv1.KeyValue, 0, len(attrs))
for _, el := range attrs {
out = append(out, ToOTLPKV(el))
}
return out
}

func FromOTLPKV(attr *otlpv1.KeyValue) *KV {
return KeyVal(attr.Key, FromOTLPVal(attr.Value))
}

func ToOTLPKV(attr *KV) *otlpv1.KeyValue {
return &otlpv1.KeyValue{Key: attr.Key, Value: ToOTLPVal(attr.Value)}
}

func FromOTLPVal(v *otlpv1.AnyValue) *Val {
switch tt := v.Value.(type) {
case *otlpv1.AnyValue_BoolValue:
Expand Down Expand Up @@ -56,6 +69,70 @@ func FromOTLPVal(v *otlpv1.AnyValue) *Val {
}
}

func ToOTLPVal(v *Val) *otlpv1.AnyValue {
switch tt := v.Kind.(type) {
case *Val_Str:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_StringValue{StringValue: tt.Str}}
case *Val_F64:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_DoubleValue{DoubleValue: tt.F64}}
case *Val_I64:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_IntValue{IntValue: tt.I64}}
case *Val_Hash64:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_IntValue{IntValue: int64(tt.Hash64)}}
case *Val_Bool:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_BoolValue{BoolValue: tt.Bool}}
case *Val_Ts:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_IntValue{IntValue: tt.Ts.AsTime().UnixNano()}}
case *Val_Dur:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_IntValue{IntValue: tt.Dur.AsDuration().Nanoseconds()}}
case *Val_Blob:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_BytesValue{BytesValue: tt.Blob}}
case *Val_TraceId:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_BytesValue{BytesValue: TraceIDToBytes(tt.TraceId)}}
case *Val_SpanId:
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_BytesValue{BytesValue: SpanIDToBytes(tt.SpanId)}}
case *Val_Ulid:
bytes := ULIDToBytes(nil, tt.Ulid)
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_BytesValue{BytesValue: bytes[:]}}
case *Val_Arr:
arr := tt.Arr.Items
out := make([]*otlpv1.AnyValue, 0, len(arr))
for _, el := range arr {
out = append(out, ToOTLPVal(el))
}
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_ArrayValue{ArrayValue: &otlpv1.ArrayValue{Values: out}}}
case *Val_Obj:
kvs := tt.Obj.Kvs
out := make([]*otlpv1.KeyValue, 0, len(kvs))
for _, kv := range kvs {
out = append(out, ToOTLPKV(kv))
}
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_KvlistValue{KvlistValue: &otlpv1.KeyValueList{Values: out}}}
case *Val_Map:
kvs := tt.Map.Entries
out := make([]*otlpv1.KeyValue, 0, len(kvs))
for _, kv := range kvs {
el := &otlpv1.KeyValue{Value: ToOTLPVal(kv.Value)}
switch kk := kv.Key.Kind.(type) {
case *Val_Str:
el.Key = kk.Str
default:
key, err := protojson.Marshal(kv.Key)
if err != nil {
panic(err)
}
el.Key = string(key)
}
out = append(out, el)
}
return &otlpv1.AnyValue{Value: &otlpv1.AnyValue_KvlistValue{KvlistValue: &otlpv1.KeyValueList{Values: out}}}
case *Val_Null:
return &otlpv1.AnyValue{}
default:
panic(fmt.Sprintf("missing case: %#v (%T)", tt, tt))
}
}

func FromOTELAttributes(attrs []attribute.KeyValue) []*KV {
out := make([]*KV, 0, len(attrs))
for _, el := range attrs {
Expand Down
2 changes: 1 addition & 1 deletion js/buf/validate/validate_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file buf/validate/validate.proto (package buf.validate, syntax proto2)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/alert/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/alert/v1/service.proto (package svc.alert.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/auth/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/auth/v1/service.proto (package svc.auth.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/cliupdate/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/cliupdate/v1/service.proto (package svc.cliupdate.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/dashboard/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/dashboard/v1/service.proto (package svc.dashboard.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/environment/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/environment/v1/service.proto (package svc.environment.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/feature/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/feature/v1/service.proto (package svc.feature.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/ingest/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/ingest/v1/service.proto (package svc.ingest.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/localhost/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/localhost/v1/service.proto (package svc.localhost.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/organization/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/organization/v1/service.proto (package svc.organization.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/product/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/product/v1/service.proto (package svc.product.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/project/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/project/v1/service.proto (package svc.project.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/query/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/query/v1/service.proto (package svc.query.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/query/v1/trace_service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/query/v1/trace_service.proto (package svc.query.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/release/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/release/v1/service.proto (package svc.release.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/share/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/share/v1/service.proto (package svc.share.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/token/v1/service_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/token/v1/service.proto (package svc.token.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/user/v1/service_private_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/user/v1/service_private.proto (package svc.user.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/svc/user/v1/service_public_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file svc/user/v1/service_public.proto (package svc.user.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/alert_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/alert.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/cursor_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/cursor.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/dashboard_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/dashboard.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/data_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/data.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/database_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/database.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/environment_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/environment.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/environment_token_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/environment_token.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/favorite_query_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/favorite_query.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/feature_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/feature.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/localhost_config_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/localhost_config.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/machine_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/machine.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/meta_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/meta.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/organization_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/organization.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/otel_logging_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/otel_logging.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/otel_resource_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/otel_resource.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/otel_scope_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/otel_scope.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/otel_tracing_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/otel_tracing.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/payment_method_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/payment_method.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/price_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/price.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/product_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/product.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/project_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/project.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/query_history_entry_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/query_history_entry.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/query_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/query.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/release_channel_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/release_channel.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/session_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/session.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/shared_result_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/shared_result.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/subscription_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/subscription.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/symbol_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/symbol.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/types_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/types.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
2 changes: 1 addition & 1 deletion js/types/v1/ulid_pb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @generated by protoc-gen-es v2.8.0 with parameter "target=ts,import_extension=none"
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts,import_extension=none"
// @generated from file types/v1/ulid.proto (package types.v1, syntax proto3)
/* eslint-disable */

Expand Down
Loading
Loading