ultracart_rest_api_v2_typescript 3.10.8 → 3.10.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/api.ts +44 -8
- package/dist/api.d.ts +44 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.11
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.11 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,9 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.11 | 06/10/2022 | esp segment 3rd party sync add/remove tag fields |
|
|
58
|
+
| 3.10.10 | 06/06/2022 | storefront communication options for syncing to third party provider list |
|
|
59
|
+
| 3.10.9 | 06/01/2022 | bug fixes for customer profile store credit |
|
|
57
60
|
| 3.10.8 | 05/27/2022 | customer store credit |
|
|
58
61
|
| 3.10.7 | 05/23/2022 | add internal gift cert to order summary, addl provider info for storefront comm |
|
|
59
62
|
| 3.10.6 | 05/23/2022 | add internal gift cert to order summary, addl provider info for storefront comm |
|
package/api.ts
CHANGED
|
@@ -10030,37 +10030,37 @@ export interface CustomerSoftwareEntitlement {
|
|
|
10030
10030
|
*/
|
|
10031
10031
|
export interface CustomerStoreCredit {
|
|
10032
10032
|
/**
|
|
10033
|
-
*
|
|
10033
|
+
* Available store credit which is defined as unused and vested
|
|
10034
10034
|
* @type {number}
|
|
10035
10035
|
* @memberof CustomerStoreCredit
|
|
10036
10036
|
*/
|
|
10037
10037
|
available?: number;
|
|
10038
10038
|
/**
|
|
10039
|
-
*
|
|
10039
|
+
* Amount of store credit expiring within 30 days
|
|
10040
10040
|
* @type {number}
|
|
10041
10041
|
* @memberof CustomerStoreCredit
|
|
10042
10042
|
*/
|
|
10043
10043
|
expiring?: number;
|
|
10044
10044
|
/**
|
|
10045
|
-
*
|
|
10045
|
+
* Array of future ledger entries including expiring entries
|
|
10046
10046
|
* @type {Array<CustomerStoreCreditLedgerEntry>}
|
|
10047
10047
|
* @memberof CustomerStoreCredit
|
|
10048
10048
|
*/
|
|
10049
|
-
|
|
10049
|
+
future_ledgers?: Array<CustomerStoreCreditLedgerEntry>;
|
|
10050
10050
|
/**
|
|
10051
|
-
*
|
|
10051
|
+
* Array of past ledger entries including accrual, usage, and expiring entries
|
|
10052
10052
|
* @type {Array<CustomerStoreCreditLedgerEntry>}
|
|
10053
10053
|
* @memberof CustomerStoreCredit
|
|
10054
10054
|
*/
|
|
10055
|
-
|
|
10055
|
+
past_ledgers?: Array<CustomerStoreCreditLedgerEntry>;
|
|
10056
10056
|
/**
|
|
10057
|
-
*
|
|
10057
|
+
* Total lifetime store credit for this customer.
|
|
10058
10058
|
* @type {number}
|
|
10059
10059
|
* @memberof CustomerStoreCredit
|
|
10060
10060
|
*/
|
|
10061
10061
|
total?: number;
|
|
10062
10062
|
/**
|
|
10063
|
-
*
|
|
10063
|
+
* Amount of store credit vesting
|
|
10064
10064
|
* @type {number}
|
|
10065
10065
|
* @memberof CustomerStoreCredit
|
|
10066
10066
|
*/
|
|
@@ -14599,6 +14599,42 @@ export interface EmailSegment {
|
|
|
14599
14599
|
* @memberof EmailSegment
|
|
14600
14600
|
*/
|
|
14601
14601
|
storefront_oid?: number;
|
|
14602
|
+
/**
|
|
14603
|
+
* Third party provider tags to add when a customer joins the segment.
|
|
14604
|
+
* @type {Array<string>}
|
|
14605
|
+
* @memberof EmailSegment
|
|
14606
|
+
*/
|
|
14607
|
+
thirdparty_join_add_tags?: Array<string>;
|
|
14608
|
+
/**
|
|
14609
|
+
* Third party provider tags to remove when a customer joins the segment.
|
|
14610
|
+
* @type {Array<string>}
|
|
14611
|
+
* @memberof EmailSegment
|
|
14612
|
+
*/
|
|
14613
|
+
thirdparty_join_remove_tags?: Array<string>;
|
|
14614
|
+
/**
|
|
14615
|
+
* Third party provider tags to add when a customer leaves the segment.
|
|
14616
|
+
* @type {Array<string>}
|
|
14617
|
+
* @memberof EmailSegment
|
|
14618
|
+
*/
|
|
14619
|
+
thirdparty_leave_add_tags?: Array<string>;
|
|
14620
|
+
/**
|
|
14621
|
+
* Third party provider tags to remove when a customer leaves the segment.
|
|
14622
|
+
* @type {Array<string>}
|
|
14623
|
+
* @memberof EmailSegment
|
|
14624
|
+
*/
|
|
14625
|
+
thirdparty_leave_remove_tags?: Array<string>;
|
|
14626
|
+
/**
|
|
14627
|
+
* List id of third party provider to sync with.
|
|
14628
|
+
* @type {string}
|
|
14629
|
+
* @memberof EmailSegment
|
|
14630
|
+
*/
|
|
14631
|
+
thirdparty_list_id?: string;
|
|
14632
|
+
/**
|
|
14633
|
+
* Name of third party provider to sync segment to a list with.
|
|
14634
|
+
* @type {string}
|
|
14635
|
+
* @memberof EmailSegment
|
|
14636
|
+
*/
|
|
14637
|
+
thirdparty_provider_name?: string;
|
|
14602
14638
|
/**
|
|
14603
14639
|
* Details on the flows or campaigns that use this list.
|
|
14604
14640
|
* @type {Array<EmailListSegmentUsedBy>}
|
package/dist/api.d.ts
CHANGED
|
@@ -9798,37 +9798,37 @@ export interface CustomerSoftwareEntitlement {
|
|
|
9798
9798
|
*/
|
|
9799
9799
|
export interface CustomerStoreCredit {
|
|
9800
9800
|
/**
|
|
9801
|
-
*
|
|
9801
|
+
* Available store credit which is defined as unused and vested
|
|
9802
9802
|
* @type {number}
|
|
9803
9803
|
* @memberof CustomerStoreCredit
|
|
9804
9804
|
*/
|
|
9805
9805
|
available?: number;
|
|
9806
9806
|
/**
|
|
9807
|
-
*
|
|
9807
|
+
* Amount of store credit expiring within 30 days
|
|
9808
9808
|
* @type {number}
|
|
9809
9809
|
* @memberof CustomerStoreCredit
|
|
9810
9810
|
*/
|
|
9811
9811
|
expiring?: number;
|
|
9812
9812
|
/**
|
|
9813
|
-
*
|
|
9813
|
+
* Array of future ledger entries including expiring entries
|
|
9814
9814
|
* @type {Array<CustomerStoreCreditLedgerEntry>}
|
|
9815
9815
|
* @memberof CustomerStoreCredit
|
|
9816
9816
|
*/
|
|
9817
|
-
|
|
9817
|
+
future_ledgers?: Array<CustomerStoreCreditLedgerEntry>;
|
|
9818
9818
|
/**
|
|
9819
|
-
*
|
|
9819
|
+
* Array of past ledger entries including accrual, usage, and expiring entries
|
|
9820
9820
|
* @type {Array<CustomerStoreCreditLedgerEntry>}
|
|
9821
9821
|
* @memberof CustomerStoreCredit
|
|
9822
9822
|
*/
|
|
9823
|
-
|
|
9823
|
+
past_ledgers?: Array<CustomerStoreCreditLedgerEntry>;
|
|
9824
9824
|
/**
|
|
9825
|
-
*
|
|
9825
|
+
* Total lifetime store credit for this customer.
|
|
9826
9826
|
* @type {number}
|
|
9827
9827
|
* @memberof CustomerStoreCredit
|
|
9828
9828
|
*/
|
|
9829
9829
|
total?: number;
|
|
9830
9830
|
/**
|
|
9831
|
-
*
|
|
9831
|
+
* Amount of store credit vesting
|
|
9832
9832
|
* @type {number}
|
|
9833
9833
|
* @memberof CustomerStoreCredit
|
|
9834
9834
|
*/
|
|
@@ -14276,6 +14276,42 @@ export interface EmailSegment {
|
|
|
14276
14276
|
* @memberof EmailSegment
|
|
14277
14277
|
*/
|
|
14278
14278
|
storefront_oid?: number;
|
|
14279
|
+
/**
|
|
14280
|
+
* Third party provider tags to add when a customer joins the segment.
|
|
14281
|
+
* @type {Array<string>}
|
|
14282
|
+
* @memberof EmailSegment
|
|
14283
|
+
*/
|
|
14284
|
+
thirdparty_join_add_tags?: Array<string>;
|
|
14285
|
+
/**
|
|
14286
|
+
* Third party provider tags to remove when a customer joins the segment.
|
|
14287
|
+
* @type {Array<string>}
|
|
14288
|
+
* @memberof EmailSegment
|
|
14289
|
+
*/
|
|
14290
|
+
thirdparty_join_remove_tags?: Array<string>;
|
|
14291
|
+
/**
|
|
14292
|
+
* Third party provider tags to add when a customer leaves the segment.
|
|
14293
|
+
* @type {Array<string>}
|
|
14294
|
+
* @memberof EmailSegment
|
|
14295
|
+
*/
|
|
14296
|
+
thirdparty_leave_add_tags?: Array<string>;
|
|
14297
|
+
/**
|
|
14298
|
+
* Third party provider tags to remove when a customer leaves the segment.
|
|
14299
|
+
* @type {Array<string>}
|
|
14300
|
+
* @memberof EmailSegment
|
|
14301
|
+
*/
|
|
14302
|
+
thirdparty_leave_remove_tags?: Array<string>;
|
|
14303
|
+
/**
|
|
14304
|
+
* List id of third party provider to sync with.
|
|
14305
|
+
* @type {string}
|
|
14306
|
+
* @memberof EmailSegment
|
|
14307
|
+
*/
|
|
14308
|
+
thirdparty_list_id?: string;
|
|
14309
|
+
/**
|
|
14310
|
+
* Name of third party provider to sync segment to a list with.
|
|
14311
|
+
* @type {string}
|
|
14312
|
+
* @memberof EmailSegment
|
|
14313
|
+
*/
|
|
14314
|
+
thirdparty_provider_name?: string;
|
|
14279
14315
|
/**
|
|
14280
14316
|
* Details on the flows or campaigns that use this list.
|
|
14281
14317
|
* @type {Array<EmailListSegmentUsedBy>}
|