ultracart_rest_api_v2_typescript 3.10.220 → 3.10.221
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 +12 -0
- package/dist/api.d.ts +12 -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.221
|
|
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.221 --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.221 | 12/13/2024 | added user and group ids to conversation agent auth object |
|
|
57
58
|
| 3.10.220 | 11/11/2024 | added seo properties to item.content object |
|
|
58
59
|
| 3.10.219 | 11/07/2024 | Coupon - PercentOffWithItemsQuantityPurchase - added support for tags |
|
|
59
60
|
| 3.10.218 | 11/04/2024 | item - new constant for auto order schedule of every 5 months |
|
package/api.ts
CHANGED
|
@@ -7054,6 +7054,12 @@ export interface ConversationAgentAuth {
|
|
|
7054
7054
|
* @memberof ConversationAgentAuth
|
|
7055
7055
|
*/
|
|
7056
7056
|
conversation_participant_name?: string;
|
|
7057
|
+
/**
|
|
7058
|
+
* UltraCart Groups this user belongs to
|
|
7059
|
+
* @type {Array<number>}
|
|
7060
|
+
* @memberof ConversationAgentAuth
|
|
7061
|
+
*/
|
|
7062
|
+
group_ids?: Array<number>;
|
|
7057
7063
|
/**
|
|
7058
7064
|
*
|
|
7059
7065
|
* @type {string}
|
|
@@ -7114,6 +7120,12 @@ export interface ConversationAgentAuth {
|
|
|
7114
7120
|
* @memberof ConversationAgentAuth
|
|
7115
7121
|
*/
|
|
7116
7122
|
twilio_accounts?: Array<ConversationTwilioAccount>;
|
|
7123
|
+
/**
|
|
7124
|
+
* UltraCart User ID
|
|
7125
|
+
* @type {number}
|
|
7126
|
+
* @memberof ConversationAgentAuth
|
|
7127
|
+
*/
|
|
7128
|
+
user_id?: number;
|
|
7117
7129
|
/**
|
|
7118
7130
|
*
|
|
7119
7131
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -6894,6 +6894,12 @@ export interface ConversationAgentAuth {
|
|
|
6894
6894
|
* @memberof ConversationAgentAuth
|
|
6895
6895
|
*/
|
|
6896
6896
|
conversation_participant_name?: string;
|
|
6897
|
+
/**
|
|
6898
|
+
* UltraCart Groups this user belongs to
|
|
6899
|
+
* @type {Array<number>}
|
|
6900
|
+
* @memberof ConversationAgentAuth
|
|
6901
|
+
*/
|
|
6902
|
+
group_ids?: Array<number>;
|
|
6897
6903
|
/**
|
|
6898
6904
|
*
|
|
6899
6905
|
* @type {string}
|
|
@@ -6954,6 +6960,12 @@ export interface ConversationAgentAuth {
|
|
|
6954
6960
|
* @memberof ConversationAgentAuth
|
|
6955
6961
|
*/
|
|
6956
6962
|
twilio_accounts?: Array<ConversationTwilioAccount>;
|
|
6963
|
+
/**
|
|
6964
|
+
* UltraCart User ID
|
|
6965
|
+
* @type {number}
|
|
6966
|
+
* @memberof ConversationAgentAuth
|
|
6967
|
+
*/
|
|
6968
|
+
user_id?: number;
|
|
6957
6969
|
/**
|
|
6958
6970
|
*
|
|
6959
6971
|
* @type {string}
|