ultracart_rest_api_v2_typescript 3.10.181 → 3.10.183

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.10.181
1
+ ## ultracart_rest_api_v2_typescript@3.10.183
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.181 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.183 --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.183 | 02/20/2024 | Add tag support to CouponAmountOffItems, CouponBuyOneGetOneLimit, CouponDiscountItemWithItemPurchase, CouponFreeItemWithItemPurchase, CouponPercentOffItemsWithItemsPurchase |
58
+ | 3.10.182 | 01/16/2024 | order query - support searching by custom fields 8 through 10 |
57
59
  | 3.10.181 | 01/12/2024 | workflow task - add properties array |
58
60
  | 3.10.180 | 01/10/2024 | workflow tasks - support for searching by tags |
59
61
  | 3.10.179 | 01/10/2024 | workflow task - add uuids of related tasks and tags |
package/api.ts CHANGED
@@ -6929,6 +6929,30 @@ export interface ConversationAgentAuth {
6929
6929
  * @memberof ConversationAgentAuth
6930
6930
  */
6931
6931
  merchant_id?: string;
6932
+ /**
6933
+ *
6934
+ * @type {string}
6935
+ * @memberof ConversationAgentAuth
6936
+ */
6937
+ pbx_jwt?: string;
6938
+ /**
6939
+ *
6940
+ * @type {string}
6941
+ * @memberof ConversationAgentAuth
6942
+ */
6943
+ pbx_voice_identity?: string;
6944
+ /**
6945
+ *
6946
+ * @type {string}
6947
+ * @memberof ConversationAgentAuth
6948
+ */
6949
+ pbx_voice_token?: string;
6950
+ /**
6951
+ *
6952
+ * @type {string}
6953
+ * @memberof ConversationAgentAuth
6954
+ */
6955
+ pbx_worker_token?: string;
6932
6956
  /**
6933
6957
  *
6934
6958
  * @type {Array<ConversationTwilioAccount>}
@@ -10010,6 +10034,12 @@ export interface CouponAmountOffItems {
10010
10034
  * @memberof CouponAmountOffItems
10011
10035
  */
10012
10036
  discount_amount?: number;
10037
+ /**
10038
+ * An optional list of item tags which will receive a discount.
10039
+ * @type {Array<string>}
10040
+ * @memberof CouponAmountOffItems
10041
+ */
10042
+ item_tags?: Array<string>;
10013
10043
  /**
10014
10044
  * A list of items which are eligible for the discount amount.
10015
10045
  * @type {Array<string>}
@@ -10366,6 +10396,12 @@ export interface CouponAutomaticallyApplyCouponCodes {
10366
10396
  * @interface CouponBuyOneGetOneLimit
10367
10397
  */
10368
10398
  export interface CouponBuyOneGetOneLimit {
10399
+ /**
10400
+ * An optional list of item tags which will receive a discount.
10401
+ * @type {Array<string>}
10402
+ * @memberof CouponBuyOneGetOneLimit
10403
+ */
10404
+ item_tags?: Array<string>;
10369
10405
  /**
10370
10406
  * An optional list of items of which one must be purchased to receive free quantity of the same item.
10371
10407
  * @type {Array<string>}
@@ -10512,6 +10548,12 @@ export interface CouponDiscountItemWithItemPurchase {
10512
10548
  * @memberof CouponDiscountItemWithItemPurchase
10513
10549
  */
10514
10550
  discount_item?: string;
10551
+ /**
10552
+ * An optional list of item tags which will receive a discount of one of the required purchased items is purchased.
10553
+ * @type {Array<string>}
10554
+ * @memberof CouponDiscountItemWithItemPurchase
10555
+ */
10556
+ discount_item_tags?: Array<string>;
10515
10557
  /**
10516
10558
  * The price (unit cost) of the discounted item
10517
10559
  * @type {number}
@@ -10530,6 +10572,12 @@ export interface CouponDiscountItemWithItemPurchase {
10530
10572
  * @memberof CouponDiscountItemWithItemPurchase
10531
10573
  */
10532
10574
  required_purchase_item?: string;
10575
+ /**
10576
+ * An optional list of item tags which are required to be purchased.
10577
+ * @type {Array<string>}
10578
+ * @memberof CouponDiscountItemWithItemPurchase
10579
+ */
10580
+ required_purchase_items_tags?: Array<string>;
10533
10581
  }
10534
10582
 
10535
10583
  /**
@@ -10726,6 +10774,12 @@ export interface CouponFreeItemAndShippingWithSubtotal {
10726
10774
  * @interface CouponFreeItemWithItemPurchase
10727
10775
  */
10728
10776
  export interface CouponFreeItemWithItemPurchase {
10777
+ /**
10778
+ * An optional list of item tags which will receive a discount of one of the required purchased items is purchased.
10779
+ * @type {Array<string>}
10780
+ * @memberof CouponFreeItemWithItemPurchase
10781
+ */
10782
+ item_tags?: Array<string>;
10729
10783
  /**
10730
10784
  * A list of free items which will receive a discount if one of the required purchase items is purchased.
10731
10785
  * @type {Array<string>}
@@ -10750,6 +10804,12 @@ export interface CouponFreeItemWithItemPurchase {
10750
10804
  * @memberof CouponFreeItemWithItemPurchase
10751
10805
  */
10752
10806
  required_purchase_items?: Array<string>;
10807
+ /**
10808
+ * An optional list of item tags which are required to be purchased.
10809
+ * @type {Array<string>}
10810
+ * @memberof CouponFreeItemWithItemPurchase
10811
+ */
10812
+ required_purchase_items_tags?: Array<string>;
10753
10813
  }
10754
10814
 
10755
10815
  /**
@@ -11282,6 +11342,12 @@ export interface CouponPercentOffItemsWithItemsPurchase {
11282
11342
  * @memberof CouponPercentOffItemsWithItemsPurchase
11283
11343
  */
11284
11344
  discount_percent?: number;
11345
+ /**
11346
+ * An optional list of item tags which will receive a discount of one of the required purchased items is purchased.
11347
+ * @type {Array<string>}
11348
+ * @memberof CouponPercentOffItemsWithItemsPurchase
11349
+ */
11350
+ item_tags?: Array<string>;
11285
11351
  /**
11286
11352
  * A list of items which will receive a discount if one of the required purchase items is purchased.
11287
11353
  * @type {Array<string>}
@@ -11300,6 +11366,12 @@ export interface CouponPercentOffItemsWithItemsPurchase {
11300
11366
  * @memberof CouponPercentOffItemsWithItemsPurchase
11301
11367
  */
11302
11368
  required_purchase_items?: Array<string>;
11369
+ /**
11370
+ * An optional list of item tags which are required to be purchased.
11371
+ * @type {Array<string>}
11372
+ * @memberof CouponPercentOffItemsWithItemsPurchase
11373
+ */
11374
+ required_purchase_items_tags?: Array<string>;
11303
11375
  }
