Latest generation

This commit is contained in:
ci core model
2026-09-14 09:13:27 +00:00
parent c922c07a36
commit de57b791b5
3 changed files with 6 additions and 5 deletions

View File

@@ -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<ClaimInternalCreatedRequest, ClaimCreatedResponse>;
internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall<ClaimInternalCreatedRequest, ClaimInternalCreatedResponse>;
}
/**
*
@@ -230,8 +231,8 @@ export class ClaimInputAPIClient implements IClaimInputAPIClient, ServiceInfo {
/**
* @generated from protobuf rpc: InternalCreated
*/
internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall<ClaimInternalCreatedRequest, ClaimCreatedResponse> {
internalCreated(input: ClaimInternalCreatedRequest, options?: RpcOptions): UnaryCall<ClaimInternalCreatedRequest, ClaimInternalCreatedResponse> {
const method = this.methods[15], opt = this._transport.mergeOptions(options);
return stackIntercept<ClaimInternalCreatedRequest, ClaimCreatedResponse>("unary", this._transport, method, opt, input);
return stackIntercept<ClaimInternalCreatedRequest, ClaimInternalCreatedResponse>("unary", this._transport, method, opt, input);
}
}

View File

@@ -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" });

View File

@@ -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",