@wix/subscription 1.0.13 → 1.0.14
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/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +360 -161
- package/type-bundles/index.bundle.d.ts +360 -161
- package/type-bundles/meta.bundle.d.ts +10 -0
|
@@ -737,6 +737,11 @@ interface Item$1 {
|
|
|
737
737
|
discounts?: Discount$1[];
|
|
738
738
|
/** Application specific fee, positive value, optional (if application_fee == 0, don't include it to request). Only positive values. */
|
|
739
739
|
applicationFee?: ApplicationFee$1;
|
|
740
|
+
/**
|
|
741
|
+
* External reference identifier for mapping item in consumer's system.
|
|
742
|
+
* This allows the consumer to correlate the item in their system with the item in this API.
|
|
743
|
+
*/
|
|
744
|
+
externalId?: string | null;
|
|
740
745
|
/**
|
|
741
746
|
* Key / Value store to keep up to 10 additional values related to the subscription item.
|
|
742
747
|
* Key max length = 50, Value max length = 200. Value can not be empty.
|
|
@@ -2588,6 +2593,11 @@ interface Item {
|
|
|
2588
2593
|
discounts?: Discount[];
|
|
2589
2594
|
/** Application specific fee, positive value, optional (if application_fee == 0, don't include it to request). Only positive values. */
|
|
2590
2595
|
applicationFee?: ApplicationFee;
|
|
2596
|
+
/**
|
|
2597
|
+
* External reference identifier for mapping item in consumer's system.
|
|
2598
|
+
* This allows the consumer to correlate the item in their system with the item in this API.
|
|
2599
|
+
*/
|
|
2600
|
+
externalId?: string | null;
|
|
2591
2601
|
/**
|
|
2592
2602
|
* Key / Value store to keep up to 10 additional values related to the subscription item.
|
|
2593
2603
|
* Key max length = 50, Value max length = 200. Value can not be empty.
|