@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
|
@@ -58,7 +58,7 @@ export interface SubscriptionContract {
|
|
|
58
58
|
*/
|
|
59
59
|
buyerLanguage?: string | null;
|
|
60
60
|
/** Weight measurement unit - defaults to site's weight unit. */
|
|
61
|
-
weightUnit?:
|
|
61
|
+
weightUnit?: WeightUnitWithLiterals;
|
|
62
62
|
/**
|
|
63
63
|
* 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.
|
|
64
64
|
* @format CURRENCY
|
|
@@ -131,7 +131,7 @@ export interface V1SubscriptionDescription {
|
|
|
131
131
|
}
|
|
132
132
|
export interface V1SubscriptionSettings {
|
|
133
133
|
/** Frequency of recurring payment. */
|
|
134
|
-
frequency?:
|
|
134
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
135
135
|
/**
|
|
136
136
|
* Interval of recurring payment.
|
|
137
137
|
* @min 1
|
|
@@ -157,9 +157,11 @@ export declare enum SubscriptionFrequency {
|
|
|
157
157
|
MONTH = "MONTH",
|
|
158
158
|
YEAR = "YEAR"
|
|
159
159
|
}
|
|
160
|
+
/** @enumType */
|
|
161
|
+
export type SubscriptionFrequencyWithLiterals = SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
|
|
160
162
|
export interface V1FreeTrialPeriod {
|
|
161
163
|
/** Frequency of period. Values: DAY, WEEK, MONTH, YEAR */
|
|
162
|
-
frequency?:
|
|
164
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
163
165
|
/**
|
|
164
166
|
* interval of period
|
|
165
167
|
* @min 1
|
|
@@ -245,7 +247,7 @@ export interface OrderLineItem {
|
|
|
245
247
|
*
|
|
246
248
|
* Default: `FULL_PAYMENT_ONLINE`
|
|
247
249
|
*/
|
|
248
|
-
paymentOption?:
|
|
250
|
+
paymentOption?: PaymentOptionTypeWithLiterals;
|
|
249
251
|
/**
|
|
250
252
|
* Deprecated. Use `taxInfo` instead.
|
|
251
253
|
* This field will be removed on September 30, 2024.
|
|
@@ -416,6 +418,8 @@ export declare enum DescriptionLineType {
|
|
|
416
418
|
/** Color type. */
|
|
417
419
|
COLOR = "COLOR"
|
|
418
420
|
}
|
|
421
|
+
/** @enumType */
|
|
422
|
+
export type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
|
|
419
423
|
export interface FocalPoint {
|
|
420
424
|
/** X-coordinate of the focal point. */
|
|
421
425
|
x?: number;
|
|
@@ -439,14 +443,14 @@ export interface PhysicalProperties {
|
|
|
439
443
|
}
|
|
440
444
|
export interface ItemType extends ItemTypeItemTypeDataOneOf {
|
|
441
445
|
/** Preset item type. */
|
|
442
|
-
preset?:
|
|
446
|
+
preset?: ItemTypeItemTypeWithLiterals;
|
|
443
447
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
444
448
|
custom?: string;
|
|
445
449
|
}
|
|
446
450
|
/** @oneof */
|
|
447
451
|
export interface ItemTypeItemTypeDataOneOf {
|
|
448
452
|
/** Preset item type. */
|
|
449
|
-
preset?:
|
|
453
|
+
preset?: ItemTypeItemTypeWithLiterals;
|
|
450
454
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
451
455
|
custom?: string;
|
|
452
456
|
}
|
|
@@ -457,6 +461,8 @@ export declare enum ItemTypeItemType {
|
|
|
457
461
|
GIFT_CARD = "GIFT_CARD",
|
|
458
462
|
SERVICE = "SERVICE"
|
|
459
463
|
}
|
|
464
|
+
/** @enumType */
|
|
465
|
+
export type ItemTypeItemTypeWithLiterals = ItemTypeItemType | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
460
466
|
/** Type of selected payment option for catalog item */
|
|
461
467
|
export declare enum PaymentOptionType {
|
|
462
468
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -470,6 +476,8 @@ export declare enum PaymentOptionType {
|
|
|
470
476
|
/** 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`. */
|
|
471
477
|
MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
|
|
472
478
|
}
|
|
479
|
+
/** @enumType */
|
|
480
|
+
export type PaymentOptionTypeWithLiterals = PaymentOptionType | 'FULL_PAYMENT_ONLINE' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP' | 'DEPOSIT_ONLINE' | 'MEMBERSHIP_OFFLINE';
|
|
473
481
|
export interface ItemTaxFullDetails {
|
|
474
482
|
/** Taxable amount of this line item. */
|
|
475
483
|
taxableAmount?: Price;
|
|
@@ -535,7 +543,7 @@ export interface LineItemTaxBreakdown {
|
|
|
535
543
|
*/
|
|
536
544
|
taxName?: string | null;
|
|
537
545
|
/** Type of jurisdiction that taxes were calculated for. */
|
|
538
|
-
jurisdictionType?:
|
|
546
|
+
jurisdictionType?: JurisdictionTypeWithLiterals;
|
|
539
547
|
/** Non-taxable amount of the line item price. */
|
|
540
548
|
nonTaxableAmount?: Price;
|
|
541
549
|
/** Taxable amount of the line item price. */
|
|
@@ -550,6 +558,8 @@ export declare enum JurisdictionType {
|
|
|
550
558
|
CITY = "CITY",
|
|
551
559
|
SPECIAL = "SPECIAL"
|
|
552
560
|
}
|
|
561
|
+
/** @enumType */
|
|
562
|
+
export type JurisdictionTypeWithLiterals = JurisdictionType | 'UNDEFINED' | 'COUNTRY' | 'STATE' | 'COUNTY' | 'CITY' | 'SPECIAL';
|
|
553
563
|
export interface DigitalFile {
|
|
554
564
|
/**
|
|
555
565
|
* ID of the secure file in media.
|
|
@@ -638,7 +648,7 @@ export interface SubscriptionDescription {
|
|
|
638
648
|
}
|
|
639
649
|
export interface SubscriptionSettings {
|
|
640
650
|
/** Frequency of recurring payment. */
|
|
641
|
-
frequency?:
|
|
651
|
+
frequency?: V2SubscriptionFrequencyWithLiterals;
|
|
642
652
|
/**
|
|
643
653
|
* Interval of recurring payment.
|
|
644
654
|
* @min 1
|
|
@@ -665,9 +675,11 @@ export declare enum V2SubscriptionFrequency {
|
|
|
665
675
|
MONTH = "MONTH",
|
|
666
676
|
YEAR = "YEAR"
|
|
667
677
|
}
|
|
678
|
+
/** @enumType */
|
|
679
|
+
export type V2SubscriptionFrequencyWithLiterals = V2SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
|
|
668
680
|
export interface FreeTrialPeriod {
|
|
669
681
|
/** Frequency of period. Values: DAY, WEEK, MONTH, YEAR */
|
|
670
|
-
frequency?:
|
|
682
|
+
frequency?: V2SubscriptionFrequencyWithLiterals;
|
|
671
683
|
/**
|
|
672
684
|
* interval of period
|
|
673
685
|
* @min 1
|
|
@@ -677,7 +689,7 @@ export interface FreeTrialPeriod {
|
|
|
677
689
|
}
|
|
678
690
|
export interface BillingAdjustment {
|
|
679
691
|
/** The type of adjustment. */
|
|
680
|
-
type?:
|
|
692
|
+
type?: AdjustmentTypeWithLiterals;
|
|
681
693
|
/** Summary of the prorated adjustment amount. */
|
|
682
694
|
priceSummary?: BillingAdjustmentPriceSummary;
|
|
683
695
|
}
|
|
@@ -688,6 +700,8 @@ export declare enum AdjustmentType {
|
|
|
688
700
|
/** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
|
|
689
701
|
CREDIT = "CREDIT"
|
|
690
702
|
}
|
|
703
|
+
/** @enumType */
|
|
704
|
+
export type AdjustmentTypeWithLiterals = AdjustmentType | 'UNKNOWN_ADJUSTMENT_TYPE' | 'EXTRA_CHARGE' | 'CREDIT';
|
|
691
705
|
export interface BillingAdjustmentPriceSummary {
|
|
692
706
|
/** Subtotal of adjustment, before tax. */
|
|
693
707
|
subtotal?: Price;
|
|
@@ -740,12 +754,12 @@ export interface LocationAndQuantity {
|
|
|
740
754
|
}
|
|
741
755
|
export interface TaxableAddress extends TaxableAddressTaxableAddressDataOneOf {
|
|
742
756
|
/** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
|
|
743
|
-
addressType?:
|
|
757
|
+
addressType?: TaxableAddressTypeWithLiterals;
|
|
744
758
|
}
|
|
745
759
|
/** @oneof */
|
|
746
760
|
export interface TaxableAddressTaxableAddressDataOneOf {
|
|
747
761
|
/** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
|
|
748
|
-
addressType?:
|
|
762
|
+
addressType?: TaxableAddressTypeWithLiterals;
|
|
749
763
|
}
|
|
750
764
|
export declare enum TaxableAddressType {
|
|
751
765
|
UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
|
|
@@ -753,6 +767,8 @@ export declare enum TaxableAddressType {
|
|
|
753
767
|
BILLING = "BILLING",
|
|
754
768
|
SHIPPING = "SHIPPING"
|
|
755
769
|
}
|
|
770
|
+
/** @enumType */
|
|
771
|
+
export type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
|
|
756
772
|
export interface ExtendedFields {
|
|
757
773
|
/**
|
|
758
774
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -865,16 +881,20 @@ export declare enum WeightUnit {
|
|
|
865
881
|
/** Pounds. */
|
|
866
882
|
LB = "LB"
|
|
867
883
|
}
|
|
884
|
+
/** @enumType */
|
|
885
|
+
export type WeightUnitWithLiterals = WeightUnit | 'UNSPECIFIED_WEIGHT_UNIT' | 'KG' | 'LB';
|
|
868
886
|
export interface CurrencyConversionDetails {
|
|
869
887
|
/**
|
|
870
|
-
*
|
|
888
|
+
* 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.
|
|
889
|
+
*
|
|
890
|
+
* This currency is used to calculate the pricing before conversion to the buyer's payment currency.
|
|
871
891
|
* @readonly
|
|
872
892
|
* @immutable
|
|
873
893
|
* @format CURRENCY
|
|
874
894
|
*/
|
|
875
895
|
originalCurrency?: string | null;
|
|
876
896
|
/**
|
|
877
|
-
* The rate used
|
|
897
|
+
* The rate used for converting the original currency to the currency used for payment.
|
|
878
898
|
* @readonly
|
|
879
899
|
* @immutable
|
|
880
900
|
* @decimalValue options { gt:0, lte:1000000000000000 }
|
|
@@ -994,7 +1014,7 @@ export interface VatId {
|
|
|
994
1014
|
* + `CPF`: for individual tax payers
|
|
995
1015
|
* + `CNPJ`: for corporations
|
|
996
1016
|
*/
|
|
997
|
-
type?:
|
|
1017
|
+
type?: VatTypeWithLiterals;
|
|
998
1018
|
}
|
|
999
1019
|
/** tax info types */
|
|
1000
1020
|
export declare enum VatType {
|
|
@@ -1004,6 +1024,8 @@ export declare enum VatType {
|
|
|
1004
1024
|
/** CNPJ - for corporations */
|
|
1005
1025
|
CNPJ = "CNPJ"
|
|
1006
1026
|
}
|
|
1027
|
+
/** @enumType */
|
|
1028
|
+
export type VatTypeWithLiterals = VatType | 'UNSPECIFIED' | 'CPF' | 'CNPJ';
|
|
1007
1029
|
export interface ShippingInformation {
|
|
1008
1030
|
/**
|
|
1009
1031
|
* App Def Id of external provider which was a source of shipping info
|
|
@@ -1064,7 +1086,7 @@ export interface PickupDetails {
|
|
|
1064
1086
|
/** Pickup address. */
|
|
1065
1087
|
address?: PickupAddress;
|
|
1066
1088
|
/** Pickup method */
|
|
1067
|
-
pickupMethod?:
|
|
1089
|
+
pickupMethod?: PickupMethodWithLiterals;
|
|
1068
1090
|
}
|
|
1069
1091
|
/** Physical address */
|
|
1070
1092
|
export interface PickupAddress {
|
|
@@ -1116,6 +1138,8 @@ export declare enum PickupMethod {
|
|
|
1116
1138
|
STORE_PICKUP = "STORE_PICKUP",
|
|
1117
1139
|
PICKUP_POINT = "PICKUP_POINT"
|
|
1118
1140
|
}
|
|
1141
|
+
/** @enumType */
|
|
1142
|
+
export type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
1119
1143
|
export interface DeliveryTimeSlot {
|
|
1120
1144
|
/** Delivery slot starting time. */
|
|
1121
1145
|
from?: Date | null;
|
|
@@ -1187,7 +1211,7 @@ export interface OrderTaxBreakdown {
|
|
|
1187
1211
|
*/
|
|
1188
1212
|
jurisdiction?: string;
|
|
1189
1213
|
/** The type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
|
|
1190
|
-
jurisdictionType?:
|
|
1214
|
+
jurisdictionType?: JurisdictionTypeWithLiterals;
|
|
1191
1215
|
/**
|
|
1192
1216
|
* The rate at which this tax detail was calculated.
|
|
1193
1217
|
* @format DECIMAL_VALUE
|
|
@@ -1210,7 +1234,7 @@ export interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
1210
1234
|
* * `"SPECIFIC-ITEMS"` - discount applies to specific items.
|
|
1211
1235
|
* * `"SHIPPING"` - discount applies to shipping. For example, free shipping.
|
|
1212
1236
|
*/
|
|
1213
|
-
discountType?:
|
|
1237
|
+
discountType?: DiscountTypeWithLiterals;
|
|
1214
1238
|
/**
|
|
1215
1239
|
* IDs of line items discount applies to.
|
|
1216
1240
|
* Deprecated. Use `line_item_discounts` instead.
|
|
@@ -1243,6 +1267,8 @@ export declare enum DiscountType {
|
|
|
1243
1267
|
SPECIFIC_ITEMS = "SPECIFIC_ITEMS",
|
|
1244
1268
|
SHIPPING = "SHIPPING"
|
|
1245
1269
|
}
|
|
1270
|
+
/** @enumType */
|
|
1271
|
+
export type DiscountTypeWithLiterals = DiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
|
|
1246
1272
|
/** Coupon */
|
|
1247
1273
|
export interface Coupon {
|
|
1248
1274
|
/** Coupon ID. */
|
|
@@ -1259,7 +1285,7 @@ export interface MerchantDiscount extends MerchantDiscountMerchantDiscountReason
|
|
|
1259
1285
|
* Pre-defined discount reason (optional).
|
|
1260
1286
|
* * `"ITEMS_EXCHANGE"` - exchange balance acquired as a result of items exchange.
|
|
1261
1287
|
*/
|
|
1262
|
-
discountReason?:
|
|
1288
|
+
discountReason?: DiscountReasonWithLiterals;
|
|
1263
1289
|
/**
|
|
1264
1290
|
* Discount description as free text (optional).
|
|
1265
1291
|
* @maxLength 200
|
|
@@ -1274,7 +1300,7 @@ export interface MerchantDiscountMerchantDiscountReasonOneOf {
|
|
|
1274
1300
|
* Pre-defined discount reason (optional).
|
|
1275
1301
|
* * `"ITEMS_EXCHANGE"` - exchange balance acquired as a result of items exchange.
|
|
1276
1302
|
*/
|
|
1277
|
-
discountReason?:
|
|
1303
|
+
discountReason?: DiscountReasonWithLiterals;
|
|
1278
1304
|
/**
|
|
1279
1305
|
* Discount description as free text (optional).
|
|
1280
1306
|
* @maxLength 200
|
|
@@ -1286,6 +1312,8 @@ export declare enum DiscountReason {
|
|
|
1286
1312
|
EXCHANGED_ITEMS = "EXCHANGED_ITEMS",
|
|
1287
1313
|
BILLING_ADJUSTMENT = "BILLING_ADJUSTMENT"
|
|
1288
1314
|
}
|
|
1315
|
+
/** @enumType */
|
|
1316
|
+
export type DiscountReasonWithLiterals = DiscountReason | 'UNSPECIFIED' | 'EXCHANGED_ITEMS' | 'BILLING_ADJUSTMENT';
|
|
1289
1317
|
export interface DiscountRule {
|
|
1290
1318
|
/**
|
|
1291
1319
|
* Discount rule ID
|
|
@@ -1322,7 +1350,7 @@ export interface LineItemDiscount {
|
|
|
1322
1350
|
}
|
|
1323
1351
|
export interface ChannelInfo {
|
|
1324
1352
|
/** Sales channel that submitted the order. */
|
|
1325
|
-
type?:
|
|
1353
|
+
type?: ChannelTypeWithLiterals;
|
|
1326
1354
|
/**
|
|
1327
1355
|
* Reference to an order ID from an external system.
|
|
1328
1356
|
* @maxLength 100
|
|
@@ -1368,6 +1396,8 @@ export declare enum ChannelType {
|
|
|
1368
1396
|
/** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
|
|
1369
1397
|
FAIRE_COM = "FAIRE_COM"
|
|
1370
1398
|
}
|
|
1399
|
+
/** @enumType */
|
|
1400
|
+
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';
|
|
1371
1401
|
export interface CustomField {
|
|
1372
1402
|
/** Custom field value. */
|
|
1373
1403
|
value?: any;
|
|
@@ -1518,12 +1548,14 @@ export interface Sorting {
|
|
|
1518
1548
|
*/
|
|
1519
1549
|
fieldName?: string;
|
|
1520
1550
|
/** Sort order. */
|
|
1521
|
-
order?:
|
|
1551
|
+
order?: SortOrderWithLiterals;
|
|
1522
1552
|
}
|
|
1523
1553
|
export declare enum SortOrder {
|
|
1524
1554
|
ASC = "ASC",
|
|
1525
1555
|
DESC = "DESC"
|
|
1526
1556
|
}
|
|
1557
|
+
/** @enumType */
|
|
1558
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
1527
1559
|
export interface CursorPaging {
|
|
1528
1560
|
/**
|
|
1529
1561
|
* Maximum number of items to return in the results.
|
|
@@ -1672,7 +1704,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1672
1704
|
*/
|
|
1673
1705
|
appId?: string;
|
|
1674
1706
|
/** @readonly */
|
|
1675
|
-
identityType?:
|
|
1707
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1676
1708
|
}
|
|
1677
1709
|
/** @oneof */
|
|
1678
1710
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1704,6 +1736,8 @@ export declare enum WebhookIdentityType {
|
|
|
1704
1736
|
WIX_USER = "WIX_USER",
|
|
1705
1737
|
APP = "APP"
|
|
1706
1738
|
}
|
|
1739
|
+
/** @enumType */
|
|
1740
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1707
1741
|
export interface BaseEventMetadata {
|
|
1708
1742
|
/**
|
|
1709
1743
|
* App instance ID.
|
|
@@ -1873,6 +1907,26 @@ export interface SubscriptionContractsQueryBuilder {
|
|
|
1873
1907
|
* @documentationMaturity preview
|
|
1874
1908
|
*/
|
|
1875
1909
|
ne: (propertyName: '_id' | 'buyerInfo.contactId', value: any) => SubscriptionContractsQueryBuilder;
|
|
1910
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
1911
|
+
* @param value - Value to compare against.
|
|
1912
|
+
* @documentationMaturity preview
|
|
1913
|
+
*/
|
|
1914
|
+
ge: (propertyName: '_id' | 'buyerInfo.contactId', value: any) => SubscriptionContractsQueryBuilder;
|
|
1915
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
1916
|
+
* @param value - Value to compare against.
|
|
1917
|
+
* @documentationMaturity preview
|
|
1918
|
+
*/
|
|
1919
|
+
gt: (propertyName: '_id' | 'buyerInfo.contactId', value: any) => SubscriptionContractsQueryBuilder;
|
|
1920
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
1921
|
+
* @param value - Value to compare against.
|
|
1922
|
+
* @documentationMaturity preview
|
|
1923
|
+
*/
|
|
1924
|
+
le: (propertyName: '_id' | 'buyerInfo.contactId', value: any) => SubscriptionContractsQueryBuilder;
|
|
1925
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
1926
|
+
* @param value - Value to compare against.
|
|
1927
|
+
* @documentationMaturity preview
|
|
1928
|
+
*/
|
|
1929
|
+
lt: (propertyName: '_id' | 'buyerInfo.contactId', value: any) => SubscriptionContractsQueryBuilder;
|
|
1876
1930
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
1877
1931
|
* @param string - String to compare against. Case-insensitive.
|
|
1878
1932
|
* @documentationMaturity preview
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.js","sourceRoot":"","sources":["../../../src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,4DAA4D,MAAM,uFAAuF,CAAC;AACtK,aAAa;AACb,OAAO,EAAE,gCAAgC,EAAE,MAAM,0CAA0C,CAAC;AAC5F,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AA2KlF,MAAM,CAAN,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,KAArB,qBAAqB,QAMhC;
|
|
1
|
+
{"version":3,"file":"ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.js","sourceRoot":"","sources":["../../../src/ecom-subscription-contracts-v1-subscription-contract-subscription-contracts.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,4DAA4D,MAAM,uFAAuF,CAAC;AACtK,aAAa;AACb,OAAO,EAAE,gCAAgC,EAAE,MAAM,0CAA0C,CAAC;AAC5F,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;AA2KlF,MAAM,CAAN,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,KAArB,qBAAqB,QAMhC;AA+RD,MAAM,CAAN,IAAY,mBAOX;AAPD,WAAY,mBAAmB;IAC7B,yBAAyB;IACzB,oDAA6B,CAAA;IAC7B,uBAAuB;IACvB,gDAAyB,CAAA;IACzB,kBAAkB;IAClB,sCAAe,CAAA;AACjB,CAAC,EAPW,mBAAmB,KAAnB,mBAAmB,QAO9B;AA+CD,MAAM,CAAN,IAAY,gBAMX;AAND,WAAY,gBAAgB;IAC1B,iDAA6B,CAAA;IAC7B,yCAAqB,CAAA;IACrB,uCAAmB,CAAA;IACnB,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;AACrB,CAAC,EANW,gBAAgB,KAAhB,gBAAgB,QAM3B;AAWD,uDAAuD;AACvD,MAAM,CAAN,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,KAAjB,iBAAiB,QAW5B;AAqFD,0IAA0I;AAC1I,MAAM,CAAN,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,KAAhB,gBAAgB,QAO3B;AAgJD,0CAA0C;AAC1C,MAAM,CAAN,IAAY,uBAMX;AAND,WAAY,uBAAuB;IACjC,kDAAuB,CAAA;IACvB,sCAAW,CAAA;IACX,wCAAa,CAAA;IACb,0CAAe,CAAA;IACf,wCAAa,CAAA;AACf,CAAC,EANW,uBAAuB,KAAvB,uBAAuB,QAMlC;AA6BD,MAAM,CAAN,IAAY,cAMX;AAND,WAAY,cAAc;IACxB,qEAAmD,CAAA;IACnD,qIAAqI;IACrI,+CAA6B,CAAA;IAC7B,sIAAsI;IACtI,mCAAiB,CAAA;AACnB,CAAC,EANW,cAAc,KAAd,cAAc,QAMzB;AAyED,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,yEAAmD,CAAA;IACnD,2CAAqB,CAAA;IACrB,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;AACvB,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;AAwHD,MAAM,CAAN,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,uDAAuD;IACvD,iEAAmD,CAAA;IACnD,iBAAiB;IACjB,uBAAS,CAAA;IACT,cAAc;IACd,uBAAS,CAAA;AACX,CAAC,EAPW,UAAU,KAAV,UAAU,QAOrB;AAsJD,qBAAqB;AACrB,MAAM,CAAN,IAAY,OAMX;AAND,WAAY,OAAO;IACjB,sCAA2B,CAAA;IAC3B,uCAAuC;IACvC,sBAAW,CAAA;IACX,8BAA8B;IAC9B,wBAAa,CAAA;AACf,CAAC,EANW,OAAO,KAAP,OAAO,QAMlB;AAqHD,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,iDAAiC,CAAA;IACjC,6CAA6B,CAAA;IAC7B,6CAA6B,CAAA;AAC/B,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAkJD,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,iCAAiB,CAAA;IACjB,iDAAiC,CAAA;IACjC,qCAAqB,CAAA;AACvB,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AA0DD,MAAM,CAAN,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,6CAA2B,CAAA;IAC3B,qDAAmC,CAAA;IACnC,2DAAyC,CAAA;AAC3C,CAAC,EAJW,cAAc,KAAd,cAAc,QAIzB;AA6DD,MAAM,CAAN,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,KAAX,WAAW,QAiCtB;AAoMD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAgMD,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B;AAsMD;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,CAAC,KAAK,UAAU,uBAAuB,CAC3C,sBAA8B;IAI9B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,sBAAsB,EAAE,sBAAsB;KAC/C,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,4DAA4D,CAAC,uBAAuB,CAClF,OAAO,CACR,CAAC;IAEJ,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAC5C,cAAc,CAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,4BAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,sCAAsC,EAAE,CAAC;aAC1D;YACD;gBACE,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,0CAA0C,EAAE;oBACpD;wBACE,IAAI,EAAE,yEAAyE;qBAChF;oBACD;wBACE,IAAI,EAAE,mEAAmE;qBAC1E;oBACD,EAAE,IAAI,EAAE,4CAA4C,EAAE;iBACvD;aACF;SACF,CAAC,CACH,EAAE,oBAAqB,CAAC;IAC3B,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,sBAAsB,EAAE,MAAM,EAAE;YAC5D,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,wBAAwB,CAAC,CAC3B,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,UAAU,0BAA0B;IACxC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,OAAO,YAAY,CAKjB;QACA,IAAI,EAAE,KAAK,EAAE,OAA0C,EAAE,EAAE;YACzD,MAAM,OAAO,GACX,4DAA4D,CAAC,0BAA0B,CACrF,OAAO,CACR,CAAC;YAEJ,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;YAC5B,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;gBACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;gBACjC,OAAO,MAAM,CAAC;YAChB,CAAC;YAAC,OAAO,GAAG,EAAE,CAAC;gBACb,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;gBAC5B,MAAM,GAAG,CAAC;YACZ,CAAC;QACH,CAAC;QACD,kBAAkB,EAAE,CAAC,KAAiD,EAAE,EAAE;YACxE,MAAM,IAAI,GAAG,CAAC,KAAK,EAAE,EAAE,CAGtB,CAAC;YACF,OAAO,qCAAqC,CAAC;gBAC3C,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;gBACZ,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;aACjB,CAAC,CAAC;QACL,CAAC;QACD,mBAAmB,EAAE,CAAC,EACpB,IAAI,GAC6C,EAAE,EAAE;YACrD,MAAM,eAAe,GAAG,uCAAuC,CAC7D,cAAc,CAAC,IAAI,EAAE;gBACnB;oBACE,WAAW,EAAE,4BAA4B;oBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,uCAAuC,EAAE,CAAC;iBAC3D;gBACD;oBACE,WAAW,EAAE,gCAAgC;oBAC7C,KAAK,EAAE;wBACL,EAAE,IAAI,EAAE,2CAA2C,EAAE;wBACrD;4BACE,IAAI,EAAE,0EAA0E;yBACjF;wBACD;4BACE,IAAI,EAAE,oEAAoE;yBAC3E;wBACD,EAAE,IAAI,EAAE,6CAA6C,EAAE;qBACxD;iBACF;aACF,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,KAAK,EAAE,eAAe,EAAE,qBAAqB;gBAC7C,cAAc,EAAE,eAAe,EAAE,cAAc;aAChD,CAAC;QACJ,CAAC;QACD,gBAAgB,EAAE,CAAC,GAAY,EAAE,EAAE;YACjC,MAAM,gBAAgB,GAAG,iBAAiB,CAAC,GAAG,EAAE;gBAC9C,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;gBAC3C,uBAAuB,EAAE,KAAK;aAC/B,CAAC,CAAC;YAEH,MAAM,gBAAgB,CAAC;QACzB,CAAC;QACD,YAAY,EAAE,QAAQ;QACtB,mBAAmB,EAAE,EAAE;KACxB,CAAC,CAAC;AACL,CAAC"}
|