Latest generation

This commit is contained in:
ci core model
2026-05-05 12:01:40 +00:00
parent 685abd5206
commit eb16504091
3 changed files with 292 additions and 2 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ItemInputAPI } from "./itemInput";
import type { ItemPhotoUriUpdatedResponse } from "./itemInput";
import type { ItemPhotoUriUpdatedRequest } from "./itemInput";
import type { ItemCustomFieldsUpdatedResponse } from "./itemInput";
import type { ItemCustomFieldsUpdatedRequest } from "./itemInput";
import type { ItemSanitisedResponse } from "./itemInput";
@@ -88,6 +90,10 @@ export interface IItemInputAPIClient {
* @generated from protobuf rpc: CustomFieldsUpdated
*/
customFieldsUpdated(input: ItemCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<ItemCustomFieldsUpdatedRequest, ItemCustomFieldsUpdatedResponse>;
/**
* @generated from protobuf rpc: PhotoUriUpdated
*/
photoUriUpdated(input: ItemPhotoUriUpdatedRequest, options?: RpcOptions): UnaryCall<ItemPhotoUriUpdatedRequest, ItemPhotoUriUpdatedResponse>;
}
/**
*
@@ -185,4 +191,11 @@ export class ItemInputAPIClient implements IItemInputAPIClient, ServiceInfo {
const method = this.methods[9], opt = this._transport.mergeOptions(options);
return stackIntercept<ItemCustomFieldsUpdatedRequest, ItemCustomFieldsUpdatedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: PhotoUriUpdated
*/
photoUriUpdated(input: ItemPhotoUriUpdatedRequest, options?: RpcOptions): UnaryCall<ItemPhotoUriUpdatedRequest, ItemPhotoUriUpdatedResponse> {
const method = this.methods[10], opt = this._transport.mergeOptions(options);
return stackIntercept<ItemPhotoUriUpdatedRequest, ItemPhotoUriUpdatedResponse>("unary", this._transport, method, opt, input);
}
}