diff --git a/claimInput.client.ts b/claimInput.client.ts index 7d1f52f..b74b61c 100644 --- a/claimInput.client.ts +++ b/claimInput.client.ts @@ -4,6 +4,7 @@ import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import { ClaimInputAPI } from "./claimInput"; +import type { ClaimInternalCreatedResponse } from "./claimInput"; import type { ClaimInternalCreatedRequest } from "./claimInput"; import type { ClaimCustomFieldsUpdatedResponse } from "./claimInput"; import type { ClaimCustomFieldsUpdatedRequest } from "./claimInput"; @@ -108,7 +109,7 @@ export interface IClaimInputAPIClient { /** * @generated from protobuf rpc: InternalCreated */ - internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall; + internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall; } /** * @@ -230,8 +231,8 @@ export class ClaimInputAPIClient implements IClaimInputAPIClient, ServiceInfo { /** * @generated from protobuf rpc: InternalCreated */ - internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall { + internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall { const method = this.methods[15], opt = this._transport.mergeOptions(options); - return stackIntercept("unary", this._transport, method, opt, input); + return stackIntercept("unary", this._transport, method, opt, input); } } diff --git a/claimInput.ts b/claimInput.ts index 7fe8fcf..3dd377b 100644 --- a/claimInput.ts +++ b/claimInput.ts @@ -4712,5 +4712,5 @@ export const ClaimInputAPI = new ServiceType("api.ClaimInputAPI", [ { name: "Deleted", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Claim Inputs"], description: "A Claim has been deleted. This is called from HARDIS SC NETWORK Admin service to share the Organisation Claims." }, "api.rscType": "Project", "api.roles": "Platform.Project-Input", "api.aliasType": "APPOINTMENT_SCHEDULING", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ClaimDeletedRequest, O: ClaimDeletedResponse }, { name: "Sanitised", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Claim Inputs"], description: "A claim has been sanitised." }, "api.rscType": "Project", "api.roles": "Platform.Project-Input", "api.platformReserved": false, "api.aliasType": "APPOINTMENT_SCHEDULING", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: ClaimSanitisedRequest, O: ClaimSanitisedResponse }, { name: "CustomFieldsUpdated", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Claim Inputs"], description: "A claim's CustomFields have been updated." }, "api.rscType": "Project", "api.roles": "Platform.Project-Input", "api.aliasType": "APPOINTMENT_SCHEDULING", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ClaimCustomFieldsUpdatedRequest, O: ClaimCustomFieldsUpdatedResponse }, - { name: "InternalCreated", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Claim Inputs"], description: "A claim has been created. Internal use only." }, "api.rscType": "Platform", "api.roles": "Platform.Project-Input", "api.platformReserved": true, "api.customInput": true, "google.api.method_visibility": { restriction: "INTERNAL" } }, I: ClaimInternalCreatedRequest, O: ClaimCreatedResponse } + { name: "InternalCreated", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Claim Inputs"], description: "A claim has been created. Internal use only." }, "api.rscType": "Platform", "api.roles": "Platform.Project-Input", "api.platformReserved": true, "api.customInput": true, "google.api.method_visibility": { restriction: "INTERNAL" } }, I: ClaimInternalCreatedRequest, O: ClaimInternalCreatedResponse } ], { "api.serviceType": "Api", "api.k8sService": "collab-api-server" }); diff --git a/package.json b/package.json index 8acfede..0eaa406 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reflex-platform/npm-core-sdk", - "version": "1.15.0-SNAPSHOT-260914090703", + "version": "1.15.0-SNAPSHOT-260914091301", "description": "npm libs from core model proto files", "homepage": "", "main": "index.ts",