UNPKG

@commercelayer/sdk

Version:
1 lines 6.3 kB
{"version":3,"sources":["../src/resources/shipping_method_tiers.ts"],"names":["ApiResource"],"mappings":";;;;;AAwDA,IAAM,mBAAA,GAAN,MAAM,oBAAA,SAA4BA,6BAAA,CAAgC;AAAA,EAEjE,OAAgB,IAAA,GAA+B,uBAAA;AAAA,EAE/C,MAAM,eAAA,CAAgB,oBAAA,EAAmD,MAAA,EAA8C,OAAA,EAAoD;AAC1K,IAAA,MAAM,qBAAA,GAAyB,qBAA4C,EAAA,IAAM,oBAAA;AACjF,IAAA,OAAO,IAAA,CAAK,SAAA,CAAU,KAAA,CAAsB,EAAE,IAAA,EAAM,kBAAA,EAAmB,EAAG,CAAA,sBAAA,EAAyB,qBAAqB,CAAA,gBAAA,CAAA,EAAoB,MAAA,EAAQ,OAAO,CAAA;AAAA,EAC5J;AAAA,EAEA,MAAM,WAAA,CAAY,oBAAA,EAAmD,MAAA,EAAsC,OAAA,EAA8D;AACxK,IAAA,MAAM,qBAAA,GAAyB,qBAA4C,EAAA,IAAM,oBAAA;AACjF,IAAA,OAAO,IAAA,CAAK,SAAA,CAAU,KAAA,CAAkB,EAAE,IAAA,EAAM,aAAA,EAAc,EAAG,CAAA,sBAAA,EAAyB,qBAAqB,CAAA,YAAA,CAAA,EAAgB,MAAA,EAAQ,OAAO,CAAA;AAAA,EAC/I;AAAA,EAEA,MAAM,QAAA,CAAS,oBAAA,EAAmD,MAAA,EAAmC,OAAA,EAA2D;AAC/J,IAAA,MAAM,qBAAA,GAAyB,qBAA4C,EAAA,IAAM,oBAAA;AACjF,IAAA,OAAO,IAAA,CAAK,SAAA,CAAU,KAAA,CAAe,EAAE,IAAA,EAAM,UAAA,EAAW,EAAG,CAAA,sBAAA,EAAyB,qBAAqB,CAAA,SAAA,CAAA,EAAa,MAAA,EAAQ,OAAO,CAAA;AAAA,EACtI;AAAA,EAEA,MAAM,YAAA,CAAa,oBAAA,EAAmD,MAAA,EAAsC,OAAA,EAA8D;AACzK,IAAA,MAAM,qBAAA,GAAyB,qBAA4C,EAAA,IAAM,oBAAA;AACjF,IAAA,OAAO,IAAA,CAAK,SAAA,CAAU,KAAA,CAAkB,EAAE,IAAA,EAAM,cAAA,EAAe,EAAG,CAAA,sBAAA,EAAyB,qBAAqB,CAAA,aAAA,CAAA,EAAiB,MAAA,EAAQ,OAAO,CAAA;AAAA,EACjJ;AAAA,EAGA,qBAAqB,QAAA,EAA+C;AACnE,IAAA,OAAO,QAAA,CAAS,IAAA,IAAS,QAAA,CAAS,IAAA,KAAS,oBAAA,CAAoB,IAAA;AAAA,EAChE;AAAA,EAGA,aAAa,EAAA,EAAuD;AACnE,IAAA,OAAO,KAAA,CAAM,qBAA4C,EAAE,CAAA;AAAA,EAC5D;AAAA,EAEA,sBAAsB,GAAA,EAAwC;AAC7D,IAAA,OAAO,KAAA,CAAM,qBAAA,CAA6C,GAAG,GAAG,CAAA;AAAA,EACjE;AAAA,EAGA,IAAA,GAA+B;AAC9B,IAAA,OAAO,oBAAA,CAAoB,IAAA;AAAA,EAC5B;AAED,CAAA;AAGA,IAAM,QAAA,GAAW,IAAI,mBAAA,EAAoB;AACzC,IAAO,6BAAA,GAAQ","file":"chunk-DPE4FTTS.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 { ShippingMethod } from './shipping_methods'\nimport type { Attachment } from './attachments'\nimport type { Version } from './versions'\nimport type { EventStore } from './event_stores'\n\n\ntype ShippingMethodTierType = 'shipping_method_tiers'\ntype ShippingMethodTierRel = ResourceRel & { type: ShippingMethodTierType }\n\n\nexport type ShippingMethodTierSort = Pick<ShippingMethodTier, 'id' | 'name' | 'up_to' | 'price_amount_cents'> & ResourceSort\n// export type ShippingMethodTierFilter = Pick<ShippingMethodTier, 'id' | 'name' | 'up_to' | 'price_amount_cents'> & ResourceFilter\n\n\ninterface ShippingMethodTier extends Resource {\n\t\n\treadonly type: ShippingMethodTierType\n\n\t/** \n\t * The shipping method tier's name.\n\t * @example ```\"Light shipping under 3kg\"```\n\t */\n\tname: string\n\t/** \n\t * The tier upper limit. When 'null' it means infinity (useful to have an always matching tier).\n\t * @example ```20.5```\n\t */\n\tup_to?: number | null\n\t/** \n\t * The price of this shipping method tier, in cents.\n\t * @example ```1000```\n\t */\n\tprice_amount_cents: number\n\t/** \n\t * The price of this shipping method tier, float.\n\t * @example ```10```\n\t */\n\tprice_amount_float?: number | null\n\t/** \n\t * The price of this shipping method tier, formatted.\n\t * @example ```\"€10,00\"```\n\t */\n\tformatted_price_amount?: string | null\n\n\tshipping_method?: ShippingMethod | null\n\tattachments?: Attachment[] | null\n\tversions?: Version[] | null\n\tevent_stores?: EventStore[] | null\n\n}\n\n\nclass ShippingMethodTiers extends ApiResource<ShippingMethodTier> {\n\n\tstatic readonly TYPE: ShippingMethodTierType = 'shipping_method_tiers' as const\n\n\tasync shipping_method(shippingMethodTierId: string | ShippingMethodTier, params?: QueryParamsRetrieve<ShippingMethod>, options?: ResourcesConfig): Promise<ShippingMethod> {\n\t\tconst _shippingMethodTierId = (shippingMethodTierId as ShippingMethodTier).id || shippingMethodTierId as string\n\t\treturn this.resources.fetch<ShippingMethod>({ type: 'shipping_methods' }, `shipping_method_tiers/${_shippingMethodTierId}/shipping_method`, params, options) as unknown as ShippingMethod\n\t}\n\n\tasync attachments(shippingMethodTierId: string | ShippingMethodTier, params?: QueryParamsList<Attachment>, options?: ResourcesConfig): Promise<ListResponse<Attachment>> {\n\t\tconst _shippingMethodTierId = (shippingMethodTierId as ShippingMethodTier).id || shippingMethodTierId as string\n\t\treturn this.resources.fetch<Attachment>({ type: 'attachments' }, `shipping_method_tiers/${_shippingMethodTierId}/attachments`, params, options) as unknown as ListResponse<Attachment>\n\t}\n\n\tasync versions(shippingMethodTierId: string | ShippingMethodTier, params?: QueryParamsList<Version>, options?: ResourcesConfig): Promise<ListResponse<Version>> {\n\t\tconst _shippingMethodTierId = (shippingMethodTierId as ShippingMethodTier).id || shippingMethodTierId as string\n\t\treturn this.resources.fetch<Version>({ type: 'versions' }, `shipping_method_tiers/${_shippingMethodTierId}/versions`, params, options) as unknown as ListResponse<Version>\n\t}\n\n\tasync event_stores(shippingMethodTierId: string | ShippingMethodTier, params?: QueryParamsList<EventStore>, options?: ResourcesConfig): Promise<ListResponse<EventStore>> {\n\t\tconst _shippingMethodTierId = (shippingMethodTierId as ShippingMethodTier).id || shippingMethodTierId as string\n\t\treturn this.resources.fetch<EventStore>({ type: 'event_stores' }, `shipping_method_tiers/${_shippingMethodTierId}/event_stores`, params, options) as unknown as ListResponse<EventStore>\n\t}\n\n\n\tisShippingMethodTier(resource: any): resource is ShippingMethodTier {\n\t\treturn resource.type && (resource.type === ShippingMethodTiers.TYPE)\n\t}\n\n\n\trelationship(id: string | ResourceId | null): ShippingMethodTierRel {\n\t\treturn super.relationshipOneToOne<ShippingMethodTierRel>(id)\n\t}\n\n\trelationshipToMany(...ids: string[]): ShippingMethodTierRel[] {\n\t\treturn super.relationshipOneToMany<ShippingMethodTierRel>(...ids)\n\t}\n\n\n\ttype(): ShippingMethodTierType {\n\t\treturn ShippingMethodTiers.TYPE\n\t}\n\n}\n\n\nconst instance = new ShippingMethodTiers()\nexport default instance\n\nexport type { ShippingMethodTiers, ShippingMethodTier, ShippingMethodTierType }\n"]}