11304
11376
 
11305
11377
  /**
@@ -32163,6 +32235,12 @@ export interface OrderQuery {
32163
32235
  * @memberof OrderQuery
32164
32236
  */
32165
32237
  custom_field_1?: string;
32238
+ /**
32239
+ * Custom field 10
32240
+ * @type {string}
32241
+ * @memberof OrderQuery
32242
+ */
32243
+ custom_field_10?: string;
32166
32244
  /**
32167
32245
  * Custom field 2
32168
32246
  * @type {string}
@@ -32199,6 +32277,18 @@ export interface OrderQuery {
32199
32277
  * @memberof OrderQuery
32200
32278
  */
32201
32279
  custom_field_7?: string;
32280
+ /**
32281
+ * Custom field 8
32282
+ * @type {string}
32283
+ * @memberof OrderQuery
32284
+ */
32285
+ custom_field_8?: string;
32286
+ /**
32287
+ * Custom field 9
32288
+ * @type {string}
32289
+ * @memberof OrderQuery
32290
+ */
32291
+ custom_field_9?: string;
32202
32292
  /**
32203
32293
  * The customer profile to find associated orders for
32204
32294
  * @type {number}
@@ -40048,6 +40138,24 @@ export interface Twilio {
40048
40138
  * @memberof Twilio
40049
40139
  */
