You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user