ultracart_rest_api_v2_typescript 3.10.63 → 3.10.64
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 +3 -2
- package/api.ts +18 -0
- package/dist/api.d.ts +18 -0
- 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.64
|
|
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.64 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.64 | 11/15/2022 | increase order property length to 10k char |
|
|
57
58
|
| 3.10.63 | 11/14/2022 | conversations - add allowed values for update agent status |
|
|
58
59
|
| 3.10.62 | 11/09/2022 | conversations - add an enum of event typing |
|
|
59
60
|
| 3.10.61 | 11/04/2022 | new coupon type percent based on msrp |
|
package/api.ts
CHANGED
|
@@ -712,12 +712,24 @@ export interface AffiliateClick {
|
|
|
712
712
|
* @memberof AffiliateClick
|
|
713
713
|
*/
|
|
714
714
|
referrer_query_string?: string;
|
|
715
|
+
/**
|
|
716
|
+
* Screen recording UUID
|
|
717
|
+
* @type {string}
|
|
718
|
+
* @memberof AffiliateClick
|
|
719
|
+
*/
|
|
720
|
+
screen_recording_uuid?: string;
|
|
715
721
|
/**
|
|
716
722
|
* Sub ID value passed on the click
|
|
717
723
|
* @type {string}
|
|
718
724
|
* @memberof AffiliateClick
|
|
719
725
|
*/
|
|
720
726
|
sub_id?: string;
|
|
727
|
+
/**
|
|
728
|
+
* UC Analytics Identifier
|
|
729
|
+
* @type {string}
|
|
730
|
+
* @memberof AffiliateClick
|
|
731
|
+
*/
|
|
732
|
+
ucacid?: string;
|
|
721
733
|
}
|
|
722
734
|
|
|
723
735
|
/**
|
|
@@ -6277,6 +6289,12 @@ export interface CityStateZip {
|
|
|
6277
6289
|
* @interface Conversation
|
|
6278
6290
|
*/
|
|
6279
6291
|
export interface Conversation {
|
|
6292
|
+
/**
|
|
6293
|
+
* The base language iso code for the StoreFront that everything is translated into
|
|
6294
|
+
* @type {string}
|
|
6295
|
+
* @memberof Conversation
|
|
6296
|
+
*/
|
|
6297
|
+
base_language_iso_code?: string;
|
|
6280
6298
|
/**
|
|
6281
6299
|
*
|
|
6282
6300
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -683,12 +683,24 @@ export interface AffiliateClick {
|
|
|
683
683
|
* @memberof AffiliateClick
|
|
684
684
|
*/
|
|
685
685
|
referrer_query_string?: string;
|
|
686
|
+
/**
|
|
687
|
+
* Screen recording UUID
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof AffiliateClick
|
|
690
|
+
*/
|
|
691
|
+
screen_recording_uuid?: string;
|
|
686
692
|
/**
|
|
687
693
|
* Sub ID value passed on the click
|
|
688
694
|
* @type {string}
|
|
689
695
|
* @memberof AffiliateClick
|
|
690
696
|
*/
|
|
691
697
|
sub_id?: string;
|
|
698
|
+
/**
|
|
699
|
+
* UC Analytics Identifier
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof AffiliateClick
|
|
702
|
+
*/
|
|
703
|
+
ucacid?: string;
|
|
692
704
|
}
|
|
693
705
|
/**
|
|
694
706
|
*
|
|
@@ -6130,6 +6142,12 @@ export interface CityStateZip {
|
|
|
6130
6142
|
* @interface Conversation
|
|
6131
6143
|
*/
|
|
6132
6144
|
export interface Conversation {
|
|
6145
|
+
/**
|
|
6146
|
+
* The base language iso code for the StoreFront that everything is translated into
|
|
6147
|
+
* @type {string}
|
|
6148
|
+
* @memberof Conversation
|
|
6149
|
+
*/
|
|
6150
|
+
base_language_iso_code?: string;
|
|
6133
6151
|
/**
|
|
6134
6152
|
*
|
|
6135
6153
|
* @type {boolean}
|