40050
40140
  account_sid?: string;
40141
+ /**
40142
+ *
40143
+ * @type {string}
40144
+ * @memberof Twilio
40145
+ */
40146
+ api_key_id?: string;
40147
+ /**
40148
+ *
40149
+ * @type {string}
40150
+ * @memberof Twilio
40151
+ */
40152
+ api_key_name?: string;
40153
+ /**
40154
+ *
40155
+ * @type {string}
40156
+ * @memberof Twilio
40157
+ */
40158
+ api_key_secret?: string;
40051
40159
  /**
40052
40160
  *
40053
40161
  * @type {string}
@@ -40060,12 +40168,48 @@ export interface Twilio {
40060
40168
  * @memberof Twilio
40061
40169
  */
40062
40170
  esp_twilio_uuid?: string;
40171
+ /**
40172
+ *
40173
+ * @type {string}
40174
+ * @memberof Twilio
40175
+ */
40176
+ inbound_twiml_app_sid?: string;
40177
+ /**
40178
+ *
40179
+ * @type {string}
40180
+ * @memberof Twilio
40181
+ */
40182
+ outbound_twiml_app_sid?: string;
40063
40183
  /**
40064
40184
  *
40065
40185
  * @type {Array<string>}
40066
40186
  * @memberof Twilio
40067
40187
  */
40068
40188
  phone_numbers?: Array<string>;
40189
+ /**
40190
+ *
40191
+ * @type {string}
40192
+ * @memberof Twilio
40193
+ */
40194
+ private_key_pem?: string;
40195
+ /**
40196
+ *
40197
+ * @type {string}
40198
+ * @memberof Twilio
40199
+ */
40200
+ public_key_pem?: string;
40201
+ /**
40202
+ *
40203
+ * @type {string}
40204
+ * @memberof Twilio
40205
+ */
40206
+ public_key_sid?: string;
40207
+ /**
40208
+ *
40209
+ * @type {string}
40210
+ * @memberof Twilio
40211
+ */
40212
+ twilio_workspace_sid?: string;
40069
40213
  }
40070
40214
 
40071
40215
  /**
package/dist/api.d.ts CHANGED
@@ -6770,6 +6770,30 @@ export interface ConversationAgentAuth {
6770
6770
  * @memberof ConversationAgentAuth
6771
6771
  */
6772
6772
  merchant_id?: string;
6773
+ /**
6774
+ *
6775
+ * @type {string}
6776
+ * @memberof ConversationAgentAuth
6777
+ */
6778
+ pbx_jwt?: string;
6779
+ /**
6780
+ *
6781
+ * @type {string}
6782
+ * @memberof ConversationAgentAuth
6783
+ */
6784
+ pbx_voice_identity?: string;
6785
+ /**
6786
+ *
6787
+ * @type {string}
6788
+ * @memberof ConversationAgentAuth
6789
+ */
6790
+ pbx_voice_token?: string;
6791
+ /**
6792
+ *
6793
+ * @type {string}
6794
+ * @memberof ConversationAgentAuth
6795
+ */
6796
+ pbx_worker_token?: string;
6773
6797
  /**
6774
6798
  *
6775
6799
  * @type {Array<ConversationTwilioAccount>}
@@ -9777,6 +9801,12 @@ export interface CouponAmountOffItems {
9777
9801
  * @memberof CouponAmountOffItems
9778
9802
  */
9779
9803
  discount_amount?: number;
9804
+ /**
9805
+ * An optional list of item tags which will receive a discount.
9806
+ * @type {Array<string>}
9807
+ * @memberof CouponAmountOffItems
9808
+ */
9809
+ item_tags?: Array<string>;
9780
9810
  /**
9781
9811
  * A list of items which are eligible for the discount amount.
9782
9812
  * @type {Array<string>}
@@ -10120,6 +10150,12 @@ export interface CouponAutomaticallyApplyCouponCodes {
10120
10150
  * @interface CouponBuyOneGetOneLimit
10121
10151
  */
