ultracart_rest_api_v2_typescript 3.10.217 → 3.10.218

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.217
1
+ ## ultracart_rest_api_v2_typescript@3.10.218
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.217 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.218 --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.218 | 11/04/2024 | item - new constant for auto order schedule of every 5 months |
57
58
  | 3.10.217 | 10/24/2024 | storefront page attribute edit method |
58
59
  | 3.10.216 | 09/18/2024 | order payment constant for PayPal Fastlane |
59
60
  | 3.10.215 | 08/29/2024 | add hold_for_transmission to item shipping object |
package/api.ts CHANGED
@@ -1796,6 +1796,7 @@ export namespace AutoOrderItem {
1796
1796
  Every2Months = <any> 'Every 2 Months',
1797
1797
  Every3Months = <any> 'Every 3 Months',
1798
1798
  Every4Months = <any> 'Every 4 Months',
1799
+ Every5Months = <any> 'Every 5 Months',
1799
1800
  Every6Months = <any> 'Every 6 Months',
1800
1801
  Yearly = <any> 'Yearly',
1801
1802
  Every4Weeks = <any> 'Every 4 Weeks',
@@ -1903,6 +1904,7 @@ export namespace AutoOrderItemSimpleSchedule {
1903
1904
  Every2Months = <any> 'Every 2 Months',
1904
1905
  Every3Months = <any> 'Every 3 Months',
1905
1906
  Every4Months = <any> 'Every 4 Months',
1907
+ Every5Months = <any> 'Every 5 Months',
1906
1908
  Every6Months = <any> 'Every 6 Months',
1907
1909
  Yearly = <any> 'Yearly',
1908
1910
  Every4Weeks = <any> 'Every 4 Weeks',
@@ -6227,6 +6229,7 @@ export namespace ChannelPartnerOrderItem {
6227
6229
  Every2Months = <any> 'Every 2 Months',
6228
6230
  Every3Months = <any> 'Every 3 Months',
6229
6231
  Every4Months = <any> 'Every 4 Months',
6232
+ Every5Months = <any> 'Every 5 Months',
6230
6233
  Every6Months = <any> 'Every 6 Months',
6231
6234
  Yearly = <any> 'Yearly',
6232
6235
  Every4Weeks = <any> 'Every 4 Weeks',
@@ -43767,6 +43770,12 @@ export interface WebhookLog {
43767
43770
  * @memberof WebhookLog
43768
43771
  */
43769
43772
  uri?: string;
43773
+ /**
43774
+ * webhook oid
43775
+ * @type {number}
43776
+ * @memberof WebhookLog
43777
+ */
43778
+ webhook_oid?: number;
43770
43779
  }
43771
43780
 
43772
43781
  /**
package/dist/api.d.ts CHANGED
@@ -1748,6 +1748,7 @@ export declare namespace AutoOrderItem {
1748
1748
  Every2Months,
1749
1749
  Every3Months,
1750
1750
  Every4Months,
1751
+ Every5Months,
1751
1752
  Every6Months,
1752
1753
  Yearly,
1753
1754
  Every4Weeks,
@@ -1851,6 +1852,7 @@ export declare namespace AutoOrderItemSimpleSchedule {
1851
1852
  Every2Months,
1852
1853
  Every3Months,
1853
1854
  Every4Months,
1855
+ Every5Months,
1854
1856
  Every6Months,
1855
1857
  Yearly,
1856
1858
  Every4Weeks,
@@ -6089,6 +6091,7 @@ export declare namespace ChannelPartnerOrderItem {
6089
6091
  Every2Months,
6090
6092
  Every3Months,
6091
6093
  Every4Months,
6094
+ Every5Months,
6092
6095
  Every6Months,
6093
6096
  Yearly,
6094
6097
  Every4Weeks,
@@ -42846,6 +42849,12 @@ export interface WebhookLog {
42846
42849
  * @memberof WebhookLog
42847
42850
  */
42848
42851
  uri?: string;
42852
+ /**
42853
+ * webhook oid
42854
+ * @type {number}
42855
+ * @memberof WebhookLog
42856
+ */
42857
+ webhook_oid?: number;
42849
42858
  }
42850
42859
  /**
42851
42860
  *
package/dist/api.js CHANGED
@@ -180,6 +180,7 @@ var AutoOrderItem;
180
180
  FrequencyEnum[FrequencyEnum["Every2Months"] = 'Every 2 Months'] = "Every2Months";
181
181
  FrequencyEnum[FrequencyEnum["Every3Months"] = 'Every 3 Months'] = "Every3Months";
182
182
  FrequencyEnum[FrequencyEnum["Every4Months"] = 'Every 4 Months'] = "Every4Months";
183
+ FrequencyEnum[FrequencyEnum["Every5Months"] = 'Every 5 Months'] = "Every5Months";
183
184
  FrequencyEnum[FrequencyEnum["Every6Months"] = 'Every 6 Months'] = "Every6Months";
184
185
  FrequencyEnum[FrequencyEnum["Yearly"] = 'Yearly'] = "Yearly";
185
186
  FrequencyEnum[FrequencyEnum["Every4Weeks"] = 'Every 4 Weeks'] = "Every4Weeks";
@@ -210,6 +211,7 @@ var AutoOrderItemSimpleSchedule;
210
211
  FrequencyEnum[FrequencyEnum["Every2Months"] = 'Every 2 Months'] = "Every2Months";
211
212
  FrequencyEnum[FrequencyEnum["Every3Months"] = 'Every 3 Months'] = "Every3Months";
212
213
  FrequencyEnum[FrequencyEnum["Every4Months"] = 'Every 4 Months'] = "Every4Months";
214
+ FrequencyEnum[FrequencyEnum["Every5Months"] = 'Every 5 Months'] = "Every5Months";
213
215
  FrequencyEnum[FrequencyEnum["Every6Months"] = 'Every 6 Months'] = "Every6Months";
214
216
  FrequencyEnum[FrequencyEnum["Yearly"] = 'Yearly'] = "Yearly";
215
217
  FrequencyEnum[FrequencyEnum["Every4Weeks"] = 'Every 4 Weeks'] = "Every4Weeks";
@@ -362,6 +364,7 @@ var ChannelPartnerOrderItem;
362
364
  AutoOrderScheduleEnum[AutoOrderScheduleEnum["Every2Months"] = 'Every 2 Months'] = "Every2Months";
363
365
  AutoOrderScheduleEnum[AutoOrderScheduleEnum["Every3Months"] = 'Every 3 Months'] = "Every3Months";
364
366
  AutoOrderScheduleEnum[AutoOrderScheduleEnum["Every4Months"] = 'Every 4 Months'] = "Every4Months";
367
+ AutoOrderScheduleEnum[AutoOrderScheduleEnum["Every5Months"] = 'Every 5 Months'] = "Every5Months";
365
368
  AutoOrderScheduleEnum[AutoOrderScheduleEnum["Every6Months"] = 'Every 6 Months'] = "Every6Months";
366
369
  AutoOrderScheduleEnum[AutoOrderScheduleEnum["Yearly"] = 'Yearly'] = "Yearly";
367
370
  AutoOrderScheduleEnum[AutoOrderScheduleEnum["Every4Weeks"] = 'Every 4 Weeks'] = "Every4Weeks";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.217",
3
+ "version": "3.10.218",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [