@commercelayer/sdk 4.8.1 → 4.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/client.js +1 -1
- package/lib/cjs/commercelayer.d.ts +1 -1
- package/lib/cjs/commercelayer.js +1 -1
- package/lib/cjs/resource.js +1 -1
- package/lib/cjs/resources/klarna_payments.d.ts +1 -1
- package/lib/cjs/resources/orders.d.ts +1 -1
- package/lib/esm/client.js +1 -1
- package/lib/esm/commercelayer.d.ts +1 -1
- package/lib/esm/commercelayer.js +1 -1
- package/lib/esm/resource.js +1 -1
- package/lib/esm/resources/klarna_payments.d.ts +1 -1
- package/lib/esm/resources/orders.d.ts +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -11
package/lib/cjs/client.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";var __classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(t,e,r,s,a){if(s==="m")throw new TypeError("Private method is not writable");if(s==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?t!==e||!a:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return s==="a"?a.call(t,r):a?a.value=r:e.set(t,r),r},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(t,e,r,s){if(r==="a"&&!s)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?t!==e||!s:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return r==="m"?s:r==="a"?s.call(t):s?s.value:e.get(t)},__importDefault=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}},_ApiClient_accessToken,_ApiClient_client;Object.defineProperty(exports,"__esModule",{value:!0});const axios_1=__importDefault(require("axios")),error_1=require("./error"),config_1=__importDefault(require("./config")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("client"),baseURL=(t,e)=>`https://${t.toLowerCase()}.${e||config_1.default.default.domain}/api`,handleError=t=>{let e=new error_1.SdkError({message:t.message
|
1
|
+
"use strict";var __classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(t,e,r,s,a){if(s==="m")throw new TypeError("Private method is not writable");if(s==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?t!==e||!a:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return s==="a"?a.call(t,r):a?a.value=r:e.set(t,r),r},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(t,e,r,s){if(r==="a"&&!s)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?t!==e||!s:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return r==="m"?s:r==="a"?s.call(t):s?s.value:e.get(t)},__importDefault=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}},_ApiClient_accessToken,_ApiClient_client;Object.defineProperty(exports,"__esModule",{value:!0});const axios_1=__importDefault(require("axios")),error_1=require("./error"),config_1=__importDefault(require("./config")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("client"),baseURL=(t,e)=>`https://${t.toLowerCase()}.${e||config_1.default.default.domain}/api`,handleError=t=>{let e=new error_1.SdkError({message:t.message});if(axios_1.default.isAxiosError(t))if(t.response){const r=new error_1.ApiError(e);r.type=error_1.ErrorType.RESPONSE,r.status=t.response.status,r.code=String(r.status),r.errors=t.response.data.errors,e=r}else t.request?(e.type=error_1.ErrorType.REQUEST,e.request=t.request):e.type=error_1.ErrorType.CLIENT;else axios_1.default.isCancel(t)?e.type=error_1.ErrorType.CANCEL:e.source=t;throw e};class ApiClient{constructor(e){_ApiClient_accessToken.set(this,void 0),_ApiClient_client.set(this,void 0),debug("new client instance %O",e),this.baseUrl=baseURL(e.organization,e.domain),__classPrivateFieldSet(this,_ApiClient_accessToken,e.accessToken,"f");const r={timeout:e.timeout||config_1.default.client.timeout,proxy:e.proxy,httpAgent:e.httpAgent,httpsAgent:e.httpsAgent},s=Object.assign({baseURL:this.baseUrl,timeout:config_1.default.client.timeout,headers:{Accept:"application/vnd.api+json","Content-Type":"application/vnd.api+json",Authorization:"Bearer "+__classPrivateFieldGet(this,_ApiClient_accessToken,"f")}},r);debug("axios options: %O",s),__classPrivateFieldSet(this,_ApiClient_client,axios_1.default.create(s),"f"),this.interceptors=__classPrivateFieldGet(this,_ApiClient_client,"f").interceptors}static create(e){if(!e?.organization)throw new Error("Undefined 'organization' parameter");if(!e?.accessToken)throw new Error("Undefined 'accessToken' parameter");return new ApiClient(e)}config(e){debug("config %o",e);const r=__classPrivateFieldGet(this,_ApiClient_client,"f").defaults;e.timeout&&(r.timeout=e.timeout),e.proxy&&(r.proxy=e.proxy),e.httpAgent&&(r.httpAgent=e.httpAgent),e.httpsAgent&&(r.httpsAgent=e.httpsAgent),e.organization&&(this.baseUrl=baseURL(e.organization,e.domain)),e.accessToken&&(__classPrivateFieldSet(this,_ApiClient_accessToken,e.accessToken,"f"),r.headers.common.Authorization="Bearer "+__classPrivateFieldGet(this,_ApiClient_accessToken,"f"))}async request(e,r,s,a){debug("request %s %s, %O, %O",e,r,s||{},a||{});const c=s?{data:s}:void 0,u=r,p=a?.organization?baseURL(a.organization,a.domain):void 0,i=a?.accessToken||__classPrivateFieldGet(this,_ApiClient_accessToken,"f"),d=i?{Authorization:"Bearer "+i}:void 0,n=Object.assign({method:e,baseURL:p,url:u,data:c,headers:d},a);return debug("request params: %O",n),__classPrivateFieldGet(this,_ApiClient_client,"f").request(n).then(o=>o.data).catch(o=>handleError(o))}}_ApiClient_accessToken=new WeakMap,_ApiClient_client=new WeakMap,exports.default=ApiClient;
|
@@ -1 +1 @@
|
|
1
|
-
import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader():RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
|
1
|
+
import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;readonly openApiSchemaVersion="2.9.2";addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader():RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
|
package/lib/cjs/commercelayer.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,t,s,i){i===void 0&&(i=s);var n=Object.getOwnPropertyDescriptor(t,s);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[s]}}),Object.defineProperty(e,i,n)}:function(e,t,s,i){i===void 0&&(i=s),e[i]=t[s]}),__setModuleDefault=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var s in e)s!=="default"&&Object.prototype.hasOwnProperty.call(e,s)&&__createBinding(t,e,s);return __setModuleDefault(t,e),t},__classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(e,t,s,i,n){if(i==="m")throw new TypeError("Private method is not writable");if(i==="a"&&!n)throw new TypeError("Private accessor was defined without a setter");if(typeof t=="function"?e!==t||!n:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return i==="a"?n.call(e,s):n?n.value=s:t.set(e,s),s},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(e,t,s,i){if(s==="a"&&!i)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!i:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return s==="m"?i:s==="a"?i.call(e):i?i.value:t.get(e)},__importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},_CommerceLayerClient_adapter,_CommerceLayerClient_organization;Object.defineProperty(exports,"__esModule",{value:!0});const api=__importStar(require("./api")),static_1=require("./static"),resource_1=__importDefault(require("./resource")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("commercelayer"),OPEN_API_SCHEMA_VERSION="2.9.1";class CommerceLayerClient{constructor(t){_CommerceLayerClient_adapter.set(this,void 0),_CommerceLayerClient_organization.set(this,void 0),debug("new commercelayer instance %O",t),__classPrivateFieldSet(this,_CommerceLayerClient_adapter,new resource_1.default(t),"f"),__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f"),this.addresses=new api.Addresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adjustments=new api.Adjustments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_gateways=new api.AdyenGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_payments=new api.AdyenPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.application=new api.Applications(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.attachments=new api.Attachments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.authorizations=new api.Authorizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.avalara_accounts=new api.AvalaraAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.billing_info_validation_rules=new api.BillingInfoValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bing_geocoders=new api.BingGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_gateways=new api.BraintreeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_payments=new api.BraintreePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bundles=new api.Bundles(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.captures=new api.Captures(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.carrier_accounts=new api.CarrierAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_gateways=new api.CheckoutComGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_payments=new api.CheckoutComPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_codes_promotion_rules=new api.CouponCodesPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_recipients=new api.CouponRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupons=new api.Coupons(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_addresses=new api.CustomerAddresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_groups=new api.CustomerGroups(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_password_resets=new api.CustomerPasswordResets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_payment_sources=new api.CustomerPaymentSources(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_subscriptions=new api.CustomerSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customers=new api.Customers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.delivery_lead_times=new api.DeliveryLeadTimes(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.event_callbacks=new api.EventCallbacks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_gateways=new api.ExternalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_payments=new api.ExternalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_promotions=new api.ExternalPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_tax_calculators=new api.ExternalTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_amount_promotions=new api.FixedAmountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_price_promotions=new api.FixedPricePromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_gift_promotions=new api.FreeGiftPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_shipping_promotions=new api.FreeShippingPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.geocoders=new api.Geocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_card_recipients=new api.GiftCardRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_cards=new api.GiftCards(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.google_geocoders=new api.GoogleGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.imports=new api.Imports(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.in_stock_subscriptions=new api.InStockSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_models=new api.InventoryModels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_return_locations=new api.InventoryReturnLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_stock_locations=new api.InventoryStockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_gateways=new api.KlarnaGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_payments=new api.KlarnaPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_item_options=new api.LineItemOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_items=new api.LineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_gateways=new api.ManualGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_tax_calculators=new api.ManualTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.markets=new api.Markets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.merchants=new api.Merchants(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_amount_promotion_rules=new api.OrderAmountPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_copies=new api.OrderCopies(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_subscriptions=new api.OrderSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_validation_rules=new api.OrderValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.orders=new api.Orders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.organization=new api.Organizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.packages=new api.Packages(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcel_line_items=new api.ParcelLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcels=new api.Parcels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_gateways=new api.PaymentGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_methods=new api.PaymentMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_gateways=new api.PaypalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_payments=new api.PaypalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.percentage_discount_promotions=new api.PercentageDiscountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.price_lists=new api.PriceLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.prices=new api.Prices(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotion_rules=new api.PromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotions=new api.Promotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.refunds=new api.Refunds(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.return_line_items=new api.ReturnLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.returns=new api.Returns(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipments=new api.Shipments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_categories=new api.ShippingCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_methods=new api.ShippingMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_zones=new api.ShippingZones(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_items=new api.SkuListItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_promotion_rules=new api.SkuListPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_lists=new api.SkuLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_options=new api.SkuOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.skus=new api.Skus(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_items=new api.StockItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_line_items=new api.StockLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_locations=new api.StockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_transfers=new api.StockTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_gateways=new api.StripeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_payments=new api.StripePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_calculators=new api.TaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_categories=new api.TaxCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_rules=new api.TaxRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.taxjar_accounts=new api.TaxjarAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.transactions=new api.Transactions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.voids=new api.Voids(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.webhooks=new api.Webhooks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.wire_transfers=new api.WireTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f"))}static get openApiSchemaVersion(){return OPEN_API_SCHEMA_VERSION}get currentOrganization(){return __classPrivateFieldGet(this,_CommerceLayerClient_organization,"f")}localConfig(t){t.organization&&__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f")}config(t){debug("config %o",t),this.localConfig(t),__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").config(t)}resources(){return static_1.CommerceLayerStatic.resources()}isApiError(t){return static_1.CommerceLayerStatic.isApiError(t)}addRequestInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.request.use(t,s)}addResponseInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.response.use(t,s)}removeInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors[t].eject(s)}addRawResponseReader(){const t={id:void 0,rawResponse:void 0};function s(n){return t.rawResponse=n==null?void 0:n.data,n}const i=this.addResponseInterceptor(s);return t.id=i,t}removeRawResponseReader(t){const s=typeof t=="number"?t:t.id;if(s)return this.removeInterceptor("response",s)}}_CommerceLayerClient_adapter=new WeakMap,_CommerceLayerClient_organization=new WeakMap;const CommerceLayer=e=>new CommerceLayerClient(e);exports.default=CommerceLayer;
|
1
|
+
"use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,t,s,i){i===void 0&&(i=s);var n=Object.getOwnPropertyDescriptor(t,s);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[s]}}),Object.defineProperty(e,i,n)}:function(e,t,s,i){i===void 0&&(i=s),e[i]=t[s]}),__setModuleDefault=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var s in e)s!=="default"&&Object.prototype.hasOwnProperty.call(e,s)&&__createBinding(t,e,s);return __setModuleDefault(t,e),t},__classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(e,t,s,i,n){if(i==="m")throw new TypeError("Private method is not writable");if(i==="a"&&!n)throw new TypeError("Private accessor was defined without a setter");if(typeof t=="function"?e!==t||!n:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return i==="a"?n.call(e,s):n?n.value=s:t.set(e,s),s},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(e,t,s,i){if(s==="a"&&!i)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!i:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return s==="m"?i:s==="a"?i.call(e):i?i.value:t.get(e)},__importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},_CommerceLayerClient_adapter,_CommerceLayerClient_organization;Object.defineProperty(exports,"__esModule",{value:!0});const api=__importStar(require("./api")),static_1=require("./static"),resource_1=__importDefault(require("./resource")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("commercelayer"),OPEN_API_SCHEMA_VERSION="2.9.2";class CommerceLayerClient{constructor(t){this.openApiSchemaVersion=OPEN_API_SCHEMA_VERSION,_CommerceLayerClient_adapter.set(this,void 0),_CommerceLayerClient_organization.set(this,void 0),debug("new commercelayer instance %O",t),__classPrivateFieldSet(this,_CommerceLayerClient_adapter,new resource_1.default(t),"f"),__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f"),this.addresses=new api.Addresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adjustments=new api.Adjustments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_gateways=new api.AdyenGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_payments=new api.AdyenPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.application=new api.Applications(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.attachments=new api.Attachments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.authorizations=new api.Authorizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.avalara_accounts=new api.AvalaraAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.billing_info_validation_rules=new api.BillingInfoValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bing_geocoders=new api.BingGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_gateways=new api.BraintreeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_payments=new api.BraintreePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bundles=new api.Bundles(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.captures=new api.Captures(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.carrier_accounts=new api.CarrierAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_gateways=new api.CheckoutComGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_payments=new api.CheckoutComPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_codes_promotion_rules=new api.CouponCodesPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_recipients=new api.CouponRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupons=new api.Coupons(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_addresses=new api.CustomerAddresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_groups=new api.CustomerGroups(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_password_resets=new api.CustomerPasswordResets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_payment_sources=new api.CustomerPaymentSources(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_subscriptions=new api.CustomerSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customers=new api.Customers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.delivery_lead_times=new api.DeliveryLeadTimes(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.event_callbacks=new api.EventCallbacks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_gateways=new api.ExternalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_payments=new api.ExternalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_promotions=new api.ExternalPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_tax_calculators=new api.ExternalTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_amount_promotions=new api.FixedAmountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_price_promotions=new api.FixedPricePromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_gift_promotions=new api.FreeGiftPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_shipping_promotions=new api.FreeShippingPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.geocoders=new api.Geocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_card_recipients=new api.GiftCardRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_cards=new api.GiftCards(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.google_geocoders=new api.GoogleGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.imports=new api.Imports(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.in_stock_subscriptions=new api.InStockSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_models=new api.InventoryModels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_return_locations=new api.InventoryReturnLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_stock_locations=new api.InventoryStockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_gateways=new api.KlarnaGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_payments=new api.KlarnaPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_item_options=new api.LineItemOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_items=new api.LineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_gateways=new api.ManualGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_tax_calculators=new api.ManualTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.markets=new api.Markets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.merchants=new api.Merchants(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_amount_promotion_rules=new api.OrderAmountPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_copies=new api.OrderCopies(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_subscriptions=new api.OrderSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_validation_rules=new api.OrderValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.orders=new api.Orders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.organization=new api.Organizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.packages=new api.Packages(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcel_line_items=new api.ParcelLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcels=new api.Parcels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_gateways=new api.PaymentGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_methods=new api.PaymentMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_gateways=new api.PaypalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_payments=new api.PaypalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.percentage_discount_promotions=new api.PercentageDiscountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.price_lists=new api.PriceLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.prices=new api.Prices(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotion_rules=new api.PromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotions=new api.Promotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.refunds=new api.Refunds(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.return_line_items=new api.ReturnLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.returns=new api.Returns(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipments=new api.Shipments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_categories=new api.ShippingCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_methods=new api.ShippingMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_zones=new api.ShippingZones(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_items=new api.SkuListItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_promotion_rules=new api.SkuListPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_lists=new api.SkuLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_options=new api.SkuOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.skus=new api.Skus(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_items=new api.StockItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_line_items=new api.StockLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_locations=new api.StockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_transfers=new api.StockTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_gateways=new api.StripeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_payments=new api.StripePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_calculators=new api.TaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_categories=new api.TaxCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_rules=new api.TaxRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.taxjar_accounts=new api.TaxjarAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.transactions=new api.Transactions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.voids=new api.Voids(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.webhooks=new api.Webhooks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.wire_transfers=new api.WireTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f"))}static get openApiSchemaVersion(){return OPEN_API_SCHEMA_VERSION}get currentOrganization(){return __classPrivateFieldGet(this,_CommerceLayerClient_organization,"f")}localConfig(t){t.organization&&__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f")}config(t){debug("config %o",t),this.localConfig(t),t.organization||(t.organization=this.currentOrganization),__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").config(t)}resources(){return static_1.CommerceLayerStatic.resources()}isApiError(t){return static_1.CommerceLayerStatic.isApiError(t)}addRequestInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.request.use(t,s)}addResponseInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.response.use(t,s)}removeInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors[t].eject(s)}addRawResponseReader(){const t={id:void 0,rawResponse:void 0};function s(n){return t.rawResponse=n?.data,n}const i=this.addResponseInterceptor(s);return t.id=i,t}removeRawResponseReader(t){const s=typeof t=="number"?t:t?.id;if(s&&s>=0)return this.removeInterceptor("response",s)}}_CommerceLayerClient_adapter=new WeakMap,_CommerceLayerClient_organization=new WeakMap;const CommerceLayer=e=>new CommerceLayerClient(e);exports.default=CommerceLayer;
|
package/lib/cjs/resource.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";var __classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(s,e,r,t,a){if(t==="m")throw new TypeError("Private method is not writable");if(t==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?s!==e||!a:!e.has(s))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?a.call(s,r):a?a.value=r:e.set(s,r),r},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(s,e,r,t){if(r==="a"&&!t)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?s!==e||!t:!e.has(s))throw new TypeError("Cannot read private member from an object whose class did not declare it");return r==="m"?t:r==="a"?t.call(s):t?t.value:e.get(s)},__importDefault=this&&this.__importDefault||function(s){return s&&s.__esModule?s:{default:s}},_ResourceAdapter_client,_ResourceAdapter_config;Object.defineProperty(exports,"__esModule",{value:!0}),exports.ApiResource=void 0;const client_1=__importDefault(require("./client")),jsonapi_1=require("./jsonapi"),query_1=require("./query"),config_1=__importDefault(require("./config")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("resource");class ListResponse extends Array{constructor(e,r){super(...r||[]);this.meta=e}first(){return this.length?this[0]:void 0}last(){return this.length?this[this.length-1]:void 0}get(e){return this.length&&e>=0?this[e]:void 0}}class ResourceAdapter{constructor(e){_ResourceAdapter_client.set(this,void 0),_ResourceAdapter_config.set(this,{}),__classPrivateFieldSet(this,_ResourceAdapter_client,client_1.default.create(e),"f"),this.localConfig(e)}get interceptors(){return __classPrivateFieldGet(this,_ResourceAdapter_client,"f").interceptors}localConfig(e){}config(e){debug("config %o",e),this.localConfig(e),__classPrivateFieldGet(this,_ResourceAdapter_client,"f").config(e)}async singleton(e,r,t){debug("singleton: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);
|
1
|
+
"use strict";var __classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(s,e,r,t,a){if(t==="m")throw new TypeError("Private method is not writable");if(t==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?s!==e||!a:!e.has(s))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?a.call(s,r):a?a.value=r:e.set(s,r),r},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(s,e,r,t){if(r==="a"&&!t)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?s!==e||!t:!e.has(s))throw new TypeError("Cannot read private member from an object whose class did not declare it");return r==="m"?t:r==="a"?t.call(s):t?t.value:e.get(s)},__importDefault=this&&this.__importDefault||function(s){return s&&s.__esModule?s:{default:s}},_ResourceAdapter_client,_ResourceAdapter_config;Object.defineProperty(exports,"__esModule",{value:!0}),exports.ApiResource=void 0;const client_1=__importDefault(require("./client")),jsonapi_1=require("./jsonapi"),query_1=require("./query"),config_1=__importDefault(require("./config")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("resource");class ListResponse extends Array{constructor(e,r){super(...r||[]);this.meta=e}first(){return this.length?this[0]:void 0}last(){return this.length?this[this.length-1]:void 0}get(e){return this.length&&e>=0?this[e]:void 0}}class ResourceAdapter{constructor(e){_ResourceAdapter_client.set(this,void 0),_ResourceAdapter_config.set(this,{}),__classPrivateFieldSet(this,_ResourceAdapter_client,client_1.default.create(e),"f"),this.localConfig(e)}get interceptors(){return __classPrivateFieldGet(this,_ResourceAdapter_client,"f").interceptors}localConfig(e){}config(e){debug("config %o",e),this.localConfig(e),__classPrivateFieldGet(this,_ResourceAdapter_client,"f").config(e)}async singleton(e,r,t){debug("singleton: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);t?.params&&Object.assign(a,t?.params);const i=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:a}));return(0,jsonapi_1.denormalize)(i)}async retrieve(e,r,t){debug("retrieve: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);t?.params&&Object.assign(a,t?.params);const i=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",`${e.type}/${e.id}`,void 0,Object.assign(Object.assign({},t),{params:a}));return(0,jsonapi_1.denormalize)(i)}async list(e,r,t){var a,i;debug("list: %o, %O, %O",e,r||{},t||{});const n=(0,query_1.generateQueryStringParams)(r,e);t?.params&&Object.assign(n,t?.params);const o=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:n})),c=(0,jsonapi_1.denormalize)(o),u={pageCount:Number((a=o.meta)===null||a===void 0?void 0:a.page_count),recordCount:Number((i=o.meta)===null||i===void 0?void 0:i.record_count),currentPage:r?.pageNumber||config_1.default.default.pageNumber,recordsPerPage:r?.pageSize||config_1.default.default.pageSize};return new ListResponse(u,c)}async create(e,r,t){debug("create: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);t?.params&&Object.assign(a,t?.params);const i=(0,jsonapi_1.normalize)(e),n=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("post",e.type,i,Object.assign(Object.assign({},t),{params:a}));return(0,jsonapi_1.denormalize)(n)}async update(e,r,t){debug("update: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);t?.params&&Object.assign(a,t?.params);const i=(0,jsonapi_1.normalize)(e),n=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("patch",`${e.type}/${e.id}`,i,Object.assign(Object.assign({},t),{params:a}));return(0,jsonapi_1.denormalize)(n)}async delete(e,r){debug("delete: %o, %O",e,r||{}),await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("delete",`${e.type}/${e.id}`,void 0,r)}async fetch(e,r,t,a){var i,n;debug("fetch: %o, %O, %O",r,t||{},a||{});const o=(0,query_1.generateQueryStringParams)(t,e);a?.params&&Object.assign(o,a?.params);const c=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",r,void 0,Object.assign(Object.assign({},a),{params:o})),u=(0,jsonapi_1.denormalize)(c);if(Array.isArray(u)){const l=t,d={pageCount:Number((i=c.meta)===null||i===void 0?void 0:i.page_count),recordCount:Number((n=c.meta)===null||n===void 0?void 0:n.record_count),currentPage:l?.pageNumber||config_1.default.default.pageNumber,recordsPerPage:l?.pageSize||config_1.default.default.pageSize};return new ListResponse(d,u)}else return u}}_ResourceAdapter_client=new WeakMap,_ResourceAdapter_config=new WeakMap;class ApiResource{constructor(e){debug("new resource instance: %s",this.type()),this.resources=e}}exports.ApiResource=ApiResource,exports.default=ResourceAdapter;
|
@@ -1 +1 @@
|
|
1
|
-
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Order}from'./orders';import type{PaymentGateway}from'./payment_gateways';declare type KlarnaPaymentRel=ResourceRel&{type:typeof KlarnaPayments.TYPE;};declare type OrderRel=ResourceRel&{type:'orders';};interface KlarnaPayment extends Resource{session_id?:string;client_token?:string;payment_methods?:object[];auth_token?:string;order?:Order;payment_gateway?:PaymentGateway;}interface KlarnaPaymentCreate extends ResourceCreate{order:OrderRel;}interface KlarnaPaymentUpdate extends ResourceUpdate{auth_token?:string;_update?:boolean;order?:OrderRel;}declare class KlarnaPayments extends ApiResource{static readonly TYPE:'klarna_payments';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<KlarnaPayment>>;create(resource:KlarnaPaymentCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;update(resource:KlarnaPaymentUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;delete(id:string,options?:ResourcesConfig):Promise<void>;order(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;payment_gateway(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentGateway>;isKlarnaPayment(resource:any):resource is KlarnaPayment;relationship(id:string|ResourceId|null):KlarnaPaymentRel;type():string;}export default KlarnaPayments;export{KlarnaPayment,KlarnaPaymentCreate,KlarnaPaymentUpdate};
|
1
|
+
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Order}from'./orders';import type{PaymentGateway}from'./payment_gateways';declare type KlarnaPaymentRel=ResourceRel&{type:typeof KlarnaPayments.TYPE;};declare type OrderRel=ResourceRel&{type:'orders';};interface KlarnaPayment extends Resource{session_id?:string;client_token?:string;payment_methods?:object[];auth_token?:string;mismatched_amounts?:boolean;intent_amount_cents?:number;intent_amount_float?:number;formatted_intent_amount?:string;order?:Order;payment_gateway?:PaymentGateway;}interface KlarnaPaymentCreate extends ResourceCreate{order:OrderRel;}interface KlarnaPaymentUpdate extends ResourceUpdate{auth_token?:string;_update?:boolean;order?:OrderRel;}declare class KlarnaPayments extends ApiResource{static readonly TYPE:'klarna_payments';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<KlarnaPayment>>;create(resource:KlarnaPaymentCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;update(resource:KlarnaPaymentUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;delete(id:string,options?:ResourcesConfig):Promise<void>;order(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;payment_gateway(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentGateway>;isKlarnaPayment(resource:any):resource is KlarnaPayment;relationship(id:string|ResourceId|null):KlarnaPaymentRel;type():string;}export default KlarnaPayments;export{KlarnaPayment,KlarnaPaymentCreate,KlarnaPaymentUpdate};
|
@@ -1 +1 @@
|
|
1
|
-
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
|
1
|
+
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_nullify_payment_source?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
|
package/lib/esm/client.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
var d=this&&this.__classPrivateFieldSet||function(r,e,t,s,a){if(s==="m")throw new TypeError("Private method is not writable");if(s==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?r!==e||!a:!e.has(r))throw new TypeError("Cannot write private member to an object whose class did not declare it");return s==="a"?a.call(r,t):a?a.value=t:e.set(r,t),t},n=this&&this.__classPrivateFieldGet||function(r,e,t,s){if(t==="a"&&!s)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?r!==e||!s:!e.has(r))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?s:t==="a"?s.call(r):s?s.value:e.get(r)},o,i;import u from"axios";import{SdkError as T,ApiError as b,ErrorType as
|
1
|
+
var d=this&&this.__classPrivateFieldSet||function(r,e,t,s,a){if(s==="m")throw new TypeError("Private method is not writable");if(s==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?r!==e||!a:!e.has(r))throw new TypeError("Cannot write private member to an object whose class did not declare it");return s==="a"?a.call(r,t):a?a.value=t:e.set(r,t),t},n=this&&this.__classPrivateFieldGet||function(r,e,t,s){if(t==="a"&&!s)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?r!==e||!s:!e.has(r))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?s:t==="a"?s.call(r):s?s.value:e.get(r)},o,i;import u from"axios";import{SdkError as T,ApiError as b,ErrorType as p}from"./error";import f from"./config";import z from"./debug";const c=z("client"),m=(r,e)=>`https://${r.toLowerCase()}.${e||f.default.domain}/api`,k=r=>{let e=new T({message:r.message});if(u.isAxiosError(r))if(r.response){const t=new b(e);t.type=p.RESPONSE,t.status=r.response.status,t.code=String(t.status),t.errors=r.response.data.errors,e=t}else r.request?(e.type=p.REQUEST,e.request=r.request):e.type=p.CLIENT;else u.isCancel(r)?e.type=p.CANCEL:e.source=r;throw e};class l{constructor(e){o.set(this,void 0),i.set(this,void 0),c("new client instance %O",e),this.baseUrl=m(e.organization,e.domain),d(this,o,e.accessToken,"f");const t={timeout:e.timeout||f.client.timeout,proxy:e.proxy,httpAgent:e.httpAgent,httpsAgent:e.httpsAgent},s=Object.assign({baseURL:this.baseUrl,timeout:f.client.timeout,headers:{Accept:"application/vnd.api+json","Content-Type":"application/vnd.api+json",Authorization:"Bearer "+n(this,o,"f")}},t);c("axios options: %O",s),d(this,i,u.create(s),"f"),this.interceptors=n(this,i,"f").interceptors}static create(e){if(!e?.organization)throw new Error("Undefined 'organization' parameter");if(!e?.accessToken)throw new Error("Undefined 'accessToken' parameter");return new l(e)}config(e){c("config %o",e);const t=n(this,i,"f").defaults;e.timeout&&(t.timeout=e.timeout),e.proxy&&(t.proxy=e.proxy),e.httpAgent&&(t.httpAgent=e.httpAgent),e.httpsAgent&&(t.httpsAgent=e.httpsAgent),e.organization&&(this.baseUrl=m(e.organization,e.domain)),e.accessToken&&(d(this,o,e.accessToken,"f"),t.headers.common.Authorization="Bearer "+n(this,o,"f"))}async request(e,t,s,a){c("request %s %s, %O, %O",e,t,s||{},a||{});const y=s?{data:s}:void 0,v=t,A=a?.organization?m(a.organization,a.domain):void 0,w=a?.accessToken||n(this,o,"f"),E=w?{Authorization:"Bearer "+w}:void 0,g=Object.assign({method:e,baseURL:A,url:v,data:y,headers:E},a);return c("request params: %O",g),n(this,i,"f").request(g).then(h=>h.data).catch(h=>k(h))}}o=new WeakMap,i=new WeakMap;export default l;
|
@@ -1 +1 @@
|
|
1
|
-
import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader():RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
|
1
|
+
import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;readonly openApiSchemaVersion="2.9.2";addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader():RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
|
package/lib/esm/commercelayer.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
var c=this&&this.__classPrivateFieldSet||function(o,i,n,r,a){if(r==="m")throw new TypeError("Private method is not writable");if(r==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof i=="function"?o!==i||!a:!i.has(o))throw new TypeError("Cannot write private member to an object whose class did not declare it");return r==="a"?a.call(o,n):a?a.value=n:i.set(o,n),n},s=this&&this.__classPrivateFieldGet||function(o,i,n,r){if(n==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof i=="function"?o!==i||!r:!i.has(o))throw new TypeError("Cannot read private member from an object whose class did not declare it");return n==="m"?r:n==="a"?r.call(o):r?r.value:i.get(o)},t,h;import*as e from"./api";import{CommerceLayerStatic as f}from"./static";import
|
1
|
+
var c=this&&this.__classPrivateFieldSet||function(o,i,n,r,a){if(r==="m")throw new TypeError("Private method is not writable");if(r==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof i=="function"?o!==i||!a:!i.has(o))throw new TypeError("Cannot write private member to an object whose class did not declare it");return r==="a"?a.call(o,n):a?a.value=n:i.set(o,n),n},s=this&&this.__classPrivateFieldGet||function(o,i,n,r){if(n==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof i=="function"?o!==i||!r:!i.has(o))throw new TypeError("Cannot read private member from an object whose class did not declare it");return n==="m"?r:n==="a"?r.call(o):r?r.value:i.get(o)},t,h;import*as e from"./api";import{CommerceLayerStatic as f}from"./static";import u from"./resource";import m from"./debug";const w=m("commercelayer"),p="2.9.2";class l{constructor(i){this.openApiSchemaVersion=p,t.set(this,void 0),h.set(this,void 0),w("new commercelayer instance %O",i),c(this,t,new u(i),"f"),c(this,h,i.organization,"f"),this.addresses=new e.Addresses(s(this,t,"f")),this.adjustments=new e.Adjustments(s(this,t,"f")),this.adyen_gateways=new e.AdyenGateways(s(this,t,"f")),this.adyen_payments=new e.AdyenPayments(s(this,t,"f")),this.application=new e.Applications(s(this,t,"f")),this.attachments=new e.Attachments(s(this,t,"f")),this.authorizations=new e.Authorizations(s(this,t,"f")),this.avalara_accounts=new e.AvalaraAccounts(s(this,t,"f")),this.billing_info_validation_rules=new e.BillingInfoValidationRules(s(this,t,"f")),this.bing_geocoders=new e.BingGeocoders(s(this,t,"f")),this.braintree_gateways=new e.BraintreeGateways(s(this,t,"f")),this.braintree_payments=new e.BraintreePayments(s(this,t,"f")),this.bundles=new e.Bundles(s(this,t,"f")),this.captures=new e.Captures(s(this,t,"f")),this.carrier_accounts=new e.CarrierAccounts(s(this,t,"f")),this.checkout_com_gateways=new e.CheckoutComGateways(s(this,t,"f")),this.checkout_com_payments=new e.CheckoutComPayments(s(this,t,"f")),this.coupon_codes_promotion_rules=new e.CouponCodesPromotionRules(s(this,t,"f")),this.coupon_recipients=new e.CouponRecipients(s(this,t,"f")),this.coupons=new e.Coupons(s(this,t,"f")),this.customer_addresses=new e.CustomerAddresses(s(this,t,"f")),this.customer_groups=new e.CustomerGroups(s(this,t,"f")),this.customer_password_resets=new e.CustomerPasswordResets(s(this,t,"f")),this.customer_payment_sources=new e.CustomerPaymentSources(s(this,t,"f")),this.customer_subscriptions=new e.CustomerSubscriptions(s(this,t,"f")),this.customers=new e.Customers(s(this,t,"f")),this.delivery_lead_times=new e.DeliveryLeadTimes(s(this,t,"f")),this.event_callbacks=new e.EventCallbacks(s(this,t,"f")),this.external_gateways=new e.ExternalGateways(s(this,t,"f")),this.external_payments=new e.ExternalPayments(s(this,t,"f")),this.external_promotions=new e.ExternalPromotions(s(this,t,"f")),this.external_tax_calculators=new e.ExternalTaxCalculators(s(this,t,"f")),this.fixed_amount_promotions=new e.FixedAmountPromotions(s(this,t,"f")),this.fixed_price_promotions=new e.FixedPricePromotions(s(this,t,"f")),this.free_gift_promotions=new e.FreeGiftPromotions(s(this,t,"f")),this.free_shipping_promotions=new e.FreeShippingPromotions(s(this,t,"f")),this.geocoders=new e.Geocoders(s(this,t,"f")),this.gift_card_recipients=new e.GiftCardRecipients(s(this,t,"f")),this.gift_cards=new e.GiftCards(s(this,t,"f")),this.google_geocoders=new e.GoogleGeocoders(s(this,t,"f")),this.imports=new e.Imports(s(this,t,"f")),this.in_stock_subscriptions=new e.InStockSubscriptions(s(this,t,"f")),this.inventory_models=new e.InventoryModels(s(this,t,"f")),this.inventory_return_locations=new e.InventoryReturnLocations(s(this,t,"f")),this.inventory_stock_locations=new e.InventoryStockLocations(s(this,t,"f")),this.klarna_gateways=new e.KlarnaGateways(s(this,t,"f")),this.klarna_payments=new e.KlarnaPayments(s(this,t,"f")),this.line_item_options=new e.LineItemOptions(s(this,t,"f")),this.line_items=new e.LineItems(s(this,t,"f")),this.manual_gateways=new e.ManualGateways(s(this,t,"f")),this.manual_tax_calculators=new e.ManualTaxCalculators(s(this,t,"f")),this.markets=new e.Markets(s(this,t,"f")),this.merchants=new e.Merchants(s(this,t,"f")),this.order_amount_promotion_rules=new e.OrderAmountPromotionRules(s(this,t,"f")),this.order_copies=new e.OrderCopies(s(this,t,"f")),this.order_subscriptions=new e.OrderSubscriptions(s(this,t,"f")),this.order_validation_rules=new e.OrderValidationRules(s(this,t,"f")),this.orders=new e.Orders(s(this,t,"f")),this.organization=new e.Organizations(s(this,t,"f")),this.packages=new e.Packages(s(this,t,"f")),this.parcel_line_items=new e.ParcelLineItems(s(this,t,"f")),this.parcels=new e.Parcels(s(this,t,"f")),this.payment_gateways=new e.PaymentGateways(s(this,t,"f")),this.payment_methods=new e.PaymentMethods(s(this,t,"f")),this.paypal_gateways=new e.PaypalGateways(s(this,t,"f")),this.paypal_payments=new e.PaypalPayments(s(this,t,"f")),this.percentage_discount_promotions=new e.PercentageDiscountPromotions(s(this,t,"f")),this.price_lists=new e.PriceLists(s(this,t,"f")),this.prices=new e.Prices(s(this,t,"f")),this.promotion_rules=new e.PromotionRules(s(this,t,"f")),this.promotions=new e.Promotions(s(this,t,"f")),this.refunds=new e.Refunds(s(this,t,"f")),this.return_line_items=new e.ReturnLineItems(s(this,t,"f")),this.returns=new e.Returns(s(this,t,"f")),this.shipments=new e.Shipments(s(this,t,"f")),this.shipping_categories=new e.ShippingCategories(s(this,t,"f")),this.shipping_methods=new e.ShippingMethods(s(this,t,"f")),this.shipping_zones=new e.ShippingZones(s(this,t,"f")),this.sku_list_items=new e.SkuListItems(s(this,t,"f")),this.sku_list_promotion_rules=new e.SkuListPromotionRules(s(this,t,"f")),this.sku_lists=new e.SkuLists(s(this,t,"f")),this.sku_options=new e.SkuOptions(s(this,t,"f")),this.skus=new e.Skus(s(this,t,"f")),this.stock_items=new e.StockItems(s(this,t,"f")),this.stock_line_items=new e.StockLineItems(s(this,t,"f")),this.stock_locations=new e.StockLocations(s(this,t,"f")),this.stock_transfers=new e.StockTransfers(s(this,t,"f")),this.stripe_gateways=new e.StripeGateways(s(this,t,"f")),this.stripe_payments=new e.StripePayments(s(this,t,"f")),this.tax_calculators=new e.TaxCalculators(s(this,t,"f")),this.tax_categories=new e.TaxCategories(s(this,t,"f")),this.tax_rules=new e.TaxRules(s(this,t,"f")),this.taxjar_accounts=new e.TaxjarAccounts(s(this,t,"f")),this.transactions=new e.Transactions(s(this,t,"f")),this.voids=new e.Voids(s(this,t,"f")),this.webhooks=new e.Webhooks(s(this,t,"f")),this.wire_transfers=new e.WireTransfers(s(this,t,"f"))}static get openApiSchemaVersion(){return p}get currentOrganization(){return s(this,h,"f")}localConfig(i){i.organization&&c(this,h,i.organization,"f")}config(i){w("config %o",i),this.localConfig(i),i.organization||(i.organization=this.currentOrganization),s(this,t,"f").config(i)}resources(){return f.resources()}isApiError(i){return f.isApiError(i)}addRequestInterceptor(i,n){return s(this,t,"f").interceptors.request.use(i,n)}addResponseInterceptor(i,n){return s(this,t,"f").interceptors.response.use(i,n)}removeInterceptor(i,n){return s(this,t,"f").interceptors[i].eject(n)}addRawResponseReader(){const i={id:void 0,rawResponse:void 0};function n(a){return i.rawResponse=a?.data,a}const r=this.addResponseInterceptor(n);return i.id=r,i}removeRawResponseReader(i){const n=typeof i=="number"?i:i?.id;if(n&&n>=0)return this.removeInterceptor("response",n)}}t=new WeakMap,h=new WeakMap;const _=o=>new l(o);export default _;
|
package/lib/esm/resource.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
var y=this&&this.__classPrivateFieldSet||function(
|
1
|
+
var y=this&&this.__classPrivateFieldSet||function(i,e,a,t,s){if(t==="m")throw new TypeError("Private method is not writable");if(t==="a"&&!s)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?i!==e||!s:!e.has(i))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?s.call(i,a):s?s.value=a:e.set(i,a),a},c=this&&this.__classPrivateFieldGet||function(i,e,a,t){if(a==="a"&&!t)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?i!==e||!t:!e.has(i))throw new TypeError("Cannot read private member from an object whose class did not declare it");return a==="m"?t:a==="a"?t.call(i):t?t.value:e.get(i)},o,b;import j from"./client";import{denormalize as g,normalize as v}from"./jsonapi";import{generateQueryStringParams as d}from"./query";import h from"./config";import P from"./debug";const u=P("resource");class O extends Array{constructor(e,a){super(...a||[]);this.meta=e}first(){return this.length?this[0]:void 0}last(){return this.length?this[this.length-1]:void 0}get(e){return this.length&&e>=0?this[e]:void 0}}class C{constructor(e){o.set(this,void 0),b.set(this,{}),y(this,o,j.create(e),"f"),this.localConfig(e)}get interceptors(){return c(this,o,"f").interceptors}localConfig(e){}config(e){u("config %o",e),this.localConfig(e),c(this,o,"f").config(e)}async singleton(e,a,t){u("singleton: %o, %O, %O",e,a||{},t||{});const s=d(a,e);t?.params&&Object.assign(s,t?.params);const r=await c(this,o,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:s}));return g(r)}async retrieve(e,a,t){u("retrieve: %o, %O, %O",e,a||{},t||{});const s=d(a,e);t?.params&&Object.assign(s,t?.params);const r=await c(this,o,"f").request("get",`${e.type}/${e.id}`,void 0,Object.assign(Object.assign({},t),{params:s}));return g(r)}async list(e,a,t){var s,r;u("list: %o, %O, %O",e,a||{},t||{});const n=d(a,e);t?.params&&Object.assign(n,t?.params);const p=await c(this,o,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:n})),l=g(p),m={pageCount:Number((s=p.meta)===null||s===void 0?void 0:s.page_count),recordCount:Number((r=p.meta)===null||r===void 0?void 0:r.record_count),currentPage:a?.pageNumber||h.default.pageNumber,recordsPerPage:a?.pageSize||h.default.pageSize};return new O(m,l)}async create(e,a,t){u("create: %o, %O, %O",e,a||{},t||{});const s=d(a,e);t?.params&&Object.assign(s,t?.params);const r=v(e),n=await c(this,o,"f").request("post",e.type,r,Object.assign(Object.assign({},t),{params:s}));return g(n)}async update(e,a,t){u("update: %o, %O, %O",e,a||{},t||{});const s=d(a,e);t?.params&&Object.assign(s,t?.params);const r=v(e),n=await c(this,o,"f").request("patch",`${e.type}/${e.id}`,r,Object.assign(Object.assign({},t),{params:s}));return g(n)}async delete(e,a){u("delete: %o, %O",e,a||{}),await c(this,o,"f").request("delete",`${e.type}/${e.id}`,void 0,a)}async fetch(e,a,t,s){var r,n;u("fetch: %o, %O, %O",a,t||{},s||{});const p=d(t,e);s?.params&&Object.assign(p,s?.params);const l=await c(this,o,"f").request("get",a,void 0,Object.assign(Object.assign({},s),{params:p})),m=g(l);if(Array.isArray(m)){const f=t,w={pageCount:Number((r=l.meta)===null||r===void 0?void 0:r.page_count),recordCount:Number((n=l.meta)===null||n===void 0?void 0:n.record_count),currentPage:f?.pageNumber||h.default.pageNumber,recordsPerPage:f?.pageSize||h.default.pageSize};return new O(w,m)}else return m}}o=new WeakMap,b=new WeakMap;class _{constructor(e){u("new resource instance: %s",this.type()),this.resources=e}}export default C;export{_ as ApiResource};
|
@@ -1 +1 @@
|
|
1
|
-
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Order}from'./orders';import type{PaymentGateway}from'./payment_gateways';declare type KlarnaPaymentRel=ResourceRel&{type:typeof KlarnaPayments.TYPE;};declare type OrderRel=ResourceRel&{type:'orders';};interface KlarnaPayment extends Resource{session_id?:string;client_token?:string;payment_methods?:object[];auth_token?:string;order?:Order;payment_gateway?:PaymentGateway;}interface KlarnaPaymentCreate extends ResourceCreate{order:OrderRel;}interface KlarnaPaymentUpdate extends ResourceUpdate{auth_token?:string;_update?:boolean;order?:OrderRel;}declare class KlarnaPayments extends ApiResource{static readonly TYPE:'klarna_payments';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<KlarnaPayment>>;create(resource:KlarnaPaymentCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;update(resource:KlarnaPaymentUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;delete(id:string,options?:ResourcesConfig):Promise<void>;order(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;payment_gateway(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentGateway>;isKlarnaPayment(resource:any):resource is KlarnaPayment;relationship(id:string|ResourceId|null):KlarnaPaymentRel;type():string;}export default KlarnaPayments;export{KlarnaPayment,KlarnaPaymentCreate,KlarnaPaymentUpdate};
|
1
|
+
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Order}from'./orders';import type{PaymentGateway}from'./payment_gateways';declare type KlarnaPaymentRel=ResourceRel&{type:typeof KlarnaPayments.TYPE;};declare type OrderRel=ResourceRel&{type:'orders';};interface KlarnaPayment extends Resource{session_id?:string;client_token?:string;payment_methods?:object[];auth_token?:string;mismatched_amounts?:boolean;intent_amount_cents?:number;intent_amount_float?:number;formatted_intent_amount?:string;order?:Order;payment_gateway?:PaymentGateway;}interface KlarnaPaymentCreate extends ResourceCreate{order:OrderRel;}interface KlarnaPaymentUpdate extends ResourceUpdate{auth_token?:string;_update?:boolean;order?:OrderRel;}declare class KlarnaPayments extends ApiResource{static readonly TYPE:'klarna_payments';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<KlarnaPayment>>;create(resource:KlarnaPaymentCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;update(resource:KlarnaPaymentUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<KlarnaPayment>;delete(id:string,options?:ResourcesConfig):Promise<void>;order(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;payment_gateway(klarnaPaymentId:string|KlarnaPayment,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentGateway>;isKlarnaPayment(resource:any):resource is KlarnaPayment;relationship(id:string|ResourceId|null):KlarnaPaymentRel;type():string;}export default KlarnaPayments;export{KlarnaPayment,KlarnaPaymentCreate,KlarnaPaymentUpdate};
|
@@ -1 +1 @@
|
|
1
|
-
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
|
1
|
+
import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_nullify_payment_source?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
|
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","df1fbdd6bb697b9257cd772538de95e480074dea26505ef09149de2d76cacf5c","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","87c6cfd65f30c9a15c90185db55923a37e174e7fdfce615cbda822025febc548","f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","4c86c227471809af11204fbb725e42b31441e75b2807b005188556e00abac4a5","253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","808a97e3a24150cf90f4f6e034a0dc7526177a3942250ebf949bd54a960ba2e0","4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","c6042f61b06f3654983a943f4bd6bdd308d8e6086589f5d081ca9b6b3aaa78b7","1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","7f045f2211f90c0f6066eb317ba15577bd977805063d7fb59f91ad71d5133d79","166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","87f7926f3d2c8bb668dbb08e4374b419a05ab0af6d85668c8e53feebd2a59fa8","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","6b937a8b59b6ff4fdad8dda375444d9e751bd812095655cd6c438c2cef2dd71c","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":5,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[159,210],[210],[159,160,161,162,163,210],[159,161,210],[165,210],[183,210,217],[210,219],[210,220],[210,225,230],[210,233,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,236,237,238,239,240,241,242,243,244,245],[210,234,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,235,237,238,239,240,241,242,243,244,245],[210,233,234,235,236,238,239,240,241,242,243,244,245],[210,233,234,235,236,237,239,240,241,242,243,244,245],[210,233,234,235,236,237,238,240,241,242,243,244,245],[210,233,234,235,236,237,238,239,241,242,243,244,245],[210,233,234,235,236,237,238,239,240,242,243,244,245],[210,233,234,235,236,237,238,239,240,241,243,244,245],[210,233,234,235,236,237,238,239,240,241,242,244,245],[210,233,234,235,236,237,238,239,240,241,242,243,245],[210,233,234,235,236,237,238,239,240,241,242,243,244],[167,210],[170,210],[171,176,210],[172,182,183,190,199,209,210],[172,173,182,190,210],[174,210],[175,176,183,191,210],[176,199,206,210],[177,179,182,190,210],[178,210],[179,180,210],[181,182,210],[182,210],[182,183,184,199,209,210],[182,183,184,199,210],[185,190,199,209,210],[182,183,185,186,190,199,206,209,210],[185,187,199,206,209,210],[167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],[182,188,210],[189,209,210],[179,182,190,199,210],[191,210],[192,210],[170,193,210],[194,208,210,214],[195,210],[196,210],[182,197,210],[197,198,210,212],[182,199,200,201,210],[199,201,210],[199,200,210],[202,210],[203,210],[182,204,205,210],[204,205,210],[176,190,199,206,210],[207,210],[190,208,210],[171,185,196,209,210],[176,210],[199,210,211],[210,212],[210,213],[171,176,182,184,193,199,209,210,212,214],[199,210,215],[210,254],[210,223,226],[210,223,226,227,228],[210,225],[210,222,229],[50,210],[210,224],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,210],[44,45,46,47,48,185,187,210],[45,46,48,55,155,157,210],[155,157,210],[45,46,54,55,56,153,210],[44,210],[48,50,51,52,155,210],[48,155,210],[46,47,48,49,53,54,154,157,210],[54,119,155,210],[54,155,210],[54,67,132,155,210],[54,66,103,155,210],[54,58,59,60,62,64,90,91,92,97,98,103,104,105,106,107,108,110,111,113,114,115,118,119,120,121,127,128,130,131,132,155,210],[54,100,101,103,155,210],[54,127,129,131,155,210],[54,131,155,210],[54,129,155,156,210],[54,68,132,155,210],[54,115,117,129,131,155,210],[54,99,102,103,155,210],[54,129,131,155,210],[54,69,132,155,210],[54,79,80,81,83,85,87,89,155,210],[54,98,129,155,210],[54,82,155,210],[54,98,155,156,210],[54,98,129,131,155,210],[54,98,155,210],[54,67,68,69,70,71,72,73,74,98,155,210],[54,64,65,75,76,78,97,103,129,155,210],[54,106,113,129,155,210],[54,140,155,210],[54,70,132,155,210],[54,66,75,103,155,210],[54,82,84,86,88,129,131,155,210],[54,82,84,86,88,115,117,129,131,155,210],[54,90,129,131,155,210],[54,98,115,131,155,210],[54,61,63,129,155,210],[54,62,113,155,210],[54,71,132,155,210],[54,92,95,155,210],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,210],[54,132,155,210],[54,124,127,129,131,155,210],[54,59,62,64,128,129,130,155,210],[54,79,80,83,85,87,89,155,210],[54,78,103,155,210],[54,77,98,103,131,155,210],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,210],[54,110,113,129,155,210],[54,94,110,155,210],[54,108,109,111,129,155,210],[54,66,129,131,155,210],[54,72,132,155,210],[54,60,129,155,210],[54,59,115,129,155,210],[54,100,103,155,210],[54,95,97,155,210],[54,96,98,103,113,129,155,156,210],[54,58,94,103,105,106,107,110,112,113,129,155,156,210],[54,115,129,155,210],[54,58,104,105,129,131,155,210],[54,129,155,210],[54,115,117,155,210],[54,79,80,83,85,87,89,115,117,155,210],[54,115,116,118,155,210],[54,58,60,92,105,114,129,155,210],[54,113,115,129,155,210],[54,95,111,114,155,210],[54,61,63,112,114,129,155,156,210],[54,95,111,113,115,155,210],[54,73,132,155,210],[54,115,122,123,125,126,129,155,210],[54,125,155,210],[54,103,155,210],[54,102,103,155,210],[54,141,155,210],[45,56,157,210]],"referencedMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"exportedModulesMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"semanticDiagnosticsPerFile":[161,159,164,160,162,163,166,218,219,220,221,231,232,234,235,233,236,237,238,239,240,241,242,243,244,245,246,247,165,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,169,216,185,186,187,217,188,189,190,191,192,193,194,195,196,197,198,199,201,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,248,249,250,251,252,253,254,255,44,223,227,229,228,226,230,222,50,51,225,224,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,157,49,56,52,47,48,45,154,46,53,153,54,155,156,57,133,67,134,129,102,122,120,135,136,68,118,100,107,137,69,82,138,81,65,64,139,75,76,98,105,141,142,70,89,126,83,80,79,85,119,90,91,143,144,145,62,61,63,146,71,93,95,147,125,131,130,86,77,78,148,103,149,108,109,110,66,132,150,72,87,59,60,88,121,99,96,97,111,58,106,104,116,84,117,92,115,114,94,113,112,151,73,128,127,124,123,152,101,140,74,55,158]},"version":"4.6.2"}
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","7fba8afbe022b3ac0d28a7475054fd49b082789c62972d559e9a867b00cd2812","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","e4e9277d060637f30161b3ee97626a7b934a20d9761be42f569cbeb6d789dbca","f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","0021cac0b1f36ff7f56792c12516c075475725594212bd7b29b9506eb1897542","253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","18f2a04fcc10372eae47f365ee657b3451755f4ef893ff63964a3dc7f3cde0ef","4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","c6042f61b06f3654983a943f4bd6bdd308d8e6086589f5d081ca9b6b3aaa78b7","1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","7f045f2211f90c0f6066eb317ba15577bd977805063d7fb59f91ad71d5133d79","166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","9462d1c0d28317358615086d4a74e8114876a4cb62911db60e0755a93408c3b8","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","bd756fbe0a1381af66e876a3d3839c448bc1d2470beb013e89b7075d64d95a45","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"d38e588a10943bbab1d4ce03d94759bf065ff802a9a72fc57aa75a72f1725b71","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":5,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[159,210],[210],[159,160,161,162,163,210],[159,161,210],[165,210],[183,210,217],[210,219],[210,220],[210,225,230],[210,233,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,236,237,238,239,240,241,242,243,244,245],[210,234,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,235,237,238,239,240,241,242,243,244,245],[210,233,234,235,236,238,239,240,241,242,243,244,245],[210,233,234,235,236,237,239,240,241,242,243,244,245],[210,233,234,235,236,237,238,240,241,242,243,244,245],[210,233,234,235,236,237,238,239,241,242,243,244,245],[210,233,234,235,236,237,238,239,240,242,243,244,245],[210,233,234,235,236,237,238,239,240,241,243,244,245],[210,233,234,235,236,237,238,239,240,241,242,244,245],[210,233,234,235,236,237,238,239,240,241,242,243,245],[210,233,234,235,236,237,238,239,240,241,242,243,244],[167,210],[170,210],[171,176,210],[172,182,183,190,199,209,210],[172,173,182,190,210],[174,210],[175,176,183,191,210],[176,199,206,210],[177,179,182,190,210],[178,210],[179,180,210],[181,182,210],[182,210],[182,183,184,199,209,210],[182,183,184,199,210],[185,190,199,209,210],[182,183,185,186,190,199,206,209,210],[185,187,199,206,209,210],[167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],[182,188,210],[189,209,210],[179,182,190,199,210],[191,210],[192,210],[170,193,210],[194,208,210,214],[195,210],[196,210],[182,197,210],[197,198,210,212],[182,199,200,201,210],[199,201,210],[199,200,210],[202,210],[203,210],[182,204,205,210],[204,205,210],[176,190,199,206,210],[207,210],[190,208,210],[171,185,196,209,210],[176,210],[199,210,211],[210,212],[210,213],[171,176,182,184,193,199,209,210,212,214],[199,210,215],[210,254],[210,223,226],[210,223,226,227,228],[210,225],[210,222,229],[50,210],[210,224],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,210],[44,45,46,47,48,185,187,210],[45,46,48,55,155,157,210],[155,157,210],[45,46,54,55,56,153,210],[44,210],[48,50,51,52,155,210],[48,155,210],[46,47,48,49,53,54,154,157,210],[54,119,155,210],[54,155,210],[54,67,132,155,210],[54,66,103,155,210],[54,58,59,60,62,64,90,91,92,97,98,103,104,105,106,107,108,110,111,113,114,115,118,119,120,121,127,128,130,131,132,155,210],[54,100,101,103,155,210],[54,127,129,131,155,210],[54,131,155,210],[54,129,155,156,210],[54,68,132,155,210],[54,115,117,129,131,155,210],[54,99,102,103,155,210],[54,129,131,155,210],[54,69,132,155,210],[54,79,80,81,83,85,87,89,155,210],[54,98,129,155,210],[54,82,155,210],[54,98,155,156,210],[54,98,129,131,155,210],[54,98,155,210],[54,67,68,69,70,71,72,73,74,98,155,210],[54,64,65,75,76,78,97,103,129,155,210],[54,106,113,129,155,210],[54,140,155,210],[54,70,132,155,210],[54,66,75,103,155,210],[54,82,84,86,88,129,131,155,210],[54,82,84,86,88,115,117,129,131,155,210],[54,90,129,131,155,210],[54,98,115,131,155,210],[54,61,63,129,155,210],[54,62,113,155,210],[54,71,132,155,210],[54,92,95,155,210],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,210],[54,132,155,210],[54,124,127,129,131,155,210],[54,59,62,64,128,129,130,155,210],[54,79,80,83,85,87,89,155,210],[54,78,103,155,210],[54,77,98,103,131,155,210],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,210],[54,110,113,129,155,210],[54,94,110,155,210],[54,108,109,111,129,155,210],[54,66,129,131,155,210],[54,72,132,155,210],[54,60,129,155,210],[54,59,115,129,155,210],[54,100,103,155,210],[54,95,97,155,210],[54,96,98,103,113,129,155,156,210],[54,58,94,103,105,106,107,110,112,113,129,155,156,210],[54,115,129,155,210],[54,58,104,105,129,131,155,210],[54,129,155,210],[54,115,117,155,210],[54,79,80,83,85,87,89,115,117,155,210],[54,115,116,118,155,210],[54,58,60,92,105,114,129,155,210],[54,113,115,129,155,210],[54,95,111,114,155,210],[54,61,63,112,114,129,155,156,210],[54,95,111,113,115,155,210],[54,73,132,155,210],[54,115,122,123,125,126,129,155,210],[54,125,155,210],[54,103,155,210],[54,102,103,155,210],[54,141,155,210],[45,56,157,210]],"referencedMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"exportedModulesMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"semanticDiagnosticsPerFile":[161,159,164,160,162,163,166,218,219,220,221,231,232,234,235,233,236,237,238,239,240,241,242,243,244,245,246,247,165,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,169,216,185,186,187,217,188,189,190,191,192,193,194,195,196,197,198,199,201,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,248,249,250,251,252,253,254,255,44,223,227,229,228,226,230,222,50,51,225,224,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,157,49,56,52,47,48,45,154,46,53,153,54,155,156,57,133,67,134,129,102,122,120,135,136,68,118,100,107,137,69,82,138,81,65,64,139,75,76,98,105,141,142,70,89,126,83,80,79,85,119,90,91,143,144,145,62,61,63,146,71,93,95,147,125,131,130,86,77,78,148,103,149,108,109,110,66,132,150,72,87,59,60,88,121,99,96,97,111,58,106,104,116,84,117,92,115,114,94,113,112,151,73,128,127,124,123,152,101,140,74,55,158]},"version":"4.6.2"}
|
package/lib/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","df1fbdd6bb697b9257cd772538de95e480074dea26505ef09149de2d76cacf5c","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","87c6cfd65f30c9a15c90185db55923a37e174e7fdfce615cbda822025febc548","f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","4c86c227471809af11204fbb725e42b31441e75b2807b005188556e00abac4a5","253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","808a97e3a24150cf90f4f6e034a0dc7526177a3942250ebf949bd54a960ba2e0","4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","c6042f61b06f3654983a943f4bd6bdd308d8e6086589f5d081ca9b6b3aaa78b7","1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","7f045f2211f90c0f6066eb317ba15577bd977805063d7fb59f91ad71d5133d79","166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","87f7926f3d2c8bb668dbb08e4374b419a05ab0af6d85668c8e53feebd2a59fa8","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","6b937a8b59b6ff4fdad8dda375444d9e751bd812095655cd6c438c2cef2dd71c","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[159,210],[210],[159,160,161,162,163,210],[159,161,210],[165,210],[183,210,217],[210,219],[210,220],[210,225,230],[210,233,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,236,237,238,239,240,241,242,243,244,245],[210,234,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,235,237,238,239,240,241,242,243,244,245],[210,233,234,235,236,238,239,240,241,242,243,244,245],[210,233,234,235,236,237,239,240,241,242,243,244,245],[210,233,234,235,236,237,238,240,241,242,243,244,245],[210,233,234,235,236,237,238,239,241,242,243,244,245],[210,233,234,235,236,237,238,239,240,242,243,244,245],[210,233,234,235,236,237,238,239,240,241,243,244,245],[210,233,234,235,236,237,238,239,240,241,242,244,245],[210,233,234,235,236,237,238,239,240,241,242,243,245],[210,233,234,235,236,237,238,239,240,241,242,243,244],[167,210],[170,210],[171,176,210],[172,182,183,190,199,209,210],[172,173,182,190,210],[174,210],[175,176,183,191,210],[176,199,206,210],[177,179,182,190,210],[178,210],[179,180,210],[181,182,210],[182,210],[182,183,184,199,209,210],[182,183,184,199,210],[185,190,199,209,210],[182,183,185,186,190,199,206,209,210],[185,187,199,206,209,210],[167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],[182,188,210],[189,209,210],[179,182,190,199,210],[191,210],[192,210],[170,193,210],[194,208,210,214],[195,210],[196,210],[182,197,210],[197,198,210,212],[182,199,200,201,210],[199,201,210],[199,200,210],[202,210],[203,210],[182,204,205,210],[204,205,210],[176,190,199,206,210],[207,210],[190,208,210],[171,185,196,209,210],[176,210],[199,210,211],[210,212],[210,213],[171,176,182,184,193,199,209,210,212,214],[199,210,215],[210,254],[210,223,226],[210,223,226,227,228],[210,225],[210,222,229],[50,210],[210,224],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,210],[44,45,46,47,48,185,187,210],[45,46,48,55,155,157,210],[155,157,210],[45,46,54,55,56,153,210],[44,210],[48,50,51,52,155,210],[48,155,210],[46,47,48,49,53,54,154,157,210],[54,119,155,210],[54,155,210],[54,67,132,155,210],[54,66,103,155,210],[54,58,59,60,62,64,90,91,92,97,98,103,104,105,106,107,108,110,111,113,114,115,118,119,120,121,127,128,130,131,132,155,210],[54,100,101,103,155,210],[54,127,129,131,155,210],[54,131,155,210],[54,129,155,156,210],[54,68,132,155,210],[54,115,117,129,131,155,210],[54,99,102,103,155,210],[54,129,131,155,210],[54,69,132,155,210],[54,79,80,81,83,85,87,89,155,210],[54,98,129,155,210],[54,82,155,210],[54,98,155,156,210],[54,98,129,131,155,210],[54,98,155,210],[54,67,68,69,70,71,72,73,74,98,155,210],[54,64,65,75,76,78,97,103,129,155,210],[54,106,113,129,155,210],[54,140,155,210],[54,70,132,155,210],[54,66,75,103,155,210],[54,82,84,86,88,129,131,155,210],[54,82,84,86,88,115,117,129,131,155,210],[54,90,129,131,155,210],[54,98,115,131,155,210],[54,61,63,129,155,210],[54,62,113,155,210],[54,71,132,155,210],[54,92,95,155,210],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,210],[54,132,155,210],[54,124,127,129,131,155,210],[54,59,62,64,128,129,130,155,210],[54,79,80,83,85,87,89,155,210],[54,78,103,155,210],[54,77,98,103,131,155,210],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,210],[54,110,113,129,155,210],[54,94,110,155,210],[54,108,109,111,129,155,210],[54,66,129,131,155,210],[54,72,132,155,210],[54,60,129,155,210],[54,59,115,129,155,210],[54,100,103,155,210],[54,95,97,155,210],[54,96,98,103,113,129,155,156,210],[54,58,94,103,105,106,107,110,112,113,129,155,156,210],[54,115,129,155,210],[54,58,104,105,129,131,155,210],[54,129,155,210],[54,115,117,155,210],[54,79,80,83,85,87,89,115,117,155,210],[54,115,116,118,155,210],[54,58,60,92,105,114,129,155,210],[54,113,115,129,155,210],[54,95,111,114,155,210],[54,61,63,112,114,129,155,156,210],[54,95,111,113,115,155,210],[54,73,132,155,210],[54,115,122,123,125,126,129,155,210],[54,125,155,210],[54,103,155,210],[54,102,103,155,210],[54,141,155,210],[45,56,157,210]],"referencedMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"exportedModulesMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"semanticDiagnosticsPerFile":[161,159,164,160,162,163,166,218,219,220,221,231,232,234,235,233,236,237,238,239,240,241,242,243,244,245,246,247,165,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,169,216,185,186,187,217,188,189,190,191,192,193,194,195,196,197,198,199,201,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,248,249,250,251,252,253,254,255,44,223,227,229,228,226,230,222,50,51,225,224,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,157,49,56,52,47,48,45,154,46,53,153,54,155,156,57,133,67,134,129,102,122,120,135,136,68,118,100,107,137,69,82,138,81,65,64,139,75,76,98,105,141,142,70,89,126,83,80,79,85,119,90,91,143,144,145,62,61,63,146,71,93,95,147,125,131,130,86,77,78,148,103,149,108,109,110,66,132,150,72,87,59,60,88,121,99,96,97,111,58,106,104,116,84,117,92,115,114,94,113,112,151,73,128,127,124,123,152,101,140,74,55,158]},"version":"4.6.2"}
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","7fba8afbe022b3ac0d28a7475054fd49b082789c62972d559e9a867b00cd2812","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","e4e9277d060637f30161b3ee97626a7b934a20d9761be42f569cbeb6d789dbca","f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","0021cac0b1f36ff7f56792c12516c075475725594212bd7b29b9506eb1897542","253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","18f2a04fcc10372eae47f365ee657b3451755f4ef893ff63964a3dc7f3cde0ef","4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","c6042f61b06f3654983a943f4bd6bdd308d8e6086589f5d081ca9b6b3aaa78b7","1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","7f045f2211f90c0f6066eb317ba15577bd977805063d7fb59f91ad71d5133d79","166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","9462d1c0d28317358615086d4a74e8114876a4cb62911db60e0755a93408c3b8","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","bd756fbe0a1381af66e876a3d3839c448bc1d2470beb013e89b7075d64d95a45","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"d38e588a10943bbab1d4ce03d94759bf065ff802a9a72fc57aa75a72f1725b71","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[159,210],[210],[159,160,161,162,163,210],[159,161,210],[165,210],[183,210,217],[210,219],[210,220],[210,225,230],[210,233,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,236,237,238,239,240,241,242,243,244,245],[210,234,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,235,237,238,239,240,241,242,243,244,245],[210,233,234,235,236,238,239,240,241,242,243,244,245],[210,233,234,235,236,237,239,240,241,242,243,244,245],[210,233,234,235,236,237,238,240,241,242,243,244,245],[210,233,234,235,236,237,238,239,241,242,243,244,245],[210,233,234,235,236,237,238,239,240,242,243,244,245],[210,233,234,235,236,237,238,239,240,241,243,244,245],[210,233,234,235,236,237,238,239,240,241,242,244,245],[210,233,234,235,236,237,238,239,240,241,242,243,245],[210,233,234,235,236,237,238,239,240,241,242,243,244],[167,210],[170,210],[171,176,210],[172,182,183,190,199,209,210],[172,173,182,190,210],[174,210],[175,176,183,191,210],[176,199,206,210],[177,179,182,190,210],[178,210],[179,180,210],[181,182,210],[182,210],[182,183,184,199,209,210],[182,183,184,199,210],[185,190,199,209,210],[182,183,185,186,190,199,206,209,210],[185,187,199,206,209,210],[167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],[182,188,210],[189,209,210],[179,182,190,199,210],[191,210],[192,210],[170,193,210],[194,208,210,214],[195,210],[196,210],[182,197,210],[197,198,210,212],[182,199,200,201,210],[199,201,210],[199,200,210],[202,210],[203,210],[182,204,205,210],[204,205,210],[176,190,199,206,210],[207,210],[190,208,210],[171,185,196,209,210],[176,210],[199,210,211],[210,212],[210,213],[171,176,182,184,193,199,209,210,212,214],[199,210,215],[210,254],[210,223,226],[210,223,226,227,228],[210,225],[210,222,229],[50,210],[210,224],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,210],[44,45,46,47,48,185,187,210],[45,46,48,55,155,157,210],[155,157,210],[45,46,54,55,56,153,210],[44,210],[48,50,51,52,155,210],[48,155,210],[46,47,48,49,53,54,154,157,210],[54,119,155,210],[54,155,210],[54,67,132,155,210],[54,66,103,155,210],[54,58,59,60,62,64,90,91,92,97,98,103,104,105,106,107,108,110,111,113,114,115,118,119,120,121,127,128,130,131,132,155,210],[54,100,101,103,155,210],[54,127,129,131,155,210],[54,131,155,210],[54,129,155,156,210],[54,68,132,155,210],[54,115,117,129,131,155,210],[54,99,102,103,155,210],[54,129,131,155,210],[54,69,132,155,210],[54,79,80,81,83,85,87,89,155,210],[54,98,129,155,210],[54,82,155,210],[54,98,155,156,210],[54,98,129,131,155,210],[54,98,155,210],[54,67,68,69,70,71,72,73,74,98,155,210],[54,64,65,75,76,78,97,103,129,155,210],[54,106,113,129,155,210],[54,140,155,210],[54,70,132,155,210],[54,66,75,103,155,210],[54,82,84,86,88,129,131,155,210],[54,82,84,86,88,115,117,129,131,155,210],[54,90,129,131,155,210],[54,98,115,131,155,210],[54,61,63,129,155,210],[54,62,113,155,210],[54,71,132,155,210],[54,92,95,155,210],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,210],[54,132,155,210],[54,124,127,129,131,155,210],[54,59,62,64,128,129,130,155,210],[54,79,80,83,85,87,89,155,210],[54,78,103,155,210],[54,77,98,103,131,155,210],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,210],[54,110,113,129,155,210],[54,94,110,155,210],[54,108,109,111,129,155,210],[54,66,129,131,155,210],[54,72,132,155,210],[54,60,129,155,210],[54,59,115,129,155,210],[54,100,103,155,210],[54,95,97,155,210],[54,96,98,103,113,129,155,156,210],[54,58,94,103,105,106,107,110,112,113,129,155,156,210],[54,115,129,155,210],[54,58,104,105,129,131,155,210],[54,129,155,210],[54,115,117,155,210],[54,79,80,83,85,87,89,115,117,155,210],[54,115,116,118,155,210],[54,58,60,92,105,114,129,155,210],[54,113,115,129,155,210],[54,95,111,114,155,210],[54,61,63,112,114,129,155,156,210],[54,95,111,113,115,155,210],[54,73,132,155,210],[54,115,122,123,125,126,129,155,210],[54,125,155,210],[54,103,155,210],[54,102,103,155,210],[54,141,155,210],[45,56,157,210]],"referencedMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"exportedModulesMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,2],[216,2],[185,38],[186,39],[187,40],[217,41],[188,42],[189,43],[190,44],[191,45],[192,46],[193,47],[194,48],[195,49],[196,50],[197,51],[198,52],[199,53],[201,54],[200,55],[202,56],[203,57],[204,58],[205,59],[206,60],[207,61],[208,62],[209,63],[210,64],[211,65],[212,66],[213,67],[214,68],[215,69],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,70],[44,2],[223,2],[227,71],[229,72],[228,71],[226,73],[230,74],[222,2],[50,2],[51,75],[225,76],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,77],[49,78],[56,79],[52,80],[47,2],[48,2],[45,2],[154,81],[46,82],[53,83],[153,77],[54,84],[155,85],[156,86],[57,87],[133,88],[67,89],[134,87],[129,90],[102,91],[122,92],[120,93],[135,94],[136,95],[68,89],[118,96],[100,97],[107,98],[137,99],[69,89],[82,100],[138,101],[81,102],[65,103],[64,104],[139,105],[75,106],[76,105],[98,107],[105,108],[141,109],[142,110],[70,111],[89,112],[126,92],[83,112],[80,113],[79,113],[85,112],[119,94],[90,101],[91,114],[143,94],[144,87],[145,115],[62,116],[61,117],[63,117],[146,118],[71,89],[93,119],[95,120],[147,121],[125,122],[131,123],[130,94],[86,124],[77,125],[78,126],[148,93],[103,127],[149,87],[108,128],[109,129],[110,130],[66,121],[132,131],[150,132],[72,89],[87,113],[59,133],[60,134],[88,124],[121,112],[99,135],[96,136],[97,137],[111,138],[58,139],[106,140],[104,141],[116,142],[84,143],[117,144],[92,98],[115,145],[114,146],[94,147],[113,148],[112,149],[151,150],[73,89],[128,92],[127,151],[124,152],[123,92],[152,153],[101,154],[140,155],[74,153],[55,156],[158,2]],"semanticDiagnosticsPerFile":[161,159,164,160,162,163,166,218,219,220,221,231,232,234,235,233,236,237,238,239,240,241,242,243,244,245,246,247,165,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,169,216,185,186,187,217,188,189,190,191,192,193,194,195,196,197,198,199,201,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,248,249,250,251,252,253,254,255,44,223,227,229,228,226,230,222,50,51,225,224,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,157,49,56,52,47,48,45,154,46,53,153,54,155,156,57,133,67,134,129,102,122,120,135,136,68,118,100,107,137,69,82,138,81,65,64,139,75,76,98,105,141,142,70,89,126,83,80,79,85,119,90,91,143,144,145,62,61,63,146,71,93,95,147,125,131,130,86,77,78,148,103,149,108,109,110,66,132,150,72,87,59,60,88,121,99,96,97,111,58,106,104,116,84,117,92,115,114,94,113,112,151,73,128,127,124,123,152,101,140,74,55,158]},"version":"4.6.2"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@commercelayer/sdk",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.10.0",
|
4
4
|
"main": "lib/cjs/index.js",
|
5
5
|
"types": "lib/cjs/index.d.ts",
|
6
6
|
"module": "lib/esm/index.js",
|
@@ -41,33 +41,33 @@
|
|
41
41
|
"node": ">=16"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
-
"axios": "^0.26.
|
44
|
+
"axios": "^0.26.1"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
47
|
"@babel/preset-env": "^7.16.11",
|
48
48
|
"@babel/preset-typescript": "^7.16.7",
|
49
|
-
"@commercelayer/js-auth": "^2.
|
49
|
+
"@commercelayer/js-auth": "^2.3.0",
|
50
50
|
"@semantic-release/changelog": "^6.0.1",
|
51
51
|
"@semantic-release/git": "^10.0.1",
|
52
52
|
"@size-limit/preset-small-lib": "^7.0.8",
|
53
53
|
"@types/debug": "^4.1.7",
|
54
|
-
"@types/jest": "^27.4.
|
55
|
-
"@types/lodash": "^4.14.
|
56
|
-
"@types/node": "^17.0.
|
57
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
54
|
+
"@types/jest": "^27.4.1",
|
55
|
+
"@types/lodash": "^4.14.180",
|
56
|
+
"@types/node": "^17.0.21",
|
57
|
+
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
58
58
|
"dotenv": "^16.0.0",
|
59
|
-
"eslint": "^8.
|
59
|
+
"eslint": "^8.11.0",
|
60
60
|
"husky": "^7.0.4",
|
61
61
|
"inflector-js": "^1.0.1",
|
62
|
-
"jest": "^27.
|
62
|
+
"jest": "^27.5.1",
|
63
63
|
"json-typescript": "^1.1.2",
|
64
64
|
"jsonapi-typescript": "^0.1.3",
|
65
65
|
"lodash": "^4.17.21",
|
66
66
|
"minimize-js": "^1.3.0",
|
67
67
|
"pretty-quick": "^3.1.3",
|
68
68
|
"semantic-release": "^19.0.2",
|
69
|
-
"ts-node": "^10.
|
70
|
-
"typescript": "^4.
|
69
|
+
"ts-node": "^10.7.0",
|
70
|
+
"typescript": "^4.6.2"
|
71
71
|
},
|
72
72
|
"repository": "github:commercelayer/commercelayer-sdk",
|
73
73
|
"bugs": "https://github.com/commercelayer/commercelayer-sdk/issues",
|