10122
10152
  export interface CouponBuyOneGetOneLimit {
10153
+ /**
10154
+ * An optional list of item tags which will receive a discount.
10155
+ * @type {Array<string>}
10156
+ * @memberof CouponBuyOneGetOneLimit
10157
+ */
10158
+ item_tags?: Array<string>;
10123
10159
  /**
10124
10160
  * An optional list of items of which one must be purchased to receive free quantity of the same item.
10125
10161
  * @type {Array<string>}
@@ -10262,6 +10298,12 @@ export interface CouponDiscountItemWithItemPurchase {
10262
10298
  * @memberof CouponDiscountItemWithItemPurchase
10263
10299
  */
10264
10300
  discount_item?: string;
10301
+ /**
10302
+ * An optional list of item tags which will receive a discount of one of the required purchased items is purchased.
10303
+ * @type {Array<string>}
10304
+ * @memberof CouponDiscountItemWithItemPurchase
10305
+ */
10306
+ discount_item_tags?: Array<string>;
10265
10307
  /**
10266
10308
  * The price (unit cost) of the discounted item
10267
10309
  * @type {number}
@@ -10280,6 +10322,12 @@ export interface CouponDiscountItemWithItemPurchase {
10280
10322
  * @memberof CouponDiscountItemWithItemPurchase
10281
10323
  */
10282
10324
  required_purchase_item?: string;
10325
+ /**
10326
+ * An optional list of item tags which are required to be purchased.
10327
+ * @type {Array<string>}
10328
+ * @memberof CouponDiscountItemWithItemPurchase
10329
+ */
10330
+ required_purchase_items_tags?: Array<string>;
10283
10331
  }
10284
10332
  /**
10285
10333
  *
@@ -10471,6 +10519,12 @@ export interface CouponFreeItemAndShippingWithSubtotal {
10471
10519
  * @interface CouponFreeItemWithItemPurchase
10472
10520
  */
10473
10521
  export interface CouponFreeItemWithItemPurchase {
10522
+ /**
10523
+ * An optional list of item tags which will receive a discount of one of the required purchased items is purchased.
10524
+ * @type {Array<string>}
10525
+ * @memberof CouponFreeItemWithItemPurchase
10526
+ */
10527
+ item_tags?: Array<string>;
10474
10528
  /**
10475
10529
  * A list of free items which will receive a discount if one of the required purchase items is purchased.
10476
10530
  * @type {Array<string>}
@@ -10495,6 +10549,12 @@ export interface CouponFreeItemWithItemPurchase {
10495
10549
  * @memberof CouponFreeItemWithItemPurchase
10496
10550
  */
10497
10551
  required_purchase_items?: Array<string>;
10552
+ /**
10553
+ * An optional list of item tags which are required to be purchased.
10554
+ * @type {Array<string>}
10555
+ * @memberof CouponFreeItemWithItemPurchase
10556
+ */
10557
+ required_purchase_items_tags?: Array<string>;
10498
10558
  }
10499
10559
  /**
10500
10560
  *
@@ -11007,6 +11067,12 @@ export interface CouponPercentOffItemsWithItemsPurchase {
11007
11067
  * @memberof CouponPercentOffItemsWithItemsPurchase
11008
11068
  */
11009
11069
  discount_percent?: number;
11070
+ /**
11071
+ * An optional list of item tags which will receive a discount of one of the required purchased items is purchased.
11072
+ * @type {Array<string>}
11073
+ * @memberof CouponPercentOffItemsWithItemsPurchase
11074
+ */
11075
+ item_tags?: Array<string>;
11010
11076
  /**
11011
11077
  * A list of items which will receive a discount if one of the required purchase items is purchased.
11012
11078
  * @type {Array<string>}
@@ -11025,6 +11091,12 @@ export interface CouponPercentOffItemsWithItemsPurchase {
11025
11091
  * @memberof CouponPercentOffItemsWithItemsPurchase
11026
11092
  */
