diff --git a/core/currencyCodes.ts b/core/currencyCodes.ts index 2fd8853..3e45304 100644 --- a/core/currencyCodes.ts +++ b/core/currencyCodes.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "core/currencyCodes.proto" (package "api", syntax proto3) // tslint:disable // diff --git a/core/options.ts b/core/options.ts index acd9466..c7e9961 100644 --- a/core/options.ts +++ b/core/options.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "core/options.proto" (package "api", syntax proto3) // tslint:disable import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; diff --git a/core/shared.ts b/core/shared.ts index 28e0390..525176d 100644 --- a/core/shared.ts +++ b/core/shared.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "core/shared.proto" (package "api", syntax proto3) // tslint:disable import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; diff --git a/core/unitOfMeasures.ts b/core/unitOfMeasures.ts index 88dacc7..65a92b4 100644 --- a/core/unitOfMeasures.ts +++ b/core/unitOfMeasures.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "core/unitOfMeasures.proto" (package "api", syntax proto3) // tslint:disable // diff --git a/counter.client.ts b/counter.client.ts index 84e1dd3..6b6fdc3 100644 --- a/counter.client.ts +++ b/counter.client.ts @@ -1,6 +1,8 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "counter.proto" (package "vizapi", syntax proto3) // tslint:disable +import { SiteCountersService } from "./counter"; +import type { NextSiteCounterRequest } from "./counter"; import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import { ProjectCountersService } from "./counter"; @@ -35,3 +37,29 @@ export class ProjectCountersServiceClient implements IProjectCountersServiceClie return stackIntercept("unary", this._transport, method, opt, input); } } +/** + * @generated from protobuf service vizapi.SiteCountersService + */ +export interface ISiteCountersServiceClient { + /** + * @generated from protobuf rpc: Next + */ + next(input: NextSiteCounterRequest, options?: RpcOptions): UnaryCall; +} +/** + * @generated from protobuf service vizapi.SiteCountersService + */ +export class SiteCountersServiceClient implements ISiteCountersServiceClient, ServiceInfo { + typeName = SiteCountersService.typeName; + methods = SiteCountersService.methods; + options = SiteCountersService.options; + constructor(private readonly _transport: RpcTransport) { + } + /** + * @generated from protobuf rpc: Next + */ + next(input: NextSiteCounterRequest, options?: RpcOptions): UnaryCall { + const method = this.methods[0], opt = this._transport.mergeOptions(options); + return stackIntercept("unary", this._transport, method, opt, input); + } +} diff --git a/counter.ts b/counter.ts index c87f732..d0f5a68 100644 --- a/counter.ts +++ b/counter.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "counter.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; @@ -11,6 +11,7 @@ import { UnknownFieldHandler } from "@protobuf-ts/runtime"; import type { PartialMessage } from "@protobuf-ts/runtime"; import { reflectionMergePartial } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime"; +import { RequestSiteHeader } from "./core/shared"; import { RequestProjectHeader } from "./core/shared"; /** * @generated from protobuf message vizapi.NextProjectCounterRequest @@ -34,6 +35,19 @@ export interface NextCounterResult { */ Value: bigint; } +/** + * @generated from protobuf message vizapi.NextSiteCounterRequest + */ +export interface NextSiteCounterRequest { + /** + * @generated from protobuf field: api.RequestSiteHeader Header = 1 + */ + Header?: RequestSiteHeader; + /** + * @generated from protobuf field: string Key = 2 + */ + Key: string; +} // @generated message type with reflection information, may provide speed optimized methods class NextProjectCounterRequest$Type extends MessageType { constructor() { @@ -135,9 +149,69 @@ class NextCounterResult$Type extends MessageType { * @generated MessageType for protobuf message vizapi.NextCounterResult */ export const NextCounterResult = new NextCounterResult$Type(); +// @generated message type with reflection information, may provide speed optimized methods +class NextSiteCounterRequest$Type extends MessageType { + constructor() { + super("vizapi.NextSiteCounterRequest", [ + { no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestSiteHeader, options: { "validate.rules": { message: { required: true } } } }, + { no: 2, name: "Key", kind: "scalar", localName: "Key", jsonName: "Key", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { example: "\"claims\"" }, "validate.rules": { string: { minLen: "1" } } } } + ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "Key"] } } }); + } + create(value?: PartialMessage): NextSiteCounterRequest { + const message = globalThis.Object.create((this.messagePrototype!)); + message.Key = ""; + if (value !== undefined) + reflectionMergePartial(this, message, value); + return message; + } + internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: NextSiteCounterRequest): NextSiteCounterRequest { + let message = target ?? this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* api.RequestSiteHeader Header */ 1: + message.Header = RequestSiteHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header); + break; + case /* string Key */ 2: + message.Key = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message: NextSiteCounterRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { + /* api.RequestSiteHeader Header = 1; */ + if (message.Header) + RequestSiteHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join(); + /* string Key = 2; */ + if (message.Key !== "") + writer.tag(2, WireType.LengthDelimited).string(message.Key); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message vizapi.NextSiteCounterRequest + */ +export const NextSiteCounterRequest = new NextSiteCounterRequest$Type(); /** * @generated ServiceType for protobuf service vizapi.ProjectCountersService */ export const ProjectCountersService = new ServiceType("vizapi.ProjectCountersService", [ { name: "Next", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Project Counters"], summary: "Get the next value for a project key", description: "Get the next value for a project key" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: NextProjectCounterRequest, O: NextCounterResult } ], { "api.k8sService": "settings-server" }); +/** + * @generated ServiceType for protobuf service vizapi.SiteCountersService + */ +export const SiteCountersService = new ServiceType("vizapi.SiteCountersService", [ + { name: "Next", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Site Counters"], summary: "Get the next value for a Site key", description: "Get the next value for a Site key" }, "api.rscType": "Site", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: NextSiteCounterRequest, O: NextCounterResult } +], { "api.k8sService": "settings-server" }); diff --git a/google/api/field_behavior.ts b/google/api/field_behavior.ts index 1198df6..0257613 100644 --- a/google/api/field_behavior.ts +++ b/google/api/field_behavior.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/api/field_behavior.proto" (package "google.api", syntax proto3) // tslint:disable // diff --git a/google/api/http.ts b/google/api/http.ts index f7c0172..d2b2a9d 100644 --- a/google/api/http.ts +++ b/google/api/http.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/api/http.proto" (package "google.api", syntax proto3) // tslint:disable // diff --git a/google/api/httpbody.ts b/google/api/httpbody.ts index 61d47b7..2dda353 100644 --- a/google/api/httpbody.ts +++ b/google/api/httpbody.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/api/httpbody.proto" (package "google.api", syntax proto3) // tslint:disable // diff --git a/google/protobuf/any.ts b/google/protobuf/any.ts index 2dd215c..025b96b 100644 --- a/google/protobuf/any.ts +++ b/google/protobuf/any.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/any.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/api.ts b/google/protobuf/api.ts index e8627bc..8106040 100644 --- a/google/protobuf/api.ts +++ b/google/protobuf/api.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/api.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/compiler/plugin.ts b/google/protobuf/compiler/plugin.ts index 5ee957c..19a63d0 100644 --- a/google/protobuf/compiler/plugin.ts +++ b/google/protobuf/compiler/plugin.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/compiler/plugin.proto" (package "google.protobuf.compiler", syntax proto2) // tslint:disable // diff --git a/google/protobuf/descriptor.ts b/google/protobuf/descriptor.ts index 69e6987..ef8b1ba 100644 --- a/google/protobuf/descriptor.ts +++ b/google/protobuf/descriptor.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/descriptor.proto" (package "google.protobuf", syntax proto2) // tslint:disable // diff --git a/google/protobuf/duration.ts b/google/protobuf/duration.ts index b6869c8..b8c38d2 100644 --- a/google/protobuf/duration.ts +++ b/google/protobuf/duration.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/duration.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/empty.ts b/google/protobuf/empty.ts index 719d556..0799dbb 100644 --- a/google/protobuf/empty.ts +++ b/google/protobuf/empty.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/empty.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/field_mask.ts b/google/protobuf/field_mask.ts index dd7b25c..8dc738e 100644 --- a/google/protobuf/field_mask.ts +++ b/google/protobuf/field_mask.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/field_mask.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/source_context.ts b/google/protobuf/source_context.ts index 9731514..c075c3c 100644 --- a/google/protobuf/source_context.ts +++ b/google/protobuf/source_context.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/source_context.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/struct.ts b/google/protobuf/struct.ts index cd616f3..d5bbee0 100644 --- a/google/protobuf/struct.ts +++ b/google/protobuf/struct.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/struct.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/timestamp.ts b/google/protobuf/timestamp.ts index a7cfa6b..02d5ce4 100644 --- a/google/protobuf/timestamp.ts +++ b/google/protobuf/timestamp.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/timestamp.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/type.ts b/google/protobuf/type.ts index db8aa4f..4bbf171 100644 --- a/google/protobuf/type.ts +++ b/google/protobuf/type.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/type.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/protobuf/wrappers.ts b/google/protobuf/wrappers.ts index cb1ec51..7286453 100644 --- a/google/protobuf/wrappers.ts +++ b/google/protobuf/wrappers.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/protobuf/wrappers.proto" (package "google.protobuf", syntax proto3) // tslint:disable // diff --git a/google/rpc/code.ts b/google/rpc/code.ts index def4eec..ed5eaca 100644 --- a/google/rpc/code.ts +++ b/google/rpc/code.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/rpc/code.proto" (package "google.rpc", syntax proto3) // tslint:disable // diff --git a/google/rpc/error_details.ts b/google/rpc/error_details.ts index d60a3e1..e8db5a4 100644 --- a/google/rpc/error_details.ts +++ b/google/rpc/error_details.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/rpc/error_details.proto" (package "google.rpc", syntax proto3) // tslint:disable // diff --git a/google/rpc/status.ts b/google/rpc/status.ts index 324d1a4..dcd5b81 100644 --- a/google/rpc/status.ts +++ b/google/rpc/status.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "google/rpc/status.proto" (package "google.rpc", syntax proto3) // tslint:disable // diff --git a/openapiv2.ts b/openapiv2.ts index 902733b..9afd23c 100644 --- a/openapiv2.ts +++ b/openapiv2.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "openapiv2.proto" (package "grpc.gateway.protoc_gen_openapiv2.options", syntax proto3) // tslint:disable import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; diff --git a/package.json b/package.json index 3c54d7e..8405566 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-viz-sdk", - "version": "1.11.0-SNAPSHOT-250613134139", + "version": "1.11.0-SNAPSHOT-250728143402", "description": "npm libs from visibility model proto files", "homepage": "", "main": "index.ts", diff --git a/validate.ts b/validate.ts index 061ad90..eaff69a 100644 --- a/validate.ts +++ b/validate.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "validate.proto" (package "validate", syntax proto2) // tslint:disable import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; diff --git a/visibility.ts b/visibility.ts index 55f978b..f1e8d9a 100644 --- a/visibility.ts +++ b/visibility.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "visibility.proto" (package "google.api", syntax proto3) // tslint:disable // diff --git a/viz-composed-field.client.ts b/viz-composed-field.client.ts index 0d5c99e..7875e80 100644 --- a/viz-composed-field.client.ts +++ b/viz-composed-field.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-composed-field.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-composed-field.ts b/viz-composed-field.ts index c202b70..10f8f57 100644 --- a/viz-composed-field.ts +++ b/viz-composed-field.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-composed-field.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-dashboard.client.ts b/viz-dashboard.client.ts index ee8f2f7..50fa9ec 100644 --- a/viz-dashboard.client.ts +++ b/viz-dashboard.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-dashboard.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-dashboard.ts b/viz-dashboard.ts index 3f93513..7a178e5 100644 --- a/viz-dashboard.ts +++ b/viz-dashboard.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-dashboard.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-default-view.client.ts b/viz-default-view.client.ts index b2f5799..c8dcb83 100644 --- a/viz-default-view.client.ts +++ b/viz-default-view.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-default-view.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-default-view.ts b/viz-default-view.ts index b91ba3d..54122d5 100644 --- a/viz-default-view.ts +++ b/viz-default-view.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-default-view.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-motd.client.ts b/viz-motd.client.ts index 1dfe1bb..075bee1 100644 --- a/viz-motd.client.ts +++ b/viz-motd.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-motd.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-motd.ts b/viz-motd.ts index 662eeab..75e491d 100644 --- a/viz-motd.ts +++ b/viz-motd.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-motd.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-organisation-settings.client.ts b/viz-organisation-settings.client.ts index a31d304..0bac151 100644 --- a/viz-organisation-settings.client.ts +++ b/viz-organisation-settings.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-organisation-settings.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-organisation-settings.ts b/viz-organisation-settings.ts index 614ce9b..b5731b5 100644 --- a/viz-organisation-settings.ts +++ b/viz-organisation-settings.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-organisation-settings.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-project-settings.client.ts b/viz-project-settings.client.ts index bb8d79a..3966652 100644 --- a/viz-project-settings.client.ts +++ b/viz-project-settings.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-project-settings.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-project-settings.ts b/viz-project-settings.ts index 67e4e43..b3c9aff 100644 --- a/viz-project-settings.ts +++ b/viz-project-settings.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-project-settings.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-tab.client.ts b/viz-tab.client.ts index 3068da1..52ca1b3 100644 --- a/viz-tab.client.ts +++ b/viz-tab.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-tab.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-tab.ts b/viz-tab.ts index 6254c52..ba47184 100644 --- a/viz-tab.ts +++ b/viz-tab.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-tab.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-translations.client.ts b/viz-translations.client.ts index 2ed9397..fbfbd19 100644 --- a/viz-translations.client.ts +++ b/viz-translations.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-translations.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-translations.ts b/viz-translations.ts index d941354..867207c 100644 --- a/viz-translations.ts +++ b/viz-translations.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-translations.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-user-settings.client.ts b/viz-user-settings.client.ts index 108f555..daa3c81 100644 --- a/viz-user-settings.client.ts +++ b/viz-user-settings.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-user-settings.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-user-settings.ts b/viz-user-settings.ts index a1a60fa..fe22835 100644 --- a/viz-user-settings.ts +++ b/viz-user-settings.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-user-settings.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-view.client.ts b/viz-view.client.ts index 0fae0a6..a16ca9f 100644 --- a/viz-view.client.ts +++ b/viz-view.client.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-view.proto" (package "vizapi", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; diff --git a/viz-view.ts b/viz-view.ts index a0627af..93e6128 100644 --- a/viz-view.ts +++ b/viz-view.ts @@ -1,4 +1,4 @@ -// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name +// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name // @generated from protobuf file "viz-view.proto" (package "vizapi", syntax proto3) // tslint:disable import { ServiceType } from "@protobuf-ts/runtime-rpc";