@commercelayer/sdk 4.13.2 → 4.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,3 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import{AxiosProxyConfig,Method}from'axios';import type{InterceptorManager}from'./interceptor';import type{Agent as HttpAgent}from'http';import type{Agent as HttpsAgent}from'https';declare type ProxyConfig=AxiosProxyConfig|false;declare type RequestConfig={timeout?:number;params?:{[key:string]:string|number|boolean;};httpAgent?:HttpAgent;httpsAgent?:HttpsAgent;proxy?:ProxyConfig;};declare type ApiClientInitConfig={organization:string;domain?:string;accessToken:string;}&RequestConfig;declare type ApiClientConfig=Partial<ApiClientInitConfig>;declare class ApiClient{#private;static create(options:ApiClientInitConfig):ApiClient;baseUrl:string;interceptors:InterceptorManager;private constructor();config(config:ApiClientConfig):void;request(method:Method,path:string,body?:any,options?:ApiClientConfig):Promise<any>;}export default ApiClient;export{ApiClientInitConfig,ApiClientConfig,RequestConfig};
@@ -1 +1 @@
1
- import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;readonly openApiSchemaVersion="2.9.3";addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader(options?:{headers:boolean;}):RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
1
+ import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;readonly openApiSchemaVersion="2.9.4";addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader(options?:{headers:boolean;}):RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
@@ -1 +1 @@
1
- "use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,t,s,i){i===void 0&&(i=s);var n=Object.getOwnPropertyDescriptor(t,s);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[s]}}),Object.defineProperty(e,i,n)}:function(e,t,s,i){i===void 0&&(i=s),e[i]=t[s]}),__setModuleDefault=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var s in e)s!=="default"&&Object.prototype.hasOwnProperty.call(e,s)&&__createBinding(t,e,s);return __setModuleDefault(t,e),t},__classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(e,t,s,i,n){if(i==="m")throw new TypeError("Private method is not writable");if(i==="a"&&!n)throw new TypeError("Private accessor was defined without a setter");if(typeof t=="function"?e!==t||!n:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return i==="a"?n.call(e,s):n?n.value=s:t.set(e,s),s},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(e,t,s,i){if(s==="a"&&!i)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!i:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return s==="m"?i:s==="a"?i.call(e):i?i.value:t.get(e)},__importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},_CommerceLayerClient_adapter,_CommerceLayerClient_organization;Object.defineProperty(exports,"__esModule",{value:!0});const api=__importStar(require("./api")),static_1=require("./static"),resource_1=__importDefault(require("./resource")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("commercelayer"),OPEN_API_SCHEMA_VERSION="2.9.3";class CommerceLayerClient{constructor(t){this.openApiSchemaVersion=OPEN_API_SCHEMA_VERSION,_CommerceLayerClient_adapter.set(this,void 0),_CommerceLayerClient_organization.set(this,void 0),debug("new commercelayer instance %O",t),__classPrivateFieldSet(this,_CommerceLayerClient_adapter,new resource_1.default(t),"f"),__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f"),this.addresses=new api.Addresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adjustments=new api.Adjustments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_gateways=new api.AdyenGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_payments=new api.AdyenPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.application=new api.Applications(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.attachments=new api.Attachments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.authorizations=new api.Authorizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.avalara_accounts=new api.AvalaraAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.billing_info_validation_rules=new api.BillingInfoValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bing_geocoders=new api.BingGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_gateways=new api.BraintreeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_payments=new api.BraintreePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bundles=new api.Bundles(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.captures=new api.Captures(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.carrier_accounts=new api.CarrierAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_gateways=new api.CheckoutComGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_payments=new api.CheckoutComPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_codes_promotion_rules=new api.CouponCodesPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_recipients=new api.CouponRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupons=new api.Coupons(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_addresses=new api.CustomerAddresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_groups=new api.CustomerGroups(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_password_resets=new api.CustomerPasswordResets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_payment_sources=new api.CustomerPaymentSources(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_subscriptions=new api.CustomerSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customers=new api.Customers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.delivery_lead_times=new api.DeliveryLeadTimes(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.event_callbacks=new api.EventCallbacks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_gateways=new api.ExternalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_payments=new api.ExternalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_promotions=new api.ExternalPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_tax_calculators=new api.ExternalTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_amount_promotions=new api.FixedAmountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_price_promotions=new api.FixedPricePromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_gift_promotions=new api.FreeGiftPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_shipping_promotions=new api.FreeShippingPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.geocoders=new api.Geocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_card_recipients=new api.GiftCardRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_cards=new api.GiftCards(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.google_geocoders=new api.GoogleGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.imports=new api.Imports(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.in_stock_subscriptions=new api.InStockSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_models=new api.InventoryModels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_return_locations=new api.InventoryReturnLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_stock_locations=new api.InventoryStockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_gateways=new api.KlarnaGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_payments=new api.KlarnaPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_item_options=new api.LineItemOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_items=new api.LineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_gateways=new api.ManualGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_tax_calculators=new api.ManualTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.markets=new api.Markets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.merchants=new api.Merchants(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_amount_promotion_rules=new api.OrderAmountPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_copies=new api.OrderCopies(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_subscriptions=new api.OrderSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_validation_rules=new api.OrderValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.orders=new api.Orders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.organization=new api.Organizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.packages=new api.Packages(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcel_line_items=new api.ParcelLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcels=new api.Parcels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_gateways=new api.PaymentGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_methods=new api.PaymentMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_gateways=new api.PaypalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_payments=new api.PaypalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.percentage_discount_promotions=new api.PercentageDiscountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.price_lists=new api.PriceLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.prices=new api.Prices(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotion_rules=new api.PromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotions=new api.Promotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.refunds=new api.Refunds(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.return_line_items=new api.ReturnLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.returns=new api.Returns(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipments=new api.Shipments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_categories=new api.ShippingCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_methods=new api.ShippingMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_zones=new api.ShippingZones(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_items=new api.SkuListItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_promotion_rules=new api.SkuListPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_lists=new api.SkuLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_options=new api.SkuOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.skus=new api.Skus(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_items=new api.StockItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_line_items=new api.StockLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_locations=new api.StockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_transfers=new api.StockTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_gateways=new api.StripeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_payments=new api.StripePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_calculators=new api.TaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_categories=new api.TaxCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_rules=new api.TaxRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.taxjar_accounts=new api.TaxjarAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.transactions=new api.Transactions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.voids=new api.Voids(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.webhooks=new api.Webhooks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.wire_transfers=new api.WireTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f"))}static get openApiSchemaVersion(){return OPEN_API_SCHEMA_VERSION}get currentOrganization(){return __classPrivateFieldGet(this,_CommerceLayerClient_organization,"f")}localConfig(t){t.organization&&__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f")}config(t){debug("config %o",t),this.localConfig(t),t.organization||(t.organization=this.currentOrganization),__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").config(t)}resources(){return static_1.CommerceLayerStatic.resources()}isApiError(t){return static_1.CommerceLayerStatic.isApiError(t)}addRequestInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.request.use(t,s)}addResponseInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.response.use(t,s)}removeInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors[t].eject(s)}addRawResponseReader(t){const s={id:void 0,rawResponse:void 0,headers:void 0};function i(r){return s.rawResponse=r?.data,t?.headers&&(s.headers=r.headers),r}const n=this.addResponseInterceptor(i);return s.id=n,s}removeRawResponseReader(t){const s=typeof t=="number"?t:t?.id;if(s&&s>=0)return this.removeInterceptor("response",s)}}_CommerceLayerClient_adapter=new WeakMap,_CommerceLayerClient_organization=new WeakMap;const CommerceLayer=e=>new CommerceLayerClient(e);exports.default=CommerceLayer;
1
+ "use strict";var __createBinding=this&&this.__createBinding||(Object.create?function(e,t,s,i){i===void 0&&(i=s);var n=Object.getOwnPropertyDescriptor(t,s);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[s]}}),Object.defineProperty(e,i,n)}:function(e,t,s,i){i===void 0&&(i=s),e[i]=t[s]}),__setModuleDefault=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var s in e)s!=="default"&&Object.prototype.hasOwnProperty.call(e,s)&&__createBinding(t,e,s);return __setModuleDefault(t,e),t},__classPrivateFieldSet=this&&this.__classPrivateFieldSet||function(e,t,s,i,n){if(i==="m")throw new TypeError("Private method is not writable");if(i==="a"&&!n)throw new TypeError("Private accessor was defined without a setter");if(typeof t=="function"?e!==t||!n:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return i==="a"?n.call(e,s):n?n.value=s:t.set(e,s),s},__classPrivateFieldGet=this&&this.__classPrivateFieldGet||function(e,t,s,i){if(s==="a"&&!i)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!i:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return s==="m"?i:s==="a"?i.call(e):i?i.value:t.get(e)},__importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},_CommerceLayerClient_adapter,_CommerceLayerClient_organization;Object.defineProperty(exports,"__esModule",{value:!0});const api=__importStar(require("./api")),static_1=require("./static"),resource_1=__importDefault(require("./resource")),debug_1=__importDefault(require("./debug")),debug=(0,debug_1.default)("commercelayer"),OPEN_API_SCHEMA_VERSION="2.9.4";class CommerceLayerClient{constructor(t){this.openApiSchemaVersion=OPEN_API_SCHEMA_VERSION,_CommerceLayerClient_adapter.set(this,void 0),_CommerceLayerClient_organization.set(this,void 0),debug("new commercelayer instance %O",t),__classPrivateFieldSet(this,_CommerceLayerClient_adapter,new resource_1.default(t),"f"),__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f"),this.addresses=new api.Addresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adjustments=new api.Adjustments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_gateways=new api.AdyenGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.adyen_payments=new api.AdyenPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.application=new api.Applications(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.attachments=new api.Attachments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.authorizations=new api.Authorizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.avalara_accounts=new api.AvalaraAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.billing_info_validation_rules=new api.BillingInfoValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bing_geocoders=new api.BingGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_gateways=new api.BraintreeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.braintree_payments=new api.BraintreePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.bundles=new api.Bundles(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.captures=new api.Captures(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.carrier_accounts=new api.CarrierAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_gateways=new api.CheckoutComGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.checkout_com_payments=new api.CheckoutComPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_codes_promotion_rules=new api.CouponCodesPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupon_recipients=new api.CouponRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.coupons=new api.Coupons(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_addresses=new api.CustomerAddresses(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_groups=new api.CustomerGroups(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_password_resets=new api.CustomerPasswordResets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_payment_sources=new api.CustomerPaymentSources(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customer_subscriptions=new api.CustomerSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.customers=new api.Customers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.delivery_lead_times=new api.DeliveryLeadTimes(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.event_callbacks=new api.EventCallbacks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_gateways=new api.ExternalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_payments=new api.ExternalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_promotions=new api.ExternalPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.external_tax_calculators=new api.ExternalTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_amount_promotions=new api.FixedAmountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.fixed_price_promotions=new api.FixedPricePromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_gift_promotions=new api.FreeGiftPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.free_shipping_promotions=new api.FreeShippingPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.geocoders=new api.Geocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_card_recipients=new api.GiftCardRecipients(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.gift_cards=new api.GiftCards(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.google_geocoders=new api.GoogleGeocoders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.imports=new api.Imports(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.in_stock_subscriptions=new api.InStockSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_models=new api.InventoryModels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_return_locations=new api.InventoryReturnLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.inventory_stock_locations=new api.InventoryStockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_gateways=new api.KlarnaGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.klarna_payments=new api.KlarnaPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_item_options=new api.LineItemOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.line_items=new api.LineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_gateways=new api.ManualGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.manual_tax_calculators=new api.ManualTaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.markets=new api.Markets(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.merchants=new api.Merchants(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_amount_promotion_rules=new api.OrderAmountPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_copies=new api.OrderCopies(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_subscriptions=new api.OrderSubscriptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.order_validation_rules=new api.OrderValidationRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.orders=new api.Orders(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.organization=new api.Organizations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.packages=new api.Packages(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcel_line_items=new api.ParcelLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.parcels=new api.Parcels(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_gateways=new api.PaymentGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.payment_methods=new api.PaymentMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_gateways=new api.PaypalGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.paypal_payments=new api.PaypalPayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.percentage_discount_promotions=new api.PercentageDiscountPromotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.price_lists=new api.PriceLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.prices=new api.Prices(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotion_rules=new api.PromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.promotions=new api.Promotions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.refunds=new api.Refunds(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.return_line_items=new api.ReturnLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.returns=new api.Returns(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipments=new api.Shipments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_categories=new api.ShippingCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_methods=new api.ShippingMethods(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.shipping_zones=new api.ShippingZones(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_items=new api.SkuListItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_list_promotion_rules=new api.SkuListPromotionRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_lists=new api.SkuLists(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.sku_options=new api.SkuOptions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.skus=new api.Skus(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_items=new api.StockItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_line_items=new api.StockLineItems(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_locations=new api.StockLocations(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stock_transfers=new api.StockTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_gateways=new api.StripeGateways(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.stripe_payments=new api.StripePayments(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_calculators=new api.TaxCalculators(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_categories=new api.TaxCategories(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.tax_rules=new api.TaxRules(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.taxjar_accounts=new api.TaxjarAccounts(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.transactions=new api.Transactions(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.voids=new api.Voids(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.webhooks=new api.Webhooks(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f")),this.wire_transfers=new api.WireTransfers(__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f"))}static get openApiSchemaVersion(){return OPEN_API_SCHEMA_VERSION}get currentOrganization(){return __classPrivateFieldGet(this,_CommerceLayerClient_organization,"f")}localConfig(t){t.organization&&__classPrivateFieldSet(this,_CommerceLayerClient_organization,t.organization,"f")}config(t){debug("config %o",t),this.localConfig(t),t.organization||(t.organization=this.currentOrganization),__classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").config(t)}resources(){return static_1.CommerceLayerStatic.resources()}isApiError(t){return static_1.CommerceLayerStatic.isApiError(t)}addRequestInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.request.use(t,s)}addResponseInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors.response.use(t,s)}removeInterceptor(t,s){return __classPrivateFieldGet(this,_CommerceLayerClient_adapter,"f").interceptors[t].eject(s)}addRawResponseReader(t){const s={id:void 0,rawResponse:void 0,headers:void 0};function i(r){return s.rawResponse=r?.data,t?.headers&&(s.headers=r.headers),r}const n=this.addResponseInterceptor(i);return s.id=n,s}removeRawResponseReader(t){const s=typeof t=="number"?t:t?.id;if(s&&s>=0)return this.removeInterceptor("response",s)}}_CommerceLayerClient_adapter=new WeakMap,_CommerceLayerClient_organization=new WeakMap;const CommerceLayer=e=>new CommerceLayerClient(e);exports.default=CommerceLayer;
@@ -1 +1 @@
1
- import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_nullify_payment_source?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_commit_invoice?:boolean;_refund_invoice?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
1
+ import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{Sku}from'./skus';import type{Bundle}from'./bundles';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];available_free_skus?:Sku[];available_free_bundles?:Bundle[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_nullify_payment_source?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_commit_invoice?:boolean;_refund_invoice?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;available_free_skus(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Sku>>;available_free_bundles(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Bundle>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});const resource_1=require("../resource");class Orders extends resource_1.ApiResource{async list(e,s){return this.resources.list({type:Orders.TYPE},e,s)}async create(e,s,t){return this.resources.create(Object.assign(Object.assign({},e),{type:Orders.TYPE}),s,t)}async retrieve(e,s,t){return this.resources.retrieve({type:Orders.TYPE,id:e},s,t)}async update(e,s,t){return this.resources.update(Object.assign(Object.assign({},e),{type:Orders.TYPE}),s,t)}async delete(e,s){await this.resources.delete({type:Orders.TYPE,id:e},s)}async market(e,s,t){const r=e.id||e;return this.resources.fetch({type:"markets"},`orders/${r}/market`,s,t)}async customer(e,s,t){const r=e.id||e;return this.resources.fetch({type:"customers"},`orders/${r}/customer`,s,t)}async shipping_address(e,s,t){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/shipping_address`,s,t)}async billing_address(e,s,t){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/billing_address`,s,t)}async available_payment_methods(e,s,t){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/available_payment_methods`,s,t)}async available_customer_payment_sources(e,s,t){const r=e.id||e;return this.resources.fetch({type:"customer_payment_sources"},`orders/${r}/available_customer_payment_sources`,s,t)}async payment_method(e,s,t){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/payment_method`,s,t)}async line_items(e,s,t){const r=e.id||e;return this.resources.fetch({type:"line_items"},`orders/${r}/line_items`,s,t)}async shipments(e,s,t){const r=e.id||e;return this.resources.fetch({type:"shipments"},`orders/${r}/shipments`,s,t)}async authorizations(e,s,t){const r=e.id||e;return this.resources.fetch({type:"authorizations"},`orders/${r}/authorizations`,s,t)}async captures(e,s,t){const r=e.id||e;return this.resources.fetch({type:"captures"},`orders/${r}/captures`,s,t)}async voids(e,s,t){const r=e.id||e;return this.resources.fetch({type:"voids"},`orders/${r}/voids`,s,t)}async refunds(e,s,t){const r=e.id||e;return this.resources.fetch({type:"refunds"},`orders/${r}/refunds`,s,t)}async order_subscriptions(e,s,t){const r=e.id||e;return this.resources.fetch({type:"order_subscriptions"},`orders/${r}/order_subscriptions`,s,t)}async order_copies(e,s,t){const r=e.id||e;return this.resources.fetch({type:"order_copies"},`orders/${r}/order_copies`,s,t)}async attachments(e,s,t){const r=e.id||e;return this.resources.fetch({type:"attachments"},`orders/${r}/attachments`,s,t)}isOrder(e){return e.type&&e.type===Orders.TYPE}relationship(e){return e===null||typeof e=="string"?{id:e,type:Orders.TYPE}:{id:e.id,type:Orders.TYPE}}type(){return Orders.TYPE}}Orders.TYPE="orders",exports.default=Orders;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});const resource_1=require("../resource");class Orders extends resource_1.ApiResource{async list(e,s){return this.resources.list({type:Orders.TYPE},e,s)}async create(e,s,t){return this.resources.create(Object.assign(Object.assign({},e),{type:Orders.TYPE}),s,t)}async retrieve(e,s,t){return this.resources.retrieve({type:Orders.TYPE,id:e},s,t)}async update(e,s,t){return this.resources.update(Object.assign(Object.assign({},e),{type:Orders.TYPE}),s,t)}async delete(e,s){await this.resources.delete({type:Orders.TYPE,id:e},s)}async market(e,s,t){const r=e.id||e;return this.resources.fetch({type:"markets"},`orders/${r}/market`,s,t)}async customer(e,s,t){const r=e.id||e;return this.resources.fetch({type:"customers"},`orders/${r}/customer`,s,t)}async shipping_address(e,s,t){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/shipping_address`,s,t)}async billing_address(e,s,t){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/billing_address`,s,t)}async available_payment_methods(e,s,t){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/available_payment_methods`,s,t)}async available_customer_payment_sources(e,s,t){const r=e.id||e;return this.resources.fetch({type:"customer_payment_sources"},`orders/${r}/available_customer_payment_sources`,s,t)}async available_free_skus(e,s,t){const r=e.id||e;return this.resources.fetch({type:"skus"},`orders/${r}/available_free_skus`,s,t)}async available_free_bundles(e,s,t){const r=e.id||e;return this.resources.fetch({type:"bundles"},`orders/${r}/available_free_bundles`,s,t)}async payment_method(e,s,t){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/payment_method`,s,t)}async line_items(e,s,t){const r=e.id||e;return this.resources.fetch({type:"line_items"},`orders/${r}/line_items`,s,t)}async shipments(e,s,t){const r=e.id||e;return this.resources.fetch({type:"shipments"},`orders/${r}/shipments`,s,t)}async authorizations(e,s,t){const r=e.id||e;return this.resources.fetch({type:"authorizations"},`orders/${r}/authorizations`,s,t)}async captures(e,s,t){const r=e.id||e;return this.resources.fetch({type:"captures"},`orders/${r}/captures`,s,t)}async voids(e,s,t){const r=e.id||e;return this.resources.fetch({type:"voids"},`orders/${r}/voids`,s,t)}async refunds(e,s,t){const r=e.id||e;return this.resources.fetch({type:"refunds"},`orders/${r}/refunds`,s,t)}async order_subscriptions(e,s,t){const r=e.id||e;return this.resources.fetch({type:"order_subscriptions"},`orders/${r}/order_subscriptions`,s,t)}async order_copies(e,s,t){const r=e.id||e;return this.resources.fetch({type:"order_copies"},`orders/${r}/order_copies`,s,t)}async attachments(e,s,t){const r=e.id||e;return this.resources.fetch({type:"attachments"},`orders/${r}/attachments`,s,t)}isOrder(e){return e.type&&e.type===Orders.TYPE}relationship(e){return e===null||typeof e=="string"?{id:e,type:Orders.TYPE}:{id:e.id,type:Orders.TYPE}}type(){return Orders.TYPE}}Orders.TYPE="orders",exports.default=Orders;
package/lib/cjs/util.d.ts CHANGED
@@ -1,2 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
3
+ /// <reference types="node" />
4
+ /// <reference types="node" />
2
5
  declare const sleep:(ms:number)=>Promise<NodeJS.Timeout>;export{sleep};
@@ -1,2 +1,3 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import{AxiosProxyConfig,Method}from'axios';import type{InterceptorManager}from'./interceptor';import type{Agent as HttpAgent}from'http';import type{Agent as HttpsAgent}from'https';declare type ProxyConfig=AxiosProxyConfig|false;declare type RequestConfig={timeout?:number;params?:{[key:string]:string|number|boolean;};httpAgent?:HttpAgent;httpsAgent?:HttpsAgent;proxy?:ProxyConfig;};declare type ApiClientInitConfig={organization:string;domain?:string;accessToken:string;}&RequestConfig;declare type ApiClientConfig=Partial<ApiClientInitConfig>;declare class ApiClient{#private;static create(options:ApiClientInitConfig):ApiClient;baseUrl:string;interceptors:InterceptorManager;private constructor();config(config:ApiClientConfig):void;request(method:Method,path:string,body?:any,options?:ApiClientConfig):Promise<any>;}export default ApiClient;export{ApiClientInitConfig,ApiClientConfig,RequestConfig};
@@ -1 +1 @@
1
- import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;readonly openApiSchemaVersion="2.9.3";addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader(options?:{headers:boolean;}):RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
1
+ import*as api from'./api';import{ApiError}from'./error';import type{ErrorInterceptor,InterceptorType,RawResponseReader,RequestInterceptor,ResponseInterceptor}from'./interceptor';import{ResourcesInitConfig}from'./resource';declare type SdkConfig={};declare type CommerceLayerInitConfig=SdkConfig&ResourcesInitConfig;declare type CommerceLayerConfig=Partial<CommerceLayerInitConfig>;declare class CommerceLayerClient{#private;static get openApiSchemaVersion():string;readonly openApiSchemaVersion="2.9.4";addresses:api.Addresses;adjustments:api.Adjustments;adyen_gateways:api.AdyenGateways;adyen_payments:api.AdyenPayments;application:api.Applications;attachments:api.Attachments;authorizations:api.Authorizations;avalara_accounts:api.AvalaraAccounts;billing_info_validation_rules:api.BillingInfoValidationRules;bing_geocoders:api.BingGeocoders;braintree_gateways:api.BraintreeGateways;braintree_payments:api.BraintreePayments;bundles:api.Bundles;captures:api.Captures;carrier_accounts:api.CarrierAccounts;checkout_com_gateways:api.CheckoutComGateways;checkout_com_payments:api.CheckoutComPayments;coupon_codes_promotion_rules:api.CouponCodesPromotionRules;coupon_recipients:api.CouponRecipients;coupons:api.Coupons;customer_addresses:api.CustomerAddresses;customer_groups:api.CustomerGroups;customer_password_resets:api.CustomerPasswordResets;customer_payment_sources:api.CustomerPaymentSources;customer_subscriptions:api.CustomerSubscriptions;customers:api.Customers;delivery_lead_times:api.DeliveryLeadTimes;event_callbacks:api.EventCallbacks;external_gateways:api.ExternalGateways;external_payments:api.ExternalPayments;external_promotions:api.ExternalPromotions;external_tax_calculators:api.ExternalTaxCalculators;fixed_amount_promotions:api.FixedAmountPromotions;fixed_price_promotions:api.FixedPricePromotions;free_gift_promotions:api.FreeGiftPromotions;free_shipping_promotions:api.FreeShippingPromotions;geocoders:api.Geocoders;gift_card_recipients:api.GiftCardRecipients;gift_cards:api.GiftCards;google_geocoders:api.GoogleGeocoders;imports:api.Imports;in_stock_subscriptions:api.InStockSubscriptions;inventory_models:api.InventoryModels;inventory_return_locations:api.InventoryReturnLocations;inventory_stock_locations:api.InventoryStockLocations;klarna_gateways:api.KlarnaGateways;klarna_payments:api.KlarnaPayments;line_item_options:api.LineItemOptions;line_items:api.LineItems;manual_gateways:api.ManualGateways;manual_tax_calculators:api.ManualTaxCalculators;markets:api.Markets;merchants:api.Merchants;order_amount_promotion_rules:api.OrderAmountPromotionRules;order_copies:api.OrderCopies;order_subscriptions:api.OrderSubscriptions;order_validation_rules:api.OrderValidationRules;orders:api.Orders;organization:api.Organizations;packages:api.Packages;parcel_line_items:api.ParcelLineItems;parcels:api.Parcels;payment_gateways:api.PaymentGateways;payment_methods:api.PaymentMethods;paypal_gateways:api.PaypalGateways;paypal_payments:api.PaypalPayments;percentage_discount_promotions:api.PercentageDiscountPromotions;price_lists:api.PriceLists;prices:api.Prices;promotion_rules:api.PromotionRules;promotions:api.Promotions;refunds:api.Refunds;return_line_items:api.ReturnLineItems;returns:api.Returns;shipments:api.Shipments;shipping_categories:api.ShippingCategories;shipping_methods:api.ShippingMethods;shipping_zones:api.ShippingZones;sku_list_items:api.SkuListItems;sku_list_promotion_rules:api.SkuListPromotionRules;sku_lists:api.SkuLists;sku_options:api.SkuOptions;skus:api.Skus;stock_items:api.StockItems;stock_line_items:api.StockLineItems;stock_locations:api.StockLocations;stock_transfers:api.StockTransfers;stripe_gateways:api.StripeGateways;stripe_payments:api.StripePayments;tax_calculators:api.TaxCalculators;tax_categories:api.TaxCategories;tax_rules:api.TaxRules;taxjar_accounts:api.TaxjarAccounts;transactions:api.Transactions;voids:api.Voids;webhooks:api.Webhooks;wire_transfers:api.WireTransfers;constructor(config:CommerceLayerInitConfig);get currentOrganization():string;private localConfig;config(config:CommerceLayerConfig):void;resources():readonly string[];isApiError(error:any):error is ApiError;addRequestInterceptor(onFulfilled?:RequestInterceptor,onRejected?:ErrorInterceptor):number;addResponseInterceptor(onFulfilled?:ResponseInterceptor,onRejected?:ErrorInterceptor):number;removeInterceptor(type:InterceptorType,id:number):void;addRawResponseReader(options?:{headers:boolean;}):RawResponseReader;removeRawResponseReader(reader:number|RawResponseReader):void;}declare const CommerceLayer:(config:CommerceLayerInitConfig)=>CommerceLayerClient;export default CommerceLayer;export type{CommerceLayerClient,CommerceLayerConfig,CommerceLayerInitConfig};
@@ -1 +1 @@
1
- var f=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 w}from"./static";import m from"./resource";import l from"./debug";const p=l("commercelayer"),u="2.9.3";class _{constructor(i){this.openApiSchemaVersion=u,t.set(this,void 0),h.set(this,void 0),p("new commercelayer instance %O",i),f(this,t,new m(i),"f"),f(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 u}get currentOrganization(){return s(this,h,"f")}localConfig(i){i.organization&&f(this,h,i.organization,"f")}config(i){p("config %o",i),this.localConfig(i),i.organization||(i.organization=this.currentOrganization),s(this,t,"f").config(i)}resources(){return w.resources()}isApiError(i){return w.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(i){const n={id:void 0,rawResponse:void 0,headers:void 0};function r(c){return n.rawResponse=c?.data,i?.headers&&(n.headers=c.headers),c}const a=this.addResponseInterceptor(r);return n.id=a,n}removeRawResponseReader(i){const n=typeof i=="number"?i:i?.id;if(n&&n>=0)return this.removeInterceptor("response",n)}}t=new WeakMap,h=new WeakMap;const d=o=>new _(o);export default d;
1
+ var f=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 w}from"./static";import m from"./resource";import l from"./debug";const p=l("commercelayer"),u="2.9.4";class _{constructor(i){this.openApiSchemaVersion=u,t.set(this,void 0),h.set(this,void 0),p("new commercelayer instance %O",i),f(this,t,new m(i),"f"),f(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 u}get currentOrganization(){return s(this,h,"f")}localConfig(i){i.organization&&f(this,h,i.organization,"f")}config(i){p("config %o",i),this.localConfig(i),i.organization||(i.organization=this.currentOrganization),s(this,t,"f").config(i)}resources(){return w.resources()}isApiError(i){return w.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(i){const n={id:void 0,rawResponse:void 0,headers:void 0};function r(c){return n.rawResponse=c?.data,i?.headers&&(n.headers=c.headers),c}const a=this.addResponseInterceptor(r);return n.id=a,n}removeRawResponseReader(i){const n=typeof i=="number"?i:i?.id;if(n&&n>=0)return this.removeInterceptor("response",n)}}t=new WeakMap,h=new WeakMap;const d=o=>new _(o);export default d;
@@ -1 +1 @@
1
- import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_nullify_payment_source?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_commit_invoice?:boolean;_refund_invoice?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
1
+ import{ApiResource,Resource,ResourceCreate,ResourceUpdate,ResourcesConfig,ResourceId,ResourceRel,ListResponse}from'../resource';import type{QueryParamsList,QueryParamsRetrieve}from'../query';import type{Market}from'./markets';import type{Customer}from'./customers';import type{Address}from'./addresses';import type{PaymentMethod}from'./payment_methods';import type{CustomerPaymentSource}from'./customer_payment_sources';import type{Sku}from'./skus';import type{Bundle}from'./bundles';import type{AdyenPayment}from'./adyen_payments';import type{BraintreePayment}from'./braintree_payments';import type{CheckoutComPayment}from'./checkout_com_payments';import type{ExternalPayment}from'./external_payments';import type{KlarnaPayment}from'./klarna_payments';import type{PaypalPayment}from'./paypal_payments';import type{StripePayment}from'./stripe_payments';import type{WireTransfer}from'./wire_transfers';import type{LineItem}from'./line_items';import type{Shipment}from'./shipments';import type{Authorization}from'./authorizations';import type{Void}from'./voids';import type{Capture}from'./captures';import type{Refund}from'./refunds';import type{OrderSubscription}from'./order_subscriptions';import type{OrderCopy}from'./order_copies';import type{Attachment}from'./attachments';declare type OrderRel=ResourceRel&{type:typeof Orders.TYPE;};declare type MarketRel=ResourceRel&{type:'markets';};declare type CustomerRel=ResourceRel&{type:'customers';};declare type AddressRel=ResourceRel&{type:'addresses';};declare type PaymentMethodRel=ResourceRel&{type:'payment_methods';};declare type AdyenPaymentRel=ResourceRel&{type:'adyen_payments';};declare type BraintreePaymentRel=ResourceRel&{type:'braintree_payments';};declare type CheckoutComPaymentRel=ResourceRel&{type:'checkout_com_payments';};declare type ExternalPaymentRel=ResourceRel&{type:'external_payments';};declare type KlarnaPaymentRel=ResourceRel&{type:'klarna_payments';};declare type PaypalPaymentRel=ResourceRel&{type:'paypal_payments';};declare type StripePaymentRel=ResourceRel&{type:'stripe_payments';};declare type WireTransferRel=ResourceRel&{type:'wire_transfers';};interface Order extends Resource{number?:number;autorefresh?:boolean;status?:string;payment_status?:string;fulfillment_status?:string;guest?:boolean;editable?:boolean;customer_email?:string;language_code?:string;currency_code?:string;tax_included?:boolean;tax_rate?:number;freight_taxable?:boolean;requires_billing_info?:boolean;country_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;subtotal_amount_cents?:number;subtotal_amount_float?:number;formatted_subtotal_amount?:string;shipping_amount_cents?:number;shipping_amount_float?:number;formatted_shipping_amount?:string;payment_method_amount_cents?:number;payment_method_amount_float?:number;formatted_payment_method_amount?:string;discount_amount_cents?:number;discount_amount_float?:number;formatted_discount_amount?:string;adjustment_amount_cents?:number;adjustment_amount_float?:number;formatted_adjustment_amount?:string;gift_card_amount_cents?:number;gift_card_amount_float?:number;formatted_gift_card_amount?:string;total_tax_amount_cents?:number;total_tax_amount_float?:number;formatted_total_tax_amount?:string;subtotal_tax_amount_cents?:number;subtotal_tax_amount_float?:number;formatted_subtotal_tax_amount?:string;shipping_tax_amount_cents?:number;shipping_tax_amount_float?:number;formatted_shipping_tax_amount?:string;payment_method_tax_amount_cents?:number;payment_method_tax_amount_float?:number;formatted_payment_method_tax_amount?:string;adjustment_tax_amount_cents?:number;adjustment_tax_amount_float?:number;formatted_adjustment_tax_amount?:string;total_amount_cents?:number;total_amount_float?:number;formatted_total_amount?:string;total_taxable_amount_cents?:number;total_taxable_amount_float?:number;formatted_total_taxable_amount?:string;subtotal_taxable_amount_cents?:number;subtotal_taxable_amount_float?:number;formatted_subtotal_taxable_amount?:string;shipping_taxable_amount_cents?:number;shipping_taxable_amount_float?:number;formatted_shipping_taxable_amount?:string;payment_method_taxable_amount_cents?:number;payment_method_taxable_amount_float?:number;formatted_payment_method_taxable_amount?:string;adjustment_taxable_amount_cents?:number;adjustment_taxable_amount_float?:number;formatted_adjustment_taxable_amount?:string;total_amount_with_taxes_cents?:number;total_amount_with_taxes_float?:number;formatted_total_amount_with_taxes?:string;fees_amount_cents?:number;fees_amount_float?:number;formatted_fees_amount?:string;duty_amount_cents?:number;duty_amount_float?:number;formatted_duty_amount?:string;skus_count?:number;line_item_options_count?:number;shipments_count?:number;payment_source_details?:object;token?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;checkout_url?:string;placed_at?:string;approved_at?:string;cancelled_at?:string;payment_updated_at?:string;fulfillment_updated_at?:string;refreshed_at?:string;archived_at?:string;expires_at?:string;market?:Market;customer?:Customer;shipping_address?:Address;billing_address?:Address;available_payment_methods?:PaymentMethod[];available_customer_payment_sources?:CustomerPaymentSource[];available_free_skus?:Sku[];available_free_bundles?:Bundle[];payment_method?:PaymentMethod;payment_source?:AdyenPayment|BraintreePayment|CheckoutComPayment|ExternalPayment|KlarnaPayment|PaypalPayment|StripePayment|WireTransfer;line_items?:LineItem[];shipments?:Shipment[];transactions?:(Authorization|Void|Capture|Refund)[];authorizations?:Authorization[];captures?:Capture[];voids?:Void[];refunds?:Refund[];order_subscriptions?:OrderSubscription[];order_copies?:OrderCopy[];attachments?:Attachment[];}interface OrderCreate extends ResourceCreate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}interface OrderUpdate extends ResourceUpdate{autorefresh?:boolean;guest?:boolean;customer_email?:string;customer_password?:string;language_code?:string;shipping_country_code_lock?:string;coupon_code?:string;gift_card_code?:string;gift_card_or_coupon_code?:string;cart_url?:string;return_url?:string;terms_url?:string;privacy_url?:string;_archive?:boolean;_unarchive?:boolean;_place?:boolean;_cancel?:boolean;_approve?:boolean;_approve_and_capture?:boolean;_authorize?:boolean;_authorization_amount_cents?:number;_capture?:boolean;_refund?:boolean;_update_taxes?:boolean;_nullify_payment_source?:boolean;_billing_address_clone_id?:string;_shipping_address_clone_id?:string;_customer_payment_source_id?:string;_shipping_address_same_as_billing?:boolean;_billing_address_same_as_shipping?:boolean;_commit_invoice?:boolean;_refund_invoice?:boolean;_save_payment_source_to_customer_wallet?:boolean;_save_shipping_address_to_customer_address_book?:boolean;_save_billing_address_to_customer_address_book?:boolean;_refresh?:boolean;market?:MarketRel;customer?:CustomerRel;shipping_address?:AddressRel;billing_address?:AddressRel;payment_method?:PaymentMethodRel;payment_source?:AdyenPaymentRel|BraintreePaymentRel|CheckoutComPaymentRel|ExternalPaymentRel|KlarnaPaymentRel|PaypalPaymentRel|StripePaymentRel|WireTransferRel;}declare class Orders extends ApiResource{static readonly TYPE:'orders';list(params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Order>>;create(resource:OrderCreate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;retrieve(id:string,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;update(resource:OrderUpdate,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Order>;delete(id:string,options?:ResourcesConfig):Promise<void>;market(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Market>;customer(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Customer>;shipping_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;billing_address(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<Address>;available_payment_methods(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<PaymentMethod>>;available_customer_payment_sources(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<CustomerPaymentSource>>;available_free_skus(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Sku>>;available_free_bundles(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Bundle>>;payment_method(orderId:string|Order,params?:QueryParamsRetrieve,options?:ResourcesConfig):Promise<PaymentMethod>;line_items(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<LineItem>>;shipments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Shipment>>;authorizations(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Authorization>>;captures(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Capture>>;voids(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Void>>;refunds(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Refund>>;order_subscriptions(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderSubscription>>;order_copies(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<OrderCopy>>;attachments(orderId:string|Order,params?:QueryParamsList,options?:ResourcesConfig):Promise<ListResponse<Attachment>>;isOrder(resource:any):resource is Order;relationship(id:string|ResourceId|null):OrderRel;type():string;}export default Orders;export{Order,OrderCreate,OrderUpdate};
@@ -1 +1 @@
1
- import{ApiResource as i}from"../resource";class c extends i{async list(e,t){return this.resources.list({type:c.TYPE},e,t)}async create(e,t,s){return this.resources.create(Object.assign(Object.assign({},e),{type:c.TYPE}),t,s)}async retrieve(e,t,s){return this.resources.retrieve({type:c.TYPE,id:e},t,s)}async update(e,t,s){return this.resources.update(Object.assign(Object.assign({},e),{type:c.TYPE}),t,s)}async delete(e,t){await this.resources.delete({type:c.TYPE,id:e},t)}async market(e,t,s){const r=e.id||e;return this.resources.fetch({type:"markets"},`orders/${r}/market`,t,s)}async customer(e,t,s){const r=e.id||e;return this.resources.fetch({type:"customers"},`orders/${r}/customer`,t,s)}async shipping_address(e,t,s){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/shipping_address`,t,s)}async billing_address(e,t,s){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/billing_address`,t,s)}async available_payment_methods(e,t,s){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/available_payment_methods`,t,s)}async available_customer_payment_sources(e,t,s){const r=e.id||e;return this.resources.fetch({type:"customer_payment_sources"},`orders/${r}/available_customer_payment_sources`,t,s)}async payment_method(e,t,s){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/payment_method`,t,s)}async line_items(e,t,s){const r=e.id||e;return this.resources.fetch({type:"line_items"},`orders/${r}/line_items`,t,s)}async shipments(e,t,s){const r=e.id||e;return this.resources.fetch({type:"shipments"},`orders/${r}/shipments`,t,s)}async authorizations(e,t,s){const r=e.id||e;return this.resources.fetch({type:"authorizations"},`orders/${r}/authorizations`,t,s)}async captures(e,t,s){const r=e.id||e;return this.resources.fetch({type:"captures"},`orders/${r}/captures`,t,s)}async voids(e,t,s){const r=e.id||e;return this.resources.fetch({type:"voids"},`orders/${r}/voids`,t,s)}async refunds(e,t,s){const r=e.id||e;return this.resources.fetch({type:"refunds"},`orders/${r}/refunds`,t,s)}async order_subscriptions(e,t,s){const r=e.id||e;return this.resources.fetch({type:"order_subscriptions"},`orders/${r}/order_subscriptions`,t,s)}async order_copies(e,t,s){const r=e.id||e;return this.resources.fetch({type:"order_copies"},`orders/${r}/order_copies`,t,s)}async attachments(e,t,s){const r=e.id||e;return this.resources.fetch({type:"attachments"},`orders/${r}/attachments`,t,s)}isOrder(e){return e.type&&e.type===c.TYPE}relationship(e){return e===null||typeof e=="string"?{id:e,type:c.TYPE}:{id:e.id,type:c.TYPE}}type(){return c.TYPE}}c.TYPE="orders";export default c;
1
+ import{ApiResource as i}from"../resource";class c extends i{async list(e,s){return this.resources.list({type:c.TYPE},e,s)}async create(e,s,t){return this.resources.create(Object.assign(Object.assign({},e),{type:c.TYPE}),s,t)}async retrieve(e,s,t){return this.resources.retrieve({type:c.TYPE,id:e},s,t)}async update(e,s,t){return this.resources.update(Object.assign(Object.assign({},e),{type:c.TYPE}),s,t)}async delete(e,s){await this.resources.delete({type:c.TYPE,id:e},s)}async market(e,s,t){const r=e.id||e;return this.resources.fetch({type:"markets"},`orders/${r}/market`,s,t)}async customer(e,s,t){const r=e.id||e;return this.resources.fetch({type:"customers"},`orders/${r}/customer`,s,t)}async shipping_address(e,s,t){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/shipping_address`,s,t)}async billing_address(e,s,t){const r=e.id||e;return this.resources.fetch({type:"addresses"},`orders/${r}/billing_address`,s,t)}async available_payment_methods(e,s,t){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/available_payment_methods`,s,t)}async available_customer_payment_sources(e,s,t){const r=e.id||e;return this.resources.fetch({type:"customer_payment_sources"},`orders/${r}/available_customer_payment_sources`,s,t)}async available_free_skus(e,s,t){const r=e.id||e;return this.resources.fetch({type:"skus"},`orders/${r}/available_free_skus`,s,t)}async available_free_bundles(e,s,t){const r=e.id||e;return this.resources.fetch({type:"bundles"},`orders/${r}/available_free_bundles`,s,t)}async payment_method(e,s,t){const r=e.id||e;return this.resources.fetch({type:"payment_methods"},`orders/${r}/payment_method`,s,t)}async line_items(e,s,t){const r=e.id||e;return this.resources.fetch({type:"line_items"},`orders/${r}/line_items`,s,t)}async shipments(e,s,t){const r=e.id||e;return this.resources.fetch({type:"shipments"},`orders/${r}/shipments`,s,t)}async authorizations(e,s,t){const r=e.id||e;return this.resources.fetch({type:"authorizations"},`orders/${r}/authorizations`,s,t)}async captures(e,s,t){const r=e.id||e;return this.resources.fetch({type:"captures"},`orders/${r}/captures`,s,t)}async voids(e,s,t){const r=e.id||e;return this.resources.fetch({type:"voids"},`orders/${r}/voids`,s,t)}async refunds(e,s,t){const r=e.id||e;return this.resources.fetch({type:"refunds"},`orders/${r}/refunds`,s,t)}async order_subscriptions(e,s,t){const r=e.id||e;return this.resources.fetch({type:"order_subscriptions"},`orders/${r}/order_subscriptions`,s,t)}async order_copies(e,s,t){const r=e.id||e;return this.resources.fetch({type:"order_copies"},`orders/${r}/order_copies`,s,t)}async attachments(e,s,t){const r=e.id||e;return this.resources.fetch({type:"attachments"},`orders/${r}/attachments`,s,t)}isOrder(e){return e.type&&e.type===c.TYPE}relationship(e){return e===null||typeof e=="string"?{id:e,type:c.TYPE}:{id:e.id,type:c.TYPE}}type(){return c.TYPE}}c.TYPE="orders";export default c;
package/lib/esm/util.d.ts CHANGED
@@ -1,2 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
3
+ /// <reference types="node" />
4
+ /// <reference types="node" />
2
5
  declare const sleep:(ms:number)=>Promise<NodeJS.Timeout>;export{sleep};
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","d88dc05fd345b7a4e1816bbfd2dd087eefa9b9e36096818c2348f5b246971125","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","c6e62e4331b6712421bdf522163d1eb460e53830327645f63c30b214951d93ec","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","e800985d99900b141153e7be342ece58550db8678ef7e84903617fd45b7e3b33","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","1e66f2e7da941df50f959f3e1397ba225eeba93f29139e47bb30fea08779beea","f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","0021cac0b1f36ff7f56792c12516c075475725594212bd7b29b9506eb1897542","253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","5c919cf4bb037b17d94f6a630661b17115108a2230e0baf3cfaa9f42808b5572","4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","0ae4d6d03f1b3bb33eade8f8624e92bac97a92447d91e8df4bd14b92285e34f8","1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","c2111e407ea82d52f3193e83dfa2363120c116625ce4657fc0627bceba5ef0d5","166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","99957ec6756317f1ef940f6045ef9fa83edfd8447e7ef96d5892418b18bf0c29","344605b15ee3c3b2a321d915261664b58113319590779974d76067f0c291ab32","a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","5719a21be3868ca85aee73fe7e804f459e1b9181cb3094d2a3e2334877c8e354","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","8670878e030b88a469db43b36ef90ffa208e74faf249416feeb8fbb6b646b4a9","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3ca3179dd4772b596ed81df8bb9c541e1416d86343c582a105013b20925de051","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"declaration":true,"esModuleInterop":true,"module":5,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[159,210],[210],[159,160,161,162,163,210],[159,161,210],[165,210],[183,210,217],[210,219],[210,220],[210,225,230],[210,233,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,236,237,238,239,240,241,242,243,244,245],[210,234,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,235,237,238,239,240,241,242,243,244,245],[210,233,234,235,236,238,239,240,241,242,243,244,245],[210,233,234,235,236,237,239,240,241,242,243,244,245],[210,233,234,235,236,237,238,240,241,242,243,244,245],[210,233,234,235,236,237,238,239,241,242,243,244,245],[210,233,234,235,236,237,238,239,240,242,243,244,245],[210,233,234,235,236,237,238,239,240,241,243,244,245],[210,233,234,235,236,237,238,239,240,241,242,244,245],[210,233,234,235,236,237,238,239,240,241,242,243,245],[210,233,234,235,236,237,238,239,240,241,242,243,244],[167,210],[170,210],[171,176,210],[172,182,183,190,199,209,210],[172,173,182,190,210],[174,210],[175,176,183,191,210],[176,199,206,210],[177,179,182,190,210],[178,210],[179,180,210],[181,182,210],[182,210],[182,183,184,199,209,210],[182,183,184,199,210],[210,214],[185,190,199,209,210],[182,183,185,186,190,199,206,209,210],[185,187,199,206,209,210],[167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],[182,188,210],[189,209,210],[179,182,190,199,210],[191,210],[192,210],[170,193,210],[194,208,210,214],[195,210],[196,210],[182,197,210],[197,198,210,212],[182,199,200,201,210],[199,201,210],[199,200,210],[202,210],[203,210],[182,204,205,210],[204,205,210],[176,190,199,206,210],[207,210],[190,208,210],[171,185,196,209,210],[176,210],[199,210,211],[210,212],[210,213],[171,176,182,184,193,199,209,210,212,214],[199,210,215],[210,254],[210,223,226],[210,223,226,227,228],[210,225],[210,222,229],[50,210],[210,224],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,210],[44,45,46,47,48,185,187,210],[45,46,48,55,155,157,210],[155,157,210],[45,46,54,55,56,153,210],[44,210],[48,50,51,52,155,210],[48,155,210],[46,47,48,49,53,54,154,157,210],[54,119,155,210],[54,155,210],[54,67,132,155,210],[54,66,103,155,210],[54,58,59,60,62,64,90,91,92,97,98,103,104,105,106,107,108,110,111,113,114,115,118,119,120,121,127,128,130,131,132,155,210],[54,100,101,103,155,210],[54,127,129,131,155,210],[54,131,155,210],[54,129,155,156,210],[54,68,132,155,210],[54,115,117,129,131,155,210],[54,99,102,103,155,210],[54,129,131,155,210],[54,69,132,155,210],[54,79,80,81,83,85,87,89,155,210],[54,98,129,155,210],[54,82,155,210],[54,98,155,156,210],[54,98,129,131,155,210],[54,98,155,210],[54,67,68,69,70,71,72,73,74,98,155,210],[54,64,65,75,76,78,97,103,129,155,210],[54,106,113,129,155,210],[54,140,155,210],[54,70,132,155,210],[54,66,75,103,155,210],[54,82,84,86,88,129,131,155,210],[54,82,84,86,88,115,117,129,131,155,210],[54,90,129,131,155,210],[54,98,115,131,155,210],[54,61,63,129,155,210],[54,62,113,155,210],[54,71,132,155,210],[54,92,95,155,210],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,210],[54,132,155,210],[54,124,127,129,131,155,210],[54,59,62,64,128,129,130,155,210],[54,79,80,83,85,87,89,155,210],[54,78,103,155,210],[54,77,98,103,131,155,210],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,210],[54,110,113,129,155,210],[54,94,110,155,210],[54,108,109,111,129,155,210],[54,66,129,131,155,210],[54,72,132,155,210],[54,60,129,155,210],[54,59,115,129,155,210],[54,100,103,155,210],[54,95,97,155,210],[54,96,98,103,113,129,155,156,210],[54,58,94,103,105,106,107,110,112,113,129,155,156,210],[54,115,129,155,210],[54,58,104,105,129,131,155,210],[54,129,155,210],[54,115,117,155,210],[54,79,80,83,85,87,89,115,117,155,210],[54,115,116,118,155,210],[54,58,60,92,105,114,129,155,210],[54,113,115,129,155,210],[54,95,111,114,155,210],[54,61,63,112,114,129,155,156,210],[54,95,111,113,115,155,210],[54,73,132,155,210],[54,115,122,123,125,126,129,155,210],[54,125,155,210],[54,103,155,210],[54,102,103,155,210],[54,141,155,210],[45,56,157,210]],"referencedMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,38],[216,2],[185,39],[186,40],[187,41],[217,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,48],[194,49],[195,50],[196,51],[197,52],[198,53],[199,54],[201,55],[200,56],[202,57],[203,58],[204,59],[205,60],[206,61],[207,62],[208,63],[209,64],[210,65],[211,66],[212,67],[213,68],[214,69],[215,70],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,71],[44,2],[223,2],[227,72],[229,73],[228,72],[226,74],[230,75],[222,2],[50,2],[51,76],[225,77],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,78],[49,79],[56,80],[52,81],[47,2],[48,2],[45,2],[154,82],[46,83],[53,84],[153,78],[54,85],[155,86],[156,87],[57,88],[133,89],[67,90],[134,88],[129,91],[102,92],[122,93],[120,94],[135,95],[136,96],[68,90],[118,97],[100,98],[107,99],[137,100],[69,90],[82,101],[138,102],[81,103],[65,104],[64,105],[139,106],[75,107],[76,106],[98,108],[105,109],[141,110],[142,111],[70,112],[89,113],[126,93],[83,113],[80,114],[79,114],[85,113],[119,95],[90,102],[91,115],[143,95],[144,88],[145,116],[62,117],[61,118],[63,118],[146,119],[71,90],[93,120],[95,121],[147,122],[125,123],[131,124],[130,95],[86,125],[77,126],[78,127],[148,94],[103,128],[149,88],[108,129],[109,130],[110,131],[66,122],[132,132],[150,133],[72,90],[87,114],[59,134],[60,135],[88,125],[121,113],[99,136],[96,137],[97,138],[111,139],[58,140],[106,141],[104,142],[116,143],[84,144],[117,145],[92,99],[115,146],[114,147],[94,148],[113,149],[112,150],[151,151],[73,90],[128,93],[127,152],[124,153],[123,93],[152,154],[101,155],[140,156],[74,154],[55,157],[158,2]],"exportedModulesMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,38],[216,2],[185,39],[186,40],[187,41],[217,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,48],[194,49],[195,50],[196,51],[197,52],[198,53],[199,54],[201,55],[200,56],[202,57],[203,58],[204,59],[205,60],[206,61],[207,62],[208,63],[209,64],[210,65],[211,66],[212,67],[213,68],[214,69],[215,70],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,71],[44,2],[223,2],[227,72],[229,73],[228,72],[226,74],[230,75],[222,2],[50,2],[51,76],[225,77],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,78],[49,79],[56,80],[52,81],[47,2],[48,2],[45,2],[154,82],[46,83],[53,84],[153,78],[54,85],[155,86],[156,87],[57,88],[133,89],[67,90],[134,88],[129,91],[102,92],[122,93],[120,94],[135,95],[136,96],[68,90],[118,97],[100,98],[107,99],[137,100],[69,90],[82,101],[138,102],[81,103],[65,104],[64,105],[139,106],[75,107],[76,106],[98,108],[105,109],[141,110],[142,111],[70,112],[89,113],[126,93],[83,113],[80,114],[79,114],[85,113],[119,95],[90,102],[91,115],[143,95],[144,88],[145,116],[62,117],[61,118],[63,118],[146,119],[71,90],[93,120],[95,121],[147,122],[125,123],[131,124],[130,95],[86,125],[77,126],[78,127],[148,94],[103,128],[149,88],[108,129],[109,130],[110,131],[66,122],[132,132],[150,133],[72,90],[87,114],[59,134],[60,135],[88,125],[121,113],[99,136],[96,137],[97,138],[111,139],[58,140],[106,141],[104,142],[116,143],[84,144],[117,145],[92,99],[115,146],[114,147],[94,148],[113,149],[112,150],[151,151],[73,90],[128,93],[127,152],[124,153],[123,93],[152,154],[101,155],[140,156],[74,154],[55,157],[158,2]],"semanticDiagnosticsPerFile":[161,159,164,160,162,163,166,218,219,220,221,231,232,234,235,233,236,237,238,239,240,241,242,243,244,245,246,247,165,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,169,216,185,186,187,217,188,189,190,191,192,193,194,195,196,197,198,199,201,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,248,249,250,251,252,253,254,255,44,223,227,229,228,226,230,222,50,51,225,224,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,157,49,56,52,47,48,45,154,46,53,153,54,155,156,57,133,67,134,129,102,122,120,135,136,68,118,100,107,137,69,82,138,81,65,64,139,75,76,98,105,141,142,70,89,126,83,80,79,85,119,90,91,143,144,145,62,61,63,146,71,93,95,147,125,131,130,86,77,78,148,103,149,108,109,110,66,132,150,72,87,59,60,88,121,99,96,97,111,58,106,104,116,84,117,92,115,114,94,113,112,151,73,128,127,124,123,152,101,140,74,55,158]},"version":"4.6.4"}
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.date.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.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","d88dc05fd345b7a4e1816bbfd2dd087eefa9b9e36096818c2348f5b246971125",{"version":"5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","signature":"f933dd011c5c41e29a359d3b46ed9a9294ead09f34854ac54cf3cb907058599d"},{"version":"c6e62e4331b6712421bdf522163d1eb460e53830327645f63c30b214951d93ec","signature":"9b24ba4607071953cb350310b8690fd43b400ca6089c8be8f0cc52a799f48dca"},{"version":"fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","signature":"001e07fccf54859e47fe779a6209b6dbeae6db28dc437a6c46bae5604514215d"},{"version":"ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","signature":"37354fa9b6df26ec17cde2f47786ded97beac22801b38f9f3064fd71b80c14fd"},{"version":"e800985d99900b141153e7be342ece58550db8678ef7e84903617fd45b7e3b33","signature":"5745bb6b069fb9d59641b75feb9fd4e6c5a2e0dcead272e86222c9d4f9b8c465"},"f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911",{"version":"0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","signature":"b4d8bfb4ad849a8040c89fe69a1e739cb4483da68d17e07b5bb8d8a0b9d8f7eb"},{"version":"ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","signature":"d996f6a65427f2fd407466a36918914f7c53da8ff25cc0c8a7b99de8267dff61"},{"version":"703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","signature":"6d61fa795166693b279aa92148f079b2c0573294aeebdc3a212cf6b92fe74a48"},{"version":"fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","signature":"f375ccd44487a9b244d149aafed71ad4159ac7c7869b03722bf68959217887e7"},{"version":"30b68c9df283a17e216efb3a1af3ccf4ba729b51c7acb2a159f97c3d89a1153c","signature":"f07d01e0130800a0f7f09d80145a82545ae0e2bd77b0943f5836b9a7f6317c25"},{"version":"f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","signature":"3c5320d3705df565ddd45813cac322b47fa1c5a0a6eb04eba761721b5661c6f4"},{"version":"3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","signature":"fc8376d3fe20546feb9ef6d755e9bae055af8139e1c1c15db1cc6601270dedb7"},{"version":"f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","signature":"2228ba640f929a3e43e06a84a8ff0b8e64f783dc07951936055c6b283de338cf"},{"version":"70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","signature":"38ff21804b6276cebac57b4bdd86b34a1c58a5ddbafd3f9a1dd1ba181866996b"},{"version":"e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","signature":"75243e2b1f28915b5cbc12bcef226245d4fee96ac702d567c4315333db565bdf"},{"version":"e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","signature":"f0321992accf215458f051f65ef2be2ca6bad26995fb9bc1912c5c444007ddf3"},{"version":"5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","signature":"903693423e98c728855cb8e13da8db3ca5e29b7ea7e4b947621cacb36adefcdc"},{"version":"51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","signature":"eb301633c1e7e2bdd37772203df3ee163ebdb08ed03ef07c68612bfaf3510602"},{"version":"aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","signature":"3b27396332194a38a7b9e4d4591d4a88e7e89d6d888f994c8f542930c3e957e5"},{"version":"8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","signature":"4b839313e7e2a5773dc42578f931abc5891ad340737d3eb832c783211ab6cd9c"},{"version":"211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","signature":"7e4cffde4f0641cbcade8dd33762862c14217241db66aaec5ca5d7c378b51818"},{"version":"1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","signature":"df5b2d531c6e2541767b8c635b604cee93fecbcf1b63efad171030ee23727e2c"},{"version":"a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","signature":"9c171472688d00504d544d12ffe034d9f525cba1f07151ed0b0d26723a1748cb"},{"version":"3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","signature":"0f302d3049d9d001899c4fa6cd437d6c6c07d5671719a2430d25342d297295b3"},{"version":"0021cac0b1f36ff7f56792c12516c075475725594212bd7b29b9506eb1897542","signature":"01e7aa8b927a84c1703dccb9e6abb95d2b28927bda49cbdc593fbf35ec473864"},{"version":"253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","signature":"7684325d826abc8f9fa1f2ccac1ed1ebe7db82d1cc59475d8149aa17bdd2050b"},{"version":"9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","signature":"b0f04fbdf1789a516f7de8ab838ae864f7cd44eacc473b8e681eb18631e3b32a"},{"version":"543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","signature":"e848b985023a13bcb2db5aa7a7e525331b71e370a5a1215e4e9e5910916cff71"},{"version":"d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","signature":"aec34fbc98806a18756fb8a6fc1762913658484120c0fbdb409753df75cfee86"},{"version":"1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","signature":"f0623a32af3440dbda0a64c50cfccae23664de6e2ca7b6193a19b58e28949b9b"},{"version":"aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","signature":"88740dc3ebdf1c42accea34d950328fd110a0a08b58a878a95ff3825fbe59d2e"},{"version":"175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","signature":"e953fd2f668db74863cccb02041e62ee2bdd68e0b091932c54f4f440e3f0165d"},{"version":"643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","signature":"70d0918531aa2e136dc1e9d3ff35bfbe5a35fd3017c17024e5b65f4133cdbdfe"},{"version":"714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","signature":"264a8f86a724dac41f58effeb19e589d3c0be428b2919c1b003222ebc1a1f956"},{"version":"d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","signature":"6096e5b98282a2cd85d9539a29c7bc075bafb1c06673929f429e8ca759db75c7"},{"version":"e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","signature":"9fd600deb49e3d687e1baef0a19c1a3400399d030276cbeb7cec6c7c3401332d"},{"version":"1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","signature":"e9087a12f6d7c94c57b1b27a83e2a5d4bb09efa3c13e2253511287e5c40514d4"},{"version":"10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","signature":"05ce4f6db5ed235609c8f10c1faf80f93f9a460f16a1eb4c81ef51947b7e04cb"},{"version":"885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","signature":"366284b1fdecfdce212fe08151e53562a204efee8a38c1b6627c9ab91332a1f7"},{"version":"eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","signature":"a177280ef320edb8005b2833b0720a772b8128a682b5a4023740feddb9fab658"},{"version":"84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","signature":"8b59824815b8b17242a5b5f18d5418a5dcf165286fef398033c17c9984fefd6e"},{"version":"d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","signature":"f5707aa1ecfcba04604f5e81bb517f616702dbb6c7a6db9fbd578fdbfb644894"},{"version":"c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","signature":"f8d67a0bb211531be0d7039d220563c70030dc6c2c8e852ed61e8951b323c8a6"},{"version":"c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","signature":"9d66a7c8ec396a7d0c43e52ec5bd385f794c06ae23e06f89ffa83830425e3425"},{"version":"42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","signature":"b3cfab14eef693dc453cce8663931068a52e6d41b0a57c11e7a5d3d749cf7c81"},{"version":"11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","signature":"6aff2903eaf9eb6ae3fd70271cd6f9de3dfa866e6c6d4218fca0148580dede01"},{"version":"2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","signature":"d71437631db495775d161be09c476be4f0cb8f55ed49ed8b71944ca03526dbe1"},{"version":"4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","signature":"949e88b9702c3f9d6c8bdfa3cfd816edbf9312795045844d0a1bdd6a88575d9b"},{"version":"e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","signature":"cea4e3bbd3acd18b40889336f16bddbe1ad071c6d2c72a06e60e432d28b45089"},{"version":"81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","signature":"56083f0d0a89f5e608edd081d8cd21077add2d4de41b6dfadfef053674168cf8"},{"version":"1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","signature":"8019101dfba768d2974ee5ad27c1bacca4e101515477856bd0ddb6865ef6b1f1"},{"version":"0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","signature":"b2b4b06a788626b69e811960bfc590a95df6428c6ec8491e4dfefd577fc930cb"},{"version":"165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","signature":"dd081001dddf440785a45c4e0d99fdd175daddfa9099d2e47d6e517cbea3abd9"},{"version":"33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","signature":"6ef046d4598fbed060c01622fd3f7902de9678fdfa44bfa15067e6190a8f69f5"},{"version":"4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","signature":"14013a09ed776f83f2ea7ca957282c1a8bdddc7d214052fb4fab7e9f60e3a410"},{"version":"dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","signature":"ddee4e05a6ac9ce301cecea73781055bfb66e9784b7bf75a939449f2890c405e"},{"version":"dc44fa29893da0c898cbfeb11927524db8e44c0deb879fc14d185935769ad11a","signature":"5357b5819017023c699e00b57b087be4d98dd29f89146afc66a882f57a80a3c0"},{"version":"4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","signature":"4a7069995384a626238d3db44de6017d0889ac58503bcf17a05e875822ef5bf8"},{"version":"a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","signature":"8f6bcc0c4a6885f1a3e6328c5643f8629ac76da63ef51f85204aaaa147668d6b"},{"version":"4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","signature":"a028b674aeb06a8bc4748ac3cddada60c36c97560fd873342895da7835eafcbf"},{"version":"41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","signature":"0ebb37a743eeda8bbbd00e88b265af4fc98345301a03a921d5b7984abd5fb2a9"},{"version":"c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","signature":"f449f6a183632bb76db909ed1462ea869dea687f9e94ee1f9f1a5e583aa085e1"},{"version":"f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","signature":"5af6bc8dc48ac9b25de92d8e53c188507d0bdabde3e98e6b05805a05ba032848"},{"version":"2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","signature":"2e989995f003349cb80a8a7cd00eca0c795bc6ff9489a859f3166dca538fabce"},{"version":"870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","signature":"28d7192eb57a9237e2ee31e21fb852329fcd0411d660dd5cd740fc939e52d980"},{"version":"2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","signature":"a4334e6a44553bbe96bcdaf5757211b403464d4733376894c720aa59b219db2c"},{"version":"926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","signature":"bab91c0c2b646cc21b9ec3bf1fced80eb5d8487118e6709095a2b31e6a7f0909"},{"version":"d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","signature":"0394395305ee2a3d9a0682155783206d80a7a07dd30d781a2c33124a4f77b7b3"},{"version":"54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","signature":"d157cc33bc1125d5a0a6a5ce648fc527e9b8f6e9555cb2800b4d268b54b94477"},{"version":"424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","signature":"95f8ed11c0ea7eb6e5c6deec10cd7b84fb8dd1a687f339b268d385b5447b2f1d"},{"version":"6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","signature":"d5b60e11fa838e1b9d4a26c918822ad06fc1f5601ceb9bfe8e5d4246542de6b8"},{"version":"0ae4d6d03f1b3bb33eade8f8624e92bac97a92447d91e8df4bd14b92285e34f8","signature":"71c2ed4f4eb08d663bb41c2ed5fdd3d1409e9234acf6f802093af0893edbe07e"},{"version":"1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","signature":"53316f2481e6703adda8f465f944864de7c0e1066bbdf535c4729fb3a413ceb5"},{"version":"8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","signature":"c6b94cbc7241fec02cc813bf277af541cd33006f4e4aff7c297f374f8865fc9b"},{"version":"5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","signature":"7427a9d21cddc20129a81bd45749e63d44b2968542daf722596d13469592999d"},{"version":"c2111e407ea82d52f3193e83dfa2363120c116625ce4657fc0627bceba5ef0d5","signature":"9dbbeec20eb90f5a05c2d6c38b9970d956c6855c4a1caebdf2e85bd58277e3f4"},{"version":"166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","signature":"c5c7c04f588fba43ab06d293425d5e279bce6443fc9e32202fdb99bdede8f561"},{"version":"1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","signature":"f18e3bebf0f4aaadcb4c800a2078f9eb2fd2182d22674c850bf4f01448d22495"},{"version":"9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","signature":"ff8b7b0e677b6b6b138f12a91224e048c40ed3d2f1afec803b5a930c61397bd7"},{"version":"385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","signature":"d42d03c631443fb3977d9fc03227630d861ecc3fb3fe89fc140184efe3b2ad03"},{"version":"476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","signature":"605a00d431b7c7eca1a0aa5c9c7f883938787917a02885f30e5e6a6201466292"},{"version":"bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","signature":"d4a3792dd0b43793859d5372daee108e731083b030cd2e6abfde09617ac6d1bc"},{"version":"3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","signature":"8931617efa5e6650f23c6e0fbaa75659cef4e2f62decfc00786dc531c8428d47"},{"version":"9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","signature":"e82dd0da8a44c6ac9a34d9fcae78e4ea2b63dec31cf0ddfce8b0320d3f251f1c"},{"version":"5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","signature":"caa41b337c7cc185aa00e0093f0e4dd13638dd0028eaef902d6b479493232dfb"},{"version":"6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","signature":"69c40b40e3f9b4f51b504b9e9aa2de8393da8ad68df6d77d08826c453c00edff"},{"version":"0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","signature":"01fb3a3eb180c12fbb7a93aaae571fedb0d359155aa8377b47a9ced0cdad9781"},{"version":"1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","signature":"fece332cf076a57ac5a83f66b76868c515f6a8c743196f0c67189944ff24545b"},{"version":"c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","signature":"b5523f62c7b8e87f852c5efb076e7d078a116f194a66be27f41de265721f529c"},{"version":"151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","signature":"6d3021dd95d9fdbd5458bb826c8f49964f7268d6e23b659978b34863c534541a"},{"version":"6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","signature":"5c891a44dc7286eeae4ecc4f5e8dfa5b80bf53d48f20c0c85403745c37df4f7f"},{"version":"5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","signature":"44258b31816b56083af4301ffd83a5a7c3bbed61e76b1d69bb0b102f175a433e"},{"version":"01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","signature":"153f4d3d1661b8c0e5b1debfad8112f1cbb10ee270e30cadfc34d7742a501e36"},{"version":"c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","signature":"bbe5b999b8b232faccdc54b60ddb3ad5ef51109c5bb257449b610a9741df14af"},{"version":"1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","signature":"dd5a2de32b8674dfddb04ce70e166f59f02ba0029709abf7ba5c9361a396aa31"},{"version":"1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","signature":"1c418d720cfe91d690e03d5ecf608cbddc59c3aa8393d8d5e4142b94d1c337f2"},{"version":"dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","signature":"2b5e4aa4ea473b9358507dbb01ffcc8816a0c27df407b0f57af69ebf91dd495e"},{"version":"d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","signature":"0f8a24f480b109ada96679ca7f979a212cf1445d622e4b5b50690c10362e275a"},{"version":"1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","signature":"bbda41408c8f32e32fd5aaf376f0d62d77c0b701794ad729ebe89e0dd1e490df"},{"version":"6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","signature":"2f363ce59b51c4ff45049abf494d8bb3ac275ab7dec06d84869ffe86d43ba67a"},{"version":"875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","signature":"faed91ac8f44ba9c850dbd516ffbadbf09b0c39f5f5eb2b5d16a28bd07bb135c"},{"version":"e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","signature":"476453d4369bd63d07afe0119abaff64f85cd74562b88fa2567a7abf2bc038da"},{"version":"a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","signature":"451d627d64c4615567757c6890ae85794132a53e779d7c43cf526539eda076d2"},{"version":"cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","signature":"1d269526bed15c2e605274a0791588554a6e3368efb560c9c2811fcf8506ec6e"},{"version":"3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","signature":"be4d544b4173e50a74459c7e5eaab67cf9411fb50f011defbe23f335babbdb3c"},{"version":"4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","signature":"a46c4b0cd524195a92d3e405151d4e79366c2eec1c796c4fcf48a0e87ece3d16"},{"version":"028eb7598624b49c316ad5371b66653ea78c714a85da906fe7dee00e315f5093","signature":"701a97f24b67e9fd6a5b75e12def62067fc3dd6aaebbb0117ce2fd245af38b1c"},{"version":"344605b15ee3c3b2a321d915261664b58113319590779974d76067f0c291ab32","signature":"ea8506c989feaa93b37a2826ea4b99714e345fbcc5d95689c95e45843f161aa8"},{"version":"a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","signature":"dabf9dd75ee342f062f3592c6e32b2529cbbeeb7d28b6ba3e24375f99bda4474"},{"version":"54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","signature":"8c7969f2e13f766fbc096d9c752d0a47ef6facd78229d396db9a475d2bbd117d"},{"version":"55ba7f2c5f1f0e1578859006128a8f54aa6710c5403e3d5c32c5a41196b1029e","signature":"a8e5595730363a91f7a2b20f6837c643c8025b251272326e0226b4f2c403126c"},{"version":"d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","signature":"ad9b1ad8a3ff1b34d9fb1cbf0e5af5f1718567055e17a33f4c81845e53d66be0"},"e432b56911b58550616fc4d54c1606f65fe98c74875b81d74601f5f965767c60","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"58df92fa3b18e84865bb0d2fe4b9d2d5bcb9952d4548c871f10ef02702b386f8","52f38aecbb24bebde0b7a0203a686902fc6be930bd0cdb80f482441e4f56fd7d","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"963fe86b2ebd07a34b92b52c6532ab45ec5ccda218a6c477de354fcad2aae0cb","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"76c1c3258edbc6fef9c2020c75d64cc954a53d67f5707e0ba5dd13b6b206059a","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","821dcb2b571bf698841d8ec25fde9d5f615ef3958957227962602f9dbfa8d800","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"f234fa210fdce190f851211bccf105301f62736fe9d536aed1abc1639967fdec","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"aee3379fb20741a337a779530cc3e608aba5f34776511033d1d2db7ca45c4193","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"declaration":true,"esModuleInterop":true,"module":5,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[161,212],[212],[161,162,163,164,165,212],[161,163,212],[167,212],[185,212,219],[212,221],[212,222],[212,227,232],[212,235,237,238,239,240,241,242,243,244,245,246,247],[212,235,236,238,239,240,241,242,243,244,245,246,247],[212,236,237,238,239,240,241,242,243,244,245,246,247],[212,235,236,237,239,240,241,242,243,244,245,246,247],[212,235,236,237,238,240,241,242,243,244,245,246,247],[212,235,236,237,238,239,241,242,243,244,245,246,247],[212,235,236,237,238,239,240,242,243,244,245,246,247],[212,235,236,237,238,239,240,241,243,244,245,246,247],[212,235,236,237,238,239,240,241,242,244,245,246,247],[212,235,236,237,238,239,240,241,242,243,245,246,247],[212,235,236,237,238,239,240,241,242,243,244,246,247],[212,235,236,237,238,239,240,241,242,243,244,245,247],[212,235,236,237,238,239,240,241,242,243,244,245,246],[169,212],[172,212],[173,178,212],[174,184,185,192,201,211,212],[174,175,184,192,212],[176,212],[177,178,185,193,212],[178,201,208,212],[179,181,184,192,212],[180,212],[181,182,212],[183,184,212],[184,212],[184,185,186,201,211,212],[184,185,186,201,204,212],[212,216],[187,192,201,211,212],[184,185,187,188,192,201,208,211,212],[187,189,201,208,211,212],[169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218],[184,190,212],[191,211,212],[181,184,192,201,212],[193,212],[194,212],[172,195,212],[196,210,212,216],[197,212],[198,212],[184,199,212],[199,200,212,214],[184,201,202,203,212],[201,203,212],[201,202,212],[204,212],[205,212],[184,206,207,212],[206,207,212],[178,192,201,208,212],[209,212],[192,210,212],[173,187,198,211,212],[178,212],[201,212,213],[212,214],[212,215],[173,178,184,186,195,201,211,212,214,216],[201,212,217],[212,256],[212,225,228],[212,225,228,229,230],[212,227],[212,224,231],[52,212],[212,226],[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,153,154,158,212],[46,47,48,49,50,187,189,212],[47,48,50,57,157,159,212],[157,159,212],[47,48,56,57,58,155,212],[46,212],[50,52,53,54,157,212],[50,157,212],[48,49,50,51,55,56,156,159,212],[56,121,157,212],[56,157,212],[56,69,134,157,212],[56,68,105,157,212],[56,60,61,62,64,66,92,93,94,99,100,105,106,107,108,109,110,112,113,115,116,117,120,121,122,123,129,130,132,133,134,157,212],[56,102,103,105,157,212],[56,129,131,133,157,212],[56,133,157,212],[56,131,157,158,212],[56,70,134,157,212],[56,117,119,131,133,157,212],[56,101,104,105,157,212],[56,131,133,157,212],[56,71,134,157,212],[56,81,82,83,85,87,89,91,157,212],[56,100,131,157,212],[56,84,157,212],[56,100,157,158,212],[56,100,131,133,157,212],[56,100,157,212],[56,69,70,71,72,73,74,75,76,100,157,212],[56,66,67,77,78,80,99,105,131,157,212],[56,108,115,131,157,212],[56,142,157,212],[56,72,134,157,212],[56,68,77,105,157,212],[56,84,86,88,90,131,133,157,212],[56,84,86,88,90,117,119,131,133,157,212],[56,92,131,133,157,212],[56,100,117,133,157,212],[56,63,65,131,157,212],[56,64,115,157,212],[56,73,134,157,212],[56,94,97,157,212],[56,59,85,87,89,91,93,95,96,105,113,114,117,120,134,157,212],[56,134,157,212],[56,126,129,131,133,157,212],[56,61,64,66,130,131,132,157,212],[56,81,82,85,87,89,91,157,212],[56,80,105,157,212],[56,79,100,105,133,157,212],[56,69,70,71,72,73,74,75,76,77,79,80,97,100,101,102,103,104,113,117,120,131,133,134,157,158,212],[56,112,115,131,157,212],[56,96,112,157,212],[56,110,111,113,131,157,212],[56,68,131,133,157,212],[56,74,134,157,212],[56,62,131,157,212],[56,61,117,131,157,212],[56,102,105,157,212],[56,97,99,157,212],[56,98,100,105,115,131,157,158,212],[56,60,96,105,107,108,109,112,114,115,131,157,158,212],[56,117,131,157,212],[56,60,106,107,131,133,157,212],[56,131,157,212],[56,117,119,157,212],[56,81,82,85,87,89,91,117,119,157,212],[56,117,118,120,157,212],[56,60,62,94,107,116,131,157,212],[56,115,117,131,157,212],[56,97,113,116,157,212],[56,63,65,114,116,131,157,158,212],[56,97,113,115,117,157,212],[56,75,134,157,212],[56,117,124,125,127,128,131,157,212],[56,127,157,212],[56,105,157,212],[56,104,105,157,212],[56,143,157,212],[47,58,159,212],[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,153,154,158],[46,48,187,189],[47,48,157,159],[157],[47,48,56,57,58,155],[46],[53,157],[48,51,56,156,159],[56,121,157],[56,157],[56,69,134,157],[56,68,105,157],[56,60,61,62,64,66,92,93,94,99,100,105,106,107,108,109,110,112,113,115,116,117,120,121,122,123,129,130,132,133,134,157],[56,102,103,105,157],[56,129,131,133,157],[56,133,157],[56,131,157,158],[56,70,134,157],[56,117,119,131,133,157],[56,101,104,105,157],[56,131,133,157],[56,71,134,157],[56,81,82,83,85,87,89,91,157],[56,100,131,157],[56,84,157],[56,100,157,158],[56,100,131,133,157],[56,100,157],[56,69,70,71,72,73,74,75,76,100,157],[56,66,67,77,78,80,99,105,131,157],[56,108,115,131,157],[56,142,157],[56,72,134,157],[56,68,77,105,157],[56,84,86,88,90,131,133,157],[56,84,86,88,90,117,119,131,133,157],[56,92,131,133,157],[56,100,117,133,157],[56,63,65,131,157],[56,64,115,157],[56,73,134,157],[56,94,97,157],[56,59,85,87,89,91,93,95,96,105,113,114,117,120,134,157],[56,134,157],[56,126,129,131,133,157],[56,61,64,66,130,131,132,157],[56,81,82,85,87,89,91,157],[56,80,105,157],[56,79,100,105,133,157],[56,69,70,71,72,73,74,75,76,77,79,80,97,100,101,102,103,104,113,117,120,131,133,134,157,158],[56,112,115,131,157],[56,96,112,157],[56,110,111,113,131,157],[56,68,131,133,157],[56,74,134,157],[56,62,131,157],[56,61,117,131,157],[56,102,105,157],[56,97,99,157],[56,98,100,105,115,131,157,158],[56,60,96,105,107,108,109,112,114,115,131,157,158],[56,117,131,157],[56,60,106,107,131,133,157],[56,131,157],[56,117,119,157],[56,81,82,85,87,89,91,117,119,157],[56,117,118,120,157],[56,60,62,94,107,116,131,157],[56,115,117,131,157],[56,97,113,116,157],[56,63,65,114,116,131,157,158],[56,97,113,115,117,157],[56,75,134,157],[56,117,124,125,127,128,131,157],[56,127,157],[56,105,157],[56,104,105,157],[56,143,157],[47,58]],"referencedMap":[[163,1],[161,2],[166,3],[162,1],[164,4],[165,1],[168,5],[220,6],[221,2],[222,7],[223,8],[233,9],[234,2],[236,10],[237,11],[235,12],[238,13],[239,14],[240,15],[241,16],[242,17],[243,18],[244,19],[245,20],[246,21],[247,22],[248,2],[249,2],[167,2],[169,23],[170,23],[172,24],[173,25],[174,26],[175,27],[176,28],[177,29],[178,30],[179,31],[180,32],[181,33],[182,33],[183,34],[184,35],[185,36],[186,37],[171,38],[218,2],[187,39],[188,40],[189,41],[219,42],[190,43],[191,44],[192,45],[193,46],[194,47],[195,48],[196,49],[197,50],[198,51],[199,52],[200,53],[201,54],[203,55],[202,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[214,67],[215,68],[216,69],[217,70],[250,2],[251,2],[252,2],[253,2],[254,2],[255,2],[256,2],[257,71],[46,2],[225,2],[229,72],[231,73],[230,72],[228,74],[232,75],[224,2],[52,2],[53,76],[227,77],[226,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],[45,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],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[159,78],[51,79],[58,80],[54,81],[49,2],[50,2],[47,2],[156,82],[48,83],[55,84],[155,78],[56,85],[157,86],[158,87],[59,88],[135,89],[69,90],[136,88],[131,91],[104,92],[124,93],[122,94],[137,95],[138,96],[70,90],[120,97],[102,98],[109,99],[139,100],[71,90],[84,101],[140,102],[83,103],[67,104],[66,105],[141,106],[77,107],[78,106],[100,108],[107,109],[143,110],[144,111],[72,112],[91,113],[128,93],[85,113],[82,114],[81,114],[87,113],[121,95],[92,102],[93,115],[145,95],[146,88],[147,116],[64,117],[63,118],[65,118],[148,119],[73,90],[95,120],[97,121],[149,122],[127,123],[133,124],[132,95],[88,125],[79,126],[80,127],[150,94],[105,128],[151,88],[110,129],[111,130],[112,131],[68,122],[134,132],[152,133],[74,90],[89,114],[61,134],[62,135],[90,125],[123,113],[101,136],[98,137],[99,138],[113,139],[60,140],[108,141],[106,142],[118,143],[86,144],[119,145],[94,99],[117,146],[116,147],[96,148],[115,149],[114,150],[153,151],[75,90],[130,93],[129,152],[126,153],[125,93],[154,154],[103,155],[142,156],[76,154],[57,157],[160,2]],"exportedModulesMap":[[163,1],[161,2],[166,3],[162,1],[164,4],[165,1],[168,5],[220,6],[221,2],[222,7],[223,8],[233,9],[234,2],[236,10],[237,11],[235,12],[238,13],[239,14],[240,15],[241,16],[242,17],[243,18],[244,19],[245,20],[246,21],[247,22],[248,2],[249,2],[167,2],[169,23],[170,23],[172,24],[173,25],[174,26],[175,27],[176,28],[177,29],[178,30],[179,31],[180,32],[181,33],[182,33],[183,34],[184,35],[185,36],[186,37],[171,38],[218,2],[187,39],[188,40],[189,41],[219,42],[190,43],[191,44],[192,45],[193,46],[194,47],[195,48],[196,49],[197,50],[198,51],[199,52],[200,53],[201,54],[203,55],[202,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[214,67],[215,68],[216,69],[217,70],[250,2],[251,2],[252,2],[253,2],[254,2],[255,2],[256,2],[257,71],[46,2],[225,2],[229,72],[231,73],[230,72],[228,74],[232,75],[224,2],[52,2],[53,76],[227,77],[226,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],[45,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],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[159,158],[51,159],[58,160],[54,161],[156,162],[48,163],[55,164],[155,158],[56,161],[157,165],[158,166],[59,167],[135,168],[69,169],[136,167],[131,170],[104,171],[124,172],[122,173],[137,174],[138,175],[70,169],[120,176],[102,177],[109,178],[139,179],[71,169],[84,180],[140,181],[83,182],[67,183],[66,184],[141,185],[77,186],[78,185],[100,187],[107,188],[143,189],[144,190],[72,191],[91,192],[128,172],[85,192],[82,193],[81,193],[87,192],[121,174],[92,181],[93,194],[145,174],[146,167],[147,195],[64,196],[63,197],[65,197],[148,198],[73,169],[95,199],[97,200],[149,201],[127,202],[133,203],[132,174],[88,204],[79,205],[80,206],[150,173],[105,207],[151,167],[110,208],[111,209],[112,210],[68,201],[134,211],[152,212],[74,169],[89,193],[61,213],[62,214],[90,204],[123,192],[101,215],[98,216],[99,217],[113,218],[60,219],[108,220],[106,221],[118,222],[86,223],[119,224],[94,178],[117,225],[116,226],[96,227],[115,228],[114,229],[153,230],[75,169],[130,172],[129,231],[126,232],[125,172],[154,233],[103,234],[142,235],[76,233],[57,236]],"semanticDiagnosticsPerFile":[163,161,166,162,164,165,168,220,221,222,223,233,234,236,237,235,238,239,240,241,242,243,244,245,246,247,248,249,167,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,171,218,187,188,189,219,190,191,192,193,194,195,196,197,198,199,200,201,203,202,204,205,206,207,208,209,210,211,212,213,214,215,216,217,250,251,252,253,254,255,256,257,46,225,229,231,230,228,232,224,52,53,227,226,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,45,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,159,51,58,54,49,50,47,156,48,55,155,56,157,158,59,135,69,136,131,104,124,122,137,138,70,120,102,109,139,71,84,140,83,67,66,141,77,78,100,107,143,144,72,91,128,85,82,81,87,121,92,93,145,146,147,64,63,65,148,73,95,97,149,127,133,132,88,79,80,150,105,151,110,111,112,68,134,152,74,89,61,62,90,123,101,98,99,113,60,108,106,118,86,119,94,117,116,96,115,114,153,75,130,129,126,125,154,103,142,76,57,160]},"version":"4.7.3"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","d88dc05fd345b7a4e1816bbfd2dd087eefa9b9e36096818c2348f5b246971125","5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","c6e62e4331b6712421bdf522163d1eb460e53830327645f63c30b214951d93ec","fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","e800985d99900b141153e7be342ece58550db8678ef7e84903617fd45b7e3b33","f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911","0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","1e66f2e7da941df50f959f3e1397ba225eeba93f29139e47bb30fea08779beea","f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","0021cac0b1f36ff7f56792c12516c075475725594212bd7b29b9506eb1897542","253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","5c919cf4bb037b17d94f6a630661b17115108a2230e0baf3cfaa9f42808b5572","4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","0ae4d6d03f1b3bb33eade8f8624e92bac97a92447d91e8df4bd14b92285e34f8","1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","c2111e407ea82d52f3193e83dfa2363120c116625ce4657fc0627bceba5ef0d5","166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","99957ec6756317f1ef940f6045ef9fa83edfd8447e7ef96d5892418b18bf0c29","344605b15ee3c3b2a321d915261664b58113319590779974d76067f0c291ab32","a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","5719a21be3868ca85aee73fe7e804f459e1b9181cb3094d2a3e2334877c8e354","d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","8670878e030b88a469db43b36ef90ffa208e74faf249416feeb8fbb6b646b4a9","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3ca3179dd4772b596ed81df8bb9c541e1416d86343c582a105013b20925de051","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[159,210],[210],[159,160,161,162,163,210],[159,161,210],[165,210],[183,210,217],[210,219],[210,220],[210,225,230],[210,233,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,236,237,238,239,240,241,242,243,244,245],[210,234,235,236,237,238,239,240,241,242,243,244,245],[210,233,234,235,237,238,239,240,241,242,243,244,245],[210,233,234,235,236,238,239,240,241,242,243,244,245],[210,233,234,235,236,237,239,240,241,242,243,244,245],[210,233,234,235,236,237,238,240,241,242,243,244,245],[210,233,234,235,236,237,238,239,241,242,243,244,245],[210,233,234,235,236,237,238,239,240,242,243,244,245],[210,233,234,235,236,237,238,239,240,241,243,244,245],[210,233,234,235,236,237,238,239,240,241,242,244,245],[210,233,234,235,236,237,238,239,240,241,242,243,245],[210,233,234,235,236,237,238,239,240,241,242,243,244],[167,210],[170,210],[171,176,210],[172,182,183,190,199,209,210],[172,173,182,190,210],[174,210],[175,176,183,191,210],[176,199,206,210],[177,179,182,190,210],[178,210],[179,180,210],[181,182,210],[182,210],[182,183,184,199,209,210],[182,183,184,199,210],[210,214],[185,190,199,209,210],[182,183,185,186,190,199,206,209,210],[185,187,199,206,209,210],[167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216],[182,188,210],[189,209,210],[179,182,190,199,210],[191,210],[192,210],[170,193,210],[194,208,210,214],[195,210],[196,210],[182,197,210],[197,198,210,212],[182,199,200,201,210],[199,201,210],[199,200,210],[202,210],[203,210],[182,204,205,210],[204,205,210],[176,190,199,206,210],[207,210],[190,208,210],[171,185,196,209,210],[176,210],[199,210,211],[210,212],[210,213],[171,176,182,184,193,199,209,210,212,214],[199,210,215],[210,254],[210,223,226],[210,223,226,227,228],[210,225],[210,222,229],[50,210],[210,224],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,210],[44,45,46,47,48,185,187,210],[45,46,48,55,155,157,210],[155,157,210],[45,46,54,55,56,153,210],[44,210],[48,50,51,52,155,210],[48,155,210],[46,47,48,49,53,54,154,157,210],[54,119,155,210],[54,155,210],[54,67,132,155,210],[54,66,103,155,210],[54,58,59,60,62,64,90,91,92,97,98,103,104,105,106,107,108,110,111,113,114,115,118,119,120,121,127,128,130,131,132,155,210],[54,100,101,103,155,210],[54,127,129,131,155,210],[54,131,155,210],[54,129,155,156,210],[54,68,132,155,210],[54,115,117,129,131,155,210],[54,99,102,103,155,210],[54,129,131,155,210],[54,69,132,155,210],[54,79,80,81,83,85,87,89,155,210],[54,98,129,155,210],[54,82,155,210],[54,98,155,156,210],[54,98,129,131,155,210],[54,98,155,210],[54,67,68,69,70,71,72,73,74,98,155,210],[54,64,65,75,76,78,97,103,129,155,210],[54,106,113,129,155,210],[54,140,155,210],[54,70,132,155,210],[54,66,75,103,155,210],[54,82,84,86,88,129,131,155,210],[54,82,84,86,88,115,117,129,131,155,210],[54,90,129,131,155,210],[54,98,115,131,155,210],[54,61,63,129,155,210],[54,62,113,155,210],[54,71,132,155,210],[54,92,95,155,210],[54,57,83,85,87,89,91,93,94,103,111,112,115,118,132,155,210],[54,132,155,210],[54,124,127,129,131,155,210],[54,59,62,64,128,129,130,155,210],[54,79,80,83,85,87,89,155,210],[54,78,103,155,210],[54,77,98,103,131,155,210],[54,67,68,69,70,71,72,73,74,75,77,78,95,98,99,100,101,102,111,129,131,132,155,156,210],[54,110,113,129,155,210],[54,94,110,155,210],[54,108,109,111,129,155,210],[54,66,129,131,155,210],[54,72,132,155,210],[54,60,129,155,210],[54,59,115,129,155,210],[54,100,103,155,210],[54,95,97,155,210],[54,96,98,103,113,129,155,156,210],[54,58,94,103,105,106,107,110,112,113,129,155,156,210],[54,115,129,155,210],[54,58,104,105,129,131,155,210],[54,129,155,210],[54,115,117,155,210],[54,79,80,83,85,87,89,115,117,155,210],[54,115,116,118,155,210],[54,58,60,92,105,114,129,155,210],[54,113,115,129,155,210],[54,95,111,114,155,210],[54,61,63,112,114,129,155,156,210],[54,95,111,113,115,155,210],[54,73,132,155,210],[54,115,122,123,125,126,129,155,210],[54,125,155,210],[54,103,155,210],[54,102,103,155,210],[54,141,155,210],[45,56,157,210]],"referencedMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,38],[216,2],[185,39],[186,40],[187,41],[217,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,48],[194,49],[195,50],[196,51],[197,52],[198,53],[199,54],[201,55],[200,56],[202,57],[203,58],[204,59],[205,60],[206,61],[207,62],[208,63],[209,64],[210,65],[211,66],[212,67],[213,68],[214,69],[215,70],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,71],[44,2],[223,2],[227,72],[229,73],[228,72],[226,74],[230,75],[222,2],[50,2],[51,76],[225,77],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,78],[49,79],[56,80],[52,81],[47,2],[48,2],[45,2],[154,82],[46,83],[53,84],[153,78],[54,85],[155,86],[156,87],[57,88],[133,89],[67,90],[134,88],[129,91],[102,92],[122,93],[120,94],[135,95],[136,96],[68,90],[118,97],[100,98],[107,99],[137,100],[69,90],[82,101],[138,102],[81,103],[65,104],[64,105],[139,106],[75,107],[76,106],[98,108],[105,109],[141,110],[142,111],[70,112],[89,113],[126,93],[83,113],[80,114],[79,114],[85,113],[119,95],[90,102],[91,115],[143,95],[144,88],[145,116],[62,117],[61,118],[63,118],[146,119],[71,90],[93,120],[95,121],[147,122],[125,123],[131,124],[130,95],[86,125],[77,126],[78,127],[148,94],[103,128],[149,88],[108,129],[109,130],[110,131],[66,122],[132,132],[150,133],[72,90],[87,114],[59,134],[60,135],[88,125],[121,113],[99,136],[96,137],[97,138],[111,139],[58,140],[106,141],[104,142],[116,143],[84,144],[117,145],[92,99],[115,146],[114,147],[94,148],[113,149],[112,150],[151,151],[73,90],[128,93],[127,152],[124,153],[123,93],[152,154],[101,155],[140,156],[74,154],[55,157],[158,2]],"exportedModulesMap":[[161,1],[159,2],[164,3],[160,1],[162,4],[163,1],[166,5],[218,6],[219,2],[220,7],[221,8],[231,9],[232,2],[234,10],[235,11],[233,12],[236,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,2],[247,2],[165,2],[167,23],[168,23],[170,24],[171,25],[172,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,33],[181,34],[182,35],[183,36],[184,37],[169,38],[216,2],[185,39],[186,40],[187,41],[217,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,48],[194,49],[195,50],[196,51],[197,52],[198,53],[199,54],[201,55],[200,56],[202,57],[203,58],[204,59],[205,60],[206,61],[207,62],[208,63],[209,64],[210,65],[211,66],[212,67],[213,68],[214,69],[215,70],[248,2],[249,2],[250,2],[251,2],[252,2],[253,2],[254,2],[255,71],[44,2],[223,2],[227,72],[229,73],[228,72],[226,74],[230,75],[222,2],[50,2],[51,76],[225,77],[224,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[43,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[157,78],[49,79],[56,80],[52,81],[47,2],[48,2],[45,2],[154,82],[46,83],[53,84],[153,78],[54,85],[155,86],[156,87],[57,88],[133,89],[67,90],[134,88],[129,91],[102,92],[122,93],[120,94],[135,95],[136,96],[68,90],[118,97],[100,98],[107,99],[137,100],[69,90],[82,101],[138,102],[81,103],[65,104],[64,105],[139,106],[75,107],[76,106],[98,108],[105,109],[141,110],[142,111],[70,112],[89,113],[126,93],[83,113],[80,114],[79,114],[85,113],[119,95],[90,102],[91,115],[143,95],[144,88],[145,116],[62,117],[61,118],[63,118],[146,119],[71,90],[93,120],[95,121],[147,122],[125,123],[131,124],[130,95],[86,125],[77,126],[78,127],[148,94],[103,128],[149,88],[108,129],[109,130],[110,131],[66,122],[132,132],[150,133],[72,90],[87,114],[59,134],[60,135],[88,125],[121,113],[99,136],[96,137],[97,138],[111,139],[58,140],[106,141],[104,142],[116,143],[84,144],[117,145],[92,99],[115,146],[114,147],[94,148],[113,149],[112,150],[151,151],[73,90],[128,93],[127,152],[124,153],[123,93],[152,154],[101,155],[140,156],[74,154],[55,157],[158,2]],"semanticDiagnosticsPerFile":[161,159,164,160,162,163,166,218,219,220,221,231,232,234,235,233,236,237,238,239,240,241,242,243,244,245,246,247,165,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,169,216,185,186,187,217,188,189,190,191,192,193,194,195,196,197,198,199,201,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,248,249,250,251,252,253,254,255,44,223,227,229,228,226,230,222,50,51,225,224,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,157,49,56,52,47,48,45,154,46,53,153,54,155,156,57,133,67,134,129,102,122,120,135,136,68,118,100,107,137,69,82,138,81,65,64,139,75,76,98,105,141,142,70,89,126,83,80,79,85,119,90,91,143,144,145,62,61,63,146,71,93,95,147,125,131,130,86,77,78,148,103,149,108,109,110,66,132,150,72,87,59,60,88,121,99,96,97,111,58,106,104,116,84,117,92,115,114,94,113,112,151,73,128,127,124,123,152,101,140,74,55,158]},"version":"4.6.4"}
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.date.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.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/axios/index.d.ts","../src/error.ts","../src/interceptor.ts","../src/config.ts","../src/debug.ts","../src/client.ts","../node_modules/json-typescript/dist/index.d.ts","../node_modules/jsonapi-typescript/index.ts","../src/common.ts","../src/jsonapi.ts","../src/query.ts","../src/static.ts","../src/commercelayer.ts","../src/resources/adjustments.ts","../src/resources/shipping_categories.ts","../src/resources/price_lists.ts","../src/resources/prices.ts","../src/resources/inventory_return_locations.ts","../src/resources/inventory_models.ts","../src/resources/inventory_stock_locations.ts","../src/resources/customer_groups.ts","../src/resources/customer_addresses.ts","../src/resources/payment_gateways.ts","../src/resources/adyen_payments.ts","../src/resources/braintree_payments.ts","../src/resources/checkout_com_payments.ts","../src/resources/external_payments.ts","../src/resources/klarna_payments.ts","../src/resources/paypal_payments.ts","../src/resources/stripe_payments.ts","../src/resources/wire_transfers.ts","../src/resources/customer_payment_sources.ts","../src/resources/customer_subscriptions.ts","../src/resources/order_copies.ts","../src/resources/order_subscriptions.ts","../src/resources/free_gift_promotions.ts","../src/resources/fixed_price_promotions.ts","../src/resources/coupons.ts","../src/resources/coupon_codes_promotion_rules.ts","../src/resources/fixed_amount_promotions.ts","../src/resources/sku_list_promotion_rules.ts","../src/resources/free_shipping_promotions.ts","../src/resources/order_amount_promotion_rules.ts","../src/resources/percentage_discount_promotions.ts","../src/resources/promotion_rules.ts","../src/resources/external_promotions.ts","../src/resources/gift_card_recipients.ts","../src/resources/gift_cards.ts","../src/resources/sku_options.ts","../src/resources/line_item_options.ts","../src/resources/stock_line_items.ts","../src/resources/line_items.ts","../src/resources/return_line_items.ts","../src/resources/returns.ts","../src/resources/customers.ts","../src/resources/refunds.ts","../src/resources/captures.ts","../src/resources/voids.ts","../src/resources/authorizations.ts","../src/resources/orders.ts","../src/resources/shipping_zones.ts","../src/resources/delivery_lead_times.ts","../src/resources/shipping_methods.ts","../src/resources/carrier_accounts.ts","../src/resources/packages.ts","../src/resources/parcel_line_items.ts","../src/resources/parcels.ts","../src/resources/shipments.ts","../src/resources/stock_transfers.ts","../src/resources/stock_locations.ts","../src/resources/stock_items.ts","../src/resources/skus.ts","../src/resources/sku_list_items.ts","../src/resources/sku_lists.ts","../src/resources/bundles.ts","../src/resources/geocoders.ts","../src/resources/billing_info_validation_rules.ts","../src/resources/promotions.ts","../src/resources/avalara_accounts.ts","../src/resources/taxjar_accounts.ts","../src/resources/tax_rules.ts","../src/resources/manual_tax_calculators.ts","../src/resources/external_tax_calculators.ts","../src/resources/tax_categories.ts","../src/resources/tax_calculators.ts","../src/resources/attachments.ts","../src/resources/merchants.ts","../src/resources/markets.ts","../src/resources/payment_methods.ts","../src/resources/adyen_gateways.ts","../src/resources/application.ts","../src/resources/bing_geocoders.ts","../src/resources/braintree_gateways.ts","../src/resources/checkout_com_gateways.ts","../src/resources/coupon_recipients.ts","../src/resources/customer_password_resets.ts","../src/resources/webhooks.ts","../src/resources/event_callbacks.ts","../src/resources/external_gateways.ts","../src/resources/google_geocoders.ts","../src/resources/imports.ts","../src/resources/in_stock_subscriptions.ts","../src/resources/klarna_gateways.ts","../src/resources/manual_gateways.ts","../src/resources/order_validation_rules.ts","../src/resources/organization.ts","../src/resources/paypal_gateways.ts","../src/resources/stripe_gateways.ts","../src/resources/transactions.ts","../src/model.ts","../src/index.ts","../src/resource.ts","../src/resources/addresses.ts","../src/api.ts","../src/util.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","d88dc05fd345b7a4e1816bbfd2dd087eefa9b9e36096818c2348f5b246971125",{"version":"5fd29fad984f1a472e88dcbb6f7958de4b40bbb0c88f71abacaabed051d38ef5","signature":"f933dd011c5c41e29a359d3b46ed9a9294ead09f34854ac54cf3cb907058599d"},{"version":"c6e62e4331b6712421bdf522163d1eb460e53830327645f63c30b214951d93ec","signature":"9b24ba4607071953cb350310b8690fd43b400ca6089c8be8f0cc52a799f48dca"},{"version":"fc398235ad449421e6dff62d802e0cebe3512cb09b537b73b057e787bd9c20cf","signature":"001e07fccf54859e47fe779a6209b6dbeae6db28dc437a6c46bae5604514215d"},{"version":"ea99b928389b2d043854976a26dcb266ad279c5c009031fdcb10676b40c00523","signature":"37354fa9b6df26ec17cde2f47786ded97beac22801b38f9f3064fd71b80c14fd"},{"version":"e800985d99900b141153e7be342ece58550db8678ef7e84903617fd45b7e3b33","signature":"5745bb6b069fb9d59641b75feb9fd4e6c5a2e0dcead272e86222c9d4f9b8c465"},"f31c7546040cd86f280af26148f7dbb150c7ed2f77ad9589ac6da3f845e9a4b8","866c1e5d13f33b7fa6f5526048dbedd964cebde583371e4a5359e55c9196f911",{"version":"0ac9a484a32a45793f7477822d4522d3f3e8fafc1dc3277a43cd33a8a4bbf309","signature":"b4d8bfb4ad849a8040c89fe69a1e739cb4483da68d17e07b5bb8d8a0b9d8f7eb"},{"version":"ef95b8de92a4f8fdc4f3308811fcd797f83f7b12d591d51e1e5f879d92c0368c","signature":"d996f6a65427f2fd407466a36918914f7c53da8ff25cc0c8a7b99de8267dff61"},{"version":"703317dcf6d90b157cb165ea61f9e80cf7cedc74f7fb963824ccbe92d2e2bb99","signature":"6d61fa795166693b279aa92148f079b2c0573294aeebdc3a212cf6b92fe74a48"},{"version":"fb4b52f4a58c39b4bc824e9b3ae8a882a39f57c6b70379a9ed54e7c52e1ff514","signature":"f375ccd44487a9b244d149aafed71ad4159ac7c7869b03722bf68959217887e7"},{"version":"30b68c9df283a17e216efb3a1af3ccf4ba729b51c7acb2a159f97c3d89a1153c","signature":"f07d01e0130800a0f7f09d80145a82545ae0e2bd77b0943f5836b9a7f6317c25"},{"version":"f7b31838aa44f4dd276651c3cf894a37c5373882a1bc6a5c03fb27f56f638ff2","signature":"3c5320d3705df565ddd45813cac322b47fa1c5a0a6eb04eba761721b5661c6f4"},{"version":"3d4d07b9883921d0e23a9d7d5e24222996cc49006e4b55ce35b8656ca86f7df0","signature":"fc8376d3fe20546feb9ef6d755e9bae055af8139e1c1c15db1cc6601270dedb7"},{"version":"f28abc0711a21cb58cdd2881a1d8f10e60d882e0fe6244e747f42e13d8fd0097","signature":"2228ba640f929a3e43e06a84a8ff0b8e64f783dc07951936055c6b283de338cf"},{"version":"70991d7968704bce15c9bb41ace9ea25bb7fd46a4166f92c202041c998354493","signature":"38ff21804b6276cebac57b4bdd86b34a1c58a5ddbafd3f9a1dd1ba181866996b"},{"version":"e0d2a1585a1a3b648601a86fc130e67a33180af3cb91ff9e22093a34d626b7e8","signature":"75243e2b1f28915b5cbc12bcef226245d4fee96ac702d567c4315333db565bdf"},{"version":"e15e1dde343696e8dda38cb7655475ded6a215c4e3633f351a362db3726aa831","signature":"f0321992accf215458f051f65ef2be2ca6bad26995fb9bc1912c5c444007ddf3"},{"version":"5b521c7a7f41c02f2d5c27546073d2def435953432cd38222d116550bb7fb181","signature":"903693423e98c728855cb8e13da8db3ca5e29b7ea7e4b947621cacb36adefcdc"},{"version":"51d1951833eeaf671cd62aa8a94480721b09de829a677e491edbc9e7af196587","signature":"eb301633c1e7e2bdd37772203df3ee163ebdb08ed03ef07c68612bfaf3510602"},{"version":"aafe15eb432383e106bb699dbb78b349908a00f150fa398c1a011405ccc60c4b","signature":"3b27396332194a38a7b9e4d4591d4a88e7e89d6d888f994c8f542930c3e957e5"},{"version":"8f46eca3026f1e3fcb588e6f681b4b9506067a4769ada8f3026174640943448e","signature":"4b839313e7e2a5773dc42578f931abc5891ad340737d3eb832c783211ab6cd9c"},{"version":"211730935f602427523651408c3da68e678327f7c9da4242b5ff1b3c6df85ef4","signature":"7e4cffde4f0641cbcade8dd33762862c14217241db66aaec5ca5d7c378b51818"},{"version":"1e3822f02824847006f7f7bab92dc10a7777a9eb9d21dda8bfe9cd3d3dec3fec","signature":"df5b2d531c6e2541767b8c635b604cee93fecbcf1b63efad171030ee23727e2c"},{"version":"a65f06cdf2e6cd6397ed8d5d6c07895d1f2a53ac15a0c8cb296015a0bb47c6c7","signature":"9c171472688d00504d544d12ffe034d9f525cba1f07151ed0b0d26723a1748cb"},{"version":"3a81b40a74dba527b65561d25eedda261297de5734ff819602140e326c4c7a0a","signature":"0f302d3049d9d001899c4fa6cd437d6c6c07d5671719a2430d25342d297295b3"},{"version":"0021cac0b1f36ff7f56792c12516c075475725594212bd7b29b9506eb1897542","signature":"01e7aa8b927a84c1703dccb9e6abb95d2b28927bda49cbdc593fbf35ec473864"},{"version":"253705c16e109e89924ba31aaae3591d285ee1b6154245dfca7f809a62c6aab5","signature":"7684325d826abc8f9fa1f2ccac1ed1ebe7db82d1cc59475d8149aa17bdd2050b"},{"version":"9d4d17fa8155e6f835a48dc8515187f84f0e245b2193ab3799e626390150ce84","signature":"b0f04fbdf1789a516f7de8ab838ae864f7cd44eacc473b8e681eb18631e3b32a"},{"version":"543fa9da43d15e37a2330df9b7553a3f295429c84ad4b5e6560e5a2abbfc7167","signature":"e848b985023a13bcb2db5aa7a7e525331b71e370a5a1215e4e9e5910916cff71"},{"version":"d2e7596b393e93d03c723bdf7f372b7264e81e4bb976ab765d1ee80b623aa681","signature":"aec34fbc98806a18756fb8a6fc1762913658484120c0fbdb409753df75cfee86"},{"version":"1dce4724a7c48e4aa51f8c13d0bfa0696a0e90cee867eb401f4321e611e00b8a","signature":"f0623a32af3440dbda0a64c50cfccae23664de6e2ca7b6193a19b58e28949b9b"},{"version":"aabb017be95bfc98de9d2b025d74b3cfbf3a816145aa35473c7b5b7cec83c413","signature":"88740dc3ebdf1c42accea34d950328fd110a0a08b58a878a95ff3825fbe59d2e"},{"version":"175d294fc352258e0a8e2990d3f50704f5a56a32f75d5fc18d7230605bfae023","signature":"e953fd2f668db74863cccb02041e62ee2bdd68e0b091932c54f4f440e3f0165d"},{"version":"643ad7c04b908dd679d04b76c28d1ccb7765d6dfd649a75685dde468d6c7566b","signature":"70d0918531aa2e136dc1e9d3ff35bfbe5a35fd3017c17024e5b65f4133cdbdfe"},{"version":"714e3a386a66862bfe752e3119e7fb2f7ef6412fd2429daa99363a17fc4195f2","signature":"264a8f86a724dac41f58effeb19e589d3c0be428b2919c1b003222ebc1a1f956"},{"version":"d176197ec8982cc6bb17b5817464583e548546ef7afc7f4d81ff36d3d42449ca","signature":"6096e5b98282a2cd85d9539a29c7bc075bafb1c06673929f429e8ca759db75c7"},{"version":"e82e9f5a713e36d12241dfea221e100424ffe0664e71a29b0b2d1d636b74d37e","signature":"9fd600deb49e3d687e1baef0a19c1a3400399d030276cbeb7cec6c7c3401332d"},{"version":"1f5eead86b0a53e4a3ed4d2b9d703950e7a0d9dea06318073b016b6078b1ec72","signature":"e9087a12f6d7c94c57b1b27a83e2a5d4bb09efa3c13e2253511287e5c40514d4"},{"version":"10a6bb1644e3d996d298a26fdf5c68110a8350019064a517b129046ef9bdf0af","signature":"05ce4f6db5ed235609c8f10c1faf80f93f9a460f16a1eb4c81ef51947b7e04cb"},{"version":"885e0c5e8b2cdd5b445cd358dc6c33756cb60b36187777bd9d20ab0dcaedcf25","signature":"366284b1fdecfdce212fe08151e53562a204efee8a38c1b6627c9ab91332a1f7"},{"version":"eb8b3e55b70b4a8cd5f88561ebd35942764dae0d8240ced45a2e8b66ec023164","signature":"a177280ef320edb8005b2833b0720a772b8128a682b5a4023740feddb9fab658"},{"version":"84d24ad377fde7c22e8afea84e0bd5b6e90af7c5dd2a56798e1dc0e1ec356215","signature":"8b59824815b8b17242a5b5f18d5418a5dcf165286fef398033c17c9984fefd6e"},{"version":"d4b3790d3144641eeb48e23b0f65589ed40ed4eb429b76f82a93f14b2654d9b7","signature":"f5707aa1ecfcba04604f5e81bb517f616702dbb6c7a6db9fbd578fdbfb644894"},{"version":"c981d017a4eaf951707634031e72e974b72e21515a40d9df1696ab36569329b1","signature":"f8d67a0bb211531be0d7039d220563c70030dc6c2c8e852ed61e8951b323c8a6"},{"version":"c8f2ef6b4b9efab26dfed03b0f1669ed5ea46bf70dbf38734d5682d634b32083","signature":"9d66a7c8ec396a7d0c43e52ec5bd385f794c06ae23e06f89ffa83830425e3425"},{"version":"42575c031a20f46a589828b3d95ba261a84dddcbda17a2e2087e263d0fe6667e","signature":"b3cfab14eef693dc453cce8663931068a52e6d41b0a57c11e7a5d3d749cf7c81"},{"version":"11eccfba8c0d92a01e924751afb403c389f30b59d32ac9edda671ae0eced7552","signature":"6aff2903eaf9eb6ae3fd70271cd6f9de3dfa866e6c6d4218fca0148580dede01"},{"version":"2146640a4a191c9cc38b770f3c80f4d31190ef03d7bd2cbbcb17ce8529873635","signature":"d71437631db495775d161be09c476be4f0cb8f55ed49ed8b71944ca03526dbe1"},{"version":"4590540774c5174e448e03cbd65bef173314051f0f322c839f8a9695ea249e1f","signature":"949e88b9702c3f9d6c8bdfa3cfd816edbf9312795045844d0a1bdd6a88575d9b"},{"version":"e3bf8e796339041f78675b86ad02f4ddb5950cd24d98abb68beed70bd8c21a0a","signature":"cea4e3bbd3acd18b40889336f16bddbe1ad071c6d2c72a06e60e432d28b45089"},{"version":"81d0c263a0ead61b53e86f03e3378f51a5f11a34b4d87cc4b796c9aa22ef976f","signature":"56083f0d0a89f5e608edd081d8cd21077add2d4de41b6dfadfef053674168cf8"},{"version":"1799ddfd73d43188c1e0a1c8ead68905f20ddfad18db35cac0b40444b7fa8a38","signature":"8019101dfba768d2974ee5ad27c1bacca4e101515477856bd0ddb6865ef6b1f1"},{"version":"0dc2d3675fb187e07ac62f8fe864124877472ae32a97770cdffcbcc611721c80","signature":"b2b4b06a788626b69e811960bfc590a95df6428c6ec8491e4dfefd577fc930cb"},{"version":"165ff1c91a72ae74f4b8c5d6024d9355d95315defa95b1d61029996209b61cc6","signature":"dd081001dddf440785a45c4e0d99fdd175daddfa9099d2e47d6e517cbea3abd9"},{"version":"33847b5fa975d63c717cd961b382636095b7119be7ca83a112ab8d022f141d95","signature":"6ef046d4598fbed060c01622fd3f7902de9678fdfa44bfa15067e6190a8f69f5"},{"version":"4ec647042af43c6dd5f4227064cc6804059a534b6d0401da557c824183ac9eaf","signature":"14013a09ed776f83f2ea7ca957282c1a8bdddc7d214052fb4fab7e9f60e3a410"},{"version":"dfb3135458687b56e6e7fe27f89f854510aff0b05f424c4f900692a0d2952f5e","signature":"ddee4e05a6ac9ce301cecea73781055bfb66e9784b7bf75a939449f2890c405e"},{"version":"dc44fa29893da0c898cbfeb11927524db8e44c0deb879fc14d185935769ad11a","signature":"5357b5819017023c699e00b57b087be4d98dd29f89146afc66a882f57a80a3c0"},{"version":"4b7dc9b691b8be4f7f065e31317213104e1a888ec53c68f319cc924b04417340","signature":"4a7069995384a626238d3db44de6017d0889ac58503bcf17a05e875822ef5bf8"},{"version":"a5cdb91591672e4f8a404ea6992ae4023b6e3259120521febe6f10fe8b641dd3","signature":"8f6bcc0c4a6885f1a3e6328c5643f8629ac76da63ef51f85204aaaa147668d6b"},{"version":"4b88a0d51e171079aaebceb33e6da53898d2393c5d2204ebcb269e3914b20bb6","signature":"a028b674aeb06a8bc4748ac3cddada60c36c97560fd873342895da7835eafcbf"},{"version":"41f743fd53fdaf0a60a2beaa322a217bea47120367db24feb68fa9c8eb043e73","signature":"0ebb37a743eeda8bbbd00e88b265af4fc98345301a03a921d5b7984abd5fb2a9"},{"version":"c54e5d735fb008f08c7e30a6480c16bc1e6d28ea96e52f0bddb305f1653b5245","signature":"f449f6a183632bb76db909ed1462ea869dea687f9e94ee1f9f1a5e583aa085e1"},{"version":"f3117794f5bc50c396c20a7c67941c45b6df666641f7f47d08dac0474aa8ed4a","signature":"5af6bc8dc48ac9b25de92d8e53c188507d0bdabde3e98e6b05805a05ba032848"},{"version":"2c1d6478d7e0abdeb7a59fe6a96472ec10fb08c9e5f592ccd0da999c15369ce3","signature":"2e989995f003349cb80a8a7cd00eca0c795bc6ff9489a859f3166dca538fabce"},{"version":"870b0d40a829ff696506b5eca592a085f642eb75ddaea04dd7788ed1ee4705bc","signature":"28d7192eb57a9237e2ee31e21fb852329fcd0411d660dd5cd740fc939e52d980"},{"version":"2ea5f7174342ce5098dff0e737c3878f308e42f833cb711784ecfbb491925c73","signature":"a4334e6a44553bbe96bcdaf5757211b403464d4733376894c720aa59b219db2c"},{"version":"926b7ca37515f62b19f79fa709eacc1dd3d49b5b0d6d110f53e58d5068ff71aa","signature":"bab91c0c2b646cc21b9ec3bf1fced80eb5d8487118e6709095a2b31e6a7f0909"},{"version":"d9459ddef698c0872118e38f7c155d4a03b73f34c919a37123d0a611f7c081ae","signature":"0394395305ee2a3d9a0682155783206d80a7a07dd30d781a2c33124a4f77b7b3"},{"version":"54cbc2496f1a2e18ad67dae199bbb31f34a3f06ae6469e15db719dd3da383732","signature":"d157cc33bc1125d5a0a6a5ce648fc527e9b8f6e9555cb2800b4d268b54b94477"},{"version":"424ad32f4e111cdc190f77ffcbd5822b682261e57dd16b67fb7216130fa8286d","signature":"95f8ed11c0ea7eb6e5c6deec10cd7b84fb8dd1a687f339b268d385b5447b2f1d"},{"version":"6fd0d8684386d1959eea7795e70135248d26d21034faf37192f84d52a9de8001","signature":"d5b60e11fa838e1b9d4a26c918822ad06fc1f5601ceb9bfe8e5d4246542de6b8"},{"version":"0ae4d6d03f1b3bb33eade8f8624e92bac97a92447d91e8df4bd14b92285e34f8","signature":"71c2ed4f4eb08d663bb41c2ed5fdd3d1409e9234acf6f802093af0893edbe07e"},{"version":"1200bdc3ee30d5f5a47c5fefd3e0085fd4ff3e9c39a3dfcbb3296ee277895967","signature":"53316f2481e6703adda8f465f944864de7c0e1066bbdf535c4729fb3a413ceb5"},{"version":"8f18ad1259e68efeb369d8b077c8362b285428a1b9e5cedd050fe385d25c2c73","signature":"c6b94cbc7241fec02cc813bf277af541cd33006f4e4aff7c297f374f8865fc9b"},{"version":"5f9dc475bf4ca694514992e7e35005c0456495360c0e624987e39a719dc57224","signature":"7427a9d21cddc20129a81bd45749e63d44b2968542daf722596d13469592999d"},{"version":"c2111e407ea82d52f3193e83dfa2363120c116625ce4657fc0627bceba5ef0d5","signature":"9dbbeec20eb90f5a05c2d6c38b9970d956c6855c4a1caebdf2e85bd58277e3f4"},{"version":"166b7a169fbac79fc4cf76edf17fda5262df709cfeb456a2bd412e0ebead6abf","signature":"c5c7c04f588fba43ab06d293425d5e279bce6443fc9e32202fdb99bdede8f561"},{"version":"1b7c1b8e2c754745fcc133993734189dab704eaacf77c101e8a150ea527f5be6","signature":"f18e3bebf0f4aaadcb4c800a2078f9eb2fd2182d22674c850bf4f01448d22495"},{"version":"9e372e17e84093d1c9dc03a90a200a8387049160d91339bad9e5c13d071b034c","signature":"ff8b7b0e677b6b6b138f12a91224e048c40ed3d2f1afec803b5a930c61397bd7"},{"version":"385cd4b92438e2a04dd4e66de761cf1380507e081deee6dc27173d84a6363134","signature":"d42d03c631443fb3977d9fc03227630d861ecc3fb3fe89fc140184efe3b2ad03"},{"version":"476e82e95647c362f65e7a09502355032c1b718622a324c605075611e83999a9","signature":"605a00d431b7c7eca1a0aa5c9c7f883938787917a02885f30e5e6a6201466292"},{"version":"bbb03555d2149a918f09edf9d9dee2172ef7787182ce111abd0af2b1701c6744","signature":"d4a3792dd0b43793859d5372daee108e731083b030cd2e6abfde09617ac6d1bc"},{"version":"3eea3440ddd9c41536be19c71d549d69d44fc0303860f73cddbd11e52789fd1f","signature":"8931617efa5e6650f23c6e0fbaa75659cef4e2f62decfc00786dc531c8428d47"},{"version":"9c13fc050ecf216711378e9374c85fe404980cebad36e1db84a79ae977356990","signature":"e82dd0da8a44c6ac9a34d9fcae78e4ea2b63dec31cf0ddfce8b0320d3f251f1c"},{"version":"5b67ebd20383ce01da9e3299802306b8945665827e8ad5c4f75c4cfa1f57c1b5","signature":"caa41b337c7cc185aa00e0093f0e4dd13638dd0028eaef902d6b479493232dfb"},{"version":"6c47234722ef8b41851a12d0299c9fab1afb70dfb6f81465a0e7bd3239da1d86","signature":"69c40b40e3f9b4f51b504b9e9aa2de8393da8ad68df6d77d08826c453c00edff"},{"version":"0ba7632e053fd00f656a4f3d18c45f8f94670c646e68688ffab2790545fa752d","signature":"01fb3a3eb180c12fbb7a93aaae571fedb0d359155aa8377b47a9ced0cdad9781"},{"version":"1c4268c8e3cd55f9f652f85d35e43519be26c5554ea8c2796699161a9a75c7c6","signature":"fece332cf076a57ac5a83f66b76868c515f6a8c743196f0c67189944ff24545b"},{"version":"c751a27a2fa586a42466427c72aa41709f2b4fd19273844e3063f1faa08d6cea","signature":"b5523f62c7b8e87f852c5efb076e7d078a116f194a66be27f41de265721f529c"},{"version":"151a6656cd314d45511f505574ad0b04e842df418653ec39608a7c6956d00943","signature":"6d3021dd95d9fdbd5458bb826c8f49964f7268d6e23b659978b34863c534541a"},{"version":"6b9fca93bc6ec3042a7b6588c9f5c6789ef857ceda2016824f449cc88b814e90","signature":"5c891a44dc7286eeae4ecc4f5e8dfa5b80bf53d48f20c0c85403745c37df4f7f"},{"version":"5b50b0a9c421cfc4e4573da9edd3b6a3dd243938600f5311ca0b1f30cb18da2f","signature":"44258b31816b56083af4301ffd83a5a7c3bbed61e76b1d69bb0b102f175a433e"},{"version":"01128126ac01cbf2e8d22976ffe8e802878c261bb9dc991ccd8f2dcd2fbc33a3","signature":"153f4d3d1661b8c0e5b1debfad8112f1cbb10ee270e30cadfc34d7742a501e36"},{"version":"c11b319aaf02ca18993e19961e71f201147072cdddc84ab78c709d6c8d762517","signature":"bbe5b999b8b232faccdc54b60ddb3ad5ef51109c5bb257449b610a9741df14af"},{"version":"1419b4efefd7b18270b697cf050a17fcfc976fe6f68b7b6b2aa1b758debc7eaa","signature":"dd5a2de32b8674dfddb04ce70e166f59f02ba0029709abf7ba5c9361a396aa31"},{"version":"1ea1422ff132f5b79ba83a6f8bbf23571070420d75b709c3b6f935e094ee7cc8","signature":"1c418d720cfe91d690e03d5ecf608cbddc59c3aa8393d8d5e4142b94d1c337f2"},{"version":"dbf69d437963c3aafba65031931131f90789009a94f16f0fca0d7af4cab9c183","signature":"2b5e4aa4ea473b9358507dbb01ffcc8816a0c27df407b0f57af69ebf91dd495e"},{"version":"d32ab7c1b9c4c33db1894fbc2f59895820a89ee26ce16ead57f1da212bb89a35","signature":"0f8a24f480b109ada96679ca7f979a212cf1445d622e4b5b50690c10362e275a"},{"version":"1b6da50be5b4a52991594d6ae16f2d3cfebe118122792a5b216c8d709cbcec35","signature":"bbda41408c8f32e32fd5aaf376f0d62d77c0b701794ad729ebe89e0dd1e490df"},{"version":"6a6dad73b8d60a1b8c22c8219bc5e4169c3be1ae6b1f68daabc94fc3e0ed0c3f","signature":"2f363ce59b51c4ff45049abf494d8bb3ac275ab7dec06d84869ffe86d43ba67a"},{"version":"875d3f0d28493eb3115f24fd672bdcc0cd641b6c6b2991d3f7859d599f769ddf","signature":"faed91ac8f44ba9c850dbd516ffbadbf09b0c39f5f5eb2b5d16a28bd07bb135c"},{"version":"e68bc91a625e20d7e93488d10af8ad3b4baa0030766220188d539e370338140b","signature":"476453d4369bd63d07afe0119abaff64f85cd74562b88fa2567a7abf2bc038da"},{"version":"a66b0bb30b5583e69b73364b4298c93f915d2cb31999b31c35a2e4b7f58ad5b2","signature":"451d627d64c4615567757c6890ae85794132a53e779d7c43cf526539eda076d2"},{"version":"cd80cf38d6e4dfec736310a0af616b3c7cfb826552dbf845d8d5ad1520340439","signature":"1d269526bed15c2e605274a0791588554a6e3368efb560c9c2811fcf8506ec6e"},{"version":"3c6c78a7d7276b2cf12f5a6274d51a9d965c772183c30d5b45fed07b2678de69","signature":"be4d544b4173e50a74459c7e5eaab67cf9411fb50f011defbe23f335babbdb3c"},{"version":"4f92558543832553edc66cae8b57d0a7efdd9ab7eacb970495e6e95c25874b29","signature":"a46c4b0cd524195a92d3e405151d4e79366c2eec1c796c4fcf48a0e87ece3d16"},{"version":"028eb7598624b49c316ad5371b66653ea78c714a85da906fe7dee00e315f5093","signature":"701a97f24b67e9fd6a5b75e12def62067fc3dd6aaebbb0117ce2fd245af38b1c"},{"version":"344605b15ee3c3b2a321d915261664b58113319590779974d76067f0c291ab32","signature":"ea8506c989feaa93b37a2826ea4b99714e345fbcc5d95689c95e45843f161aa8"},{"version":"a1cb0aa873a5df9fd7e4103708f75836bcc3591c961cbdea835c8c0c4d327990","signature":"dabf9dd75ee342f062f3592c6e32b2529cbbeeb7d28b6ba3e24375f99bda4474"},{"version":"54e7eb068874d37fafbff6e402beb2cbdb9e2042250a848f7a6dff3cad3774ca","signature":"8c7969f2e13f766fbc096d9c752d0a47ef6facd78229d396db9a475d2bbd117d"},{"version":"55ba7f2c5f1f0e1578859006128a8f54aa6710c5403e3d5c32c5a41196b1029e","signature":"a8e5595730363a91f7a2b20f6837c643c8025b251272326e0226b4f2c403126c"},{"version":"d7edc10d35d3794a22081e5f61c51791f04a56d65c451e6f5294c138a6bef33f","signature":"ad9b1ad8a3ff1b34d9fb1cbf0e5af5f1718567055e17a33f4c81845e53d66be0"},"e432b56911b58550616fc4d54c1606f65fe98c74875b81d74601f5f965767c60","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"58df92fa3b18e84865bb0d2fe4b9d2d5bcb9952d4548c871f10ef02702b386f8","52f38aecbb24bebde0b7a0203a686902fc6be930bd0cdb80f482441e4f56fd7d","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"963fe86b2ebd07a34b92b52c6532ab45ec5ccda218a6c477de354fcad2aae0cb","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"76c1c3258edbc6fef9c2020c75d64cc954a53d67f5707e0ba5dd13b6b206059a","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","821dcb2b571bf698841d8ec25fde9d5f615ef3958957227962602f9dbfa8d800","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"f234fa210fdce190f851211bccf105301f62736fe9d536aed1abc1639967fdec","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"aee3379fb20741a337a779530cc3e608aba5f34776511033d1d2db7ca45c4193","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","89911b8c6c9ec349bc2b1b8d5d475e6fcc1e6b3a97ae958937b625f15d735c3d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[161,212],[212],[161,162,163,164,165,212],[161,163,212],[167,212],[185,212,219],[212,221],[212,222],[212,227,232],[212,235,237,238,239,240,241,242,243,244,245,246,247],[212,235,236,238,239,240,241,242,243,244,245,246,247],[212,236,237,238,239,240,241,242,243,244,245,246,247],[212,235,236,237,239,240,241,242,243,244,245,246,247],[212,235,236,237,238,240,241,242,243,244,245,246,247],[212,235,236,237,238,239,241,242,243,244,245,246,247],[212,235,236,237,238,239,240,242,243,244,245,246,247],[212,235,236,237,238,239,240,241,243,244,245,246,247],[212,235,236,237,238,239,240,241,242,244,245,246,247],[212,235,236,237,238,239,240,241,242,243,245,246,247],[212,235,236,237,238,239,240,241,242,243,244,246,247],[212,235,236,237,238,239,240,241,242,243,244,245,247],[212,235,236,237,238,239,240,241,242,243,244,245,246],[169,212],[172,212],[173,178,212],[174,184,185,192,201,211,212],[174,175,184,192,212],[176,212],[177,178,185,193,212],[178,201,208,212],[179,181,184,192,212],[180,212],[181,182,212],[183,184,212],[184,212],[184,185,186,201,211,212],[184,185,186,201,204,212],[212,216],[187,192,201,211,212],[184,185,187,188,192,201,208,211,212],[187,189,201,208,211,212],[169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218],[184,190,212],[191,211,212],[181,184,192,201,212],[193,212],[194,212],[172,195,212],[196,210,212,216],[197,212],[198,212],[184,199,212],[199,200,212,214],[184,201,202,203,212],[201,203,212],[201,202,212],[204,212],[205,212],[184,206,207,212],[206,207,212],[178,192,201,208,212],[209,212],[192,210,212],[173,187,198,211,212],[178,212],[201,212,213],[212,214],[212,215],[173,178,184,186,195,201,211,212,214,216],[201,212,217],[212,256],[212,225,228],[212,225,228,229,230],[212,227],[212,224,231],[52,212],[212,226],[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,153,154,158,212],[46,47,48,49,50,187,189,212],[47,48,50,57,157,159,212],[157,159,212],[47,48,56,57,58,155,212],[46,212],[50,52,53,54,157,212],[50,157,212],[48,49,50,51,55,56,156,159,212],[56,121,157,212],[56,157,212],[56,69,134,157,212],[56,68,105,157,212],[56,60,61,62,64,66,92,93,94,99,100,105,106,107,108,109,110,112,113,115,116,117,120,121,122,123,129,130,132,133,134,157,212],[56,102,103,105,157,212],[56,129,131,133,157,212],[56,133,157,212],[56,131,157,158,212],[56,70,134,157,212],[56,117,119,131,133,157,212],[56,101,104,105,157,212],[56,131,133,157,212],[56,71,134,157,212],[56,81,82,83,85,87,89,91,157,212],[56,100,131,157,212],[56,84,157,212],[56,100,157,158,212],[56,100,131,133,157,212],[56,100,157,212],[56,69,70,71,72,73,74,75,76,100,157,212],[56,66,67,77,78,80,99,105,131,157,212],[56,108,115,131,157,212],[56,142,157,212],[56,72,134,157,212],[56,68,77,105,157,212],[56,84,86,88,90,131,133,157,212],[56,84,86,88,90,117,119,131,133,157,212],[56,92,131,133,157,212],[56,100,117,133,157,212],[56,63,65,131,157,212],[56,64,115,157,212],[56,73,134,157,212],[56,94,97,157,212],[56,59,85,87,89,91,93,95,96,105,113,114,117,120,134,157,212],[56,134,157,212],[56,126,129,131,133,157,212],[56,61,64,66,130,131,132,157,212],[56,81,82,85,87,89,91,157,212],[56,80,105,157,212],[56,79,100,105,133,157,212],[56,69,70,71,72,73,74,75,76,77,79,80,97,100,101,102,103,104,113,117,120,131,133,134,157,158,212],[56,112,115,131,157,212],[56,96,112,157,212],[56,110,111,113,131,157,212],[56,68,131,133,157,212],[56,74,134,157,212],[56,62,131,157,212],[56,61,117,131,157,212],[56,102,105,157,212],[56,97,99,157,212],[56,98,100,105,115,131,157,158,212],[56,60,96,105,107,108,109,112,114,115,131,157,158,212],[56,117,131,157,212],[56,60,106,107,131,133,157,212],[56,131,157,212],[56,117,119,157,212],[56,81,82,85,87,89,91,117,119,157,212],[56,117,118,120,157,212],[56,60,62,94,107,116,131,157,212],[56,115,117,131,157,212],[56,97,113,116,157,212],[56,63,65,114,116,131,157,158,212],[56,97,113,115,117,157,212],[56,75,134,157,212],[56,117,124,125,127,128,131,157,212],[56,127,157,212],[56,105,157,212],[56,104,105,157,212],[56,143,157,212],[47,58,159,212],[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,153,154,158],[46,48,187,189],[47,48,157,159],[157],[47,48,56,57,58,155],[46],[53,157],[48,51,56,156,159],[56,121,157],[56,157],[56,69,134,157],[56,68,105,157],[56,60,61,62,64,66,92,93,94,99,100,105,106,107,108,109,110,112,113,115,116,117,120,121,122,123,129,130,132,133,134,157],[56,102,103,105,157],[56,129,131,133,157],[56,133,157],[56,131,157,158],[56,70,134,157],[56,117,119,131,133,157],[56,101,104,105,157],[56,131,133,157],[56,71,134,157],[56,81,82,83,85,87,89,91,157],[56,100,131,157],[56,84,157],[56,100,157,158],[56,100,131,133,157],[56,100,157],[56,69,70,71,72,73,74,75,76,100,157],[56,66,67,77,78,80,99,105,131,157],[56,108,115,131,157],[56,142,157],[56,72,134,157],[56,68,77,105,157],[56,84,86,88,90,131,133,157],[56,84,86,88,90,117,119,131,133,157],[56,92,131,133,157],[56,100,117,133,157],[56,63,65,131,157],[56,64,115,157],[56,73,134,157],[56,94,97,157],[56,59,85,87,89,91,93,95,96,105,113,114,117,120,134,157],[56,134,157],[56,126,129,131,133,157],[56,61,64,66,130,131,132,157],[56,81,82,85,87,89,91,157],[56,80,105,157],[56,79,100,105,133,157],[56,69,70,71,72,73,74,75,76,77,79,80,97,100,101,102,103,104,113,117,120,131,133,134,157,158],[56,112,115,131,157],[56,96,112,157],[56,110,111,113,131,157],[56,68,131,133,157],[56,74,134,157],[56,62,131,157],[56,61,117,131,157],[56,102,105,157],[56,97,99,157],[56,98,100,105,115,131,157,158],[56,60,96,105,107,108,109,112,114,115,131,157,158],[56,117,131,157],[56,60,106,107,131,133,157],[56,131,157],[56,117,119,157],[56,81,82,85,87,89,91,117,119,157],[56,117,118,120,157],[56,60,62,94,107,116,131,157],[56,115,117,131,157],[56,97,113,116,157],[56,63,65,114,116,131,157,158],[56,97,113,115,117,157],[56,75,134,157],[56,117,124,125,127,128,131,157],[56,127,157],[56,105,157],[56,104,105,157],[56,143,157],[47,58]],"referencedMap":[[163,1],[161,2],[166,3],[162,1],[164,4],[165,1],[168,5],[220,6],[221,2],[222,7],[223,8],[233,9],[234,2],[236,10],[237,11],[235,12],[238,13],[239,14],[240,15],[241,16],[242,17],[243,18],[244,19],[245,20],[246,21],[247,22],[248,2],[249,2],[167,2],[169,23],[170,23],[172,24],[173,25],[174,26],[175,27],[176,28],[177,29],[178,30],[179,31],[180,32],[181,33],[182,33],[183,34],[184,35],[185,36],[186,37],[171,38],[218,2],[187,39],[188,40],[189,41],[219,42],[190,43],[191,44],[192,45],[193,46],[194,47],[195,48],[196,49],[197,50],[198,51],[199,52],[200,53],[201,54],[203,55],[202,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[214,67],[215,68],[216,69],[217,70],[250,2],[251,2],[252,2],[253,2],[254,2],[255,2],[256,2],[257,71],[46,2],[225,2],[229,72],[231,73],[230,72],[228,74],[232,75],[224,2],[52,2],[53,76],[227,77],[226,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],[45,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],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[159,78],[51,79],[58,80],[54,81],[49,2],[50,2],[47,2],[156,82],[48,83],[55,84],[155,78],[56,85],[157,86],[158,87],[59,88],[135,89],[69,90],[136,88],[131,91],[104,92],[124,93],[122,94],[137,95],[138,96],[70,90],[120,97],[102,98],[109,99],[139,100],[71,90],[84,101],[140,102],[83,103],[67,104],[66,105],[141,106],[77,107],[78,106],[100,108],[107,109],[143,110],[144,111],[72,112],[91,113],[128,93],[85,113],[82,114],[81,114],[87,113],[121,95],[92,102],[93,115],[145,95],[146,88],[147,116],[64,117],[63,118],[65,118],[148,119],[73,90],[95,120],[97,121],[149,122],[127,123],[133,124],[132,95],[88,125],[79,126],[80,127],[150,94],[105,128],[151,88],[110,129],[111,130],[112,131],[68,122],[134,132],[152,133],[74,90],[89,114],[61,134],[62,135],[90,125],[123,113],[101,136],[98,137],[99,138],[113,139],[60,140],[108,141],[106,142],[118,143],[86,144],[119,145],[94,99],[117,146],[116,147],[96,148],[115,149],[114,150],[153,151],[75,90],[130,93],[129,152],[126,153],[125,93],[154,154],[103,155],[142,156],[76,154],[57,157],[160,2]],"exportedModulesMap":[[163,1],[161,2],[166,3],[162,1],[164,4],[165,1],[168,5],[220,6],[221,2],[222,7],[223,8],[233,9],[234,2],[236,10],[237,11],[235,12],[238,13],[239,14],[240,15],[241,16],[242,17],[243,18],[244,19],[245,20],[246,21],[247,22],[248,2],[249,2],[167,2],[169,23],[170,23],[172,24],[173,25],[174,26],[175,27],[176,28],[177,29],[178,30],[179,31],[180,32],[181,33],[182,33],[183,34],[184,35],[185,36],[186,37],[171,38],[218,2],[187,39],[188,40],[189,41],[219,42],[190,43],[191,44],[192,45],[193,46],[194,47],[195,48],[196,49],[197,50],[198,51],[199,52],[200,53],[201,54],[203,55],[202,56],[204,57],[205,58],[206,59],[207,60],[208,61],[209,62],[210,63],[211,64],[212,65],[213,66],[214,67],[215,68],[216,69],[217,70],[250,2],[251,2],[252,2],[253,2],[254,2],[255,2],[256,2],[257,71],[46,2],[225,2],[229,72],[231,73],[230,72],[228,74],[232,75],[224,2],[52,2],[53,76],[227,77],[226,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],[45,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],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[159,158],[51,159],[58,160],[54,161],[156,162],[48,163],[55,164],[155,158],[56,161],[157,165],[158,166],[59,167],[135,168],[69,169],[136,167],[131,170],[104,171],[124,172],[122,173],[137,174],[138,175],[70,169],[120,176],[102,177],[109,178],[139,179],[71,169],[84,180],[140,181],[83,182],[67,183],[66,184],[141,185],[77,186],[78,185],[100,187],[107,188],[143,189],[144,190],[72,191],[91,192],[128,172],[85,192],[82,193],[81,193],[87,192],[121,174],[92,181],[93,194],[145,174],[146,167],[147,195],[64,196],[63,197],[65,197],[148,198],[73,169],[95,199],[97,200],[149,201],[127,202],[133,203],[132,174],[88,204],[79,205],[80,206],[150,173],[105,207],[151,167],[110,208],[111,209],[112,210],[68,201],[134,211],[152,212],[74,169],[89,193],[61,213],[62,214],[90,204],[123,192],[101,215],[98,216],[99,217],[113,218],[60,219],[108,220],[106,221],[118,222],[86,223],[119,224],[94,178],[117,225],[116,226],[96,227],[115,228],[114,229],[153,230],[75,169],[130,172],[129,231],[126,232],[125,172],[154,233],[103,234],[142,235],[76,233],[57,236]],"semanticDiagnosticsPerFile":[163,161,166,162,164,165,168,220,221,222,223,233,234,236,237,235,238,239,240,241,242,243,244,245,246,247,248,249,167,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,171,218,187,188,189,219,190,191,192,193,194,195,196,197,198,199,200,201,203,202,204,205,206,207,208,209,210,211,212,213,214,215,216,217,250,251,252,253,254,255,256,257,46,225,229,231,230,228,232,224,52,53,227,226,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,45,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,159,51,58,54,49,50,47,156,48,55,155,56,157,158,59,135,69,136,131,104,124,122,137,138,70,120,102,109,139,71,84,140,83,67,66,141,77,78,100,107,143,144,72,91,128,85,82,81,87,121,92,93,145,146,147,64,63,65,148,73,95,97,149,127,133,132,88,79,80,150,105,151,110,111,112,68,134,152,74,89,61,62,90,123,101,98,99,113,60,108,106,118,86,119,94,117,116,96,115,114,153,75,130,129,126,125,154,103,142,76,57,160]},"version":"4.7.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercelayer/sdk",
3
- "version": "4.13.2",
3
+ "version": "4.14.0",
4
4
  "main": "lib/cjs/index.js",
5
5
  "types": "lib/cjs/index.d.ts",
6
6
  "module": "lib/esm/index.js",
@@ -57,7 +57,7 @@
57
57
  "@typescript-eslint/eslint-plugin": "^5.21.0",
58
58
  "dotenv": "^16.0.0",
59
59
  "eslint": "^8.14.0",
60
- "husky": "^7.0.4",
60
+ "husky": "^8.0.1",
61
61
  "inflector-js": "^1.0.1",
62
62
  "jest": "^28.0.2",
63
63
  "json-typescript": "^1.1.2",