11027
11093
  required_purchase_items?: Array<string>;
11094
+ /**
11095
+ * An optional list of item tags which are required to be purchased.
11096
+ * @type {Array<string>}
11097
+ * @memberof CouponPercentOffItemsWithItemsPurchase
11098
+ */
11099
+ required_purchase_items_tags?: Array<string>;
11028
11100
  }
11029
11101
  /**
11030
11102
  *
@@ -31485,6 +31557,12 @@ export interface OrderQuery {
31485
31557
  * @memberof OrderQuery
31486
31558
  */
31487
31559
  custom_field_1?: string;
31560
+ /**
31561
+ * Custom field 10
31562
+ * @type {string}
31563
+ * @memberof OrderQuery
31564
+ */
31565
+ custom_field_10?: string;
31488
31566
  /**
31489
31567
  * Custom field 2
31490
31568
  * @type {string}
@@ -31521,6 +31599,18 @@ export interface OrderQuery {
31521
31599
  * @memberof OrderQuery
31522
31600
  */
31523
31601
  custom_field_7?: string;
31602
+ /**
31603
+ * Custom field 8
31604
+ * @type {string}
31605
+ * @memberof OrderQuery
31606
+ */
31607
+ custom_field_8?: string;
31608
+ /**
31609
+ * Custom field 9
31610
+ * @type {string}
31611
+ * @memberof OrderQuery
31612
+ */
31613
+ custom_field_9?: string;
31524
31614
  /**
31525
31615
  * The customer profile to find associated orders for
31526
31616
  * @type {number}
@@ -39203,6 +39293,24 @@ export interface Twilio {
39203
39293
  * @memberof Twilio
39204
39294
  */
39205
39295
  account_sid?: string;
39296
+ /**
39297
+ *
39298
+ * @type {string}
39299
+ * @memberof Twilio
39300
+ */
39301
+ api_key_id?: string;
39302
+ /**
39303
+ *
39304
+ * @type {string}
39305
+ * @memberof Twilio
39306
+ */
39307
+ api_key_name?: string;
39308
+ /**
39309
+ *
39310
+ * @type {string}
39311
+ * @memberof Twilio
39312
+ */
39313
+ api_key_secret?: string;
39206
39314
  /**
39207
39315
  *
39208
39316
  * @type {string}
@@ -39215,12 +39323,48 @@ export interface Twilio {
39215
39323
  * @memberof Twilio
39216
39324
  */
39217
39325
  esp_twilio_uuid?: string;
39326
+ /**
39327
+ *
39328
+ * @type {string}
39329
+ * @memberof Twilio
39330
+ */
39331
+ inbound_twiml_app_sid?: string;
39332
+ /**
39333
+ *
39334
+ * @type {string}
39335
+ * @memberof Twilio
39336
+ */
39337
+ outbound_twiml_app_sid?: string;
39218
39338
  /**
39219
39339
  *
39220
39340
  * @type {Array<string>}
39221
39341
  * @memberof Twilio
39222
39342
  */
39223
39343
  phone_numbers?: Array<string>;
39344
+ /**
39345
+ *
39346
+ * @type {string}
39347
+ * @memberof Twilio
39348
+ */
39349
+ private_key_pem?: string;
39350
+ /**
39351
+ *
39352
+ * @type {string}
39353
+ * @memberof Twilio
39354
+ */
39355
+ public_key_pem?: string;
39356
+ /**
39357
+ *
39358
+ * @type {string}
39359
+ * @memberof Twilio
39360
+ */
39361
+ public_key_sid?: string;
39362
+ /**
39363
+ *
39364
+ * @type {string}
39365
+ * @memberof Twilio
39366
+ */
39367
+ twilio_workspace_sid?: string;
39224
39368
  }
39225
39369
  /**
39226
39370
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.181",
3
+ "version": "3.10.183",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [