@commercelayer/sdk 4.5.0-beta.1 → 4.5.0-beta.2

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/README.md CHANGED
@@ -55,12 +55,13 @@ The code snippets below show how to use the Commerce Layer JS SDK when performin
55
55
 
56
56
  - ### Create
57
57
  - [How to create an SKU](#how-to-create-an-sku)
58
- - ### Retrieve
58
+ - ### Retrieve / List
59
59
  - [How to fetch a single SKU](#how-to-fetch-a-single-sku)
60
60
  - [How to fetch a collection of SKUs](#how-to-fetch-a-collection-of-skus)
61
61
  - [How to paginate a collection of SKUs](#how-to-paginate-a-collection-of-skus)
62
62
  - [How to iterate through a collection of SKUs](#how-to-iterate-through-a-collection-of-skus)
63
- - [How to build complex queries](#how-to-build-complex-queries)
63
+ <!-- - [How to build complex queries](#how-to-build-complex-queries) -->
64
+ - [How to fetch resource relationships](#how-to-fetch-resource-relationships)
64
65
  - ### Update
65
66
  - [How to update an existing SKU](#how-to-update-an-existing-sku)
66
67
  - ### Delete
@@ -85,7 +86,7 @@ The code snippets below show how to use the Commerce Layer JS SDK when performin
85
86
 
86
87
  Check our API reference for more information on how to [create an SKU](https://docs.commercelayer.io/api/resources/skus/create_sku).
87
88
 
88
- ## Retrieve
89
+ ## Retrieve / List
89
90
 
90
91
  ### How to fetch a single SKU
91
92
 
@@ -193,6 +194,14 @@ To execute a function for every item of a collection, use the `map()` method:
193
194
  skus.map(p => console.log('Product: ' + p.name + ' - Code: ' + p.code))
194
195
  ```
195
196
 
197
+
198
+ ### How to fetch resource relationships
199
+
200
+ xxxxxxx
201
+ ```
202
+ code
203
+ ```
204
+
196
205
  ## Update
197
206
 
198
207
  ### How to update an existing SKU
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)(),baseURL=(t,e)=>`https://${t.toLowerCase()}.${e||config_1.default.default.domain}/api`,handleError=t=>{let e=new error_1.SdkError({message:t.message,type:error_1.ErrorType.GENERIC});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==null?void 0:e.organization))throw new Error("Undefined 'organization' parameter");if(!(e==null?void 0: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,d=(a==null?void 0:a.organization)?baseURL(a.organization,a.domain):void 0,i=(a==null?void 0:a.accessToken)||__classPrivateFieldGet(this,_ApiClient_accessToken,"f"),p=i?{Authorization:"Bearer "+i}:void 0,n=Object.assign({method:e,baseURL:d,url:u,data:c,headers:p},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
+ "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,type:error_1.ErrorType.GENERIC});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==null?void 0:e.organization))throw new Error("Undefined 'organization' parameter");if(!(e==null?void 0: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,d=(a==null?void 0:a.organization)?baseURL(a.organization,a.domain):void 0,i=(a==null?void 0:a.accessToken)||__classPrivateFieldGet(this,_ApiClient_accessToken,"f"),l=i?{Authorization:"Bearer "+i}:void 0,n=Object.assign({method:e,baseURL:d,url:u,data:c,headers:l},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
- "use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,t,s,i){i===void 0&&(i=s),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[s]}})}: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)(),OPEN_API_SCHEMA_VERSION="2.8.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),Object.defineProperty(e,i,{enumerable:!0,get:function(){return t[s]}})}: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.8.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,3 +1,3 @@
1
1
  declare type Debugger = (pattern: string, ...args: any[]) => void;
2
- declare const debug: (namespace?: string | undefined) => Debugger;
2
+ declare const debug: (namespace: string) => Debugger;
3
3
  export default debug;
package/lib/cjs/debug.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});const debuggerFunction=(e,...r)=>{};let debuggerFactory=e=>debuggerFunction;try{const e=require("debug");e&&typeof e=="function"&&(debuggerFactory=e)}catch{}const debugPrefix="clsdk",caller=()=>{const e=new Error;Error.prepareStackTrace=(c,t)=>t;const r=e.stack;return Error.prepareStackTrace=void 0,(r[2].getFileName()||"/").replace(/^.*[\\/]/,"").replace(".ts","")},debug=e=>debuggerFactory(`${debugPrefix}:${e||caller()}`);exports.default=debug;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});const debuggerFunction=(e,...t)=>{};let debuggerFactory=e=>debuggerFunction;try{const e=require("debug");e&&typeof e=="function"&&(debuggerFactory=e)}catch{}const debugPrefix="clsdk",debug=e=>debuggerFactory(`${debugPrefix}:${e}`);exports.default=debug;
@@ -1 +1 @@
1
- "use strict";var __importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(exports,"__esModule",{value:!0}),exports.normalize=exports.denormalize=void 0;const common_1=require("./common"),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)(),denormalize=e=>{let t;e.links&&delete e.links;const r=e.data,s=e.included;return Array.isArray(r)?t=r.map(i=>denormalizeResource(i,s)):t=denormalizeResource(r,s),t};exports.denormalize=denormalize;const findIncluded=(e,t=[])=>t.find(r=>e.id===r.id&&e.type===r.type)||e,denormalizeResource=(e,t)=>{debug("denormalize resource: %O, %o",e,t||{});const r=Object.assign({id:e.id,type:e.type},e.attributes);return e.relationships&&Object.keys(e.relationships).forEach(s=>{const i=e.relationships[s].data;i?Array.isArray(i)?r[s]=i.map(o=>denormalizeResource(findIncluded(o,t),t)):r[s]=denormalizeResource(findIncluded(i,t),t):i===null&&(r[s]=null)}),debug("denormalized resource: %O",r),r},normalize=e=>{debug("normalize resource: %O",e);const t={},r={};for(const i in e){if(["type","id"].includes(i))continue;const o=e[i];o&&(0,common_1.isResourceType)(o)&&o.id===null?r[i]={data:null}:o&&((0,common_1.isResourceId)(o)||Array.isArray(o)&&(0,common_1.isResourceId)(o[0]))?r[i]={data:o}:t[i]=o}const s={type:e.type,attributes:t,relationships:r};return(0,common_1.isResourceId)(e)&&(s.id=e.id),debug("normalized resource: %O",s),s};exports.normalize=normalize;
1
+ "use strict";var __importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(exports,"__esModule",{value:!0}),exports.normalize=exports.denormalize=void 0;const common_1=require("./common"),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("jsonapi"),denormalize=e=>{let o;e.links&&delete e.links;const r=e.data,i=e.included;return Array.isArray(r)?o=r.map(t=>denormalizeResource(t,i)):o=denormalizeResource(r,i),o};exports.denormalize=denormalize;const findIncluded=(e,o=[])=>o.find(r=>e.id===r.id&&e.type===r.type)||e,denormalizeResource=(e,o)=>{debug("denormalize resource: %O, %o",e,o||{});const r=Object.assign({id:e.id,type:e.type},e.attributes);return e.relationships&&Object.keys(e.relationships).forEach(i=>{const t=e.relationships[i].data;t?Array.isArray(t)?r[i]=t.map(s=>denormalizeResource(findIncluded(s,o),o)):r[i]=denormalizeResource(findIncluded(t,o),o):t===null&&(r[i]=null)}),debug("denormalized resource: %O",r),r},normalize=e=>{debug("normalize resource: %O",e);const o={},r={};for(const t in e){if(["type","id"].includes(t))continue;const s=e[t];s&&(0,common_1.isResourceType)(s)&&s.id===null?r[t]={data:null}:s&&((0,common_1.isResourceId)(s)||Array.isArray(s)&&(0,common_1.isResourceId)(s[0]))?r[t]={data:s}:o[t]=s}const i={type:e.type,attributes:o,relationships:r};return(0,common_1.isResourceId)(e)&&(i.id=e.id),debug("normalized resource: %O",i),i};exports.normalize=normalize;
package/lib/cjs/query.js CHANGED
@@ -1 +1 @@
1
- "use strict";var __importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(exports,"__esModule",{value:!0}),exports.generateQueryStringParams=void 0;const debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)(),isParamsList=e=>e.filters||e.pageNumber||e.pageSize||e.sort,generateQueryStringParams=(e,r)=>{debug("generate query string params: %O, %O",e,r);const t={};return e&&(e.include&&(t.include=e.include.join(",")),e.fields&&(Array.isArray(e.fields)&&(e.fields={[r.type]:e.fields}),Object.entries(e.fields).forEach(([i,s])=>{t[`fields[${i}]`]=s.join(",")})),isParamsList(e)&&(e.sort&&(Array.isArray(e.sort)?t.sort=e.sort.join(","):t.sort=Object.entries(e.sort).map(([i,s])=>`${s==="desc"?"-":""}${i}`).join(",")),e.pageNumber&&(t["page[number]"]=String(e.pageNumber)),e.pageSize&&(t["page[size]"]=String(e.pageSize)),e.filters&&Object.entries(e.filters).forEach(([i,s])=>{t[`filter[q][${i}]`]=String(s)})),debug("query string params: %O",t)),t};exports.generateQueryStringParams=generateQueryStringParams;
1
+ "use strict";var __importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(exports,"__esModule",{value:!0}),exports.generateQueryStringParams=void 0;const debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("query"),isParamsList=e=>e.filters||e.pageNumber||e.pageSize||e.sort,generateQueryStringParams=(e,r)=>{debug("generate query string params: %O, %O",e,r);const t={};return e&&(e.include&&(t.include=e.include.join(",")),e.fields&&(Array.isArray(e.fields)&&(e.fields={[r.type]:e.fields}),Object.entries(e.fields).forEach(([i,s])=>{t[`fields[${i}]`]=s.join(",")})),isParamsList(e)&&(e.sort&&(Array.isArray(e.sort)?t.sort=e.sort.join(","):t.sort=Object.entries(e.sort).map(([i,s])=>`${s==="desc"?"-":""}${i}`).join(",")),e.pageNumber&&(t["page[number]"]=String(e.pageNumber)),e.pageSize&&(t["page[size]"]=String(e.pageSize)),e.filters&&Object.entries(e.filters).forEach(([i,s])=>{t[`filter[q][${i}]`]=String(s)})),debug("query string params: %O",t)),t};exports.generateQueryStringParams=generateQueryStringParams;
@@ -1 +1 @@
1
- "use strict";var __classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(i,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"?i!==e||!a:!e.has(i))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?a.call(i,r):a?a.value=r:e.set(i,r),r},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(i,e,r,t){if(r==="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 r==="m"?t:r==="a"?t.call(i):t?t.value:e.get(i)},__importDefault=this&&this.__importDefault||function(i){return i&&i.__esModule?i:{default:i}},_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)();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==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const s=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:a}));return(0,jsonapi_1.denormalize)(s)}async retrieve(e,r,t){debug("retrieve: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const s=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)(s)}async list(e,r,t){var a,s;debug("list: %o, %O, %O",e,r||{},t||{});const n=(0,query_1.generateQueryStringParams)(r,e);(t==null?void 0:t.params)&&Object.assign(n,t==null?void 0:t.params);const o=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:n})),u=(0,jsonapi_1.denormalize)(o),c={pageCount:Number((a=o.meta)===null||a===void 0?void 0:a.page_count),recordCount:Number((s=o.meta)===null||s===void 0?void 0:s.record_count),currentPage:(r==null?void 0:r.pageNumber)||config_1.default.default.pageNumber,recordsPerPage:(r==null?void 0:r.pageSize)||config_1.default.default.pageSize};return new ListResponse(c,u)}async create(e,r,t){debug("create: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const s=(0,jsonapi_1.normalize)(e),n=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("post",e.type,s,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==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const s=(0,jsonapi_1.normalize)(e),n=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("patch",`${e.type}/${e.id}`,s,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 s,n;debug("fetch: %o, %O, %O",r,t||{},a||{});const o=(0,query_1.generateQueryStringParams)(t,e);(a==null?void 0:a.params)&&Object.assign(o,a==null?void 0:a.params);const u=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",r,void 0,Object.assign(Object.assign({},a),{params:o})),c=(0,jsonapi_1.denormalize)(u);if(Array.isArray(c)){const l=t,d={pageCount:Number((s=u.meta)===null||s===void 0?void 0:s.page_count),recordCount:Number((n=u.meta)===null||n===void 0?void 0:n.record_count),currentPage:(l==null?void 0:l.pageNumber)||config_1.default.default.pageNumber,recordsPerPage:(l==null?void 0:l.pageSize)||config_1.default.default.pageSize};return new ListResponse(d,c)}else return c}}_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
+ "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==null?void 0:t.params)&&Object.assign(a,t==null?void 0: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==null?void 0:t.params)&&Object.assign(a,t==null?void 0: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==null?void 0:t.params)&&Object.assign(n,t==null?void 0:t.params);const o=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:n})),u=(0,jsonapi_1.denormalize)(o),c={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==null?void 0:r.pageNumber)||config_1.default.default.pageNumber,recordsPerPage:(r==null?void 0:r.pageSize)||config_1.default.default.pageSize};return new ListResponse(c,u)}async create(e,r,t){debug("create: %o, %O, %O",e,r||{},t||{});const a=(0,query_1.generateQueryStringParams)(r,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0: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==null?void 0:t.params)&&Object.assign(a,t==null?void 0: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==null?void 0:a.params)&&Object.assign(o,a==null?void 0:a.params);const u=await __classPrivateFieldGet(this,_ResourceAdapter_client,"f").request("get",r,void 0,Object.assign(Object.assign({},a),{params:o})),c=(0,jsonapi_1.denormalize)(u);if(Array.isArray(c)){const l=t,d={pageCount:Number((i=u.meta)===null||i===void 0?void 0:i.page_count),recordCount:Number((n=u.meta)===null||n===void 0?void 0:n.record_count),currentPage:(l==null?void 0:l.pageNumber)||config_1.default.default.pageNumber,recordsPerPage:(l==null?void 0:l.pageSize)||config_1.default.default.pageSize};return new ListResponse(d,c)}else return c}}_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;
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 c}from"./error";import l from"./config";import z from"./debug";const p=z(),f=(r,e)=>`https://${r.toLowerCase()}.${e||l.default.domain}/api`,C=r=>{let e=new T({message:r.message,type:c.GENERIC});if(u.isAxiosError(r))if(r.response){const t=new b(e);t.type=c.RESPONSE,t.status=r.response.status,t.code=String(t.status),t.errors=r.response.data.errors,e=t}else r.request?(e.type=c.REQUEST,e.request=r.request):e.type=c.CLIENT;else u.isCancel(r)?e.type=c.CANCEL:e.source=r;throw e};class m{constructor(e){o.set(this,void 0),i.set(this,void 0),p("new client instance %O",e),this.baseUrl=f(e.organization,e.domain),d(this,o,e.accessToken,"f");const t={timeout:e.timeout||l.client.timeout,proxy:e.proxy,httpAgent:e.httpAgent,httpsAgent:e.httpsAgent},s=Object.assign({baseURL:this.baseUrl,timeout:l.client.timeout,headers:{Accept:"application/vnd.api+json","Content-Type":"application/vnd.api+json",Authorization:"Bearer "+n(this,o,"f")}},t);p("axios options: %O",s),d(this,i,u.create(s),"f"),this.interceptors=n(this,i,"f").interceptors}static create(e){if(!(e==null?void 0:e.organization))throw new Error("Undefined 'organization' parameter");if(!(e==null?void 0:e.accessToken))throw new Error("Undefined 'accessToken' parameter");return new m(e)}config(e){p("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=f(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){p("request %s %s, %O, %O",e,t,s||{},a||{});const v=s?{data:s}:void 0,y=t,E=(a==null?void 0:a.organization)?f(a.organization,a.domain):void 0,w=(a==null?void 0:a.accessToken)||n(this,o,"f"),A=w?{Authorization:"Bearer "+w}:void 0,g=Object.assign({method:e,baseURL:E,url:y,data:v,headers:A},a);return p("request params: %O",g),n(this,i,"f").request(g).then(h=>h.data).catch(h=>C(h))}}o=new WeakMap,i=new WeakMap;export default m;
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 c}from"./error";import l from"./config";import z from"./debug";const p=z("client"),f=(r,e)=>`https://${r.toLowerCase()}.${e||l.default.domain}/api`,C=r=>{let e=new T({message:r.message,type:c.GENERIC});if(u.isAxiosError(r))if(r.response){const t=new b(e);t.type=c.RESPONSE,t.status=r.response.status,t.code=String(t.status),t.errors=r.response.data.errors,e=t}else r.request?(e.type=c.REQUEST,e.request=r.request):e.type=c.CLIENT;else u.isCancel(r)?e.type=c.CANCEL:e.source=r;throw e};class m{constructor(e){o.set(this,void 0),i.set(this,void 0),p("new client instance %O",e),this.baseUrl=f(e.organization,e.domain),d(this,o,e.accessToken,"f");const t={timeout:e.timeout||l.client.timeout,proxy:e.proxy,httpAgent:e.httpAgent,httpsAgent:e.httpsAgent},s=Object.assign({baseURL:this.baseUrl,timeout:l.client.timeout,headers:{Accept:"application/vnd.api+json","Content-Type":"application/vnd.api+json",Authorization:"Bearer "+n(this,o,"f")}},t);p("axios options: %O",s),d(this,i,u.create(s),"f"),this.interceptors=n(this,i,"f").interceptors}static create(e){if(!(e==null?void 0:e.organization))throw new Error("Undefined 'organization' parameter");if(!(e==null?void 0:e.accessToken))throw new Error("Undefined 'accessToken' parameter");return new m(e)}config(e){p("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=f(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){p("request %s %s, %O, %O",e,t,s||{},a||{});const v=s?{data:s}:void 0,y=t,E=(a==null?void 0:a.organization)?f(a.organization,a.domain):void 0,w=(a==null?void 0:a.accessToken)||n(this,o,"f"),A=w?{Authorization:"Bearer "+w}:void 0,g=Object.assign({method:e,baseURL:E,url:y,data:v,headers:A},a);return p("request params: %O",g),n(this,i,"f").request(g).then(h=>h.data).catch(h=>C(h))}}o=new WeakMap,i=new WeakMap;export default m;
@@ -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 p from"./resource";import u from"./debug";const w=u(),m="2.8.1";class l{constructor(i){t.set(this,void 0),h.set(this,void 0),w("new commercelayer instance %O",i),c(this,t,new p(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 m}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),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==null?void 0: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)return this.removeInterceptor("response",n)}}t=new WeakMap,h=new WeakMap;const _=o=>new l(o);export default _;
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 p from"./resource";import u from"./debug";const w=u("commercelayer"),m="2.8.1";class l{constructor(i){t.set(this,void 0),h.set(this,void 0),w("new commercelayer instance %O",i),c(this,t,new p(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 m}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),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==null?void 0: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)return this.removeInterceptor("response",n)}}t=new WeakMap,h=new WeakMap;const _=o=>new l(o);export default _;
@@ -1,3 +1,3 @@
1
1
  declare type Debugger = (pattern: string, ...args: any[]) => void;
2
- declare const debug: (namespace?: string | undefined) => Debugger;
2
+ declare const debug: (namespace: string) => Debugger;
3
3
  export default debug;
package/lib/esm/debug.js CHANGED
@@ -1 +1 @@
1
- const a=(e,...r)=>{};let t=e=>a;try{const e=require("debug");e&&typeof e=="function"&&(t=e)}catch{}const o="clsdk",n=()=>{const e=new Error;Error.prepareStackTrace=(s,c)=>c;const r=e.stack;return Error.prepareStackTrace=void 0,(r[2].getFileName()||"/").replace(/^.*[\\/]/,"").replace(".ts","")},p=e=>t(`${o}:${e||n()}`);export default p;
1
+ const e=(t,...r)=>{};let c=t=>e;try{const t=require("debug");t&&typeof t=="function"&&(c=t)}catch{}const o="clsdk",n=t=>c(`${o}:${t}`);export default n;
@@ -1 +1 @@
1
- import{isResourceId as l,isResourceType as c}from"./common";import u from"./debug";const a=u(),p=r=>{let i;r.links&&delete r.links;const t=r.data,n=r.included;return Array.isArray(t)?i=t.map(s=>e(s,n)):i=e(t,n),i},d=(r,i=[])=>i.find(t=>r.id===t.id&&r.type===t.type)||r,e=(r,i)=>{a("denormalize resource: %O, %o",r,i||{});const t=Object.assign({id:r.id,type:r.type},r.attributes);return r.relationships&&Object.keys(r.relationships).forEach(n=>{const s=r.relationships[n].data;s?Array.isArray(s)?t[n]=s.map(o=>e(d(o,i),i)):t[n]=e(d(s,i),i):s===null&&(t[n]=null)}),a("denormalized resource: %O",t),t},y=r=>{a("normalize resource: %O",r);const i={},t={};for(const s in r){if(["type","id"].includes(s))continue;const o=r[s];o&&c(o)&&o.id===null?t[s]={data:null}:o&&(l(o)||Array.isArray(o)&&l(o[0]))?t[s]={data:o}:i[s]=o}const n={type:r.type,attributes:i,relationships:t};return l(r)&&(n.id=r.id),a("normalized resource: %O",n),n};export{p as denormalize,y as normalize};
1
+ import{isResourceId as l,isResourceType as c}from"./common";import p from"./debug";const a=p("jsonapi"),u=r=>{let t;r.links&&delete r.links;const i=r.data,n=r.included;return Array.isArray(i)?t=i.map(s=>e(s,n)):t=e(i,n),t},d=(r,t=[])=>t.find(i=>r.id===i.id&&r.type===i.type)||r,e=(r,t)=>{a("denormalize resource: %O, %o",r,t||{});const i=Object.assign({id:r.id,type:r.type},r.attributes);return r.relationships&&Object.keys(r.relationships).forEach(n=>{const s=r.relationships[n].data;s?Array.isArray(s)?i[n]=s.map(o=>e(d(o,t),t)):i[n]=e(d(s,t),t):s===null&&(i[n]=null)}),a("denormalized resource: %O",i),i},y=r=>{a("normalize resource: %O",r);const t={},i={};for(const s in r){if(["type","id"].includes(s))continue;const o=r[s];o&&c(o)&&o.id===null?i[s]={data:null}:o&&(l(o)||Array.isArray(o)&&l(o[0]))?i[s]={data:o}:t[s]=o}const n={type:r.type,attributes:t,relationships:i};return l(r)&&(n.id=r.id),a("normalized resource: %O",n),n};export{u as denormalize,y as normalize};
package/lib/esm/query.js CHANGED
@@ -1 +1 @@
1
- import n from"./debug";const r=n(),o=e=>e.filters||e.pageNumber||e.pageSize||e.sort,g=(e,a)=>{r("generate query string params: %O, %O",e,a);const i={};return e&&(e.include&&(i.include=e.include.join(",")),e.fields&&(Array.isArray(e.fields)&&(e.fields={[a.type]:e.fields}),Object.entries(e.fields).forEach(([s,t])=>{i[`fields[${s}]`]=t.join(",")})),o(e)&&(e.sort&&(Array.isArray(e.sort)?i.sort=e.sort.join(","):i.sort=Object.entries(e.sort).map(([s,t])=>`${t==="desc"?"-":""}${s}`).join(",")),e.pageNumber&&(i["page[number]"]=String(e.pageNumber)),e.pageSize&&(i["page[size]"]=String(e.pageSize)),e.filters&&Object.entries(e.filters).forEach(([s,t])=>{i[`filter[q][${s}]`]=String(t)})),r("query string params: %O",i)),i};export{g as generateQueryStringParams};
1
+ import n from"./debug";const a=n("query"),o=e=>e.filters||e.pageNumber||e.pageSize||e.sort,g=(e,r)=>{a("generate query string params: %O, %O",e,r);const i={};return e&&(e.include&&(i.include=e.include.join(",")),e.fields&&(Array.isArray(e.fields)&&(e.fields={[r.type]:e.fields}),Object.entries(e.fields).forEach(([s,t])=>{i[`fields[${s}]`]=t.join(",")})),o(e)&&(e.sort&&(Array.isArray(e.sort)?i.sort=e.sort.join(","):i.sort=Object.entries(e.sort).map(([s,t])=>`${t==="desc"?"-":""}${s}`).join(",")),e.pageNumber&&(i["page[number]"]=String(e.pageNumber)),e.pageSize&&(i["page[size]"]=String(e.pageSize)),e.filters&&Object.entries(e.filters).forEach(([s,t])=>{i[`filter[q][${s}]`]=String(t)})),a("query string params: %O",i)),i};export{g as generateQueryStringParams};
@@ -1 +1 @@
1
- var y=this&&this.__classPrivateFieldSet||function(s,e,a,t,r){if(t==="m")throw new TypeError("Private method is not writable");if(t==="a"&&!r)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?s!==e||!r:!e.has(s))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?r.call(s,a):r?r.value=a:e.set(s,a),a},c=this&&this.__classPrivateFieldGet||function(s,e,a,t){if(a==="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 a==="m"?t:a==="a"?t.call(s):t?t.value:e.get(s)},n,f;import j from"./client";import{denormalize as d,normalize as b}from"./jsonapi";import{generateQueryStringParams as p}from"./query";import v from"./config";import P from"./debug";const l=P();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){n.set(this,void 0),f.set(this,{}),y(this,n,j.create(e),"f"),this.localConfig(e)}get interceptors(){return c(this,n,"f").interceptors}localConfig(e){}config(e){l("config %o",e),this.localConfig(e),c(this,n,"f").config(e)}async singleton(e,a,t){l("singleton: %o, %O, %O",e,a||{},t||{});const r=p(a,e);(t==null?void 0:t.params)&&Object.assign(r,t==null?void 0:t.params);const i=await c(this,n,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:r}));return d(i)}async retrieve(e,a,t){l("retrieve: %o, %O, %O",e,a||{},t||{});const r=p(a,e);(t==null?void 0:t.params)&&Object.assign(r,t==null?void 0:t.params);const i=await c(this,n,"f").request("get",`${e.type}/${e.id}`,void 0,Object.assign(Object.assign({},t),{params:r}));return d(i)}async list(e,a,t){var r,i;l("list: %o, %O, %O",e,a||{},t||{});const o=p(a,e);(t==null?void 0:t.params)&&Object.assign(o,t==null?void 0:t.params);const u=await c(this,n,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:o})),g=d(u),m={pageCount:Number((r=u.meta)===null||r===void 0?void 0:r.page_count),recordCount:Number((i=u.meta)===null||i===void 0?void 0:i.record_count),currentPage:(a==null?void 0:a.pageNumber)||v.default.pageNumber,recordsPerPage:(a==null?void 0:a.pageSize)||v.default.pageSize};return new O(m,g)}async create(e,a,t){l("create: %o, %O, %O",e,a||{},t||{});const r=p(a,e);(t==null?void 0:t.params)&&Object.assign(r,t==null?void 0:t.params);const i=b(e),o=await c(this,n,"f").request("post",e.type,i,Object.assign(Object.assign({},t),{params:r}));return d(o)}async update(e,a,t){l("update: %o, %O, %O",e,a||{},t||{});const r=p(a,e);(t==null?void 0:t.params)&&Object.assign(r,t==null?void 0:t.params);const i=b(e),o=await c(this,n,"f").request("patch",`${e.type}/${e.id}`,i,Object.assign(Object.assign({},t),{params:r}));return d(o)}async delete(e,a){l("delete: %o, %O",e,a||{}),await c(this,n,"f").request("delete",`${e.type}/${e.id}`,void 0,a)}async fetch(e,a,t,r){var i,o;l("fetch: %o, %O, %O",a,t||{},r||{});const u=p(t,e);(r==null?void 0:r.params)&&Object.assign(u,r==null?void 0:r.params);const g=await c(this,n,"f").request("get",a,void 0,Object.assign(Object.assign({},r),{params:u})),m=d(g);if(Array.isArray(m)){const h=t,w={pageCount:Number((i=g.meta)===null||i===void 0?void 0:i.page_count),recordCount:Number((o=g.meta)===null||o===void 0?void 0:o.record_count),currentPage:(h==null?void 0:h.pageNumber)||v.default.pageNumber,recordsPerPage:(h==null?void 0:h.pageSize)||v.default.pageSize};return new O(w,m)}else return m}}n=new WeakMap,f=new WeakMap;class _{constructor(e){l("new resource instance: %s",this.type()),this.resources=e}}export default C;export{_ as ApiResource};
1
+ var y=this&&this.__classPrivateFieldSet||function(r,e,s,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"?r!==e||!a:!e.has(r))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?a.call(r,s):a?a.value=s:e.set(r,s),s},c=this&&this.__classPrivateFieldGet||function(r,e,s,t){if(s==="a"&&!t)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?r!==e||!t:!e.has(r))throw new TypeError("Cannot read private member from an object whose class did not declare it");return s==="m"?t:s==="a"?t.call(r):t?t.value:e.get(r)},o,f;import j from"./client";import{denormalize as d,normalize as b}from"./jsonapi";import{generateQueryStringParams as p}from"./query";import v from"./config";import P from"./debug";const l=P("resource");class O extends Array{constructor(e,s){super(...s||[]);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),f.set(this,{}),y(this,o,j.create(e),"f"),this.localConfig(e)}get interceptors(){return c(this,o,"f").interceptors}localConfig(e){}config(e){l("config %o",e),this.localConfig(e),c(this,o,"f").config(e)}async singleton(e,s,t){l("singleton: %o, %O, %O",e,s||{},t||{});const a=p(s,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const i=await c(this,o,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:a}));return d(i)}async retrieve(e,s,t){l("retrieve: %o, %O, %O",e,s||{},t||{});const a=p(s,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const i=await c(this,o,"f").request("get",`${e.type}/${e.id}`,void 0,Object.assign(Object.assign({},t),{params:a}));return d(i)}async list(e,s,t){var a,i;l("list: %o, %O, %O",e,s||{},t||{});const n=p(s,e);(t==null?void 0:t.params)&&Object.assign(n,t==null?void 0:t.params);const u=await c(this,o,"f").request("get",`${e.type}`,void 0,Object.assign(Object.assign({},t),{params:n})),g=d(u),m={pageCount:Number((a=u.meta)===null||a===void 0?void 0:a.page_count),recordCount:Number((i=u.meta)===null||i===void 0?void 0:i.record_count),currentPage:(s==null?void 0:s.pageNumber)||v.default.pageNumber,recordsPerPage:(s==null?void 0:s.pageSize)||v.default.pageSize};return new O(m,g)}async create(e,s,t){l("create: %o, %O, %O",e,s||{},t||{});const a=p(s,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const i=b(e),n=await c(this,o,"f").request("post",e.type,i,Object.assign(Object.assign({},t),{params:a}));return d(n)}async update(e,s,t){l("update: %o, %O, %O",e,s||{},t||{});const a=p(s,e);(t==null?void 0:t.params)&&Object.assign(a,t==null?void 0:t.params);const i=b(e),n=await c(this,o,"f").request("patch",`${e.type}/${e.id}`,i,Object.assign(Object.assign({},t),{params:a}));return d(n)}async delete(e,s){l("delete: %o, %O",e,s||{}),await c(this,o,"f").request("delete",`${e.type}/${e.id}`,void 0,s)}async fetch(e,s,t,a){var i,n;l("fetch: %o, %O, %O",s,t||{},a||{});const u=p(t,e);(a==null?void 0:a.params)&&Object.assign(u,a==null?void 0:a.params);const g=await c(this,o,"f").request("get",s,void 0,Object.assign(Object.assign({},a),{params:u})),m=d(g);if(Array.isArray(m)){const h=t,w={pageCount:Number((i=g.meta)===null||i===void 0?void 0:i.page_count),recordCount:Number((n=g.meta)===null||n===void 0?void 0:n.record_count),currentPage:(h==null?void 0:h.pageNumber)||v.default.pageNumber,recordsPerPage:(h==null?void 0:h.pageSize)||v.default.pageSize};return new O(w,m)}else return m}}o=new WeakMap,f=new WeakMap;class _{constructor(e){l("new resource instance: %s",this.type()),this.resources=e}}export default C;export{_ as ApiResource};
@@ -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/@types/archy/index.d.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/eslint/helpers.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/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-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/@types/jest/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/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/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":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","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":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","e5f6c63fb54c0994eda77393e2f10da260282da34720dd63a585e41fe5beec88","d5eb5a1b8d8dbd57d44ce0b95d21744c0a6f280f87e3c71fe32d468458ef1fab","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","1273144cbd43c651b9b9175c381929c292917932d95f3344f439c5c820a96877","9779a760ba00358f676703c6aff8d1949b0af1a1dff1f96be6bb84ba0dfc563d","d970e37a6098700932e434b1953a45b7074a38956e22a860cbd1f5cdb04a6296","905a2da825bdd1fe54031aa8529bcc56facc29ea89ef9c81999280b7f3440516","29a9f41a05888f3b009b27358f4540e79bbd8d1c6a23baa6ea878609dcb95b00","09ceb0bb022cf4d482d5087ee42ebeb0ff22259a4ae13bcc031c15aa9730e648","4ad3b51ba4c9300fc07b8e7b0bfac429e456f41b88ec10f3fee6a94e0e195581","185d90877f9d2b64719212927a2ec423a779ae7df810a5d69f78bd854550e832","ea5d62dd922a32db135d2832df23fe53429dd992d4e344265560f8132bdcd37d","43bf3084f9d10256e9bf93684345f90febec9c781ce5b0459b0d31c82f34c481","9c514b4194bcd69d90270ce5a0391a75cf05d301f72878d09edaccdfbce58675","9e38b4c8a1caf172170f6dc53f1fb1f624b393ee6c73f968d133e639a2d2a624","9969cd7e0dff44c85bed8336326d451b431ff3a40a0216541157a10991c7080e","4b375cc1a520c46c7a9b7307928b18c47c96a5d6d9e5bad47ff06780ab8182d4","bb171751344ed734a88858e3b33578d76068aeb62fe00f3eb1e086da3338a58f","4681709a5803ae039b23dafceabfc415e646a0177831160bab659bfd0aaf5bf6","9e7f2539d04ad3a5871ad53d967d44c8e873c94958dd211d76ac4e2ec8605bcf","46f1a7bd4bc90eb5cc249d08bba58b44e21e25155295ab42c12cb048a64e26cc","04a8304afee3fe9665f8b7b570aea13654758ee57d5e00dbfb8c61c1f06eb6ba","457065507419abf76beb0874298b26fc0316a9aec435a196b4e38b3ef4ade674","3a92ceba1f78f4aec986ba4e8d7f1613283fb15e93e63cb218fe9496bd53e73f","72e1f9ce21af277d2b0f05e084df5336ca7e143906fffae84b0499ec7f404335","f1ac7b595d3dd459a97616e012c4ec1a536c8731330349f1695847d3e05d36d7","71ca10320b21b4851179fc9e871889e67d06943734299328d4e0f4868bb5650f","741bdbb2e56e4983e67a5c23cbc1f2c0e17837517f93d9b2bd8fe2bd74ef1c47","5ae7c0654497653849e43817a44dc0ab13946eea4de9c47924de11eb5cc154a4","b91a0b2bba50abc8ae1e80661f7c9a917fdeb783ec22746009e518e6652a912f","d34c249c0e9aecfff70d416c1034c8df6a54044101faf3abef4e0da4f47172d8","1f82d5c21f197072f8696695d64376b38918fc329dd18f40317d98027cbc56f6","426ae83d7b5303273cbbfd153a95c18d28ef3808ced0dc398fed71953be96abb","a109ba0132fd9c5735de031c6e1ec02d4f8fbc4e682fb15cc92a03368e7edee6","ae407e3f38d568244a71bd411b13a49b11e65335660f1a489c4022beb2db8b83","e3c7f8fcd7df63e3e1b2331787b5f93f4c97e3c277e79757ad67c82d5f5ecb9b","0b3fdf83b38adb996e0a5d2a63366ff0134cac6312e01da59678af284d538949","2e173fb6d12ad0c2a5bbcf6db48a23110fea51f1b0f6a18f9bb15174334377aa","a1803e94eb257e88c920d23b3069cf90956c369b78a491f6b927739f830a68eb","6ce58abe4b0e92eb01f60572107d29b3544ca260d3f729a39748edab62ec6a17","55ca1b01e67f421abd0e1e44b8fa3fdc9851fd8baea2c4a68fe6b81310e835b3","e3d2c0f7c090d37f81137d423643226622b2a607f648fd71f767674ef1d2ffb1","66606e10c3d054f097f57b0fc960962e5e5d1fa581bef2116b0a656f6d964fea","efbcd5dae3abfc3169fd4d66ea98739b0e7035626da00ccfbd94f7505da14b29","5a7b1bd243e81e959acd1ebd8c26d6332c442eb257cd6710d8353abdde37a184","4cdaf3b7d4fe1b3551fd17e06fea80106fec0d972b746b79471f51427a94e9dd","f5fcebf69783a4658e6e70073c8794d5dd52913d16af647c7e700db7c02f1d94","1afbe3a229eb09b4f191f16f845162f908ecae0074ebd1bc200600d4e11b7ae0","48386d51ec13d51606da4e0cd28eecd1a0df1e5484e8c6263c51acc81d3df4a0","f673df58364f744ceee1c42d43ff13597457da197545c76cb582a2d4e321396e","a33b5605985e476d4cef6bafef70175843424cbc3b1b47d712fd804572e2856c","6be2e5bcbc3aa8c6c3408c194306aac772b50a967f0f6855d92916773b71f94c","e8b4c96801bcc86d2b7dfbf4a1455551b74ad0d165392c786073922d603d6ca8","49ef3fa24cad6c500c8f05050731379ed0185cedf5bc3894e8907d922ff62e67","ffeb70438e8b9ed7eb22792f85cec7492a62b69d6f063e68a995cc8588dd9e27","17344da2212c22be18dc9b4ef5a97601e286edabb9ce11064fac48ea563155a9","cc43b34c8a8daccf7fa80e7ea9394b0b3fa0aff41ff1683e2bd9e75e0c140d7f","8390384268ba2522b4bbd8e14fe87325a6e79ba2b698be4b2b6cafabd7766039","a1b4c1eefd484cbb0d90f8c570d8c099d114152074cefe5fe5c76dcc0d2471a2","8779ef5d7425c71e1e76b7cc5cd587fb6d92b72f723ebf965aa4ad76d0252a39","05b5d600aa62899da2270df4437d9ad44025aa778744595b047a021c58e5bd7e","aa35970bcf818e8b22f56f79886f2810c056cdea7b0d76c5c79de739cc6a6dfe","5edeff7a30da64751bcc030c0d8715b0a25604a7b44fa2529abfac1ea3a1b552","a843b4926430dea90ff999b6dc78fc23eab770b3317d646f926d726634bdd7d2","b4bcf6eabc0611d7de7046b40b0e2e05cef3912109c435340b7a06d65d4b37c7","9b7a832bec64e7df5756783a50be435a2a21938fa8c43cbeb67f614756c814a6","87a5055cc53665dcb7becb7d9f1136a70ef849c3f5e3c9869bbac37822d7ca93","2aab7e80cf812f26129bbec513d3633d84af9776088fa0dea23ffa825ab8c2ee","37dcabab6cd1c5b64150e5475f3d29f5503f214257276ff89bcbc54f28dcb3c5","d847348dcb24db1513e5e33131fc526c2e9a46deb355b1cd439c6798ab827330","467bece4dd46a88d0e6d5524da69761a0a086e4eeef3b2e551065440e9f79caa","c65c6567da1bf6b97b91f6129e1716de0079fb33eb3f9d04ffc15fbd3de0c6e0","46696039623e10935dfca9a29fcf4638218b08d6b827aab39f555027926bad79","bb15f62520b1af73c62f2045b4a931a804d8cd3dc23da0318aa3efd910949659","bd381292b0d40328cdd1d0f5721333d491c7ccdf351775717bd5ce8b3ac1458d","d4946c883878ced316da8a9e46c12243fcbd93ea8cfc47da6c2959afe7d3fbe0","ded7eefc52adbb4ac141835a34281667c6a975b1a3f066c480d007c87b6a90d7","878956d85953f4e885028836029c525494db5fcf75e28b7b0d3bd3e6f21a148d","55d903feb1e666885ac977c563ab7cf1b822ed1645ea546adaad1c6c181abbe6","9382a9a8e9fb5c5051fc3ca25a717ee91b0cdbe87048e1aac038184b08303fbd","209db3e00f088d6183a612520315c6391ac9068c437abf4c0351cc7b032635cd","c30f0d35ded6395b98e38eeca81fd0039e235bbaa93d3bff45bfdc83dd81d615","b2628f735ed2f87aa11c53a6c31618b45f383f43eecd9c18e31290bd0ffa7a24","6b7306125586ec533593f3f78a8ac563a6ab4ae91f5d33e4ecf356f6293bb536","97d0c6080df5bb7245bbbdf0b3e2448bdfe3bc8bd6a2d631b0fdf1180ab322ae","6f94d69cd3f9b1845b321b55de499691815be7498bc735eab96c299e9c2c8543","ff8f70a8a8907ffcff329264f3fb1d7ffd5c3969bca856503705fd5e657f7c0d","d7b3103bd00de3dd0fc2595acd9f23e6ff00f3d028782b0a80baac4875ec8904","524e961478f338e3db3f6bb0058cadef55c86ecbf894a0b17b83fbef9350df68","c82b07f3229e948f4a4198de2d3a8b6130d6b4046f91a686b43994e5933193be","2946de29c5e94c3814d0afab679b4689a34e887f9805d501f7ed2dfe5e957153","542c7854e8888878c3d10a240c943d5a7396bf80e3187503d6df6d14988d547d","7dfb863ab8339b61b7ce720532b72bc2121559f6437d14f3185f87b483bf4cf7","30dc734d33426e03d5e8b2453ab7a27d77036a91d2052eaf9e4640378e03a837","2470dbe45d9be3dd34c8cd91e465c04ef7dd4500f90d5501467b6a26b304fbab","5aacc785a2eefbdf9ba09cabb76c4aae6deaf165a38583c551c53173c02c3c3f","bab3ee2151523ef842283a2184e60a86be36f2c2721c42dd84c66bad78652a99","8cbc7a7c15902ccf9dfde3b1c9fe6066070ac5f1fe2b4eccdd82d05f01d59702","36585288fe7d94442903e45cda27d51d88b891e2fad78e09790d39183c50e8ab","86fd882b52ce4269175844dee3fa2646499f047bb7561f2e124deade5836dbca","4d0ce4d3b872612bd5d9ae23abf318a0deea23e7a77998815fa5ee97181a3e55","6d9df608b78483e70bfcc8d174a96dec21093625cb2b99c812b826bccd6f2138","746283f121e57af95e4d9d06a3db91c0912e229c310675975165bd4242dde9b2","85e94ed95f85edf614871f1f85f99c1cd3d2412c6de8a31327536438147e3889","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","5139f56b2b9f991bb2736848c7d79985276ae44f40edf19e2d1da8827015e06c","6a0beec43fdc211fc692b05e0859e2634ae746ca38197bc8a69f3060e0444ee6","002a1225b2d278c6dfd54dbc724d0a539249580a2760770fc982594365638040","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","c31294ba7381e921caa30d4408fa7637053d9cb3456a750f276fd8a9bb0e42d8","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","29afd3970c68fdcbf3168de0f855d7cd84135c436050793b0584e1a904affe2d","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","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":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"0c5004386ed814334d2d4abd1d8f2f0b63ea2134d5717d8fb2fb8aabc05288ef","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":5,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[160,216],[216],[160,161,162,163,164,216],[160,162,216],[166,216],[170,171,216],[168,169,170,216],[189,216,223],[216,225],[216,226],[216,230,234],[216,236,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,239,240,241,242,243,244,245,246,247,248],[216,237,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,238,240,241,242,243,244,245,246,247,248],[216,236,237,238,239,241,242,243,244,245,246,247,248],[216,236,237,238,239,240,242,243,244,245,246,247,248],[216,236,237,238,239,240,241,243,244,245,246,247,248],[216,236,237,238,239,240,241,242,244,245,246,247,248],[216,236,237,238,239,240,241,242,243,245,246,247,248],[216,236,237,238,239,240,241,242,243,244,246,247,248],[216,236,237,238,239,240,241,242,243,244,245,247,248],[216,236,237,238,239,240,241,242,243,244,245,246,248],[216,236,237,238,239,240,241,242,243,244,245,246,247],[173,216],[176,216],[177,182,216],[178,188,189,196,205,215,216],[178,179,188,196,216],[180,216],[181,182,189,197,216],[182,205,212,216],[183,185,188,196,216],[184,216],[185,186,216],[187,188,216],[188,216],[188,189,190,205,215,216],[188,189,190,205,216],[191,196,205,215,216],[188,189,191,192,196,205,212,215,216],[191,193,205,212,215,216],[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,217,218,219,220,221,222],[188,194,216],[195,215,216],[185,188,196,205,216],[197,216],[198,216],[176,199,216],[200,214,216,220],[201,216],[202,216],[188,203,216],[203,204,216,218],[188,205,206,207,216],[205,207,216],[205,206,216],[208,216],[209,216],[188,210,211,216],[210,211,216],[182,196,205,212,216],[213,216],[196,214,216],[177,191,202,215,216],[182,216],[205,216,217],[216,218],[216,219],[177,182,188,190,199,205,215,216,218,220],[205,216,221],[216,255,294],[216,255,279,294],[216,294],[216,255],[216,255,280,294],[216,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293],[216,280,294],[216,297],[216,228,231],[216,228,231,232,233],[216,230],[50,216],[216,229],[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,216],[44,45,46,47,48,191,193,216],[45,46,48,55,155,157,216],[155,157,216],[45,46,54,55,56,153,216],[44,216],[48,50,51,52,155,216],[48,155,216],[46,47,48,49,53,54,154,157,216],[54,119,155,216],[54,155,216],[54,67,132,155,216],[54,66,103,155,216],[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,216],[54,100,101,103,155,216],[54,127,129,131,155,216],[54,131,155,216],[54,129,155,156,216],[54,68,132,155,216],[54,115,117,129,131,155,216],[54,99,102,103,155,216],[54,129,131,155,216],[54,69,132,155,216],[54,79,80,81,83,85,87,89,155,216],[54,98,129,155,216],[54,82,155,216],[54,98,155,156,216],[54,98,129,131,155,216],[54,98,155,216],[54,67,68,69,70,71,72,73,74,98,155,216],[54,64,65,75,76,78,97,103,129,155,216],[54,106,113,129,155,216],[54,140,155,216],[54,70,132,155,216],[54,66,75,103,155,216],[54,82,84,86,88,129,131,155,216],[54,82,84,86,88,115,117,129,131,155,216],[54,90,129,131,155,216],[54,98,115,131,155,216],[54,61,63,129,155,216],[54,62,113,155,216],[54,71,132,155,216],[54,92,95,155,216],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,216],[54,132,155,216],[54,124,127,129,131,155,216],[54,59,62,64,128,129,130,155,216],[54,79,80,83,85,87,89,155,216],[54,78,103,155,216],[54,77,98,103,131,155,216],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,216],[54,110,113,129,155,216],[54,94,110,155,216],[54,108,109,111,129,155,216],[54,66,129,131,155,216],[54,72,132,155,216],[54,60,129,155,216],[54,59,115,129,155,216],[54,100,103,155,216],[54,95,97,155,216],[54,96,98,103,113,129,155,156,216],[54,58,94,103,105,106,107,110,112,113,129,155,156,216],[54,115,129,155,216],[54,58,104,105,129,131,155,216],[54,129,155,216],[54,115,117,155,216],[54,79,80,83,85,87,89,115,117,155,216],[54,115,116,118,155,216],[54,58,60,92,105,114,129,155,216],[54,113,115,129,155,216],[54,95,111,114,155,216],[54,61,63,112,114,129,155,156,216],[54,95,111,113,115,155,216],[54,73,132,155,216],[54,115,122,123,125,126,129,155,216],[54,125,155,216],[54,103,155,216],[54,102,103,155,216],[54,141,155,216],[45,157,216]],"referencedMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"exportedModulesMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"semanticDiagnosticsPerFile":[162,160,159,165,161,163,164,167,172,168,171,170,224,225,226,227,235,169,237,238,236,239,240,241,242,243,244,245,246,247,248,249,250,166,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,175,222,191,192,193,223,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,251,252,253,254,279,280,255,258,277,278,268,267,265,260,273,271,275,259,272,276,261,262,274,256,263,264,266,270,281,269,257,294,293,288,290,289,282,283,285,287,291,292,284,286,295,296,297,298,44,228,232,234,233,231,50,51,230,229,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.5.5"}
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/@types/archy/index.d.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/eslint/helpers.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/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-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/@types/jest/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/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/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":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","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":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","df1fbdd6bb697b9257cd772538de95e480074dea26505ef09149de2d76cacf5c","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","e2bea78424ca2189d6241767dfd5a79ccb671eb1f195d11bf30c12d939ff1ec1","9da5b8605feafa72c5b8b690fc87b8b55aa55caeaf494b885aecd49d339fefdc","d970e37a6098700932e434b1953a45b7074a38956e22a860cbd1f5cdb04a6296","56bbbd75e0fd30aeae8f09480b010a5c687076fffd12a73c19f8095bbbc21b75","29a9f41a05888f3b009b27358f4540e79bbd8d1c6a23baa6ea878609dcb95b00","09ceb0bb022cf4d482d5087ee42ebeb0ff22259a4ae13bcc031c15aa9730e648","4ad3b51ba4c9300fc07b8e7b0bfac429e456f41b88ec10f3fee6a94e0e195581","185d90877f9d2b64719212927a2ec423a779ae7df810a5d69f78bd854550e832","ea5d62dd922a32db135d2832df23fe53429dd992d4e344265560f8132bdcd37d","43bf3084f9d10256e9bf93684345f90febec9c781ce5b0459b0d31c82f34c481","9c514b4194bcd69d90270ce5a0391a75cf05d301f72878d09edaccdfbce58675","9e38b4c8a1caf172170f6dc53f1fb1f624b393ee6c73f968d133e639a2d2a624","9969cd7e0dff44c85bed8336326d451b431ff3a40a0216541157a10991c7080e","4b375cc1a520c46c7a9b7307928b18c47c96a5d6d9e5bad47ff06780ab8182d4","bb171751344ed734a88858e3b33578d76068aeb62fe00f3eb1e086da3338a58f","4681709a5803ae039b23dafceabfc415e646a0177831160bab659bfd0aaf5bf6","9e7f2539d04ad3a5871ad53d967d44c8e873c94958dd211d76ac4e2ec8605bcf","46f1a7bd4bc90eb5cc249d08bba58b44e21e25155295ab42c12cb048a64e26cc","04a8304afee3fe9665f8b7b570aea13654758ee57d5e00dbfb8c61c1f06eb6ba","457065507419abf76beb0874298b26fc0316a9aec435a196b4e38b3ef4ade674","3a92ceba1f78f4aec986ba4e8d7f1613283fb15e93e63cb218fe9496bd53e73f","72e1f9ce21af277d2b0f05e084df5336ca7e143906fffae84b0499ec7f404335","f1ac7b595d3dd459a97616e012c4ec1a536c8731330349f1695847d3e05d36d7","71ca10320b21b4851179fc9e871889e67d06943734299328d4e0f4868bb5650f","741bdbb2e56e4983e67a5c23cbc1f2c0e17837517f93d9b2bd8fe2bd74ef1c47","5ae7c0654497653849e43817a44dc0ab13946eea4de9c47924de11eb5cc154a4","b91a0b2bba50abc8ae1e80661f7c9a917fdeb783ec22746009e518e6652a912f","d34c249c0e9aecfff70d416c1034c8df6a54044101faf3abef4e0da4f47172d8","1f82d5c21f197072f8696695d64376b38918fc329dd18f40317d98027cbc56f6","426ae83d7b5303273cbbfd153a95c18d28ef3808ced0dc398fed71953be96abb","a109ba0132fd9c5735de031c6e1ec02d4f8fbc4e682fb15cc92a03368e7edee6","ae407e3f38d568244a71bd411b13a49b11e65335660f1a489c4022beb2db8b83","e3c7f8fcd7df63e3e1b2331787b5f93f4c97e3c277e79757ad67c82d5f5ecb9b","0b3fdf83b38adb996e0a5d2a63366ff0134cac6312e01da59678af284d538949","2e173fb6d12ad0c2a5bbcf6db48a23110fea51f1b0f6a18f9bb15174334377aa","a1803e94eb257e88c920d23b3069cf90956c369b78a491f6b927739f830a68eb","6ce58abe4b0e92eb01f60572107d29b3544ca260d3f729a39748edab62ec6a17","55ca1b01e67f421abd0e1e44b8fa3fdc9851fd8baea2c4a68fe6b81310e835b3","e3d2c0f7c090d37f81137d423643226622b2a607f648fd71f767674ef1d2ffb1","66606e10c3d054f097f57b0fc960962e5e5d1fa581bef2116b0a656f6d964fea","efbcd5dae3abfc3169fd4d66ea98739b0e7035626da00ccfbd94f7505da14b29","5a7b1bd243e81e959acd1ebd8c26d6332c442eb257cd6710d8353abdde37a184","4cdaf3b7d4fe1b3551fd17e06fea80106fec0d972b746b79471f51427a94e9dd","f5fcebf69783a4658e6e70073c8794d5dd52913d16af647c7e700db7c02f1d94","1afbe3a229eb09b4f191f16f845162f908ecae0074ebd1bc200600d4e11b7ae0","48386d51ec13d51606da4e0cd28eecd1a0df1e5484e8c6263c51acc81d3df4a0","f673df58364f744ceee1c42d43ff13597457da197545c76cb582a2d4e321396e","a33b5605985e476d4cef6bafef70175843424cbc3b1b47d712fd804572e2856c","6be2e5bcbc3aa8c6c3408c194306aac772b50a967f0f6855d92916773b71f94c","e8b4c96801bcc86d2b7dfbf4a1455551b74ad0d165392c786073922d603d6ca8","49ef3fa24cad6c500c8f05050731379ed0185cedf5bc3894e8907d922ff62e67","ffeb70438e8b9ed7eb22792f85cec7492a62b69d6f063e68a995cc8588dd9e27","17344da2212c22be18dc9b4ef5a97601e286edabb9ce11064fac48ea563155a9","cc43b34c8a8daccf7fa80e7ea9394b0b3fa0aff41ff1683e2bd9e75e0c140d7f","8390384268ba2522b4bbd8e14fe87325a6e79ba2b698be4b2b6cafabd7766039","a1b4c1eefd484cbb0d90f8c570d8c099d114152074cefe5fe5c76dcc0d2471a2","8779ef5d7425c71e1e76b7cc5cd587fb6d92b72f723ebf965aa4ad76d0252a39","05b5d600aa62899da2270df4437d9ad44025aa778744595b047a021c58e5bd7e","aa35970bcf818e8b22f56f79886f2810c056cdea7b0d76c5c79de739cc6a6dfe","5edeff7a30da64751bcc030c0d8715b0a25604a7b44fa2529abfac1ea3a1b552","a843b4926430dea90ff999b6dc78fc23eab770b3317d646f926d726634bdd7d2","b4bcf6eabc0611d7de7046b40b0e2e05cef3912109c435340b7a06d65d4b37c7","9b7a832bec64e7df5756783a50be435a2a21938fa8c43cbeb67f614756c814a6","87a5055cc53665dcb7becb7d9f1136a70ef849c3f5e3c9869bbac37822d7ca93","2aab7e80cf812f26129bbec513d3633d84af9776088fa0dea23ffa825ab8c2ee","37dcabab6cd1c5b64150e5475f3d29f5503f214257276ff89bcbc54f28dcb3c5","d847348dcb24db1513e5e33131fc526c2e9a46deb355b1cd439c6798ab827330","467bece4dd46a88d0e6d5524da69761a0a086e4eeef3b2e551065440e9f79caa","c65c6567da1bf6b97b91f6129e1716de0079fb33eb3f9d04ffc15fbd3de0c6e0","46696039623e10935dfca9a29fcf4638218b08d6b827aab39f555027926bad79","bb15f62520b1af73c62f2045b4a931a804d8cd3dc23da0318aa3efd910949659","bd381292b0d40328cdd1d0f5721333d491c7ccdf351775717bd5ce8b3ac1458d","d4946c883878ced316da8a9e46c12243fcbd93ea8cfc47da6c2959afe7d3fbe0","ded7eefc52adbb4ac141835a34281667c6a975b1a3f066c480d007c87b6a90d7","878956d85953f4e885028836029c525494db5fcf75e28b7b0d3bd3e6f21a148d","55d903feb1e666885ac977c563ab7cf1b822ed1645ea546adaad1c6c181abbe6","9382a9a8e9fb5c5051fc3ca25a717ee91b0cdbe87048e1aac038184b08303fbd","209db3e00f088d6183a612520315c6391ac9068c437abf4c0351cc7b032635cd","c30f0d35ded6395b98e38eeca81fd0039e235bbaa93d3bff45bfdc83dd81d615","b2628f735ed2f87aa11c53a6c31618b45f383f43eecd9c18e31290bd0ffa7a24","6b7306125586ec533593f3f78a8ac563a6ab4ae91f5d33e4ecf356f6293bb536","97d0c6080df5bb7245bbbdf0b3e2448bdfe3bc8bd6a2d631b0fdf1180ab322ae","6f94d69cd3f9b1845b321b55de499691815be7498bc735eab96c299e9c2c8543","ff8f70a8a8907ffcff329264f3fb1d7ffd5c3969bca856503705fd5e657f7c0d","d7b3103bd00de3dd0fc2595acd9f23e6ff00f3d028782b0a80baac4875ec8904","524e961478f338e3db3f6bb0058cadef55c86ecbf894a0b17b83fbef9350df68","c82b07f3229e948f4a4198de2d3a8b6130d6b4046f91a686b43994e5933193be","2946de29c5e94c3814d0afab679b4689a34e887f9805d501f7ed2dfe5e957153","542c7854e8888878c3d10a240c943d5a7396bf80e3187503d6df6d14988d547d","7dfb863ab8339b61b7ce720532b72bc2121559f6437d14f3185f87b483bf4cf7","30dc734d33426e03d5e8b2453ab7a27d77036a91d2052eaf9e4640378e03a837","2470dbe45d9be3dd34c8cd91e465c04ef7dd4500f90d5501467b6a26b304fbab","5aacc785a2eefbdf9ba09cabb76c4aae6deaf165a38583c551c53173c02c3c3f","bab3ee2151523ef842283a2184e60a86be36f2c2721c42dd84c66bad78652a99","8cbc7a7c15902ccf9dfde3b1c9fe6066070ac5f1fe2b4eccdd82d05f01d59702","36585288fe7d94442903e45cda27d51d88b891e2fad78e09790d39183c50e8ab","86fd882b52ce4269175844dee3fa2646499f047bb7561f2e124deade5836dbca","4d0ce4d3b872612bd5d9ae23abf318a0deea23e7a77998815fa5ee97181a3e55","6d9df608b78483e70bfcc8d174a96dec21093625cb2b99c812b826bccd6f2138","746283f121e57af95e4d9d06a3db91c0912e229c310675975165bd4242dde9b2","85e94ed95f85edf614871f1f85f99c1cd3d2412c6de8a31327536438147e3889","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","9e426aeba1f78d2cd736f01b6cf03a0afd4eb4d17b78c4202c17bb23973f8135","6a0beec43fdc211fc692b05e0859e2634ae746ca38197bc8a69f3060e0444ee6","002a1225b2d278c6dfd54dbc724d0a539249580a2760770fc982594365638040","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","c31294ba7381e921caa30d4408fa7637053d9cb3456a750f276fd8a9bb0e42d8","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","29afd3970c68fdcbf3168de0f855d7cd84135c436050793b0584e1a904affe2d","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","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":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"0c5004386ed814334d2d4abd1d8f2f0b63ea2134d5717d8fb2fb8aabc05288ef","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":5,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[160,216],[216],[160,161,162,163,164,216],[160,162,216],[166,216],[170,171,216],[168,169,170,216],[189,216,223],[216,225],[216,226],[216,230,234],[216,236,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,239,240,241,242,243,244,245,246,247,248],[216,237,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,238,240,241,242,243,244,245,246,247,248],[216,236,237,238,239,241,242,243,244,245,246,247,248],[216,236,237,238,239,240,242,243,244,245,246,247,248],[216,236,237,238,239,240,241,243,244,245,246,247,248],[216,236,237,238,239,240,241,242,244,245,246,247,248],[216,236,237,238,239,240,241,242,243,245,246,247,248],[216,236,237,238,239,240,241,242,243,244,246,247,248],[216,236,237,238,239,240,241,242,243,244,245,247,248],[216,236,237,238,239,240,241,242,243,244,245,246,248],[216,236,237,238,239,240,241,242,243,244,245,246,247],[173,216],[176,216],[177,182,216],[178,188,189,196,205,215,216],[178,179,188,196,216],[180,216],[181,182,189,197,216],[182,205,212,216],[183,185,188,196,216],[184,216],[185,186,216],[187,188,216],[188,216],[188,189,190,205,215,216],[188,189,190,205,216],[191,196,205,215,216],[188,189,191,192,196,205,212,215,216],[191,193,205,212,215,216],[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,217,218,219,220,221,222],[188,194,216],[195,215,216],[185,188,196,205,216],[197,216],[198,216],[176,199,216],[200,214,216,220],[201,216],[202,216],[188,203,216],[203,204,216,218],[188,205,206,207,216],[205,207,216],[205,206,216],[208,216],[209,216],[188,210,211,216],[210,211,216],[182,196,205,212,216],[213,216],[196,214,216],[177,191,202,215,216],[182,216],[205,216,217],[216,218],[216,219],[177,182,188,190,199,205,215,216,218,220],[205,216,221],[216,255,294],[216,255,279,294],[216,294],[216,255],[216,255,280,294],[216,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293],[216,280,294],[216,297],[216,228,231],[216,228,231,232,233],[216,230],[50,216],[216,229],[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,216],[44,45,46,47,48,191,193,216],[45,46,48,55,155,157,216],[155,157,216],[45,46,54,55,56,153,216],[44,216],[48,50,51,52,155,216],[48,155,216],[46,47,48,49,53,54,154,157,216],[54,119,155,216],[54,155,216],[54,67,132,155,216],[54,66,103,155,216],[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,216],[54,100,101,103,155,216],[54,127,129,131,155,216],[54,131,155,216],[54,129,155,156,216],[54,68,132,155,216],[54,115,117,129,131,155,216],[54,99,102,103,155,216],[54,129,131,155,216],[54,69,132,155,216],[54,79,80,81,83,85,87,89,155,216],[54,98,129,155,216],[54,82,155,216],[54,98,155,156,216],[54,98,129,131,155,216],[54,98,155,216],[54,67,68,69,70,71,72,73,74,98,155,216],[54,64,65,75,76,78,97,103,129,155,216],[54,106,113,129,155,216],[54,140,155,216],[54,70,132,155,216],[54,66,75,103,155,216],[54,82,84,86,88,129,131,155,216],[54,82,84,86,88,115,117,129,131,155,216],[54,90,129,131,155,216],[54,98,115,131,155,216],[54,61,63,129,155,216],[54,62,113,155,216],[54,71,132,155,216],[54,92,95,155,216],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,216],[54,132,155,216],[54,124,127,129,131,155,216],[54,59,62,64,128,129,130,155,216],[54,79,80,83,85,87,89,155,216],[54,78,103,155,216],[54,77,98,103,131,155,216],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,216],[54,110,113,129,155,216],[54,94,110,155,216],[54,108,109,111,129,155,216],[54,66,129,131,155,216],[54,72,132,155,216],[54,60,129,155,216],[54,59,115,129,155,216],[54,100,103,155,216],[54,95,97,155,216],[54,96,98,103,113,129,155,156,216],[54,58,94,103,105,106,107,110,112,113,129,155,156,216],[54,115,129,155,216],[54,58,104,105,129,131,155,216],[54,129,155,216],[54,115,117,155,216],[54,79,80,83,85,87,89,115,117,155,216],[54,115,116,118,155,216],[54,58,60,92,105,114,129,155,216],[54,113,115,129,155,216],[54,95,111,114,155,216],[54,61,63,112,114,129,155,156,216],[54,95,111,113,115,155,216],[54,73,132,155,216],[54,115,122,123,125,126,129,155,216],[54,125,155,216],[54,103,155,216],[54,102,103,155,216],[54,141,155,216],[45,157,216]],"referencedMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"exportedModulesMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"semanticDiagnosticsPerFile":[162,160,159,165,161,163,164,167,172,168,171,170,224,225,226,227,235,169,237,238,236,239,240,241,242,243,244,245,246,247,248,249,250,166,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,175,222,191,192,193,223,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,251,252,253,254,279,280,255,258,277,278,268,267,265,260,273,271,275,259,272,276,261,262,274,256,263,264,266,270,281,269,257,294,293,288,290,289,282,283,285,287,291,292,284,286,295,296,297,298,44,228,232,234,233,231,50,51,230,229,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.5.5"}
@@ -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/@types/archy/index.d.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/eslint/helpers.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/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-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/@types/jest/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/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/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":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","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":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","e5f6c63fb54c0994eda77393e2f10da260282da34720dd63a585e41fe5beec88","d5eb5a1b8d8dbd57d44ce0b95d21744c0a6f280f87e3c71fe32d468458ef1fab","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","1273144cbd43c651b9b9175c381929c292917932d95f3344f439c5c820a96877","9779a760ba00358f676703c6aff8d1949b0af1a1dff1f96be6bb84ba0dfc563d","d970e37a6098700932e434b1953a45b7074a38956e22a860cbd1f5cdb04a6296","905a2da825bdd1fe54031aa8529bcc56facc29ea89ef9c81999280b7f3440516","29a9f41a05888f3b009b27358f4540e79bbd8d1c6a23baa6ea878609dcb95b00","09ceb0bb022cf4d482d5087ee42ebeb0ff22259a4ae13bcc031c15aa9730e648","4ad3b51ba4c9300fc07b8e7b0bfac429e456f41b88ec10f3fee6a94e0e195581","185d90877f9d2b64719212927a2ec423a779ae7df810a5d69f78bd854550e832","ea5d62dd922a32db135d2832df23fe53429dd992d4e344265560f8132bdcd37d","43bf3084f9d10256e9bf93684345f90febec9c781ce5b0459b0d31c82f34c481","9c514b4194bcd69d90270ce5a0391a75cf05d301f72878d09edaccdfbce58675","9e38b4c8a1caf172170f6dc53f1fb1f624b393ee6c73f968d133e639a2d2a624","9969cd7e0dff44c85bed8336326d451b431ff3a40a0216541157a10991c7080e","4b375cc1a520c46c7a9b7307928b18c47c96a5d6d9e5bad47ff06780ab8182d4","bb171751344ed734a88858e3b33578d76068aeb62fe00f3eb1e086da3338a58f","4681709a5803ae039b23dafceabfc415e646a0177831160bab659bfd0aaf5bf6","9e7f2539d04ad3a5871ad53d967d44c8e873c94958dd211d76ac4e2ec8605bcf","46f1a7bd4bc90eb5cc249d08bba58b44e21e25155295ab42c12cb048a64e26cc","04a8304afee3fe9665f8b7b570aea13654758ee57d5e00dbfb8c61c1f06eb6ba","457065507419abf76beb0874298b26fc0316a9aec435a196b4e38b3ef4ade674","3a92ceba1f78f4aec986ba4e8d7f1613283fb15e93e63cb218fe9496bd53e73f","72e1f9ce21af277d2b0f05e084df5336ca7e143906fffae84b0499ec7f404335","f1ac7b595d3dd459a97616e012c4ec1a536c8731330349f1695847d3e05d36d7","71ca10320b21b4851179fc9e871889e67d06943734299328d4e0f4868bb5650f","741bdbb2e56e4983e67a5c23cbc1f2c0e17837517f93d9b2bd8fe2bd74ef1c47","5ae7c0654497653849e43817a44dc0ab13946eea4de9c47924de11eb5cc154a4","b91a0b2bba50abc8ae1e80661f7c9a917fdeb783ec22746009e518e6652a912f","d34c249c0e9aecfff70d416c1034c8df6a54044101faf3abef4e0da4f47172d8","1f82d5c21f197072f8696695d64376b38918fc329dd18f40317d98027cbc56f6","426ae83d7b5303273cbbfd153a95c18d28ef3808ced0dc398fed71953be96abb","a109ba0132fd9c5735de031c6e1ec02d4f8fbc4e682fb15cc92a03368e7edee6","ae407e3f38d568244a71bd411b13a49b11e65335660f1a489c4022beb2db8b83","e3c7f8fcd7df63e3e1b2331787b5f93f4c97e3c277e79757ad67c82d5f5ecb9b","0b3fdf83b38adb996e0a5d2a63366ff0134cac6312e01da59678af284d538949","2e173fb6d12ad0c2a5bbcf6db48a23110fea51f1b0f6a18f9bb15174334377aa","a1803e94eb257e88c920d23b3069cf90956c369b78a491f6b927739f830a68eb","6ce58abe4b0e92eb01f60572107d29b3544ca260d3f729a39748edab62ec6a17","55ca1b01e67f421abd0e1e44b8fa3fdc9851fd8baea2c4a68fe6b81310e835b3","e3d2c0f7c090d37f81137d423643226622b2a607f648fd71f767674ef1d2ffb1","66606e10c3d054f097f57b0fc960962e5e5d1fa581bef2116b0a656f6d964fea","efbcd5dae3abfc3169fd4d66ea98739b0e7035626da00ccfbd94f7505da14b29","5a7b1bd243e81e959acd1ebd8c26d6332c442eb257cd6710d8353abdde37a184","4cdaf3b7d4fe1b3551fd17e06fea80106fec0d972b746b79471f51427a94e9dd","f5fcebf69783a4658e6e70073c8794d5dd52913d16af647c7e700db7c02f1d94","1afbe3a229eb09b4f191f16f845162f908ecae0074ebd1bc200600d4e11b7ae0","48386d51ec13d51606da4e0cd28eecd1a0df1e5484e8c6263c51acc81d3df4a0","f673df58364f744ceee1c42d43ff13597457da197545c76cb582a2d4e321396e","a33b5605985e476d4cef6bafef70175843424cbc3b1b47d712fd804572e2856c","6be2e5bcbc3aa8c6c3408c194306aac772b50a967f0f6855d92916773b71f94c","e8b4c96801bcc86d2b7dfbf4a1455551b74ad0d165392c786073922d603d6ca8","49ef3fa24cad6c500c8f05050731379ed0185cedf5bc3894e8907d922ff62e67","ffeb70438e8b9ed7eb22792f85cec7492a62b69d6f063e68a995cc8588dd9e27","17344da2212c22be18dc9b4ef5a97601e286edabb9ce11064fac48ea563155a9","cc43b34c8a8daccf7fa80e7ea9394b0b3fa0aff41ff1683e2bd9e75e0c140d7f","8390384268ba2522b4bbd8e14fe87325a6e79ba2b698be4b2b6cafabd7766039","a1b4c1eefd484cbb0d90f8c570d8c099d114152074cefe5fe5c76dcc0d2471a2","8779ef5d7425c71e1e76b7cc5cd587fb6d92b72f723ebf965aa4ad76d0252a39","05b5d600aa62899da2270df4437d9ad44025aa778744595b047a021c58e5bd7e","aa35970bcf818e8b22f56f79886f2810c056cdea7b0d76c5c79de739cc6a6dfe","5edeff7a30da64751bcc030c0d8715b0a25604a7b44fa2529abfac1ea3a1b552","a843b4926430dea90ff999b6dc78fc23eab770b3317d646f926d726634bdd7d2","b4bcf6eabc0611d7de7046b40b0e2e05cef3912109c435340b7a06d65d4b37c7","9b7a832bec64e7df5756783a50be435a2a21938fa8c43cbeb67f614756c814a6","87a5055cc53665dcb7becb7d9f1136a70ef849c3f5e3c9869bbac37822d7ca93","2aab7e80cf812f26129bbec513d3633d84af9776088fa0dea23ffa825ab8c2ee","37dcabab6cd1c5b64150e5475f3d29f5503f214257276ff89bcbc54f28dcb3c5","d847348dcb24db1513e5e33131fc526c2e9a46deb355b1cd439c6798ab827330","467bece4dd46a88d0e6d5524da69761a0a086e4eeef3b2e551065440e9f79caa","c65c6567da1bf6b97b91f6129e1716de0079fb33eb3f9d04ffc15fbd3de0c6e0","46696039623e10935dfca9a29fcf4638218b08d6b827aab39f555027926bad79","bb15f62520b1af73c62f2045b4a931a804d8cd3dc23da0318aa3efd910949659","bd381292b0d40328cdd1d0f5721333d491c7ccdf351775717bd5ce8b3ac1458d","d4946c883878ced316da8a9e46c12243fcbd93ea8cfc47da6c2959afe7d3fbe0","ded7eefc52adbb4ac141835a34281667c6a975b1a3f066c480d007c87b6a90d7","878956d85953f4e885028836029c525494db5fcf75e28b7b0d3bd3e6f21a148d","55d903feb1e666885ac977c563ab7cf1b822ed1645ea546adaad1c6c181abbe6","9382a9a8e9fb5c5051fc3ca25a717ee91b0cdbe87048e1aac038184b08303fbd","209db3e00f088d6183a612520315c6391ac9068c437abf4c0351cc7b032635cd","c30f0d35ded6395b98e38eeca81fd0039e235bbaa93d3bff45bfdc83dd81d615","b2628f735ed2f87aa11c53a6c31618b45f383f43eecd9c18e31290bd0ffa7a24","6b7306125586ec533593f3f78a8ac563a6ab4ae91f5d33e4ecf356f6293bb536","97d0c6080df5bb7245bbbdf0b3e2448bdfe3bc8bd6a2d631b0fdf1180ab322ae","6f94d69cd3f9b1845b321b55de499691815be7498bc735eab96c299e9c2c8543","ff8f70a8a8907ffcff329264f3fb1d7ffd5c3969bca856503705fd5e657f7c0d","d7b3103bd00de3dd0fc2595acd9f23e6ff00f3d028782b0a80baac4875ec8904","524e961478f338e3db3f6bb0058cadef55c86ecbf894a0b17b83fbef9350df68","c82b07f3229e948f4a4198de2d3a8b6130d6b4046f91a686b43994e5933193be","2946de29c5e94c3814d0afab679b4689a34e887f9805d501f7ed2dfe5e957153","542c7854e8888878c3d10a240c943d5a7396bf80e3187503d6df6d14988d547d","7dfb863ab8339b61b7ce720532b72bc2121559f6437d14f3185f87b483bf4cf7","30dc734d33426e03d5e8b2453ab7a27d77036a91d2052eaf9e4640378e03a837","2470dbe45d9be3dd34c8cd91e465c04ef7dd4500f90d5501467b6a26b304fbab","5aacc785a2eefbdf9ba09cabb76c4aae6deaf165a38583c551c53173c02c3c3f","bab3ee2151523ef842283a2184e60a86be36f2c2721c42dd84c66bad78652a99","8cbc7a7c15902ccf9dfde3b1c9fe6066070ac5f1fe2b4eccdd82d05f01d59702","36585288fe7d94442903e45cda27d51d88b891e2fad78e09790d39183c50e8ab","86fd882b52ce4269175844dee3fa2646499f047bb7561f2e124deade5836dbca","4d0ce4d3b872612bd5d9ae23abf318a0deea23e7a77998815fa5ee97181a3e55","6d9df608b78483e70bfcc8d174a96dec21093625cb2b99c812b826bccd6f2138","746283f121e57af95e4d9d06a3db91c0912e229c310675975165bd4242dde9b2","85e94ed95f85edf614871f1f85f99c1cd3d2412c6de8a31327536438147e3889","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","5139f56b2b9f991bb2736848c7d79985276ae44f40edf19e2d1da8827015e06c","6a0beec43fdc211fc692b05e0859e2634ae746ca38197bc8a69f3060e0444ee6","002a1225b2d278c6dfd54dbc724d0a539249580a2760770fc982594365638040","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","c31294ba7381e921caa30d4408fa7637053d9cb3456a750f276fd8a9bb0e42d8","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","29afd3970c68fdcbf3168de0f855d7cd84135c436050793b0584e1a904affe2d","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","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":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"0c5004386ed814334d2d4abd1d8f2f0b63ea2134d5717d8fb2fb8aabc05288ef","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[160,216],[216],[160,161,162,163,164,216],[160,162,216],[166,216],[170,171,216],[168,169,170,216],[189,216,223],[216,225],[216,226],[216,230,234],[216,236,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,239,240,241,242,243,244,245,246,247,248],[216,237,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,238,240,241,242,243,244,245,246,247,248],[216,236,237,238,239,241,242,243,244,245,246,247,248],[216,236,237,238,239,240,242,243,244,245,246,247,248],[216,236,237,238,239,240,241,243,244,245,246,247,248],[216,236,237,238,239,240,241,242,244,245,246,247,248],[216,236,237,238,239,240,241,242,243,245,246,247,248],[216,236,237,238,239,240,241,242,243,244,246,247,248],[216,236,237,238,239,240,241,242,243,244,245,247,248],[216,236,237,238,239,240,241,242,243,244,245,246,248],[216,236,237,238,239,240,241,242,243,244,245,246,247],[173,216],[176,216],[177,182,216],[178,188,189,196,205,215,216],[178,179,188,196,216],[180,216],[181,182,189,197,216],[182,205,212,216],[183,185,188,196,216],[184,216],[185,186,216],[187,188,216],[188,216],[188,189,190,205,215,216],[188,189,190,205,216],[191,196,205,215,216],[188,189,191,192,196,205,212,215,216],[191,193,205,212,215,216],[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,217,218,219,220,221,222],[188,194,216],[195,215,216],[185,188,196,205,216],[197,216],[198,216],[176,199,216],[200,214,216,220],[201,216],[202,216],[188,203,216],[203,204,216,218],[188,205,206,207,216],[205,207,216],[205,206,216],[208,216],[209,216],[188,210,211,216],[210,211,216],[182,196,205,212,216],[213,216],[196,214,216],[177,191,202,215,216],[182,216],[205,216,217],[216,218],[216,219],[177,182,188,190,199,205,215,216,218,220],[205,216,221],[216,255,294],[216,255,279,294],[216,294],[216,255],[216,255,280,294],[216,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293],[216,280,294],[216,297],[216,228,231],[216,228,231,232,233],[216,230],[50,216],[216,229],[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,216],[44,45,46,47,48,191,193,216],[45,46,48,55,155,157,216],[155,157,216],[45,46,54,55,56,153,216],[44,216],[48,50,51,52,155,216],[48,155,216],[46,47,48,49,53,54,154,157,216],[54,119,155,216],[54,155,216],[54,67,132,155,216],[54,66,103,155,216],[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,216],[54,100,101,103,155,216],[54,127,129,131,155,216],[54,131,155,216],[54,129,155,156,216],[54,68,132,155,216],[54,115,117,129,131,155,216],[54,99,102,103,155,216],[54,129,131,155,216],[54,69,132,155,216],[54,79,80,81,83,85,87,89,155,216],[54,98,129,155,216],[54,82,155,216],[54,98,155,156,216],[54,98,129,131,155,216],[54,98,155,216],[54,67,68,69,70,71,72,73,74,98,155,216],[54,64,65,75,76,78,97,103,129,155,216],[54,106,113,129,155,216],[54,140,155,216],[54,70,132,155,216],[54,66,75,103,155,216],[54,82,84,86,88,129,131,155,216],[54,82,84,86,88,115,117,129,131,155,216],[54,90,129,131,155,216],[54,98,115,131,155,216],[54,61,63,129,155,216],[54,62,113,155,216],[54,71,132,155,216],[54,92,95,155,216],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,216],[54,132,155,216],[54,124,127,129,131,155,216],[54,59,62,64,128,129,130,155,216],[54,79,80,83,85,87,89,155,216],[54,78,103,155,216],[54,77,98,103,131,155,216],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,216],[54,110,113,129,155,216],[54,94,110,155,216],[54,108,109,111,129,155,216],[54,66,129,131,155,216],[54,72,132,155,216],[54,60,129,155,216],[54,59,115,129,155,216],[54,100,103,155,216],[54,95,97,155,216],[54,96,98,103,113,129,155,156,216],[54,58,94,103,105,106,107,110,112,113,129,155,156,216],[54,115,129,155,216],[54,58,104,105,129,131,155,216],[54,129,155,216],[54,115,117,155,216],[54,79,80,83,85,87,89,115,117,155,216],[54,115,116,118,155,216],[54,58,60,92,105,114,129,155,216],[54,113,115,129,155,216],[54,95,111,114,155,216],[54,61,63,112,114,129,155,156,216],[54,95,111,113,115,155,216],[54,73,132,155,216],[54,115,122,123,125,126,129,155,216],[54,125,155,216],[54,103,155,216],[54,102,103,155,216],[54,141,155,216],[45,157,216]],"referencedMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"exportedModulesMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"semanticDiagnosticsPerFile":[162,160,159,165,161,163,164,167,172,168,171,170,224,225,226,227,235,169,237,238,236,239,240,241,242,243,244,245,246,247,248,249,250,166,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,175,222,191,192,193,223,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,251,252,253,254,279,280,255,258,277,278,268,267,265,260,273,271,275,259,272,276,261,262,274,256,263,264,266,270,281,269,257,294,293,288,290,289,282,283,285,287,291,292,284,286,295,296,297,298,44,228,232,234,233,231,50,51,230,229,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.5.5"}
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/@types/archy/index.d.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/eslint/helpers.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/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-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/@types/jest/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/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/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":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","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":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","2808645b990069e5f8b5ff14c9f1e6077eb642583c3f7854012d60757f23c70e","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","d101f545ee607d5b410b04361978a53231524e9b7862c23c27d9d67180fe4e95","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","df1fbdd6bb697b9257cd772538de95e480074dea26505ef09149de2d76cacf5c","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","e2bea78424ca2189d6241767dfd5a79ccb671eb1f195d11bf30c12d939ff1ec1","9da5b8605feafa72c5b8b690fc87b8b55aa55caeaf494b885aecd49d339fefdc","d970e37a6098700932e434b1953a45b7074a38956e22a860cbd1f5cdb04a6296","56bbbd75e0fd30aeae8f09480b010a5c687076fffd12a73c19f8095bbbc21b75","29a9f41a05888f3b009b27358f4540e79bbd8d1c6a23baa6ea878609dcb95b00","09ceb0bb022cf4d482d5087ee42ebeb0ff22259a4ae13bcc031c15aa9730e648","4ad3b51ba4c9300fc07b8e7b0bfac429e456f41b88ec10f3fee6a94e0e195581","185d90877f9d2b64719212927a2ec423a779ae7df810a5d69f78bd854550e832","ea5d62dd922a32db135d2832df23fe53429dd992d4e344265560f8132bdcd37d","43bf3084f9d10256e9bf93684345f90febec9c781ce5b0459b0d31c82f34c481","9c514b4194bcd69d90270ce5a0391a75cf05d301f72878d09edaccdfbce58675","9e38b4c8a1caf172170f6dc53f1fb1f624b393ee6c73f968d133e639a2d2a624","9969cd7e0dff44c85bed8336326d451b431ff3a40a0216541157a10991c7080e","4b375cc1a520c46c7a9b7307928b18c47c96a5d6d9e5bad47ff06780ab8182d4","bb171751344ed734a88858e3b33578d76068aeb62fe00f3eb1e086da3338a58f","4681709a5803ae039b23dafceabfc415e646a0177831160bab659bfd0aaf5bf6","9e7f2539d04ad3a5871ad53d967d44c8e873c94958dd211d76ac4e2ec8605bcf","46f1a7bd4bc90eb5cc249d08bba58b44e21e25155295ab42c12cb048a64e26cc","04a8304afee3fe9665f8b7b570aea13654758ee57d5e00dbfb8c61c1f06eb6ba","457065507419abf76beb0874298b26fc0316a9aec435a196b4e38b3ef4ade674","3a92ceba1f78f4aec986ba4e8d7f1613283fb15e93e63cb218fe9496bd53e73f","72e1f9ce21af277d2b0f05e084df5336ca7e143906fffae84b0499ec7f404335","f1ac7b595d3dd459a97616e012c4ec1a536c8731330349f1695847d3e05d36d7","71ca10320b21b4851179fc9e871889e67d06943734299328d4e0f4868bb5650f","741bdbb2e56e4983e67a5c23cbc1f2c0e17837517f93d9b2bd8fe2bd74ef1c47","5ae7c0654497653849e43817a44dc0ab13946eea4de9c47924de11eb5cc154a4","b91a0b2bba50abc8ae1e80661f7c9a917fdeb783ec22746009e518e6652a912f","d34c249c0e9aecfff70d416c1034c8df6a54044101faf3abef4e0da4f47172d8","1f82d5c21f197072f8696695d64376b38918fc329dd18f40317d98027cbc56f6","426ae83d7b5303273cbbfd153a95c18d28ef3808ced0dc398fed71953be96abb","a109ba0132fd9c5735de031c6e1ec02d4f8fbc4e682fb15cc92a03368e7edee6","ae407e3f38d568244a71bd411b13a49b11e65335660f1a489c4022beb2db8b83","e3c7f8fcd7df63e3e1b2331787b5f93f4c97e3c277e79757ad67c82d5f5ecb9b","0b3fdf83b38adb996e0a5d2a63366ff0134cac6312e01da59678af284d538949","2e173fb6d12ad0c2a5bbcf6db48a23110fea51f1b0f6a18f9bb15174334377aa","a1803e94eb257e88c920d23b3069cf90956c369b78a491f6b927739f830a68eb","6ce58abe4b0e92eb01f60572107d29b3544ca260d3f729a39748edab62ec6a17","55ca1b01e67f421abd0e1e44b8fa3fdc9851fd8baea2c4a68fe6b81310e835b3","e3d2c0f7c090d37f81137d423643226622b2a607f648fd71f767674ef1d2ffb1","66606e10c3d054f097f57b0fc960962e5e5d1fa581bef2116b0a656f6d964fea","efbcd5dae3abfc3169fd4d66ea98739b0e7035626da00ccfbd94f7505da14b29","5a7b1bd243e81e959acd1ebd8c26d6332c442eb257cd6710d8353abdde37a184","4cdaf3b7d4fe1b3551fd17e06fea80106fec0d972b746b79471f51427a94e9dd","f5fcebf69783a4658e6e70073c8794d5dd52913d16af647c7e700db7c02f1d94","1afbe3a229eb09b4f191f16f845162f908ecae0074ebd1bc200600d4e11b7ae0","48386d51ec13d51606da4e0cd28eecd1a0df1e5484e8c6263c51acc81d3df4a0","f673df58364f744ceee1c42d43ff13597457da197545c76cb582a2d4e321396e","a33b5605985e476d4cef6bafef70175843424cbc3b1b47d712fd804572e2856c","6be2e5bcbc3aa8c6c3408c194306aac772b50a967f0f6855d92916773b71f94c","e8b4c96801bcc86d2b7dfbf4a1455551b74ad0d165392c786073922d603d6ca8","49ef3fa24cad6c500c8f05050731379ed0185cedf5bc3894e8907d922ff62e67","ffeb70438e8b9ed7eb22792f85cec7492a62b69d6f063e68a995cc8588dd9e27","17344da2212c22be18dc9b4ef5a97601e286edabb9ce11064fac48ea563155a9","cc43b34c8a8daccf7fa80e7ea9394b0b3fa0aff41ff1683e2bd9e75e0c140d7f","8390384268ba2522b4bbd8e14fe87325a6e79ba2b698be4b2b6cafabd7766039","a1b4c1eefd484cbb0d90f8c570d8c099d114152074cefe5fe5c76dcc0d2471a2","8779ef5d7425c71e1e76b7cc5cd587fb6d92b72f723ebf965aa4ad76d0252a39","05b5d600aa62899da2270df4437d9ad44025aa778744595b047a021c58e5bd7e","aa35970bcf818e8b22f56f79886f2810c056cdea7b0d76c5c79de739cc6a6dfe","5edeff7a30da64751bcc030c0d8715b0a25604a7b44fa2529abfac1ea3a1b552","a843b4926430dea90ff999b6dc78fc23eab770b3317d646f926d726634bdd7d2","b4bcf6eabc0611d7de7046b40b0e2e05cef3912109c435340b7a06d65d4b37c7","9b7a832bec64e7df5756783a50be435a2a21938fa8c43cbeb67f614756c814a6","87a5055cc53665dcb7becb7d9f1136a70ef849c3f5e3c9869bbac37822d7ca93","2aab7e80cf812f26129bbec513d3633d84af9776088fa0dea23ffa825ab8c2ee","37dcabab6cd1c5b64150e5475f3d29f5503f214257276ff89bcbc54f28dcb3c5","d847348dcb24db1513e5e33131fc526c2e9a46deb355b1cd439c6798ab827330","467bece4dd46a88d0e6d5524da69761a0a086e4eeef3b2e551065440e9f79caa","c65c6567da1bf6b97b91f6129e1716de0079fb33eb3f9d04ffc15fbd3de0c6e0","46696039623e10935dfca9a29fcf4638218b08d6b827aab39f555027926bad79","bb15f62520b1af73c62f2045b4a931a804d8cd3dc23da0318aa3efd910949659","bd381292b0d40328cdd1d0f5721333d491c7ccdf351775717bd5ce8b3ac1458d","d4946c883878ced316da8a9e46c12243fcbd93ea8cfc47da6c2959afe7d3fbe0","ded7eefc52adbb4ac141835a34281667c6a975b1a3f066c480d007c87b6a90d7","878956d85953f4e885028836029c525494db5fcf75e28b7b0d3bd3e6f21a148d","55d903feb1e666885ac977c563ab7cf1b822ed1645ea546adaad1c6c181abbe6","9382a9a8e9fb5c5051fc3ca25a717ee91b0cdbe87048e1aac038184b08303fbd","209db3e00f088d6183a612520315c6391ac9068c437abf4c0351cc7b032635cd","c30f0d35ded6395b98e38eeca81fd0039e235bbaa93d3bff45bfdc83dd81d615","b2628f735ed2f87aa11c53a6c31618b45f383f43eecd9c18e31290bd0ffa7a24","6b7306125586ec533593f3f78a8ac563a6ab4ae91f5d33e4ecf356f6293bb536","97d0c6080df5bb7245bbbdf0b3e2448bdfe3bc8bd6a2d631b0fdf1180ab322ae","6f94d69cd3f9b1845b321b55de499691815be7498bc735eab96c299e9c2c8543","ff8f70a8a8907ffcff329264f3fb1d7ffd5c3969bca856503705fd5e657f7c0d","d7b3103bd00de3dd0fc2595acd9f23e6ff00f3d028782b0a80baac4875ec8904","524e961478f338e3db3f6bb0058cadef55c86ecbf894a0b17b83fbef9350df68","c82b07f3229e948f4a4198de2d3a8b6130d6b4046f91a686b43994e5933193be","2946de29c5e94c3814d0afab679b4689a34e887f9805d501f7ed2dfe5e957153","542c7854e8888878c3d10a240c943d5a7396bf80e3187503d6df6d14988d547d","7dfb863ab8339b61b7ce720532b72bc2121559f6437d14f3185f87b483bf4cf7","30dc734d33426e03d5e8b2453ab7a27d77036a91d2052eaf9e4640378e03a837","2470dbe45d9be3dd34c8cd91e465c04ef7dd4500f90d5501467b6a26b304fbab","5aacc785a2eefbdf9ba09cabb76c4aae6deaf165a38583c551c53173c02c3c3f","bab3ee2151523ef842283a2184e60a86be36f2c2721c42dd84c66bad78652a99","8cbc7a7c15902ccf9dfde3b1c9fe6066070ac5f1fe2b4eccdd82d05f01d59702","36585288fe7d94442903e45cda27d51d88b891e2fad78e09790d39183c50e8ab","86fd882b52ce4269175844dee3fa2646499f047bb7561f2e124deade5836dbca","4d0ce4d3b872612bd5d9ae23abf318a0deea23e7a77998815fa5ee97181a3e55","6d9df608b78483e70bfcc8d174a96dec21093625cb2b99c812b826bccd6f2138","746283f121e57af95e4d9d06a3db91c0912e229c310675975165bd4242dde9b2","85e94ed95f85edf614871f1f85f99c1cd3d2412c6de8a31327536438147e3889","5731edc0c145293734fc78efd29248639fc96faae1bf1b6bd4a24a8b271e3d36","9e426aeba1f78d2cd736f01b6cf03a0afd4eb4d17b78c4202c17bb23973f8135","6a0beec43fdc211fc692b05e0859e2634ae746ca38197bc8a69f3060e0444ee6","002a1225b2d278c6dfd54dbc724d0a539249580a2760770fc982594365638040","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","c31294ba7381e921caa30d4408fa7637053d9cb3456a750f276fd8a9bb0e42d8","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","29afd3970c68fdcbf3168de0f855d7cd84135c436050793b0584e1a904affe2d","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","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":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"0c5004386ed814334d2d4abd1d8f2f0b63ea2134d5717d8fb2fb8aabc05288ef","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[160,216],[216],[160,161,162,163,164,216],[160,162,216],[166,216],[170,171,216],[168,169,170,216],[189,216,223],[216,225],[216,226],[216,230,234],[216,236,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,239,240,241,242,243,244,245,246,247,248],[216,237,238,239,240,241,242,243,244,245,246,247,248],[216,236,237,238,240,241,242,243,244,245,246,247,248],[216,236,237,238,239,241,242,243,244,245,246,247,248],[216,236,237,238,239,240,242,243,244,245,246,247,248],[216,236,237,238,239,240,241,243,244,245,246,247,248],[216,236,237,238,239,240,241,242,244,245,246,247,248],[216,236,237,238,239,240,241,242,243,245,246,247,248],[216,236,237,238,239,240,241,242,243,244,246,247,248],[216,236,237,238,239,240,241,242,243,244,245,247,248],[216,236,237,238,239,240,241,242,243,244,245,246,248],[216,236,237,238,239,240,241,242,243,244,245,246,247],[173,216],[176,216],[177,182,216],[178,188,189,196,205,215,216],[178,179,188,196,216],[180,216],[181,182,189,197,216],[182,205,212,216],[183,185,188,196,216],[184,216],[185,186,216],[187,188,216],[188,216],[188,189,190,205,215,216],[188,189,190,205,216],[191,196,205,215,216],[188,189,191,192,196,205,212,215,216],[191,193,205,212,215,216],[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,217,218,219,220,221,222],[188,194,216],[195,215,216],[185,188,196,205,216],[197,216],[198,216],[176,199,216],[200,214,216,220],[201,216],[202,216],[188,203,216],[203,204,216,218],[188,205,206,207,216],[205,207,216],[205,206,216],[208,216],[209,216],[188,210,211,216],[210,211,216],[182,196,205,212,216],[213,216],[196,214,216],[177,191,202,215,216],[182,216],[205,216,217],[216,218],[216,219],[177,182,188,190,199,205,215,216,218,220],[205,216,221],[216,255,294],[216,255,279,294],[216,294],[216,255],[216,255,280,294],[216,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293],[216,280,294],[216,297],[216,228,231],[216,228,231,232,233],[216,230],[50,216],[216,229],[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,216],[44,45,46,47,48,191,193,216],[45,46,48,55,155,157,216],[155,157,216],[45,46,54,55,56,153,216],[44,216],[48,50,51,52,155,216],[48,155,216],[46,47,48,49,53,54,154,157,216],[54,119,155,216],[54,155,216],[54,67,132,155,216],[54,66,103,155,216],[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,216],[54,100,101,103,155,216],[54,127,129,131,155,216],[54,131,155,216],[54,129,155,156,216],[54,68,132,155,216],[54,115,117,129,131,155,216],[54,99,102,103,155,216],[54,129,131,155,216],[54,69,132,155,216],[54,79,80,81,83,85,87,89,155,216],[54,98,129,155,216],[54,82,155,216],[54,98,155,156,216],[54,98,129,131,155,216],[54,98,155,216],[54,67,68,69,70,71,72,73,74,98,155,216],[54,64,65,75,76,78,97,103,129,155,216],[54,106,113,129,155,216],[54,140,155,216],[54,70,132,155,216],[54,66,75,103,155,216],[54,82,84,86,88,129,131,155,216],[54,82,84,86,88,115,117,129,131,155,216],[54,90,129,131,155,216],[54,98,115,131,155,216],[54,61,63,129,155,216],[54,62,113,155,216],[54,71,132,155,216],[54,92,95,155,216],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,216],[54,132,155,216],[54,124,127,129,131,155,216],[54,59,62,64,128,129,130,155,216],[54,79,80,83,85,87,89,155,216],[54,78,103,155,216],[54,77,98,103,131,155,216],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,216],[54,110,113,129,155,216],[54,94,110,155,216],[54,108,109,111,129,155,216],[54,66,129,131,155,216],[54,72,132,155,216],[54,60,129,155,216],[54,59,115,129,155,216],[54,100,103,155,216],[54,95,97,155,216],[54,96,98,103,113,129,155,156,216],[54,58,94,103,105,106,107,110,112,113,129,155,156,216],[54,115,129,155,216],[54,58,104,105,129,131,155,216],[54,129,155,216],[54,115,117,155,216],[54,79,80,83,85,87,89,115,117,155,216],[54,115,116,118,155,216],[54,58,60,92,105,114,129,155,216],[54,113,115,129,155,216],[54,95,111,114,155,216],[54,61,63,112,114,129,155,156,216],[54,95,111,113,115,155,216],[54,73,132,155,216],[54,115,122,123,125,126,129,155,216],[54,125,155,216],[54,103,155,216],[54,102,103,155,216],[54,141,155,216],[45,157,216]],"referencedMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"exportedModulesMap":[[162,1],[160,2],[159,2],[165,3],[161,1],[163,4],[164,1],[167,5],[172,6],[168,2],[171,7],[170,2],[224,8],[225,2],[226,9],[227,10],[235,11],[169,2],[237,12],[238,13],[236,14],[239,15],[240,16],[241,17],[242,18],[243,19],[244,20],[245,21],[246,22],[247,23],[248,24],[249,2],[250,2],[166,2],[173,25],[174,25],[176,26],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,34],[185,35],[186,35],[187,36],[188,37],[189,38],[190,39],[175,2],[222,2],[191,40],[192,41],[193,42],[223,43],[194,44],[195,45],[196,46],[197,47],[198,48],[199,49],[200,50],[201,51],[202,52],[203,53],[204,54],[205,55],[207,56],[206,57],[208,58],[209,59],[210,60],[211,61],[212,62],[213,63],[214,64],[215,65],[216,66],[217,67],[218,68],[219,69],[220,70],[221,71],[251,2],[252,2],[253,2],[254,2],[279,72],[280,73],[255,74],[258,74],[277,72],[278,72],[268,75],[267,75],[265,72],[260,72],[273,72],[271,72],[275,72],[259,72],[272,72],[276,72],[261,72],[262,72],[274,72],[256,72],[263,72],[264,72],[266,72],[270,72],[281,76],[269,72],[257,72],[294,77],[293,2],[288,76],[290,78],[289,76],[282,76],[283,76],[285,76],[287,76],[291,78],[292,78],[284,78],[286,78],[295,2],[296,2],[297,2],[298,79],[44,2],[228,2],[232,80],[234,81],[233,80],[231,82],[50,2],[51,83],[230,84],[229,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,85],[49,86],[56,87],[52,88],[47,2],[48,2],[45,2],[154,89],[46,90],[53,91],[153,85],[54,92],[155,93],[156,94],[57,95],[133,96],[67,97],[134,95],[129,98],[102,99],[122,100],[120,101],[135,102],[136,103],[68,97],[118,104],[100,105],[107,106],[137,107],[69,97],[82,108],[138,109],[81,110],[65,111],[64,112],[139,113],[75,114],[76,113],[98,115],[105,116],[141,117],[142,118],[70,119],[89,120],[126,100],[83,120],[80,121],[79,121],[85,120],[119,102],[90,109],[91,122],[143,102],[144,95],[145,123],[62,124],[61,125],[63,125],[146,126],[71,97],[93,127],[95,128],[147,129],[125,130],[131,131],[130,102],[86,132],[77,133],[78,134],[148,101],[103,135],[149,95],[108,136],[109,137],[110,138],[66,129],[132,139],[150,140],[72,97],[87,121],[59,141],[60,142],[88,132],[121,120],[99,143],[96,144],[97,145],[111,146],[58,147],[106,148],[104,149],[116,150],[84,151],[117,152],[92,106],[115,153],[114,154],[94,155],[113,156],[112,157],[151,158],[73,97],[128,100],[127,159],[124,160],[123,100],[152,161],[101,162],[140,163],[74,161],[55,164],[158,2]],"semanticDiagnosticsPerFile":[162,160,159,165,161,163,164,167,172,168,171,170,224,225,226,227,235,169,237,238,236,239,240,241,242,243,244,245,246,247,248,249,250,166,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,175,222,191,192,193,223,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,251,252,253,254,279,280,255,258,277,278,268,267,265,260,273,271,275,259,272,276,261,262,274,256,263,264,266,270,281,269,257,294,293,288,290,289,282,283,285,287,291,292,284,286,295,296,297,298,44,228,232,234,233,231,50,51,230,229,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.5.5"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercelayer/sdk",
3
- "version": "4.5.0-beta.1",
3
+ "version": "4.5.0-beta.2",
4
4
  "main": "lib/cjs/index.js",
5
5
  "types": "lib/cjs/index.d.ts",
6
6
  "module": "lib/esm/index.js",