@wix/auto_sdk_ecom_subscription-contracts 1.0.29 → 1.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.d.ts +57 -23
- package/build/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.js.map +1 -1
- package/build/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.d.ts +77 -23
- package/build/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.js.map +1 -1
- package/build/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.d.ts +57 -23
- package/build/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.js.map +1 -1
- package/build/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.d.ts +77 -23
- package/build/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.js.map +1 -1
- package/build/internal/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.d.ts +57 -23
- package/build/internal/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.js.map +1 -1
- package/build/internal/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.d.ts +77 -23
- package/build/internal/cjs/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.js.map +1 -1
- package/build/internal/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.d.ts +57 -23
- package/build/internal/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.js.map +1 -1
- package/build/internal/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.d.ts +77 -23
- package/build/internal/es/src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -57,7 +57,7 @@ export interface SubscriptionContract {
|
|
|
57
57
|
*/
|
|
58
58
|
buyerLanguage?: string | null;
|
|
59
59
|
/** Weight measurement unit - defaults to site's weight unit. */
|
|
60
|
-
weightUnit?:
|
|
60
|
+
weightUnit?: WeightUnitWithLiterals;
|
|
61
61
|
/**
|
|
62
62
|
* Currency used for the pricing of this order in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format.
|
|
63
63
|
* @format CURRENCY
|
|
@@ -130,7 +130,7 @@ export interface V1SubscriptionDescription {
|
|
|
130
130
|
}
|
|
131
131
|
export interface V1SubscriptionSettings {
|
|
132
132
|
/** Frequency of recurring payment. */
|
|
133
|
-
frequency?:
|
|
133
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
134
134
|
/**
|
|
135
135
|
* Interval of recurring payment.
|
|
136
136
|
* @min 1
|
|
@@ -156,9 +156,11 @@ export declare enum SubscriptionFrequency {
|
|
|
156
156
|
MONTH = "MONTH",
|
|
157
157
|
YEAR = "YEAR"
|
|
158
158
|
}
|
|
159
|
+
/** @enumType */
|
|
160
|
+
export type SubscriptionFrequencyWithLiterals = SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
|
|
159
161
|
export interface V1FreeTrialPeriod {
|
|
160
162
|
/** Frequency of period. Values: DAY, WEEK, MONTH, YEAR */
|
|
161
|
-
frequency?:
|
|
163
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
162
164
|
/**
|
|
163
165
|
* interval of period
|
|
164
166
|
* @min 1
|
|
@@ -244,7 +246,7 @@ export interface OrderLineItem {
|
|
|
244
246
|
*
|
|
245
247
|
* Default: `FULL_PAYMENT_ONLINE`
|
|
246
248
|
*/
|
|
247
|
-
paymentOption?:
|
|
249
|
+
paymentOption?: PaymentOptionTypeWithLiterals;
|
|
248
250
|
/**
|
|
249
251
|
* Deprecated. Use `taxInfo` instead.
|
|
250
252
|
* This field will be removed on September 30, 2024.
|
|
@@ -415,6 +417,8 @@ export declare enum DescriptionLineType {
|
|
|
415
417
|
/** Color type. */
|
|
416
418
|
COLOR = "COLOR"
|
|
417
419
|
}
|
|
420
|
+
/** @enumType */
|
|
421
|
+
export type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
|
|
418
422
|
export interface Image {
|
|
419
423
|
/** WixMedia image ID. */
|
|
420
424
|
id?: string;
|
|
@@ -461,14 +465,14 @@ export interface PhysicalProperties {
|
|
|
461
465
|
}
|
|
462
466
|
export interface ItemType extends ItemTypeItemTypeDataOneOf {
|
|
463
467
|
/** Preset item type. */
|
|
464
|
-
preset?:
|
|
468
|
+
preset?: ItemTypeItemTypeWithLiterals;
|
|
465
469
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
466
470
|
custom?: string;
|
|
467
471
|
}
|
|
468
472
|
/** @oneof */
|
|
469
473
|
export interface ItemTypeItemTypeDataOneOf {
|
|
470
474
|
/** Preset item type. */
|
|
471
|
-
preset?:
|
|
475
|
+
preset?: ItemTypeItemTypeWithLiterals;
|
|
472
476
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
473
477
|
custom?: string;
|
|
474
478
|
}
|
|
@@ -479,6 +483,8 @@ export declare enum ItemTypeItemType {
|
|
|
479
483
|
GIFT_CARD = "GIFT_CARD",
|
|
480
484
|
SERVICE = "SERVICE"
|
|
481
485
|
}
|
|
486
|
+
/** @enumType */
|
|
487
|
+
export type ItemTypeItemTypeWithLiterals = ItemTypeItemType | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
482
488
|
/** Type of selected payment option for catalog item */
|
|
483
489
|
export declare enum PaymentOptionType {
|
|
484
490
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -492,6 +498,8 @@ export declare enum PaymentOptionType {
|
|
|
492
498
|
/** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
|
|
493
499
|
MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
|
|
494
500
|
}
|
|
501
|
+
/** @enumType */
|
|
502
|
+
export type PaymentOptionTypeWithLiterals = PaymentOptionType | 'FULL_PAYMENT_ONLINE' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP' | 'DEPOSIT_ONLINE' | 'MEMBERSHIP_OFFLINE';
|
|
495
503
|
export interface ItemTaxFullDetails {
|
|
496
504
|
/** Taxable amount of this line item. */
|
|
497
505
|
taxableAmount?: Price;
|
|
@@ -557,7 +565,7 @@ export interface LineItemTaxBreakdown {
|
|
|
557
565
|
*/
|
|
558
566
|
taxName?: string | null;
|
|
559
567
|
/** Type of jurisdiction that taxes were calculated for. */
|
|
560
|
-
jurisdictionType?:
|
|
568
|
+
jurisdictionType?: JurisdictionTypeWithLiterals;
|
|
561
569
|
/** Non-taxable amount of the line item price. */
|
|
562
570
|
nonTaxableAmount?: Price;
|
|
563
571
|
/** Taxable amount of the line item price. */
|
|
@@ -572,6 +580,8 @@ export declare enum JurisdictionType {
|
|
|
572
580
|
CITY = "CITY",
|
|
573
581
|
SPECIAL = "SPECIAL"
|
|
574
582
|
}
|
|
583
|
+
/** @enumType */
|
|
584
|
+
export type JurisdictionTypeWithLiterals = JurisdictionType | 'UNDEFINED' | 'COUNTRY' | 'STATE' | 'COUNTY' | 'CITY' | 'SPECIAL';
|
|
575
585
|
export interface DigitalFile {
|
|
576
586
|
/**
|
|
577
587
|
* ID of the secure file in media.
|
|
@@ -660,7 +670,7 @@ export interface SubscriptionDescription {
|
|
|
660
670
|
}
|
|
661
671
|
export interface SubscriptionSettings {
|
|
662
672
|
/** Frequency of recurring payment. */
|
|
663
|
-
frequency?:
|
|
673
|
+
frequency?: V2SubscriptionFrequencyWithLiterals;
|
|
664
674
|
/**
|
|
665
675
|
* Interval of recurring payment.
|
|
666
676
|
* @min 1
|
|
@@ -687,9 +697,11 @@ export declare enum V2SubscriptionFrequency {
|
|
|
687
697
|
MONTH = "MONTH",
|
|
688
698
|
YEAR = "YEAR"
|
|
689
699
|
}
|
|
700
|
+
/** @enumType */
|
|
701
|
+
export type V2SubscriptionFrequencyWithLiterals = V2SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
|
|
690
702
|
export interface FreeTrialPeriod {
|
|
691
703
|
/** Frequency of period. Values: DAY, WEEK, MONTH, YEAR */
|
|
692
|
-
frequency?:
|
|
704
|
+
frequency?: V2SubscriptionFrequencyWithLiterals;
|
|
693
705
|
/**
|
|
694
706
|
* interval of period
|
|
695
707
|
* @min 1
|
|
@@ -699,7 +711,7 @@ export interface FreeTrialPeriod {
|
|
|
699
711
|
}
|
|
700
712
|
export interface BillingAdjustment {
|
|
701
713
|
/** The type of adjustment. */
|
|
702
|
-
type?:
|
|
714
|
+
type?: AdjustmentTypeWithLiterals;
|
|
703
715
|
/** Summary of the prorated adjustment amount. */
|
|
704
716
|
priceSummary?: BillingAdjustmentPriceSummary;
|
|
705
717
|
}
|
|
@@ -710,6 +722,8 @@ export declare enum AdjustmentType {
|
|
|
710
722
|
/** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
|
|
711
723
|
CREDIT = "CREDIT"
|
|
712
724
|
}
|
|
725
|
+
/** @enumType */
|
|
726
|
+
export type AdjustmentTypeWithLiterals = AdjustmentType | 'UNKNOWN_ADJUSTMENT_TYPE' | 'EXTRA_CHARGE' | 'CREDIT';
|
|
713
727
|
export interface BillingAdjustmentPriceSummary {
|
|
714
728
|
/** Subtotal of adjustment, before tax. */
|
|
715
729
|
subtotal?: Price;
|
|
@@ -762,12 +776,12 @@ export interface LocationAndQuantity {
|
|
|
762
776
|
}
|
|
763
777
|
export interface TaxableAddress extends TaxableAddressTaxableAddressDataOneOf {
|
|
764
778
|
/** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
|
|
765
|
-
addressType?:
|
|
779
|
+
addressType?: TaxableAddressTypeWithLiterals;
|
|
766
780
|
}
|
|
767
781
|
/** @oneof */
|
|
768
782
|
export interface TaxableAddressTaxableAddressDataOneOf {
|
|
769
783
|
/** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
|
|
770
|
-
addressType?:
|
|
784
|
+
addressType?: TaxableAddressTypeWithLiterals;
|
|
771
785
|
}
|
|
772
786
|
export declare enum TaxableAddressType {
|
|
773
787
|
UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
|
|
@@ -775,6 +789,8 @@ export declare enum TaxableAddressType {
|
|
|
775
789
|
BILLING = "BILLING",
|
|
776
790
|
SHIPPING = "SHIPPING"
|
|
777
791
|
}
|
|
792
|
+
/** @enumType */
|
|
793
|
+
export type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
|
|
778
794
|
export interface ExtendedFields {
|
|
779
795
|
/**
|
|
780
796
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -887,16 +903,20 @@ export declare enum WeightUnit {
|
|
|
887
903
|
/** Pounds. */
|
|
888
904
|
LB = "LB"
|
|
889
905
|
}
|
|
906
|
+
/** @enumType */
|
|
907
|
+
export type WeightUnitWithLiterals = WeightUnit | 'UNSPECIFIED_WEIGHT_UNIT' | 'KG' | 'LB';
|
|
890
908
|
export interface CurrencyConversionDetails {
|
|
891
909
|
/**
|
|
892
|
-
*
|
|
910
|
+
* Currency used for the pricing of this order, in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format.
|
|
911
|
+
*
|
|
912
|
+
* This currency is used to calculate the pricing before conversion to the buyer's payment currency.
|
|
893
913
|
* @readonly
|
|
894
914
|
* @immutable
|
|
895
915
|
* @format CURRENCY
|
|
896
916
|
*/
|
|
897
917
|
originalCurrency?: string | null;
|
|
898
918
|
/**
|
|
899
|
-
* The rate used
|
|
919
|
+
* The rate used for converting the original currency to the currency used for payment.
|
|
900
920
|
* @readonly
|
|
901
921
|
* @immutable
|
|
902
922
|
* @decimalValue options { gt:0, lte:1000000000000000 }
|
|
@@ -1016,7 +1036,7 @@ export interface VatId {
|
|
|
1016
1036
|
* + `CPF`: for individual tax payers
|
|
1017
1037
|
* + `CNPJ`: for corporations
|
|
1018
1038
|
*/
|
|
1019
|
-
type?:
|
|
1039
|
+
type?: VatTypeWithLiterals;
|
|
1020
1040
|
}
|
|
1021
1041
|
/** tax info types */
|
|
1022
1042
|
export declare enum VatType {
|
|
@@ -1026,6 +1046,8 @@ export declare enum VatType {
|
|
|
1026
1046
|
/** CNPJ - for corporations */
|
|
1027
1047
|
CNPJ = "CNPJ"
|
|
1028
1048
|
}
|
|
1049
|
+
/** @enumType */
|
|
1050
|
+
export type VatTypeWithLiterals = VatType | 'UNSPECIFIED' | 'CPF' | 'CNPJ';
|
|
1029
1051
|
export interface ShippingInformation {
|
|
1030
1052
|
/**
|
|
1031
1053
|
* App Def Id of external provider which was a source of shipping info
|
|
@@ -1086,7 +1108,7 @@ export interface PickupDetails {
|
|
|
1086
1108
|
/** Pickup address. */
|
|
1087
1109
|
address?: PickupAddress;
|
|
1088
1110
|
/** Pickup method */
|
|
1089
|
-
pickupMethod?:
|
|
1111
|
+
pickupMethod?: PickupMethodWithLiterals;
|
|
1090
1112
|
}
|
|
1091
1113
|
/** Physical address */
|
|
1092
1114
|
export interface PickupAddress {
|
|
@@ -1138,6 +1160,8 @@ export declare enum PickupMethod {
|
|
|
1138
1160
|
STORE_PICKUP = "STORE_PICKUP",
|
|
1139
1161
|
PICKUP_POINT = "PICKUP_POINT"
|
|
1140
1162
|
}
|
|
1163
|
+
/** @enumType */
|
|
1164
|
+
export type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
1141
1165
|
export interface DeliveryTimeSlot {
|
|
1142
1166
|
/** Delivery slot starting time. */
|
|
1143
1167
|
from?: Date | null;
|
|
@@ -1209,7 +1233,7 @@ export interface OrderTaxBreakdown {
|
|
|
1209
1233
|
*/
|
|
1210
1234
|
jurisdiction?: string;
|
|
1211
1235
|
/** The type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
|
|
1212
|
-
jurisdictionType?:
|
|
1236
|
+
jurisdictionType?: JurisdictionTypeWithLiterals;
|
|
1213
1237
|
/**
|
|
1214
1238
|
* The rate at which this tax detail was calculated.
|
|
1215
1239
|
* @format DECIMAL_VALUE
|
|
@@ -1232,7 +1256,7 @@ export interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
1232
1256
|
* * `"SPECIFIC-ITEMS"` - discount applies to specific items.
|
|
1233
1257
|
* * `"SHIPPING"` - discount applies to shipping. For example, free shipping.
|
|
1234
1258
|
*/
|
|
1235
|
-
discountType?:
|
|
1259
|
+
discountType?: DiscountTypeWithLiterals;
|
|
1236
1260
|
/**
|
|
1237
1261
|
* IDs of line items discount applies to.
|
|
1238
1262
|
* Deprecated. Use `line_item_discounts` instead.
|
|
@@ -1265,6 +1289,8 @@ export declare enum DiscountType {
|
|
|
1265
1289
|
SPECIFIC_ITEMS = "SPECIFIC_ITEMS",
|
|
1266
1290
|
SHIPPING = "SHIPPING"
|
|
1267
1291
|
}
|
|
1292
|
+
/** @enumType */
|
|
1293
|
+
export type DiscountTypeWithLiterals = DiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
|
|
1268
1294
|
/** Coupon */
|
|
1269
1295
|
export interface Coupon {
|
|
1270
1296
|
/** Coupon ID. */
|
|
@@ -1281,7 +1307,7 @@ export interface MerchantDiscount extends MerchantDiscountMerchantDiscountReason
|
|
|
1281
1307
|
* Pre-defined discount reason (optional).
|
|
1282
1308
|
* * `"ITEMS_EXCHANGE"` - exchange balance acquired as a result of items exchange.
|
|
1283
1309
|
*/
|
|
1284
|
-
discountReason?:
|
|
1310
|
+
discountReason?: DiscountReasonWithLiterals;
|
|
1285
1311
|
/**
|
|
1286
1312
|
* Discount description as free text (optional).
|
|
1287
1313
|
* @maxLength 200
|
|
@@ -1296,7 +1322,7 @@ export interface MerchantDiscountMerchantDiscountReasonOneOf {
|
|
|
1296
1322
|
* Pre-defined discount reason (optional).
|
|
1297
1323
|
* * `"ITEMS_EXCHANGE"` - exchange balance acquired as a result of items exchange.
|
|
1298
1324
|
*/
|
|
1299
|
-
discountReason?:
|
|
1325
|
+
discountReason?: DiscountReasonWithLiterals;
|
|
1300
1326
|
/**
|
|
1301
1327
|
* Discount description as free text (optional).
|
|
1302
1328
|
* @maxLength 200
|
|
@@ -1308,6 +1334,8 @@ export declare enum DiscountReason {
|
|
|
1308
1334
|
EXCHANGED_ITEMS = "EXCHANGED_ITEMS",
|
|
1309
1335
|
BILLING_ADJUSTMENT = "BILLING_ADJUSTMENT"
|
|
1310
1336
|
}
|
|
1337
|
+
/** @enumType */
|
|
1338
|
+
export type DiscountReasonWithLiterals = DiscountReason | 'UNSPECIFIED' | 'EXCHANGED_ITEMS' | 'BILLING_ADJUSTMENT';
|
|
1311
1339
|
export interface DiscountRule {
|
|
1312
1340
|
/**
|
|
1313
1341
|
* Discount rule ID
|
|
@@ -1344,7 +1372,7 @@ export interface LineItemDiscount {
|
|
|
1344
1372
|
}
|
|
1345
1373
|
export interface ChannelInfo {
|
|
1346
1374
|
/** Sales channel that submitted the order. */
|
|
1347
|
-
type?:
|
|
1375
|
+
type?: ChannelTypeWithLiterals;
|
|
1348
1376
|
/**
|
|
1349
1377
|
* Reference to an order ID from an external system.
|
|
1350
1378
|
* @maxLength 100
|
|
@@ -1390,6 +1418,8 @@ export declare enum ChannelType {
|
|
|
1390
1418
|
/** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
|
|
1391
1419
|
FAIRE_COM = "FAIRE_COM"
|
|
1392
1420
|
}
|
|
1421
|
+
/** @enumType */
|
|
1422
|
+
export type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM';
|
|
1393
1423
|
export interface CustomField {
|
|
1394
1424
|
/** Custom field value. */
|
|
1395
1425
|
value?: any;
|
|
@@ -1540,12 +1570,14 @@ export interface Sorting {
|
|
|
1540
1570
|
*/
|
|
1541
1571
|
fieldName?: string;
|
|
1542
1572
|
/** Sort order. */
|
|
1543
|
-
order?:
|
|
1573
|
+
order?: SortOrderWithLiterals;
|
|
1544
1574
|
}
|
|
1545
1575
|
export declare enum SortOrder {
|
|
1546
1576
|
ASC = "ASC",
|
|
1547
1577
|
DESC = "DESC"
|
|
1548
1578
|
}
|
|
1579
|
+
/** @enumType */
|
|
1580
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
1549
1581
|
export interface CursorPaging {
|
|
1550
1582
|
/**
|
|
1551
1583
|
* Maximum number of items to return in the results.
|
|
@@ -1696,7 +1728,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1696
1728
|
*/
|
|
1697
1729
|
appId?: string;
|
|
1698
1730
|
/** @readonly */
|
|
1699
|
-
identityType?:
|
|
1731
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1700
1732
|
}
|
|
1701
1733
|
/** @oneof */
|
|
1702
1734
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1728,3 +1760,5 @@ export declare enum WebhookIdentityType {
|
|
|
1728
1760
|
WIX_USER = "WIX_USER",
|
|
1729
1761
|
APP = "APP"
|
|
1730
1762
|
}
|
|
1763
|
+
/** @enumType */
|
|
1764
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.js","sourceRoot":"","sources":["../../../src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.ts"],"names":[],"mappings":";;;AA0JA,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC/B,gDAAuB,CAAA;IACvB,oCAAW,CAAA;IACX,sCAAa,CAAA;IACb,wCAAe,CAAA;IACf,sCAAa,CAAA;AACf,CAAC,EANW,qBAAqB,qCAArB,qBAAqB,QAMhC;
|
|
1
|
+
{"version":3,"file":"ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.js","sourceRoot":"","sources":["../../../src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.types.ts"],"names":[],"mappings":";;;AA0JA,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC/B,gDAAuB,CAAA;IACvB,oCAAW,CAAA;IACX,sCAAa,CAAA;IACb,wCAAe,CAAA;IACf,sCAAa,CAAA;AACf,CAAC,EANW,qBAAqB,qCAArB,qBAAqB,QAMhC;AAkRD,IAAY,mBAOX;AAPD,WAAY,mBAAmB;IAC7B,yBAAyB;IACzB,oDAA6B,CAAA;IAC7B,uBAAuB;IACvB,gDAAyB,CAAA;IACzB,kBAAkB;IAClB,sCAAe,CAAA;AACjB,CAAC,EAPW,mBAAmB,mCAAnB,mBAAmB,QAO9B;AAuED,IAAY,gBAMX;AAND,WAAY,gBAAgB;IAC1B,iDAA6B,CAAA;IAC7B,yCAAqB,CAAA;IACrB,uCAAmB,CAAA;IACnB,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;AACrB,CAAC,EANW,gBAAgB,gCAAhB,gBAAgB,QAM3B;AAWD,uDAAuD;AACvD,IAAY,iBAWX;AAXD,WAAY,iBAAiB;IAC3B,wEAAwE;IACxE,gEAA2C,CAAA;IAC3C,sIAAsI;IACtI,kEAA6C,CAAA;IAC7C,6FAA6F;IAC7F,8CAAyB,CAAA;IACzB,4IAA4I;IAC5I,sDAAiC,CAAA;IACjC,uKAAuK;IACvK,8DAAyC,CAAA;AAC3C,CAAC,EAXW,iBAAiB,iCAAjB,iBAAiB,QAW5B;AAqFD,0IAA0I;AAC1I,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,qCAAiB,CAAA;IACjB,iCAAa,CAAA;IACb,uCAAmB,CAAA;AACrB,CAAC,EAPW,gBAAgB,gCAAhB,gBAAgB,QAO3B;AA4HD,0CAA0C;AAC1C,IAAY,uBAMX;AAND,WAAY,uBAAuB;IACjC,kDAAuB,CAAA;IACvB,sCAAW,CAAA;IACX,wCAAa,CAAA;IACb,0CAAe,CAAA;IACf,wCAAa,CAAA;AACf,CAAC,EANW,uBAAuB,uCAAvB,uBAAuB,QAMlC;AA6BD,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,qEAAmD,CAAA;IACnD,qIAAqI;IACrI,+CAA6B,CAAA;IAC7B,sIAAsI;IACtI,mCAAiB,CAAA;AACnB,CAAC,EANW,cAAc,8BAAd,cAAc,QAMzB;AAyED,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,yEAAmD,CAAA;IACnD,2CAAqB,CAAA;IACrB,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;AACvB,CAAC,EALW,kBAAkB,kCAAlB,kBAAkB,QAK7B;AAwHD,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,uDAAuD;IACvD,iEAAmD,CAAA;IACnD,iBAAiB;IACjB,uBAAS,CAAA;IACT,cAAc;IACd,uBAAS,CAAA;AACX,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB;AAsJD,qBAAqB;AACrB,IAAY,OAMX;AAND,WAAY,OAAO;IACjB,sCAA2B,CAAA;IAC3B,uCAAuC;IACvC,sBAAW,CAAA;IACX,8BAA8B;IAC9B,wBAAa,CAAA;AACf,CAAC,EANW,OAAO,uBAAP,OAAO,QAMlB;AAqHD,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,iDAAiC,CAAA;IACjC,6CAA6B,CAAA;IAC7B,6CAA6B,CAAA;AAC/B,CAAC,EAJW,YAAY,4BAAZ,YAAY,QAIvB;AA0ID,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,iCAAiB,CAAA;IACjB,iDAAiC,CAAA;IACjC,qCAAqB,CAAA;AACvB,CAAC,EAJW,YAAY,4BAAZ,YAAY,QAIvB;AAmDD,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,6CAA2B,CAAA;IAC3B,qDAAmC,CAAA;IACnC,2DAAyC,CAAA;AAC3C,CAAC,EAJW,cAAc,8BAAd,cAAc,QAIzB;AA6DD,IAAY,WAiCX;AAjCD,WAAY,WAAW;IACrB,8DAA8D;IAC9D,0CAA2B,CAAA;IAC3B,oBAAoB;IACpB,0BAAW,CAAA;IACX,oFAAoF;IACpF,0BAAW,CAAA;IACX,yGAAyG;IACzG,4BAAa,CAAA;IACb,6GAA6G;IAC7G,gCAAiB,CAAA;IACjB,4BAA4B;IAC5B,gDAAiC,CAAA;IACjC,kFAAkF;IAClF,8CAA+B,CAAA;IAC/B,mRAAmR;IACnR,4CAA6B,CAAA;IAC7B,+BAA+B;IAC/B,0DAA2C,CAAA;IAC3C,0BAA0B;IAC1B,4BAAa,CAAA;IACb,oIAAoI;IACpI,wCAAyB,CAAA;IACzB,8BAA8B;IAC9B,oCAAqB,CAAA;IACrB,gGAAgG;IAChG,oCAAqB,CAAA;IACrB,kHAAkH;IAClH,4BAAa,CAAA;IACb,sHAAsH;IACtH,gCAAiB,CAAA;IACjB,6IAA6I;IAC7I,sCAAuB,CAAA;AACzB,CAAC,EAjCW,WAAW,2BAAX,WAAW,QAiCtB;AA4LD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAkMD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|