@commercelayer/sdk
Version:
Commerce Layer Javascript SDK
1 lines • 4.35 kB
Source Map (JSON)
{"version":3,"sources":["../src/resources/event_callbacks.ts"],"names":["ApiResource"],"mappings":";;;;;AA+CA,IAAM,cAAA,GAAN,MAAM,eAAA,SAAuBA,6BAAA,CAA2B;AAAA,EAEvD,OAAgB,IAAA,GAA0B,iBAAA;AAAA,EAE1C,MAAM,OAAA,CAAQ,eAAA,EAAyC,MAAA,EAAuC,OAAA,EAA6C;AAC1I,IAAA,MAAM,gBAAA,GAAoB,gBAAkC,EAAA,IAAM,eAAA;AAClE,IAAA,OAAO,IAAA,CAAK,SAAA,CAAU,KAAA,CAAe,EAAE,IAAA,EAAM,UAAA,EAAW,EAAG,CAAA,gBAAA,EAAmB,gBAAgB,CAAA,QAAA,CAAA,EAAY,MAAA,EAAQ,OAAO,CAAA;AAAA,EAC1H;AAAA,EAEA,MAAM,YAAA,CAAa,eAAA,EAAyC,MAAA,EAAsC,OAAA,EAA8D;AAC/J,IAAA,MAAM,gBAAA,GAAoB,gBAAkC,EAAA,IAAM,eAAA;AAClE,IAAA,OAAO,IAAA,CAAK,SAAA,CAAU,KAAA,CAAkB,EAAE,IAAA,EAAM,cAAA,EAAe,EAAG,CAAA,gBAAA,EAAmB,gBAAgB,CAAA,aAAA,CAAA,EAAiB,MAAA,EAAQ,OAAO,CAAA;AAAA,EACtI;AAAA,EAGA,gBAAgB,QAAA,EAA0C;AACzD,IAAA,OAAO,QAAA,CAAS,IAAA,IAAS,QAAA,CAAS,IAAA,KAAS,eAAA,CAAe,IAAA;AAAA,EAC3D;AAAA,EAGA,aAAa,EAAA,EAAkD;AAC9D,IAAA,OAAO,KAAA,CAAM,qBAAuC,EAAE,CAAA;AAAA,EACvD;AAAA,EAEA,sBAAsB,GAAA,EAAmC;AACxD,IAAA,OAAO,KAAA,CAAM,qBAAA,CAAwC,GAAG,GAAG,CAAA;AAAA,EAC5D;AAAA,EAGA,IAAA,GAA0B;AACzB,IAAA,OAAO,eAAA,CAAe,IAAA;AAAA,EACvB;AAED,CAAA;AAGA,IAAM,QAAA,GAAW,IAAI,cAAA,EAAe;AACpC,IAAO,uBAAA,GAAQ","file":"chunk-5QHMVNEQ.cjs","sourcesContent":["import { ApiResource } from '../resource'\nimport type { Resource, ResourceId, ResourcesConfig, ResourceRel, ListResponse, ResourceSort, /* ResourceFilter */ } from '../resource'\nimport type { QueryParamsRetrieve, QueryParamsList } from '../query'\n\nimport type { Webhook } from './webhooks'\nimport type { EventStore } from './event_stores'\n\n\ntype EventCallbackType = 'event_callbacks'\ntype EventCallbackRel = ResourceRel & { type: EventCallbackType }\n\n\nexport type EventCallbackSort = Pick<EventCallback, 'id' | 'response_code' | 'response_message'> & ResourceSort\n// export type EventCallbackFilter = Pick<EventCallback, 'id' | 'callback_url' | 'response_code' | 'response_message'> & ResourceFilter\n\n\ninterface EventCallback extends Resource {\n\t\n\treadonly type: EventCallbackType\n\n\t/** \n\t * The URI of the callback, inherited by the associated webhook.\n\t * @example ```\"https://yourapp.com/webhooks\"```\n\t */\n\tcallback_url: string\n\t/** \n\t * The payload sent to the callback endpoint, including the event affected resource and the specified includes.\n\t * @example ```{\"data\":{\"attributes\":{\"id\":\"PYWehaoXJj\",\"type\":\"orders\"}}}```\n\t */\n\tpayload?: Record<string, any> | null\n\t/** \n\t * The HTTP response code of the callback endpoint.\n\t * @example ```\"200\"```\n\t */\n\tresponse_code?: string | null\n\t/** \n\t * The HTTP response message of the callback endpoint.\n\t * @example ```\"OK\"```\n\t */\n\tresponse_message?: string | null\n\n\twebhook?: Webhook | null\n\tevent_stores?: EventStore[] | null\n\n}\n\n\nclass EventCallbacks extends ApiResource<EventCallback> {\n\n\tstatic readonly TYPE: EventCallbackType = 'event_callbacks' as const\n\n\tasync webhook(eventCallbackId: string | EventCallback, params?: QueryParamsRetrieve<Webhook>, options?: ResourcesConfig): Promise<Webhook> {\n\t\tconst _eventCallbackId = (eventCallbackId as EventCallback).id || eventCallbackId as string\n\t\treturn this.resources.fetch<Webhook>({ type: 'webhooks' }, `event_callbacks/${_eventCallbackId}/webhook`, params, options) as unknown as Webhook\n\t}\n\n\tasync event_stores(eventCallbackId: string | EventCallback, params?: QueryParamsList<EventStore>, options?: ResourcesConfig): Promise<ListResponse<EventStore>> {\n\t\tconst _eventCallbackId = (eventCallbackId as EventCallback).id || eventCallbackId as string\n\t\treturn this.resources.fetch<EventStore>({ type: 'event_stores' }, `event_callbacks/${_eventCallbackId}/event_stores`, params, options) as unknown as ListResponse<EventStore>\n\t}\n\n\n\tisEventCallback(resource: any): resource is EventCallback {\n\t\treturn resource.type && (resource.type === EventCallbacks.TYPE)\n\t}\n\n\n\trelationship(id: string | ResourceId | null): EventCallbackRel {\n\t\treturn super.relationshipOneToOne<EventCallbackRel>(id)\n\t}\n\n\trelationshipToMany(...ids: string[]): EventCallbackRel[] {\n\t\treturn super.relationshipOneToMany<EventCallbackRel>(...ids)\n\t}\n\n\n\ttype(): EventCallbackType {\n\t\treturn EventCallbacks.TYPE\n\t}\n\n}\n\n\nconst instance = new EventCallbacks()\nexport default instance\n\nexport type { EventCallbacks, EventCallback, EventCallbackType }\n"]}