ultracart_rest_api_v2_typescript 3.11.32 → 3.11.34

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.11.32
1
+ ## ultracart_rest_api_v2_typescript@3.11.34
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.11.32 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.11.34 --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.11.34 | 12/02/2025 | coupons - added optional free specific shipping method to two coupons |
58
+ | 3.11.33 | 11/26/2025 | conversation - AI agent profile fields |
57
59
  | 3.11.32 | 11/20/2025 | conversion api bug fix on incorrect signature |
58
60
  | 3.11.31 | 11/20/2025 | conversation - AI agent mcp server tools function |
59
61
  | 3.11.30 | 11/19/2025 | conversation - AI agent MCP server configuration methods |
package/api.ts CHANGED
@@ -7129,6 +7129,12 @@ export interface ConversationAgentProfile {
7129
7129
  * @memberof ConversationAgentProfile
7130
7130
  */
7131
7131
  ai_sms_instructions?: string;
7132
+ /**
7133
+ * Additional instructions for this AI when handling ticket draft replies
7134
+ * @type {string}
7135
+ * @memberof ConversationAgentProfile
7136
+ */
7137
+ ai_ticket_instructions?: string;
7132
7138
  /**
7133
7139
  * The number of engagement chats that can be pushed on them at any given time.
7134
7140
  * @type {number}
@@ -7177,6 +7183,18 @@ export interface ConversationAgentProfile {
7177
7183
  * @memberof ConversationAgentProfile
7178
7184
  */
7179
7185
  user_id?: number;
7186
+ /**
7187
+ * Restrict this agent to drafting replies only to tickets with these classifications
7188
+ * @type {Array<string>}
7189
+ * @memberof ConversationAgentProfile
7190
+ */
7191
+ zohodesk_classifications?: Array<string>;
7192
+ /**
7193
+ * Restrict this agent to drafting replies only to these department ids
7194
+ * @type {Array<string>}
7195
+ * @memberof ConversationAgentProfile
7196
+ */
7197
+ zohodesk_departments?: Array<string>;
7180
7198
  }
7181
7199
 
7182
7200
  /**
@@ -13601,6 +13619,12 @@ export interface CouponFreeItemWithItemPurchaseAndFreeShipping {
13601
13619
  * @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
13602
13620
  */
13603
13621
  required_purchase_items?: Array<string>;
13622
+ /**
13623
+ * One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
13624
+ * @type {Array<string>}
13625
+ * @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
13626
+ */
13627
+ shipping_methods?: Array<string>;
13604
13628
  }
13605
13629
 
13606
13630
  /**
@@ -14099,6 +14123,12 @@ export interface CouponPercentOffItemsAndFreeShipping {
14099
14123
  * @memberof CouponPercentOffItemsAndFreeShipping
14100
14124
  */
14101
14125
  items?: Array<string>;
14126
+ /**
14127
+ * One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
14128
+ * @type {Array<string>}
14129
+ * @memberof CouponPercentOffItemsAndFreeShipping
14130
+ */
14131
+ shipping_methods?: Array<string>;
14102
14132
  }
14103
14133
 
14104
14134
  /**
package/dist/api.d.ts CHANGED
@@ -6968,6 +6968,12 @@ export interface ConversationAgentProfile {
6968
6968
  * @memberof ConversationAgentProfile
6969
6969
  */
6970
6970
  ai_sms_instructions?: string;
6971
+ /**
6972
+ * Additional instructions for this AI when handling ticket draft replies
6973
+ * @type {string}
6974
+ * @memberof ConversationAgentProfile
6975
+ */
6976
+ ai_ticket_instructions?: string;
6971
6977
  /**
6972
6978
  * The number of engagement chats that can be pushed on them at any given time.
6973
6979
  * @type {number}
@@ -7016,6 +7022,18 @@ export interface ConversationAgentProfile {
7016
7022
  * @memberof ConversationAgentProfile
7017
7023
  */
7018
7024
  user_id?: number;
7025
+ /**
7026
+ * Restrict this agent to drafting replies only to tickets with these classifications
7027
+ * @type {Array<string>}
7028
+ * @memberof ConversationAgentProfile
7029
+ */
7030
+ zohodesk_classifications?: Array<string>;
7031
+ /**
7032
+ * Restrict this agent to drafting replies only to these department ids
7033
+ * @type {Array<string>}
7034
+ * @memberof ConversationAgentProfile
7035
+ */
7036
+ zohodesk_departments?: Array<string>;
7019
7037
  }
7020
7038
  /**
7021
7039
  * @export
@@ -13281,6 +13299,12 @@ export interface CouponFreeItemWithItemPurchaseAndFreeShipping {
13281
13299
  * @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
13282
13300
  */
13283
13301
  required_purchase_items?: Array<string>;
13302
+ /**
13303
+ * One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
13304
+ * @type {Array<string>}
13305
+ * @memberof CouponFreeItemWithItemPurchaseAndFreeShipping
13306
+ */
13307
+ shipping_methods?: Array<string>;
13284
13308
  }
13285
13309
  /**
13286
13310
  *
@@ -13761,6 +13785,12 @@ export interface CouponPercentOffItemsAndFreeShipping {
13761
13785
  * @memberof CouponPercentOffItemsAndFreeShipping
13762
13786
  */
13763
13787
  items?: Array<string>;
13788
+ /**
13789
+ * One or more shipping methods that may be used with this coupon. If not specified or empty, methods that are marked as qualifies for free shipping will be the only free methods
13790
+ * @type {Array<string>}
13791
+ * @memberof CouponPercentOffItemsAndFreeShipping
13792
+ */
13793
+ shipping_methods?: Array<string>;
13764
13794
  }
13765
13795
  /**
13766
13796
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.11.32",
3
+ "version": "3.11.34",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [