ultracart_rest_api_v2_typescript 3.10.219 → 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 +4 -2
- package/api.ts +31 -1
- package/dist/api.d.ts +31 -1
- 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,8 @@ 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 |
|
|
58
|
+
| 3.10.220 | 11/11/2024 | added seo properties to item.content object |
|
|
57
59
|
| 3.10.219 | 11/07/2024 | Coupon - PercentOffWithItemsQuantityPurchase - added support for tags |
|
|
58
60
|
| 3.10.218 | 11/04/2024 | item - new constant for auto order schedule of every 5 months |
|
|
59
61
|
| 3.10.217 | 10/24/2024 | storefront page attribute edit method |
|
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}
|
|
@@ -26519,11 +26531,29 @@ export interface ItemContent {
|
|
|
26519
26531
|
*/
|
|
26520
26532
|
extended_description?: string;
|
|
26521
26533
|
/**
|
|
26522
|
-
*
|
|
26534
|
+
* Extended description text translation instance identifier
|
|
26523
26535
|
* @type {number}
|
|
26524
26536
|
* @memberof ItemContent
|
|
26525
26537
|
*/
|
|
26526
26538
|
extended_description_translated_text_instance_oid?: number;
|
|
26539
|
+
/**
|
|
26540
|
+
* SEO meta description used by Storefronts
|
|
26541
|
+
* @type {string}
|
|
26542
|
+
* @memberof ItemContent
|
|
26543
|
+
*/
|
|
26544
|
+
meta_description?: string;
|
|
26545
|
+
/**
|
|
26546
|
+
* SEO meta keywords used by Storefronts
|
|
26547
|
+
* @type {string}
|
|
26548
|
+
* @memberof ItemContent
|
|
26549
|
+
*/
|
|
26550
|
+
meta_keywords?: string;
|
|
26551
|
+
/**
|
|
26552
|
+
* SEO meta title used by Storefronts
|
|
26553
|
+
* @type {string}
|
|
26554
|
+
* @memberof ItemContent
|
|
26555
|
+
*/
|
|
26556
|
+
meta_title?: string;
|
|
26527
26557
|
/**
|
|
26528
26558
|
* Multimedia
|
|
26529
26559
|
* @type {Array<ItemContentMultimedia>}
|
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}
|
|
@@ -25950,11 +25962,29 @@ export interface ItemContent {
|
|
|
25950
25962
|
*/
|
|
25951
25963
|
extended_description?: string;
|
|
25952
25964
|
/**
|
|
25953
|
-
*
|
|
25965
|
+
* Extended description text translation instance identifier
|
|
25954
25966
|
* @type {number}
|
|
25955
25967
|
* @memberof ItemContent
|
|
25956
25968
|
*/
|
|
25957
25969
|
extended_description_translated_text_instance_oid?: number;
|
|
25970
|
+
/**
|
|
25971
|
+
* SEO meta description used by Storefronts
|
|
25972
|
+
* @type {string}
|
|
25973
|
+
* @memberof ItemContent
|
|
25974
|
+
*/
|
|
25975
|
+
meta_description?: string;
|
|
25976
|
+
/**
|
|
25977
|
+
* SEO meta keywords used by Storefronts
|
|
25978
|
+
* @type {string}
|
|
25979
|
+
* @memberof ItemContent
|
|
25980
|
+
*/
|
|
25981
|
+
meta_keywords?: string;
|
|
25982
|
+
/**
|
|
25983
|
+
* SEO meta title used by Storefronts
|
|
25984
|
+
* @type {string}
|
|
25985
|
+
* @memberof ItemContent
|
|
25986
|
+
*/
|
|
25987
|
+
meta_title?: string;
|
|
25958
25988
|
/**
|
|
25959
25989
|
* Multimedia
|
|
25960
25990
|
* @type {Array<ItemContentMultimedia>}
|