From 90b3673c1c0751be822c0b5ee326a3b3c055b1c3 Mon Sep 17 00:00:00 2001 From: Antoine Grondin Date: Sat, 20 Sep 2025 15:08:20 +0900 Subject: [PATCH] to otlp --- go/types/v1/types.go | 77 ++++++++++++++++++++++ js/buf/validate/validate_pb.ts | 2 +- js/svc/alert/v1/service_pb.ts | 2 +- js/svc/auth/v1/service_pb.ts | 2 +- js/svc/cliupdate/v1/service_pb.ts | 2 +- js/svc/dashboard/v1/service_pb.ts | 2 +- js/svc/environment/v1/service_pb.ts | 2 +- js/svc/feature/v1/service_pb.ts | 2 +- js/svc/ingest/v1/service_pb.ts | 2 +- js/svc/localhost/v1/service_pb.ts | 2 +- js/svc/organization/v1/service_pb.ts | 2 +- js/svc/product/v1/service_pb.ts | 2 +- js/svc/project/v1/service_pb.ts | 2 +- js/svc/query/v1/service_pb.ts | 2 +- js/svc/query/v1/trace_service_pb.ts | 2 +- js/svc/release/v1/service_pb.ts | 2 +- js/svc/share/v1/service_pb.ts | 2 +- js/svc/token/v1/service_pb.ts | 2 +- js/svc/user/v1/service_private_pb.ts | 2 +- js/svc/user/v1/service_public_pb.ts | 2 +- js/types/v1/alert_pb.ts | 2 +- js/types/v1/cursor_pb.ts | 2 +- js/types/v1/dashboard_pb.ts | 2 +- js/types/v1/data_pb.ts | 2 +- js/types/v1/database_pb.ts | 2 +- js/types/v1/environment_pb.ts | 2 +- js/types/v1/environment_token_pb.ts | 2 +- js/types/v1/favorite_query_pb.ts | 2 +- js/types/v1/feature_pb.ts | 2 +- js/types/v1/localhost_config_pb.ts | 2 +- js/types/v1/machine_pb.ts | 2 +- js/types/v1/meta_pb.ts | 2 +- js/types/v1/organization_pb.ts | 2 +- js/types/v1/otel_logging_pb.ts | 2 +- js/types/v1/otel_resource_pb.ts | 2 +- js/types/v1/otel_scope_pb.ts | 2 +- js/types/v1/otel_tracing_pb.ts | 2 +- js/types/v1/payment_method_pb.ts | 2 +- js/types/v1/price_pb.ts | 2 +- js/types/v1/product_pb.ts | 2 +- js/types/v1/project_pb.ts | 2 +- js/types/v1/query_history_entry_pb.ts | 2 +- js/types/v1/query_pb.ts | 2 +- js/types/v1/release_channel_pb.ts | 2 +- js/types/v1/session_pb.ts | 2 +- js/types/v1/shared_result_pb.ts | 2 +- js/types/v1/subscription_pb.ts | 2 +- js/types/v1/symbol_pb.ts | 2 +- js/types/v1/types_pb.ts | 2 +- js/types/v1/ulid_pb.ts | 2 +- js/types/v1/user_pb.ts | 2 +- js/types/v1/user_token_pb.ts | 2 +- js/types/v1/version_artifact_pb.ts | 2 +- js/types/v1/version_pb.ts | 2 +- package-lock.json | 94 +++++++++++++-------------- package.json | 6 +- 56 files changed, 180 insertions(+), 103 deletions(-) diff --git a/go/types/v1/types.go b/go/types/v1/types.go index 3d4f312..6ee82bc 100644 --- a/go/types/v1/types.go +++ b/go/types/v1/types.go @@ -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" @@ -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: @@ -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 { diff --git a/js/buf/validate/validate_pb.ts b/js/buf/validate/validate_pb.ts index 9fe5a9f..34892f2 100644 --- a/js/buf/validate/validate_pb.ts +++ b/js/buf/validate/validate_pb.ts @@ -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 */ diff --git a/js/svc/alert/v1/service_pb.ts b/js/svc/alert/v1/service_pb.ts index a414372..7a404bb 100644 --- a/js/svc/alert/v1/service_pb.ts +++ b/js/svc/alert/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/auth/v1/service_pb.ts b/js/svc/auth/v1/service_pb.ts index 61c7159..0b59ed1 100644 --- a/js/svc/auth/v1/service_pb.ts +++ b/js/svc/auth/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/cliupdate/v1/service_pb.ts b/js/svc/cliupdate/v1/service_pb.ts index 8fbd27f..41cbc26 100644 --- a/js/svc/cliupdate/v1/service_pb.ts +++ b/js/svc/cliupdate/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/dashboard/v1/service_pb.ts b/js/svc/dashboard/v1/service_pb.ts index 0598426..42304e9 100644 --- a/js/svc/dashboard/v1/service_pb.ts +++ b/js/svc/dashboard/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/environment/v1/service_pb.ts b/js/svc/environment/v1/service_pb.ts index 0dc4374..f0e07fd 100644 --- a/js/svc/environment/v1/service_pb.ts +++ b/js/svc/environment/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/feature/v1/service_pb.ts b/js/svc/feature/v1/service_pb.ts index 6aac9a6..8f886c5 100644 --- a/js/svc/feature/v1/service_pb.ts +++ b/js/svc/feature/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/ingest/v1/service_pb.ts b/js/svc/ingest/v1/service_pb.ts index 608864d..beb6a88 100644 --- a/js/svc/ingest/v1/service_pb.ts +++ b/js/svc/ingest/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/localhost/v1/service_pb.ts b/js/svc/localhost/v1/service_pb.ts index 00bd923..d099887 100644 --- a/js/svc/localhost/v1/service_pb.ts +++ b/js/svc/localhost/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/organization/v1/service_pb.ts b/js/svc/organization/v1/service_pb.ts index b98d6fd..330090d 100644 --- a/js/svc/organization/v1/service_pb.ts +++ b/js/svc/organization/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/product/v1/service_pb.ts b/js/svc/product/v1/service_pb.ts index c2c5856..b1aa17c 100644 --- a/js/svc/product/v1/service_pb.ts +++ b/js/svc/product/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/project/v1/service_pb.ts b/js/svc/project/v1/service_pb.ts index 6cbeaaf..e0d358b 100644 --- a/js/svc/project/v1/service_pb.ts +++ b/js/svc/project/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/query/v1/service_pb.ts b/js/svc/query/v1/service_pb.ts index 2445efc..266ab01 100644 --- a/js/svc/query/v1/service_pb.ts +++ b/js/svc/query/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/query/v1/trace_service_pb.ts b/js/svc/query/v1/trace_service_pb.ts index 4fba1e2..f273e6d 100644 --- a/js/svc/query/v1/trace_service_pb.ts +++ b/js/svc/query/v1/trace_service_pb.ts @@ -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 */ diff --git a/js/svc/release/v1/service_pb.ts b/js/svc/release/v1/service_pb.ts index a43f0e8..40f1711 100644 --- a/js/svc/release/v1/service_pb.ts +++ b/js/svc/release/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/share/v1/service_pb.ts b/js/svc/share/v1/service_pb.ts index 5906931..ba867f6 100644 --- a/js/svc/share/v1/service_pb.ts +++ b/js/svc/share/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/token/v1/service_pb.ts b/js/svc/token/v1/service_pb.ts index 6a341c0..50368a8 100644 --- a/js/svc/token/v1/service_pb.ts +++ b/js/svc/token/v1/service_pb.ts @@ -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 */ diff --git a/js/svc/user/v1/service_private_pb.ts b/js/svc/user/v1/service_private_pb.ts index c460d7c..495e325 100644 --- a/js/svc/user/v1/service_private_pb.ts +++ b/js/svc/user/v1/service_private_pb.ts @@ -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 */ diff --git a/js/svc/user/v1/service_public_pb.ts b/js/svc/user/v1/service_public_pb.ts index 6e62fb6..625a877 100644 --- a/js/svc/user/v1/service_public_pb.ts +++ b/js/svc/user/v1/service_public_pb.ts @@ -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 */ diff --git a/js/types/v1/alert_pb.ts b/js/types/v1/alert_pb.ts index 17d5825..cb3ae11 100644 --- a/js/types/v1/alert_pb.ts +++ b/js/types/v1/alert_pb.ts @@ -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 */ diff --git a/js/types/v1/cursor_pb.ts b/js/types/v1/cursor_pb.ts index bb4d8dc..2d46c7a 100644 --- a/js/types/v1/cursor_pb.ts +++ b/js/types/v1/cursor_pb.ts @@ -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 */ diff --git a/js/types/v1/dashboard_pb.ts b/js/types/v1/dashboard_pb.ts index 0bd8882..a286910 100644 --- a/js/types/v1/dashboard_pb.ts +++ b/js/types/v1/dashboard_pb.ts @@ -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 */ diff --git a/js/types/v1/data_pb.ts b/js/types/v1/data_pb.ts index 3d565ed..66496ae 100644 --- a/js/types/v1/data_pb.ts +++ b/js/types/v1/data_pb.ts @@ -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 */ diff --git a/js/types/v1/database_pb.ts b/js/types/v1/database_pb.ts index 8a1b163..428ed2a 100644 --- a/js/types/v1/database_pb.ts +++ b/js/types/v1/database_pb.ts @@ -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 */ diff --git a/js/types/v1/environment_pb.ts b/js/types/v1/environment_pb.ts index 5f7c26b..5134d4c 100644 --- a/js/types/v1/environment_pb.ts +++ b/js/types/v1/environment_pb.ts @@ -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 */ diff --git a/js/types/v1/environment_token_pb.ts b/js/types/v1/environment_token_pb.ts index 71bb058..ab87fa8 100644 --- a/js/types/v1/environment_token_pb.ts +++ b/js/types/v1/environment_token_pb.ts @@ -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 */ diff --git a/js/types/v1/favorite_query_pb.ts b/js/types/v1/favorite_query_pb.ts index 659a497..3a7c50c 100644 --- a/js/types/v1/favorite_query_pb.ts +++ b/js/types/v1/favorite_query_pb.ts @@ -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 */ diff --git a/js/types/v1/feature_pb.ts b/js/types/v1/feature_pb.ts index 1ed5aed..d9928a2 100644 --- a/js/types/v1/feature_pb.ts +++ b/js/types/v1/feature_pb.ts @@ -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 */ diff --git a/js/types/v1/localhost_config_pb.ts b/js/types/v1/localhost_config_pb.ts index 28a3c65..fa2d388 100644 --- a/js/types/v1/localhost_config_pb.ts +++ b/js/types/v1/localhost_config_pb.ts @@ -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 */ diff --git a/js/types/v1/machine_pb.ts b/js/types/v1/machine_pb.ts index ff1b808..ce795f4 100644 --- a/js/types/v1/machine_pb.ts +++ b/js/types/v1/machine_pb.ts @@ -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 */ diff --git a/js/types/v1/meta_pb.ts b/js/types/v1/meta_pb.ts index c09e311..1c9b1a0 100644 --- a/js/types/v1/meta_pb.ts +++ b/js/types/v1/meta_pb.ts @@ -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 */ diff --git a/js/types/v1/organization_pb.ts b/js/types/v1/organization_pb.ts index 9b8f89c..62d9975 100644 --- a/js/types/v1/organization_pb.ts +++ b/js/types/v1/organization_pb.ts @@ -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 */ diff --git a/js/types/v1/otel_logging_pb.ts b/js/types/v1/otel_logging_pb.ts index ad71427..a8745a9 100644 --- a/js/types/v1/otel_logging_pb.ts +++ b/js/types/v1/otel_logging_pb.ts @@ -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 */ diff --git a/js/types/v1/otel_resource_pb.ts b/js/types/v1/otel_resource_pb.ts index 922c7d3..f6aa6cb 100644 --- a/js/types/v1/otel_resource_pb.ts +++ b/js/types/v1/otel_resource_pb.ts @@ -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 */ diff --git a/js/types/v1/otel_scope_pb.ts b/js/types/v1/otel_scope_pb.ts index a1b9550..c6033d9 100644 --- a/js/types/v1/otel_scope_pb.ts +++ b/js/types/v1/otel_scope_pb.ts @@ -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 */ diff --git a/js/types/v1/otel_tracing_pb.ts b/js/types/v1/otel_tracing_pb.ts index c44e237..2db9324 100644 --- a/js/types/v1/otel_tracing_pb.ts +++ b/js/types/v1/otel_tracing_pb.ts @@ -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 */ diff --git a/js/types/v1/payment_method_pb.ts b/js/types/v1/payment_method_pb.ts index 0debd17..d7ba7e0 100644 --- a/js/types/v1/payment_method_pb.ts +++ b/js/types/v1/payment_method_pb.ts @@ -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 */ diff --git a/js/types/v1/price_pb.ts b/js/types/v1/price_pb.ts index af38b6b..8810bc0 100644 --- a/js/types/v1/price_pb.ts +++ b/js/types/v1/price_pb.ts @@ -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 */ diff --git a/js/types/v1/product_pb.ts b/js/types/v1/product_pb.ts index 3272c52..bebe39d 100644 --- a/js/types/v1/product_pb.ts +++ b/js/types/v1/product_pb.ts @@ -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 */ diff --git a/js/types/v1/project_pb.ts b/js/types/v1/project_pb.ts index 8e51a20..c272ca2 100644 --- a/js/types/v1/project_pb.ts +++ b/js/types/v1/project_pb.ts @@ -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 */ diff --git a/js/types/v1/query_history_entry_pb.ts b/js/types/v1/query_history_entry_pb.ts index 4dd98fd..38dbdb1 100644 --- a/js/types/v1/query_history_entry_pb.ts +++ b/js/types/v1/query_history_entry_pb.ts @@ -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 */ diff --git a/js/types/v1/query_pb.ts b/js/types/v1/query_pb.ts index 295a6b0..f74d799 100644 --- a/js/types/v1/query_pb.ts +++ b/js/types/v1/query_pb.ts @@ -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 */ diff --git a/js/types/v1/release_channel_pb.ts b/js/types/v1/release_channel_pb.ts index 4e2f997..fa3542b 100644 --- a/js/types/v1/release_channel_pb.ts +++ b/js/types/v1/release_channel_pb.ts @@ -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 */ diff --git a/js/types/v1/session_pb.ts b/js/types/v1/session_pb.ts index b3dfa67..6205431 100644 --- a/js/types/v1/session_pb.ts +++ b/js/types/v1/session_pb.ts @@ -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 */ diff --git a/js/types/v1/shared_result_pb.ts b/js/types/v1/shared_result_pb.ts index b7150dc..732517c 100644 --- a/js/types/v1/shared_result_pb.ts +++ b/js/types/v1/shared_result_pb.ts @@ -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 */ diff --git a/js/types/v1/subscription_pb.ts b/js/types/v1/subscription_pb.ts index eafc92d..1c2c3ac 100644 --- a/js/types/v1/subscription_pb.ts +++ b/js/types/v1/subscription_pb.ts @@ -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 */ diff --git a/js/types/v1/symbol_pb.ts b/js/types/v1/symbol_pb.ts index fc538c2..6232620 100644 --- a/js/types/v1/symbol_pb.ts +++ b/js/types/v1/symbol_pb.ts @@ -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 */ diff --git a/js/types/v1/types_pb.ts b/js/types/v1/types_pb.ts index a29902e..4b2702a 100644 --- a/js/types/v1/types_pb.ts +++ b/js/types/v1/types_pb.ts @@ -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 */ diff --git a/js/types/v1/ulid_pb.ts b/js/types/v1/ulid_pb.ts index 458d9ad..69348aa 100644 --- a/js/types/v1/ulid_pb.ts +++ b/js/types/v1/ulid_pb.ts @@ -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 */ diff --git a/js/types/v1/user_pb.ts b/js/types/v1/user_pb.ts index 2cdabcc..de45932 100644 --- a/js/types/v1/user_pb.ts +++ b/js/types/v1/user_pb.ts @@ -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/user.proto (package types.v1, syntax proto3) /* eslint-disable */ diff --git a/js/types/v1/user_token_pb.ts b/js/types/v1/user_token_pb.ts index 017f91c..352c13b 100644 --- a/js/types/v1/user_token_pb.ts +++ b/js/types/v1/user_token_pb.ts @@ -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/user_token.proto (package types.v1, syntax proto3) /* eslint-disable */ diff --git a/js/types/v1/version_artifact_pb.ts b/js/types/v1/version_artifact_pb.ts index 2a11944..37abf37 100644 --- a/js/types/v1/version_artifact_pb.ts +++ b/js/types/v1/version_artifact_pb.ts @@ -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/version_artifact.proto (package types.v1, syntax proto3) /* eslint-disable */ diff --git a/js/types/v1/version_pb.ts b/js/types/v1/version_pb.ts index 813e832..9c07abf 100644 --- a/js/types/v1/version_pb.ts +++ b/js/types/v1/version_pb.ts @@ -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/version.proto (package types.v1, syntax proto3) /* eslint-disable */ diff --git a/package-lock.json b/package-lock.json index c40170b..d70314d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,15 +9,15 @@ "version": "0.1.0", "license": "MIT", "dependencies": { - "@bufbuild/protobuf": "^2.8.0", + "@bufbuild/protobuf": "^2.9.0", "@bufbuild/protovalidate": "^0.8.0", "debug": "^4.3.6", "ms": "^2.1.2", "typescript": "^4.5.2" }, "devDependencies": { - "@bufbuild/buf": "^1.57.0", - "@bufbuild/protoc-gen-es": "^2.8.0", + "@bufbuild/buf": "^1.57.2", + "@bufbuild/protoc-gen-es": "^2.9.0", "@connectrpc/connect": "^2.1.0", "@connectrpc/connect-query": "^2.2.0", "@connectrpc/connect-web": "^2.1.0", @@ -25,9 +25,9 @@ } }, "node_modules/@bufbuild/buf": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf/-/buf-1.57.0.tgz", - "integrity": "sha512-dQgrxSh+3gilB3fJam+Dn39ve/3YU8IPt03WvKqQdldwC5GhGHRHgl7tivVLOP+RyBHs1jnDK7lknXFGLGV65g==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf/-/buf-1.57.2.tgz", + "integrity": "sha512-N51MOnjROdtBX3fPU2KGdmwfiT1WWXzs8Jw1tMMkyVAmCSahWbObGIPq7e1fw7lR5i0s3bTxQyk3KRmb2/uwNg==", "dev": true, "hasInstallScript": true, "license": "Apache-2.0", @@ -40,19 +40,19 @@ "node": ">=12" }, "optionalDependencies": { - "@bufbuild/buf-darwin-arm64": "1.57.0", - "@bufbuild/buf-darwin-x64": "1.57.0", - "@bufbuild/buf-linux-aarch64": "1.57.0", - "@bufbuild/buf-linux-armv7": "1.57.0", - "@bufbuild/buf-linux-x64": "1.57.0", - "@bufbuild/buf-win32-arm64": "1.57.0", - "@bufbuild/buf-win32-x64": "1.57.0" + "@bufbuild/buf-darwin-arm64": "1.57.2", + "@bufbuild/buf-darwin-x64": "1.57.2", + "@bufbuild/buf-linux-aarch64": "1.57.2", + "@bufbuild/buf-linux-armv7": "1.57.2", + "@bufbuild/buf-linux-x64": "1.57.2", + "@bufbuild/buf-win32-arm64": "1.57.2", + "@bufbuild/buf-win32-x64": "1.57.2" } }, "node_modules/@bufbuild/buf-darwin-arm64": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-darwin-arm64/-/buf-darwin-arm64-1.57.0.tgz", - "integrity": "sha512-XKmb6cb1n23+5cgiwHqNRuGnrDv4yTBAsakjw3b/wP5WahIdloS/6ixoC1FdxuLt79fDqdhXbvCCeM0QOBAmRg==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-darwin-arm64/-/buf-darwin-arm64-1.57.2.tgz", + "integrity": "sha512-ybwjZ8hFpDiSfTY8ltuNulh6e4CYcojZX+joo/VocFb4InRFyF08S+JSO+1ld+nTmJ24ziGwXZTg8qXiiN6qog==", "cpu": [ "arm64" ], @@ -67,9 +67,9 @@ } }, "node_modules/@bufbuild/buf-darwin-x64": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-darwin-x64/-/buf-darwin-x64-1.57.0.tgz", - "integrity": "sha512-lCu5DJ63VfzTsoKz8iA8ZJMUTECaJABHEoQdlWnhh9MpoPr5Sd1l+uZvh0m1eBO9sVrKPAZFmYsjLGc/tpmbPA==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-darwin-x64/-/buf-darwin-x64-1.57.2.tgz", + "integrity": "sha512-uoNjkkyjmJlzQyfPI/mwlutDvu48gFg8pYzlK0RhNshvTWCDo2vXbw1gZSaQnv1xK585N9Axmyjp0K2sYJkaDQ==", "cpu": [ "x64" ], @@ -84,9 +84,9 @@ } }, "node_modules/@bufbuild/buf-linux-aarch64": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-linux-aarch64/-/buf-linux-aarch64-1.57.0.tgz", - "integrity": "sha512-LjFsPinUzvJ7BiHzlzQm1Dv5EQLUCFPtsxROVgluhX9iQOxxDtwbjsv0E/toKsJk35PQXwAsVKJlswR1CZ9bFQ==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-linux-aarch64/-/buf-linux-aarch64-1.57.2.tgz", + "integrity": "sha512-JvB9M+GraP7tgYlyKUhF46+pw/hctFyAjcLvPCPxr8Lr9uo3I6uqU8KywE4AuzdFReaZ4wtdF6sUlsfDOo8Geg==", "cpu": [ "arm64" ], @@ -101,9 +101,9 @@ } }, "node_modules/@bufbuild/buf-linux-armv7": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-linux-armv7/-/buf-linux-armv7-1.57.0.tgz", - "integrity": "sha512-sHThZvZgXiyQtAZEviZG4EDuc4MhZhrBrRmGR3uLRWiZ1BTVr6LCtOto3AWoXvcyORTfmEpAMLSFb/XfoO7NIg==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-linux-armv7/-/buf-linux-armv7-1.57.2.tgz", + "integrity": "sha512-13ZBU/LTboW7B/qjMV6fY6z8q0uyfSpp+y2J+/PAzCrC64ewSTE30pMKFQujMQ05Po0kY5e9yWvTElJcLbzt5w==", "cpu": [ "arm" ], @@ -118,9 +118,9 @@ } }, "node_modules/@bufbuild/buf-linux-x64": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-linux-x64/-/buf-linux-x64-1.57.0.tgz", - "integrity": "sha512-QdrvXX2JNMf0385egPSsOJZkOsOBca7LDFll1doC7Fo2W8cP//KXvVqPIMNA1Blq/sHyx7J8sbbf0w/iQo7kVw==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-linux-x64/-/buf-linux-x64-1.57.2.tgz", + "integrity": "sha512-R28Y6g0kGlM/agtVc8sAjzGhgtbA4JyJYg4w7ZPm/FaVEw2sAYZBsa5uxmMNNOmWopKfd0yr2Pgq8ndfG0QSug==", "cpu": [ "x64" ], @@ -135,9 +135,9 @@ } }, "node_modules/@bufbuild/buf-win32-arm64": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-win32-arm64/-/buf-win32-arm64-1.57.0.tgz", - "integrity": "sha512-TRPzAiSwlQHwJmb3BD1Yzn7dREjbkebnMJ9R/AAn8uB4dE4eJqo8vG4L5t5laARkaCvt7EwlUghwXLdJvXHoQQ==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-win32-arm64/-/buf-win32-arm64-1.57.2.tgz", + "integrity": "sha512-6YlPr2Z0VLae/76raYDEcotN7YGNgn3qaNy7x5idAoNeAr0EK2WsKtlBypK0/fQO3GOrYo0HGM/0SFENXoQKbw==", "cpu": [ "arm64" ], @@ -152,9 +152,9 @@ } }, "node_modules/@bufbuild/buf-win32-x64": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/@bufbuild/buf-win32-x64/-/buf-win32-x64-1.57.0.tgz", - "integrity": "sha512-2yGkSo4ei/IIeh1wkzJo0JIoZhn0KdrhlTUlcJbqgvaJ5UXZsGQFE3pZ2zh2gmcx2qSRUthzrBs2c5PL8lvl7g==", + "version": "1.57.2", + "resolved": "https://registry.npmjs.org/@bufbuild/buf-win32-x64/-/buf-win32-x64-1.57.2.tgz", + "integrity": "sha512-7YKz2RVPQlL+rJYzNL7JK3LpvZUz7wY6hof3QOTNX3sHY6pRD+mtWt/PITTlC3PtyjSKy17wAhbkokC0JErsHw==", "cpu": [ "x64" ], @@ -190,20 +190,20 @@ } }, "node_modules/@bufbuild/protobuf": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.8.0.tgz", - "integrity": "sha512-r1/0w5C9dkbcdjyxY8ZHsC5AOWg4Pnzhm2zu7LO4UHSounp2tMm6Y+oioV9zlGbLveE7YaWRDUk48WLxRDgoqg==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.9.0.tgz", + "integrity": "sha512-rnJenoStJ8nvmt9Gzye8nkYd6V22xUAnu4086ER7h1zJ508vStko4pMvDeQ446ilDTFpV5wnoc5YS7XvMwwMqA==", "license": "(Apache-2.0 AND BSD-3-Clause)" }, "node_modules/@bufbuild/protoc-gen-es": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@bufbuild/protoc-gen-es/-/protoc-gen-es-2.8.0.tgz", - "integrity": "sha512-wyCXK7/FOgcHdqP6dWnGNZBJyXcYYUcvZBMBQVgeYjbF5u0OgVsInEYnr2Gu4E2HC7HoxcQZcVlVbwyxeiebDA==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/@bufbuild/protoc-gen-es/-/protoc-gen-es-2.9.0.tgz", + "integrity": "sha512-g54rrHLKc7fnxN25ikynstRxR19M5G5l/hyqut2JoypJ9iU9QgUE63zEm8PNvVfBd4r5PEzWPfbWy5MNOeuMKQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@bufbuild/protobuf": "2.8.0", - "@bufbuild/protoplugin": "2.8.0" + "@bufbuild/protobuf": "2.9.0", + "@bufbuild/protoplugin": "2.9.0" }, "bin": { "protoc-gen-es": "bin/protoc-gen-es" @@ -212,7 +212,7 @@ "node": ">=20" }, "peerDependencies": { - "@bufbuild/protobuf": "2.8.0" + "@bufbuild/protobuf": "2.9.0" }, "peerDependenciesMeta": { "@bufbuild/protobuf": { @@ -221,13 +221,13 @@ } }, "node_modules/@bufbuild/protoplugin": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@bufbuild/protoplugin/-/protoplugin-2.8.0.tgz", - "integrity": "sha512-kwZeZAz6jmDC571Wf/f5cDX02IjvPmtdspdxW/hbLS+bnZHkXMW4StaW+irGd4TkykvHD4fFgBnPG/O1x8OgXw==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/@bufbuild/protoplugin/-/protoplugin-2.9.0.tgz", + "integrity": "sha512-uoiwNVYoTq+AyqaV1L6pBazGx5fXOO89L0NSR9/7hEfo0Y8n9T1jsKGu4mkitLmP3z+8gJREaule1mMuKBPyYw==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@bufbuild/protobuf": "2.8.0", + "@bufbuild/protobuf": "2.9.0", "@typescript/vfs": "^1.5.2", "typescript": "5.4.5" } diff --git a/package.json b/package.json index 49a88c2..d85b31c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "devDependencies": { - "@bufbuild/buf": "^1.57.0", - "@bufbuild/protoc-gen-es": "^2.8.0", + "@bufbuild/buf": "^1.57.2", + "@bufbuild/protoc-gen-es": "^2.9.0", "@connectrpc/connect": "^2.1.0", "@connectrpc/connect-query": "^2.2.0", "@connectrpc/connect-web": "^2.1.0", @@ -11,7 +11,7 @@ "version": "0.1.0", "description": "API for humanlog.io", "dependencies": { - "@bufbuild/protobuf": "^2.8.0", + "@bufbuild/protobuf": "^2.9.0", "@bufbuild/protovalidate": "^0.8.0", "debug": "^4.3.6", "ms": "^2.1.2",