@commercelayer/sdk
Advanced tools
Comparing version 2.2.6-beta.3 to 2.3.0
@@ -58,4 +58,4 @@ import { ApiClientConfig, ApiClientInitConfig } from './client'; | ||
list<R extends Resource>(resource: ResourceType, params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<R>>; | ||
create<C extends ResourceCreate, R extends Resource>(resource: C & ResourceType, options?: ResourcesConfig): Promise<R>; | ||
update<U extends ResourceUpdate, R extends Resource>(resource: U & ResourceId, options?: ResourcesConfig): Promise<R>; | ||
create<C extends ResourceCreate, R extends Resource>(resource: C & ResourceType, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<R>; | ||
update<U extends ResourceUpdate, R extends Resource>(resource: U & ResourceId, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<R>; | ||
delete(resource: ResourceId, options?: ResourcesConfig): Promise<void>; | ||
@@ -62,0 +62,0 @@ } |
@@ -82,5 +82,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Address>>; | ||
create(resource: AddressCreate, options?: ResourcesConfig): Promise<Address>; | ||
create(resource: AddressCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Address>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Address>; | ||
update(resource: AddressUpdate, options?: ResourcesConfig): Promise<Address>; | ||
update(resource: AddressUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Address>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -87,0 +87,0 @@ isAddress(resource: any): resource is Address; |
@@ -30,5 +30,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Adjustment>>; | ||
create(resource: AdjustmentCreate, options?: ResourcesConfig): Promise<Adjustment>; | ||
create(resource: AdjustmentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Adjustment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Adjustment>; | ||
update(resource: AdjustmentUpdate, options?: ResourcesConfig): Promise<Adjustment>; | ||
update(resource: AdjustmentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Adjustment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -35,0 +35,0 @@ isAdjustment(resource: any): resource is Adjustment; |
@@ -40,5 +40,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<AdyenGateway>>; | ||
create(resource: AdyenGatewayCreate, options?: ResourcesConfig): Promise<AdyenGateway>; | ||
create(resource: AdyenGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AdyenGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AdyenGateway>; | ||
update(resource: AdyenGatewayUpdate, options?: ResourcesConfig): Promise<AdyenGateway>; | ||
update(resource: AdyenGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AdyenGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -45,0 +45,0 @@ isAdyenGateway(resource: any): resource is AdyenGateway; |
@@ -38,5 +38,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<AdyenPayment>>; | ||
create(resource: AdyenPaymentCreate, options?: ResourcesConfig): Promise<AdyenPayment>; | ||
create(resource: AdyenPaymentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AdyenPayment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AdyenPayment>; | ||
update(resource: AdyenPaymentUpdate, options?: ResourcesConfig): Promise<AdyenPayment>; | ||
update(resource: AdyenPaymentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AdyenPayment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -43,0 +43,0 @@ isAdyenPayment(resource: any): resource is AdyenPayment; |
@@ -151,5 +151,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Attachment>>; | ||
create(resource: AttachmentCreate, options?: ResourcesConfig): Promise<Attachment>; | ||
create(resource: AttachmentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Attachment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Attachment>; | ||
update(resource: AttachmentUpdate, options?: ResourcesConfig): Promise<Attachment>; | ||
update(resource: AttachmentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Attachment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -156,0 +156,0 @@ isAttachment(resource: any): resource is Attachment; |
@@ -52,3 +52,3 @@ /** | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Authorization>; | ||
update(resource: AuthorizationUpdate, options?: ResourcesConfig): Promise<Authorization>; | ||
update(resource: AuthorizationUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Authorization>; | ||
isAuthorization(resource: any): resource is Authorization; | ||
@@ -55,0 +55,0 @@ relationship(id: string | ResourceId): AuthorizationRel; |
@@ -44,5 +44,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<AvalaraAccount>>; | ||
create(resource: AvalaraAccountCreate, options?: ResourcesConfig): Promise<AvalaraAccount>; | ||
create(resource: AvalaraAccountCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AvalaraAccount>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AvalaraAccount>; | ||
update(resource: AvalaraAccountUpdate, options?: ResourcesConfig): Promise<AvalaraAccount>; | ||
update(resource: AvalaraAccountUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<AvalaraAccount>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -49,0 +49,0 @@ isAvalaraAccount(resource: any): resource is AvalaraAccount; |
@@ -26,5 +26,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<BillingInfoValidationRule>>; | ||
create(resource: BillingInfoValidationRuleCreate, options?: ResourcesConfig): Promise<BillingInfoValidationRule>; | ||
create(resource: BillingInfoValidationRuleCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BillingInfoValidationRule>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BillingInfoValidationRule>; | ||
update(resource: BillingInfoValidationRuleUpdate, options?: ResourcesConfig): Promise<BillingInfoValidationRule>; | ||
update(resource: BillingInfoValidationRuleUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BillingInfoValidationRule>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -31,0 +31,0 @@ isBillingInfoValidationRule(resource: any): resource is BillingInfoValidationRule; |
@@ -28,5 +28,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<BingGeocoder>>; | ||
create(resource: BingGeocoderCreate, options?: ResourcesConfig): Promise<BingGeocoder>; | ||
create(resource: BingGeocoderCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BingGeocoder>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BingGeocoder>; | ||
update(resource: BingGeocoderUpdate, options?: ResourcesConfig): Promise<BingGeocoder>; | ||
update(resource: BingGeocoderUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BingGeocoder>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -33,0 +33,0 @@ isBingGeocoder(resource: any): resource is BingGeocoder; |
@@ -49,5 +49,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<BraintreeGateway>>; | ||
create(resource: BraintreeGatewayCreate, options?: ResourcesConfig): Promise<BraintreeGateway>; | ||
create(resource: BraintreeGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BraintreeGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BraintreeGateway>; | ||
update(resource: BraintreeGatewayUpdate, options?: ResourcesConfig): Promise<BraintreeGateway>; | ||
update(resource: BraintreeGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BraintreeGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -54,0 +54,0 @@ isBraintreeGateway(resource: any): resource is BraintreeGateway; |
@@ -40,5 +40,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<BraintreePayment>>; | ||
create(resource: BraintreePaymentCreate, options?: ResourcesConfig): Promise<BraintreePayment>; | ||
create(resource: BraintreePaymentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BraintreePayment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BraintreePayment>; | ||
update(resource: BraintreePaymentUpdate, options?: ResourcesConfig): Promise<BraintreePayment>; | ||
update(resource: BraintreePaymentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<BraintreePayment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -45,0 +45,0 @@ isBraintreePayment(resource: any): resource is BraintreePayment; |
@@ -60,5 +60,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Bundle>>; | ||
create(resource: BundleCreate, options?: ResourcesConfig): Promise<Bundle>; | ||
create(resource: BundleCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Bundle>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Bundle>; | ||
update(resource: BundleUpdate, options?: ResourcesConfig): Promise<Bundle>; | ||
update(resource: BundleUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Bundle>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -65,0 +65,0 @@ isBundle(resource: any): resource is Bundle; |
@@ -43,3 +43,3 @@ /** | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Capture>; | ||
update(resource: CaptureUpdate, options?: ResourcesConfig): Promise<Capture>; | ||
update(resource: CaptureUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Capture>; | ||
isCapture(resource: any): resource is Capture; | ||
@@ -46,0 +46,0 @@ relationship(id: string | ResourceId): CaptureRel; |
@@ -38,5 +38,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CheckoutComGateway>>; | ||
create(resource: CheckoutComGatewayCreate, options?: ResourcesConfig): Promise<CheckoutComGateway>; | ||
create(resource: CheckoutComGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CheckoutComGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CheckoutComGateway>; | ||
update(resource: CheckoutComGatewayUpdate, options?: ResourcesConfig): Promise<CheckoutComGateway>; | ||
update(resource: CheckoutComGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CheckoutComGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -43,0 +43,0 @@ isCheckoutComGateway(resource: any): resource is CheckoutComGateway; |
@@ -44,5 +44,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CheckoutComPayment>>; | ||
create(resource: CheckoutComPaymentCreate, options?: ResourcesConfig): Promise<CheckoutComPayment>; | ||
create(resource: CheckoutComPaymentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CheckoutComPayment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CheckoutComPayment>; | ||
update(resource: CheckoutComPaymentUpdate, options?: ResourcesConfig): Promise<CheckoutComPayment>; | ||
update(resource: CheckoutComPaymentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CheckoutComPayment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -49,0 +49,0 @@ isCheckoutComPayment(resource: any): resource is CheckoutComPayment; |
@@ -53,5 +53,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CouponCodesPromotionRule>>; | ||
create(resource: CouponCodesPromotionRuleCreate, options?: ResourcesConfig): Promise<CouponCodesPromotionRule>; | ||
create(resource: CouponCodesPromotionRuleCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CouponCodesPromotionRule>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CouponCodesPromotionRule>; | ||
update(resource: CouponCodesPromotionRuleUpdate, options?: ResourcesConfig): Promise<CouponCodesPromotionRule>; | ||
update(resource: CouponCodesPromotionRuleUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CouponCodesPromotionRule>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -58,0 +58,0 @@ isCouponCodesPromotionRule(resource: any): resource is CouponCodesPromotionRule; |
@@ -37,5 +37,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CouponRecipient>>; | ||
create(resource: CouponRecipientCreate, options?: ResourcesConfig): Promise<CouponRecipient>; | ||
create(resource: CouponRecipientCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CouponRecipient>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CouponRecipient>; | ||
update(resource: CouponRecipientUpdate, options?: ResourcesConfig): Promise<CouponRecipient>; | ||
update(resource: CouponRecipientUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CouponRecipient>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -42,0 +42,0 @@ isCouponRecipient(resource: any): resource is CouponRecipient; |
@@ -36,5 +36,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Coupon>>; | ||
create(resource: CouponCreate, options?: ResourcesConfig): Promise<Coupon>; | ||
create(resource: CouponCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Coupon>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Coupon>; | ||
update(resource: CouponUpdate, options?: ResourcesConfig): Promise<Coupon>; | ||
update(resource: CouponUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Coupon>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -41,0 +41,0 @@ isCoupon(resource: any): resource is Coupon; |
@@ -34,5 +34,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CustomerAddress>>; | ||
create(resource: CustomerAddressCreate, options?: ResourcesConfig): Promise<CustomerAddress>; | ||
create(resource: CustomerAddressCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerAddress>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerAddress>; | ||
update(resource: CustomerAddressUpdate, options?: ResourcesConfig): Promise<CustomerAddress>; | ||
update(resource: CustomerAddressUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerAddress>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -39,0 +39,0 @@ isCustomerAddress(resource: any): resource is CustomerAddress; |
@@ -28,5 +28,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CustomerGroup>>; | ||
create(resource: CustomerGroupCreate, options?: ResourcesConfig): Promise<CustomerGroup>; | ||
create(resource: CustomerGroupCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerGroup>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerGroup>; | ||
update(resource: CustomerGroupUpdate, options?: ResourcesConfig): Promise<CustomerGroup>; | ||
update(resource: CustomerGroupUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerGroup>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -33,0 +33,0 @@ isCustomerGroup(resource: any): resource is CustomerGroup; |
@@ -27,5 +27,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CustomerPasswordReset>>; | ||
create(resource: CustomerPasswordResetCreate, options?: ResourcesConfig): Promise<CustomerPasswordReset>; | ||
create(resource: CustomerPasswordResetCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerPasswordReset>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerPasswordReset>; | ||
update(resource: CustomerPasswordResetUpdate, options?: ResourcesConfig): Promise<CustomerPasswordReset>; | ||
update(resource: CustomerPasswordResetUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerPasswordReset>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -32,0 +32,0 @@ isCustomerPasswordReset(resource: any): resource is CustomerPasswordReset; |
@@ -60,5 +60,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CustomerPaymentSource>>; | ||
create(resource: CustomerPaymentSourceCreate, options?: ResourcesConfig): Promise<CustomerPaymentSource>; | ||
create(resource: CustomerPaymentSourceCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerPaymentSource>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerPaymentSource>; | ||
update(resource: CustomerPaymentSourceUpdate, options?: ResourcesConfig): Promise<CustomerPaymentSource>; | ||
update(resource: CustomerPaymentSourceUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerPaymentSource>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -65,0 +65,0 @@ isCustomerPaymentSource(resource: any): resource is CustomerPaymentSource; |
@@ -22,5 +22,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<CustomerSubscription>>; | ||
create(resource: CustomerSubscriptionCreate, options?: ResourcesConfig): Promise<CustomerSubscription>; | ||
create(resource: CustomerSubscriptionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerSubscription>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerSubscription>; | ||
update(resource: CustomerSubscriptionUpdate, options?: ResourcesConfig): Promise<CustomerSubscription>; | ||
update(resource: CustomerSubscriptionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<CustomerSubscription>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -27,0 +27,0 @@ isCustomerSubscription(resource: any): resource is CustomerSubscription; |
@@ -47,5 +47,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Customer>>; | ||
create(resource: CustomerCreate, options?: ResourcesConfig): Promise<Customer>; | ||
create(resource: CustomerCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Customer>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Customer>; | ||
update(resource: CustomerUpdate, options?: ResourcesConfig): Promise<Customer>; | ||
update(resource: CustomerUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Customer>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -52,0 +52,0 @@ isCustomer(resource: any): resource is Customer; |
@@ -43,5 +43,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<DeliveryLeadTime>>; | ||
create(resource: DeliveryLeadTimeCreate, options?: ResourcesConfig): Promise<DeliveryLeadTime>; | ||
create(resource: DeliveryLeadTimeCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<DeliveryLeadTime>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<DeliveryLeadTime>; | ||
update(resource: DeliveryLeadTimeUpdate, options?: ResourcesConfig): Promise<DeliveryLeadTime>; | ||
update(resource: DeliveryLeadTimeUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<DeliveryLeadTime>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -48,0 +48,0 @@ isDeliveryLeadTime(resource: any): resource is DeliveryLeadTime; |
@@ -39,5 +39,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ExternalGateway>>; | ||
create(resource: ExternalGatewayCreate, options?: ResourcesConfig): Promise<ExternalGateway>; | ||
create(resource: ExternalGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalGateway>; | ||
update(resource: ExternalGatewayUpdate, options?: ResourcesConfig): Promise<ExternalGateway>; | ||
update(resource: ExternalGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -44,0 +44,0 @@ isExternalGateway(resource: any): resource is ExternalGateway; |
@@ -33,5 +33,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ExternalPayment>>; | ||
create(resource: ExternalPaymentCreate, options?: ResourcesConfig): Promise<ExternalPayment>; | ||
create(resource: ExternalPaymentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalPayment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalPayment>; | ||
update(resource: ExternalPaymentUpdate, options?: ResourcesConfig): Promise<ExternalPayment>; | ||
update(resource: ExternalPaymentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalPayment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -38,0 +38,0 @@ isExternalPayment(resource: any): resource is ExternalPayment; |
@@ -73,5 +73,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ExternalPromotion>>; | ||
create(resource: ExternalPromotionCreate, options?: ResourcesConfig): Promise<ExternalPromotion>; | ||
create(resource: ExternalPromotionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalPromotion>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalPromotion>; | ||
update(resource: ExternalPromotionUpdate, options?: ResourcesConfig): Promise<ExternalPromotion>; | ||
update(resource: ExternalPromotionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalPromotion>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -78,0 +78,0 @@ isExternalPromotion(resource: any): resource is ExternalPromotion; |
@@ -36,5 +36,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ExternalTaxCalculator>>; | ||
create(resource: ExternalTaxCalculatorCreate, options?: ResourcesConfig): Promise<ExternalTaxCalculator>; | ||
create(resource: ExternalTaxCalculatorCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalTaxCalculator>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalTaxCalculator>; | ||
update(resource: ExternalTaxCalculatorUpdate, options?: ResourcesConfig): Promise<ExternalTaxCalculator>; | ||
update(resource: ExternalTaxCalculatorUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ExternalTaxCalculator>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -41,0 +41,0 @@ isExternalTaxCalculator(resource: any): resource is ExternalTaxCalculator; |
@@ -75,5 +75,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<FixedAmountPromotion>>; | ||
create(resource: FixedAmountPromotionCreate, options?: ResourcesConfig): Promise<FixedAmountPromotion>; | ||
create(resource: FixedAmountPromotionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FixedAmountPromotion>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FixedAmountPromotion>; | ||
update(resource: FixedAmountPromotionUpdate, options?: ResourcesConfig): Promise<FixedAmountPromotion>; | ||
update(resource: FixedAmountPromotionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FixedAmountPromotion>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -80,0 +80,0 @@ isFixedAmountPromotion(resource: any): resource is FixedAmountPromotion; |
@@ -84,5 +84,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<FixedPricePromotion>>; | ||
create(resource: FixedPricePromotionCreate, options?: ResourcesConfig): Promise<FixedPricePromotion>; | ||
create(resource: FixedPricePromotionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FixedPricePromotion>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FixedPricePromotion>; | ||
update(resource: FixedPricePromotionUpdate, options?: ResourcesConfig): Promise<FixedPricePromotion>; | ||
update(resource: FixedPricePromotionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FixedPricePromotion>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -89,0 +89,0 @@ isFixedPricePromotion(resource: any): resource is FixedPricePromotion; |
@@ -82,5 +82,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<FreeGiftPromotion>>; | ||
create(resource: FreeGiftPromotionCreate, options?: ResourcesConfig): Promise<FreeGiftPromotion>; | ||
create(resource: FreeGiftPromotionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FreeGiftPromotion>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FreeGiftPromotion>; | ||
update(resource: FreeGiftPromotionUpdate, options?: ResourcesConfig): Promise<FreeGiftPromotion>; | ||
update(resource: FreeGiftPromotionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FreeGiftPromotion>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -87,0 +87,0 @@ isFreeGiftPromotion(resource: any): resource is FreeGiftPromotion; |
@@ -70,5 +70,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<FreeShippingPromotion>>; | ||
create(resource: FreeShippingPromotionCreate, options?: ResourcesConfig): Promise<FreeShippingPromotion>; | ||
create(resource: FreeShippingPromotionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FreeShippingPromotion>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FreeShippingPromotion>; | ||
update(resource: FreeShippingPromotionUpdate, options?: ResourcesConfig): Promise<FreeShippingPromotion>; | ||
update(resource: FreeShippingPromotionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<FreeShippingPromotion>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -75,0 +75,0 @@ isFreeShippingPromotion(resource: any): resource is FreeShippingPromotion; |
@@ -37,5 +37,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<GiftCardRecipient>>; | ||
create(resource: GiftCardRecipientCreate, options?: ResourcesConfig): Promise<GiftCardRecipient>; | ||
create(resource: GiftCardRecipientCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GiftCardRecipient>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GiftCardRecipient>; | ||
update(resource: GiftCardRecipientUpdate, options?: ResourcesConfig): Promise<GiftCardRecipient>; | ||
update(resource: GiftCardRecipientUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GiftCardRecipient>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -42,0 +42,0 @@ isGiftCardRecipient(resource: any): resource is GiftCardRecipient; |
@@ -75,5 +75,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<GiftCard>>; | ||
create(resource: GiftCardCreate, options?: ResourcesConfig): Promise<GiftCard>; | ||
create(resource: GiftCardCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GiftCard>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GiftCard>; | ||
update(resource: GiftCardUpdate, options?: ResourcesConfig): Promise<GiftCard>; | ||
update(resource: GiftCardUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GiftCard>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -80,0 +80,0 @@ isGiftCard(resource: any): resource is GiftCard; |
@@ -28,5 +28,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<GoogleGeocoder>>; | ||
create(resource: GoogleGeocoderCreate, options?: ResourcesConfig): Promise<GoogleGeocoder>; | ||
create(resource: GoogleGeocoderCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GoogleGeocoder>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GoogleGeocoder>; | ||
update(resource: GoogleGeocoderUpdate, options?: ResourcesConfig): Promise<GoogleGeocoder>; | ||
update(resource: GoogleGeocoderUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<GoogleGeocoder>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -33,0 +33,0 @@ isGoogleGeocoder(resource: any): resource is GoogleGeocoder; |
@@ -36,3 +36,3 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Import>>; | ||
create(resource: ImportCreate, options?: ResourcesConfig): Promise<Import>; | ||
create(resource: ImportCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Import>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Import>; | ||
@@ -39,0 +39,0 @@ delete(id: string, options?: ResourcesConfig): Promise<void>; |
@@ -51,5 +51,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<InStockSubscription>>; | ||
create(resource: InStockSubscriptionCreate, options?: ResourcesConfig): Promise<InStockSubscription>; | ||
create(resource: InStockSubscriptionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InStockSubscription>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InStockSubscription>; | ||
update(resource: InStockSubscriptionUpdate, options?: ResourcesConfig): Promise<InStockSubscription>; | ||
update(resource: InStockSubscriptionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InStockSubscription>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -56,0 +56,0 @@ isInStockSubscription(resource: any): resource is InStockSubscription; |
@@ -34,5 +34,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<InventoryModel>>; | ||
create(resource: InventoryModelCreate, options?: ResourcesConfig): Promise<InventoryModel>; | ||
create(resource: InventoryModelCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryModel>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryModel>; | ||
update(resource: InventoryModelUpdate, options?: ResourcesConfig): Promise<InventoryModel>; | ||
update(resource: InventoryModelUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryModel>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -39,0 +39,0 @@ isInventoryModel(resource: any): resource is InventoryModel; |
@@ -36,5 +36,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<InventoryReturnLocation>>; | ||
create(resource: InventoryReturnLocationCreate, options?: ResourcesConfig): Promise<InventoryReturnLocation>; | ||
create(resource: InventoryReturnLocationCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryReturnLocation>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryReturnLocation>; | ||
update(resource: InventoryReturnLocationUpdate, options?: ResourcesConfig): Promise<InventoryReturnLocation>; | ||
update(resource: InventoryReturnLocationUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryReturnLocation>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -41,0 +41,0 @@ isInventoryReturnLocation(resource: any): resource is InventoryReturnLocation; |
@@ -39,5 +39,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<InventoryStockLocation>>; | ||
create(resource: InventoryStockLocationCreate, options?: ResourcesConfig): Promise<InventoryStockLocation>; | ||
create(resource: InventoryStockLocationCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryStockLocation>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryStockLocation>; | ||
update(resource: InventoryStockLocationUpdate, options?: ResourcesConfig): Promise<InventoryStockLocation>; | ||
update(resource: InventoryStockLocationUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<InventoryStockLocation>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -44,0 +44,0 @@ isInventoryStockLocation(resource: any): resource is InventoryStockLocation; |
@@ -50,5 +50,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<LineItemOption>>; | ||
create(resource: LineItemOptionCreate, options?: ResourcesConfig): Promise<LineItemOption>; | ||
create(resource: LineItemOptionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<LineItemOption>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<LineItemOption>; | ||
update(resource: LineItemOptionUpdate, options?: ResourcesConfig): Promise<LineItemOption>; | ||
update(resource: LineItemOptionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<LineItemOption>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -55,0 +55,0 @@ isLineItemOption(resource: any): resource is LineItemOption; |
@@ -116,5 +116,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<LineItem>>; | ||
create(resource: LineItemCreate, options?: ResourcesConfig): Promise<LineItem>; | ||
create(resource: LineItemCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<LineItem>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<LineItem>; | ||
update(resource: LineItemUpdate, options?: ResourcesConfig): Promise<LineItem>; | ||
update(resource: LineItemUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<LineItem>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -121,0 +121,0 @@ isLineItem(resource: any): resource is LineItem; |
@@ -27,5 +27,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ManualGateway>>; | ||
create(resource: ManualGatewayCreate, options?: ResourcesConfig): Promise<ManualGateway>; | ||
create(resource: ManualGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ManualGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ManualGateway>; | ||
update(resource: ManualGatewayUpdate, options?: ResourcesConfig): Promise<ManualGateway>; | ||
update(resource: ManualGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ManualGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -32,0 +32,0 @@ isManualGateway(resource: any): resource is ManualGateway; |
@@ -40,5 +40,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ManualTaxCalculator>>; | ||
create(resource: ManualTaxCalculatorCreate, options?: ResourcesConfig): Promise<ManualTaxCalculator>; | ||
create(resource: ManualTaxCalculatorCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ManualTaxCalculator>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ManualTaxCalculator>; | ||
update(resource: ManualTaxCalculatorUpdate, options?: ResourcesConfig): Promise<ManualTaxCalculator>; | ||
update(resource: ManualTaxCalculatorUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ManualTaxCalculator>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -45,0 +45,0 @@ isManualTaxCalculator(resource: any): resource is ManualTaxCalculator; |
@@ -70,5 +70,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Market>>; | ||
create(resource: MarketCreate, options?: ResourcesConfig): Promise<Market>; | ||
create(resource: MarketCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Market>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Market>; | ||
update(resource: MarketUpdate, options?: ResourcesConfig): Promise<Market>; | ||
update(resource: MarketUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Market>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -75,0 +75,0 @@ isMarket(resource: any): resource is Market; |
@@ -31,5 +31,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Merchant>>; | ||
create(resource: MerchantCreate, options?: ResourcesConfig): Promise<Merchant>; | ||
create(resource: MerchantCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Merchant>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Merchant>; | ||
update(resource: MerchantUpdate, options?: ResourcesConfig): Promise<Merchant>; | ||
update(resource: MerchantUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Merchant>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -36,0 +36,0 @@ isMerchant(resource: any): resource is Merchant; |
@@ -51,5 +51,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<OrderAmountPromotionRule>>; | ||
create(resource: OrderAmountPromotionRuleCreate, options?: ResourcesConfig): Promise<OrderAmountPromotionRule>; | ||
create(resource: OrderAmountPromotionRuleCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderAmountPromotionRule>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderAmountPromotionRule>; | ||
update(resource: OrderAmountPromotionRuleUpdate, options?: ResourcesConfig): Promise<OrderAmountPromotionRule>; | ||
update(resource: OrderAmountPromotionRuleUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderAmountPromotionRule>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -56,0 +56,0 @@ isOrderAmountPromotionRule(resource: any): resource is OrderAmountPromotionRule; |
@@ -38,3 +38,3 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<OrderCopy>>; | ||
create(resource: OrderCopyCreate, options?: ResourcesConfig): Promise<OrderCopy>; | ||
create(resource: OrderCopyCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderCopy>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderCopy>; | ||
@@ -41,0 +41,0 @@ delete(id: string, options?: ResourcesConfig): Promise<void>; |
@@ -57,5 +57,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<OrderSubscription>>; | ||
create(resource: OrderSubscriptionCreate, options?: ResourcesConfig): Promise<OrderSubscription>; | ||
create(resource: OrderSubscriptionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderSubscription>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderSubscription>; | ||
update(resource: OrderSubscriptionUpdate, options?: ResourcesConfig): Promise<OrderSubscription>; | ||
update(resource: OrderSubscriptionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<OrderSubscription>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -62,0 +62,0 @@ isOrderSubscription(resource: any): resource is OrderSubscription; |
@@ -246,5 +246,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Order>>; | ||
create(resource: OrderCreate, options?: ResourcesConfig): Promise<Order>; | ||
create(resource: OrderCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Order>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Order>; | ||
update(resource: OrderUpdate, options?: ResourcesConfig): Promise<Order>; | ||
update(resource: OrderUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Order>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -251,0 +251,0 @@ isOrder(resource: any): resource is Order; |
@@ -48,5 +48,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Package>>; | ||
create(resource: PackageCreate, options?: ResourcesConfig): Promise<Package>; | ||
create(resource: PackageCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Package>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Package>; | ||
update(resource: PackageUpdate, options?: ResourcesConfig): Promise<Package>; | ||
update(resource: PackageUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Package>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -53,0 +53,0 @@ isPackage(resource: any): resource is Package; |
@@ -42,5 +42,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ParcelLineItem>>; | ||
create(resource: ParcelLineItemCreate, options?: ResourcesConfig): Promise<ParcelLineItem>; | ||
create(resource: ParcelLineItemCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ParcelLineItem>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ParcelLineItem>; | ||
update(resource: ParcelLineItemUpdate, options?: ResourcesConfig): Promise<ParcelLineItem>; | ||
update(resource: ParcelLineItemUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ParcelLineItem>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -47,0 +47,0 @@ isParcelLineItem(resource: any): resource is ParcelLineItem; |
@@ -99,5 +99,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Parcel>>; | ||
create(resource: ParcelCreate, options?: ResourcesConfig): Promise<Parcel>; | ||
create(resource: ParcelCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Parcel>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Parcel>; | ||
update(resource: ParcelUpdate, options?: ResourcesConfig): Promise<Parcel>; | ||
update(resource: ParcelUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Parcel>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -104,0 +104,0 @@ isParcel(resource: any): resource is Parcel; |
@@ -24,5 +24,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<PaymentGateway>>; | ||
create(resource: PaymentGatewayCreate, options?: ResourcesConfig): Promise<PaymentGateway>; | ||
create(resource: PaymentGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaymentGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaymentGateway>; | ||
update(resource: PaymentGatewayUpdate, options?: ResourcesConfig): Promise<PaymentGateway>; | ||
update(resource: PaymentGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaymentGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -29,0 +29,0 @@ isPaymentGateway(resource: any): resource is PaymentGateway; |
@@ -45,5 +45,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<PaymentMethod>>; | ||
create(resource: PaymentMethodCreate, options?: ResourcesConfig): Promise<PaymentMethod>; | ||
create(resource: PaymentMethodCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaymentMethod>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaymentMethod>; | ||
update(resource: PaymentMethodUpdate, options?: ResourcesConfig): Promise<PaymentMethod>; | ||
update(resource: PaymentMethodUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaymentMethod>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -50,0 +50,0 @@ isPaymentMethod(resource: any): resource is PaymentMethod; |
@@ -32,5 +32,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<PaypalGateway>>; | ||
create(resource: PaypalGatewayCreate, options?: ResourcesConfig): Promise<PaypalGateway>; | ||
create(resource: PaypalGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaypalGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaypalGateway>; | ||
update(resource: PaypalGatewayUpdate, options?: ResourcesConfig): Promise<PaypalGateway>; | ||
update(resource: PaypalGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaypalGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -37,0 +37,0 @@ isPaypalGateway(resource: any): resource is PaypalGateway; |
@@ -40,5 +40,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<PaypalPayment>>; | ||
create(resource: PaypalPaymentCreate, options?: ResourcesConfig): Promise<PaypalPayment>; | ||
create(resource: PaypalPaymentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaypalPayment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaypalPayment>; | ||
update(resource: PaypalPaymentUpdate, options?: ResourcesConfig): Promise<PaypalPayment>; | ||
update(resource: PaypalPaymentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PaypalPayment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -45,0 +45,0 @@ isPaypalPayment(resource: any): resource is PaypalPayment; |
@@ -82,5 +82,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<PercentageDiscountPromotion>>; | ||
create(resource: PercentageDiscountPromotionCreate, options?: ResourcesConfig): Promise<PercentageDiscountPromotion>; | ||
create(resource: PercentageDiscountPromotionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PercentageDiscountPromotion>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PercentageDiscountPromotion>; | ||
update(resource: PercentageDiscountPromotionUpdate, options?: ResourcesConfig): Promise<PercentageDiscountPromotion>; | ||
update(resource: PercentageDiscountPromotionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PercentageDiscountPromotion>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -87,0 +87,0 @@ isPercentageDiscountPromotion(resource: any): resource is PercentageDiscountPromotion; |
@@ -32,5 +32,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<PriceList>>; | ||
create(resource: PriceListCreate, options?: ResourcesConfig): Promise<PriceList>; | ||
create(resource: PriceListCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PriceList>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PriceList>; | ||
update(resource: PriceListUpdate, options?: ResourcesConfig): Promise<PriceList>; | ||
update(resource: PriceListUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<PriceList>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -37,0 +37,0 @@ isPriceList(resource: any): resource is PriceList; |
@@ -49,5 +49,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Price>>; | ||
create(resource: PriceCreate, options?: ResourcesConfig): Promise<Price>; | ||
create(resource: PriceCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Price>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Price>; | ||
update(resource: PriceUpdate, options?: ResourcesConfig): Promise<Price>; | ||
update(resource: PriceUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Price>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -54,0 +54,0 @@ isPrice(resource: any): resource is Price; |
@@ -42,5 +42,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ReturnLineItem>>; | ||
create(resource: ReturnLineItemCreate, options?: ResourcesConfig): Promise<ReturnLineItem>; | ||
create(resource: ReturnLineItemCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ReturnLineItem>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ReturnLineItem>; | ||
update(resource: ReturnLineItemUpdate, options?: ResourcesConfig): Promise<ReturnLineItem>; | ||
update(resource: ReturnLineItemUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ReturnLineItem>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -47,0 +47,0 @@ isReturnLineItem(resource: any): resource is ReturnLineItem; |
@@ -60,5 +60,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Return>>; | ||
create(resource: ReturnCreate, options?: ResourcesConfig): Promise<Return>; | ||
create(resource: ReturnCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Return>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Return>; | ||
update(resource: ReturnUpdate, options?: ResourcesConfig): Promise<Return>; | ||
update(resource: ReturnUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Return>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -65,0 +65,0 @@ isReturn(resource: any): resource is Return; |
@@ -74,3 +74,3 @@ /** | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Shipment>; | ||
update(resource: ShipmentUpdate, options?: ResourcesConfig): Promise<Shipment>; | ||
update(resource: ShipmentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Shipment>; | ||
isShipment(resource: any): resource is Shipment; | ||
@@ -77,0 +77,0 @@ relationship(id: string | ResourceId): ShipmentRel; |
@@ -26,5 +26,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ShippingCategory>>; | ||
create(resource: ShippingCategoryCreate, options?: ResourcesConfig): Promise<ShippingCategory>; | ||
create(resource: ShippingCategoryCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingCategory>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingCategory>; | ||
update(resource: ShippingCategoryUpdate, options?: ResourcesConfig): Promise<ShippingCategory>; | ||
update(resource: ShippingCategoryUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingCategory>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -31,0 +31,0 @@ isShippingCategory(resource: any): resource is ShippingCategory; |
@@ -62,5 +62,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ShippingMethod>>; | ||
create(resource: ShippingMethodCreate, options?: ResourcesConfig): Promise<ShippingMethod>; | ||
create(resource: ShippingMethodCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingMethod>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingMethod>; | ||
update(resource: ShippingMethodUpdate, options?: ResourcesConfig): Promise<ShippingMethod>; | ||
update(resource: ShippingMethodUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingMethod>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -67,0 +67,0 @@ isShippingMethod(resource: any): resource is ShippingMethod; |
@@ -42,5 +42,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<ShippingZone>>; | ||
create(resource: ShippingZoneCreate, options?: ResourcesConfig): Promise<ShippingZone>; | ||
create(resource: ShippingZoneCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingZone>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingZone>; | ||
update(resource: ShippingZoneUpdate, options?: ResourcesConfig): Promise<ShippingZone>; | ||
update(resource: ShippingZoneUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<ShippingZone>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -47,0 +47,0 @@ isShippingZone(resource: any): resource is ShippingZone; |
@@ -37,5 +37,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<SkuListItem>>; | ||
create(resource: SkuListItemCreate, options?: ResourcesConfig): Promise<SkuListItem>; | ||
create(resource: SkuListItemCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuListItem>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuListItem>; | ||
update(resource: SkuListItemUpdate, options?: ResourcesConfig): Promise<SkuListItem>; | ||
update(resource: SkuListItemUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuListItem>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -42,0 +42,0 @@ isSkuListItem(resource: any): resource is SkuListItem; |
@@ -61,5 +61,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<SkuListPromotionRule>>; | ||
create(resource: SkuListPromotionRuleCreate, options?: ResourcesConfig): Promise<SkuListPromotionRule>; | ||
create(resource: SkuListPromotionRuleCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuListPromotionRule>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuListPromotionRule>; | ||
update(resource: SkuListPromotionRuleUpdate, options?: ResourcesConfig): Promise<SkuListPromotionRule>; | ||
update(resource: SkuListPromotionRuleUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuListPromotionRule>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -66,0 +66,0 @@ isSkuListPromotionRule(resource: any): resource is SkuListPromotionRule; |
@@ -41,5 +41,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<SkuList>>; | ||
create(resource: SkuListCreate, options?: ResourcesConfig): Promise<SkuList>; | ||
create(resource: SkuListCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuList>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuList>; | ||
update(resource: SkuListUpdate, options?: ResourcesConfig): Promise<SkuList>; | ||
update(resource: SkuListUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuList>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -46,0 +46,0 @@ isSkuList(resource: any): resource is SkuList; |
@@ -46,5 +46,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<SkuOption>>; | ||
create(resource: SkuOptionCreate, options?: ResourcesConfig): Promise<SkuOption>; | ||
create(resource: SkuOptionCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuOption>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuOption>; | ||
update(resource: SkuOptionUpdate, options?: ResourcesConfig): Promise<SkuOption>; | ||
update(resource: SkuOptionUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<SkuOption>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -51,0 +51,0 @@ isSkuOption(resource: any): resource is SkuOption; |
@@ -67,5 +67,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Sku>>; | ||
create(resource: SkuCreate, options?: ResourcesConfig): Promise<Sku>; | ||
create(resource: SkuCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Sku>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Sku>; | ||
update(resource: SkuUpdate, options?: ResourcesConfig): Promise<Sku>; | ||
update(resource: SkuUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Sku>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -72,0 +72,0 @@ isSku(resource: any): resource is Sku; |
@@ -41,5 +41,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<StockItem>>; | ||
create(resource: StockItemCreate, options?: ResourcesConfig): Promise<StockItem>; | ||
create(resource: StockItemCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockItem>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockItem>; | ||
update(resource: StockItemUpdate, options?: ResourcesConfig): Promise<StockItem>; | ||
update(resource: StockItemUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockItem>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -46,0 +46,0 @@ isStockItem(resource: any): resource is StockItem; |
@@ -46,5 +46,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<StockLocation>>; | ||
create(resource: StockLocationCreate, options?: ResourcesConfig): Promise<StockLocation>; | ||
create(resource: StockLocationCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockLocation>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockLocation>; | ||
update(resource: StockLocationUpdate, options?: ResourcesConfig): Promise<StockLocation>; | ||
update(resource: StockLocationUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockLocation>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -51,0 +51,0 @@ isStockLocation(resource: any): resource is StockLocation; |
@@ -61,5 +61,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<StockTransfer>>; | ||
create(resource: StockTransferCreate, options?: ResourcesConfig): Promise<StockTransfer>; | ||
create(resource: StockTransferCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockTransfer>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockTransfer>; | ||
update(resource: StockTransferUpdate, options?: ResourcesConfig): Promise<StockTransfer>; | ||
update(resource: StockTransferUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StockTransfer>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -66,0 +66,0 @@ isStockTransfer(resource: any): resource is StockTransfer; |
@@ -31,5 +31,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<StripeGateway>>; | ||
create(resource: StripeGatewayCreate, options?: ResourcesConfig): Promise<StripeGateway>; | ||
create(resource: StripeGatewayCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StripeGateway>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StripeGateway>; | ||
update(resource: StripeGatewayUpdate, options?: ResourcesConfig): Promise<StripeGateway>; | ||
update(resource: StripeGatewayUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StripeGateway>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -36,0 +36,0 @@ isStripeGateway(resource: any): resource is StripeGateway; |
@@ -35,5 +35,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<StripePayment>>; | ||
create(resource: StripePaymentCreate, options?: ResourcesConfig): Promise<StripePayment>; | ||
create(resource: StripePaymentCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StripePayment>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StripePayment>; | ||
update(resource: StripePaymentUpdate, options?: ResourcesConfig): Promise<StripePayment>; | ||
update(resource: StripePaymentUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<StripePayment>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -40,0 +40,0 @@ isStripePayment(resource: any): resource is StripePayment; |
@@ -52,5 +52,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<TaxCategory>>; | ||
create(resource: TaxCategoryCreate, options?: ResourcesConfig): Promise<TaxCategory>; | ||
create(resource: TaxCategoryCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxCategory>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxCategory>; | ||
update(resource: TaxCategoryUpdate, options?: ResourcesConfig): Promise<TaxCategory>; | ||
update(resource: TaxCategoryUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxCategory>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -57,0 +57,0 @@ isTaxCategory(resource: any): resource is TaxCategory; |
@@ -63,5 +63,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<TaxRule>>; | ||
create(resource: TaxRuleCreate, options?: ResourcesConfig): Promise<TaxRule>; | ||
create(resource: TaxRuleCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxRule>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxRule>; | ||
update(resource: TaxRuleUpdate, options?: ResourcesConfig): Promise<TaxRule>; | ||
update(resource: TaxRuleUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxRule>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -68,0 +68,0 @@ isTaxRule(resource: any): resource is TaxRule; |
@@ -35,5 +35,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<TaxjarAccount>>; | ||
create(resource: TaxjarAccountCreate, options?: ResourcesConfig): Promise<TaxjarAccount>; | ||
create(resource: TaxjarAccountCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxjarAccount>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxjarAccount>; | ||
update(resource: TaxjarAccountUpdate, options?: ResourcesConfig): Promise<TaxjarAccount>; | ||
update(resource: TaxjarAccountUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<TaxjarAccount>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -40,0 +40,0 @@ isTaxjarAccount(resource: any): resource is TaxjarAccount; |
@@ -36,5 +36,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<Webhook>>; | ||
create(resource: WebhookCreate, options?: ResourcesConfig): Promise<Webhook>; | ||
create(resource: WebhookCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Webhook>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Webhook>; | ||
update(resource: WebhookUpdate, options?: ResourcesConfig): Promise<Webhook>; | ||
update(resource: WebhookUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<Webhook>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -41,0 +41,0 @@ isWebhook(resource: any): resource is Webhook; |
@@ -26,5 +26,5 @@ /** | ||
list(params?: QueryParamsList, options?: ResourcesConfig): Promise<ListResponse<WireTransfer>>; | ||
create(resource: WireTransferCreate, options?: ResourcesConfig): Promise<WireTransfer>; | ||
create(resource: WireTransferCreate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<WireTransfer>; | ||
retrieve(id: string, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<WireTransfer>; | ||
update(resource: WireTransferUpdate, options?: ResourcesConfig): Promise<WireTransfer>; | ||
update(resource: WireTransferUpdate, params?: QueryParamsRetrieve, options?: ResourcesConfig): Promise<WireTransfer>; | ||
delete(id: string, options?: ResourcesConfig): Promise<void>; | ||
@@ -31,0 +31,0 @@ isWireTransfer(resource: any): resource is WireTransfer; |
{ | ||
"name": "@commercelayer/sdk", | ||
"version": "2.2.6-beta.3", | ||
"version": "2.3.0", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "types": "lib/index.d.ts", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
3141425
35172
2