ultracart_rest_api_v2_typescript 4.0.173 → 4.0.174

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@4.0.173
1
+ ## ultracart_rest_api_v2_typescript@4.0.174
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@4.0.173 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.174 --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
+ | 4.0.174 | 09/05/2023 | auto order schedule - add intervals for 4 6 and 8 weeks |
57
58
  | 4.0.173 | 08/31/2023 | new coupon - free item and free shipping with purchase |
58
59
  | 4.0.172 | 08/16/2023 | added validate_original_order query param to auto order update method |
59
60
  | 4.0.171 | 08/14/2023 | esp - add require_order_within_last to the settings object |
@@ -192,6 +192,9 @@ export declare const AutoOrderItemFrequencyEnum: {
192
192
  readonly Every4Months: "Every 4 Months";
193
193
  readonly Every6Months: "Every 6 Months";
194
194
  readonly Yearly: "Yearly";
195
+ readonly Every4Weeks: "Every 4 Weeks";
196
+ readonly Every6Weeks: "Every 6 Weeks";
197
+ readonly Every8Weeks: "Every 8 Weeks";
195
198
  };
196
199
  export type AutoOrderItemFrequencyEnum = typeof AutoOrderItemFrequencyEnum[keyof typeof AutoOrderItemFrequencyEnum];
197
200
  export declare function AutoOrderItemFromJSON(json: any): AutoOrderItem;
@@ -34,7 +34,10 @@ exports.AutoOrderItemFrequencyEnum = {
34
34
  Every3Months: 'Every 3 Months',
35
35
  Every4Months: 'Every 4 Months',
36
36
  Every6Months: 'Every 6 Months',
37
- Yearly: 'Yearly'
37
+ Yearly: 'Yearly',
38
+ Every4Weeks: 'Every 4 Weeks',
39
+ Every6Weeks: 'Every 6 Weeks',
40
+ Every8Weeks: 'Every 8 Weeks'
38
41
  };
39
42
  function AutoOrderItemFromJSON(json) {
40
43
  return AutoOrderItemFromJSONTyped(json, false);
@@ -51,6 +51,9 @@ export declare const AutoOrderItemSimpleScheduleFrequencyEnum: {
51
51
  readonly Every4Months: "Every 4 Months";
52
52
  readonly Every6Months: "Every 6 Months";
53
53
  readonly Yearly: "Yearly";
54
+ readonly Every4Weeks: "Every 4 Weeks";
55
+ readonly Every6Weeks: "Every 6 Weeks";
56
+ readonly Every8Weeks: "Every 8 Weeks";
54
57
  };
55
58
  export type AutoOrderItemSimpleScheduleFrequencyEnum = typeof AutoOrderItemSimpleScheduleFrequencyEnum[keyof typeof AutoOrderItemSimpleScheduleFrequencyEnum];
56
59
  export declare function AutoOrderItemSimpleScheduleFromJSON(json: any): AutoOrderItemSimpleSchedule;
@@ -31,7 +31,10 @@ exports.AutoOrderItemSimpleScheduleFrequencyEnum = {
31
31
  Every3Months: 'Every 3 Months',
32
32
  Every4Months: 'Every 4 Months',
33
33
  Every6Months: 'Every 6 Months',
34
- Yearly: 'Yearly'
34
+ Yearly: 'Yearly',
35
+ Every4Weeks: 'Every 4 Weeks',
36
+ Every6Weeks: 'Every 6 Weeks',
37
+ Every8Weeks: 'Every 8 Weeks'
35
38
  };
36
39
  function AutoOrderItemSimpleScheduleFromJSON(json) {
37
40
  return AutoOrderItemSimpleScheduleFromJSONTyped(json, false);
@@ -75,6 +75,9 @@ export declare const ChannelPartnerOrderItemAutoOrderScheduleEnum: {
75
75
  readonly Every4Months: "Every 4 Months";
76
76
  readonly Every6Months: "Every 6 Months";
77
77
  readonly Yearly: "Yearly";
78
+ readonly Every4Weeks: "Every 4 Weeks";
79
+ readonly Every6Weeks: "Every 6 Weeks";
80
+ readonly Every8Weeks: "Every 8 Weeks";
78
81
  };
79
82
  export type ChannelPartnerOrderItemAutoOrderScheduleEnum = typeof ChannelPartnerOrderItemAutoOrderScheduleEnum[keyof typeof ChannelPartnerOrderItemAutoOrderScheduleEnum];
80
83
  export declare function ChannelPartnerOrderItemFromJSON(json: any): ChannelPartnerOrderItem;
@@ -31,7 +31,10 @@ exports.ChannelPartnerOrderItemAutoOrderScheduleEnum = {
31
31
  Every3Months: 'Every 3 Months',
32
32
  Every4Months: 'Every 4 Months',
33
33
  Every6Months: 'Every 6 Months',
34
- Yearly: 'Yearly'
34
+ Yearly: 'Yearly',
35
+ Every4Weeks: 'Every 4 Weeks',
36
+ Every6Weeks: 'Every 6 Weeks',
37
+ Every8Weeks: 'Every 8 Weeks'
35
38
  };
36
39
  function ChannelPartnerOrderItemFromJSON(json) {
37
40
  return ChannelPartnerOrderItemFromJSONTyped(json, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.173",
3
+ "version": "4.0.174",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -213,7 +213,10 @@ export const AutoOrderItemFrequencyEnum = {
213
213
  Every3Months: 'Every 3 Months',
214
214
  Every4Months: 'Every 4 Months',
215
215
  Every6Months: 'Every 6 Months',
216
- Yearly: 'Yearly'
216
+ Yearly: 'Yearly',
217
+ Every4Weeks: 'Every 4 Weeks',
218
+ Every6Weeks: 'Every 6 Weeks',
219
+ Every8Weeks: 'Every 8 Weeks'
217
220
  } as const;
218
221
  export type AutoOrderItemFrequencyEnum = typeof AutoOrderItemFrequencyEnum[keyof typeof AutoOrderItemFrequencyEnum];
219
222
 
@@ -56,7 +56,10 @@ export const AutoOrderItemSimpleScheduleFrequencyEnum = {
56
56
  Every3Months: 'Every 3 Months',
57
57
  Every4Months: 'Every 4 Months',
58
58
  Every6Months: 'Every 6 Months',
59
- Yearly: 'Yearly'
59
+ Yearly: 'Yearly',
60
+ Every4Weeks: 'Every 4 Weeks',
61
+ Every6Weeks: 'Every 6 Weeks',
62
+ Every8Weeks: 'Every 8 Weeks'
60
63
  } as const;
61
64
  export type AutoOrderItemSimpleScheduleFrequencyEnum = typeof AutoOrderItemSimpleScheduleFrequencyEnum[keyof typeof AutoOrderItemSimpleScheduleFrequencyEnum];
62
65
 
@@ -86,7 +86,10 @@ export const ChannelPartnerOrderItemAutoOrderScheduleEnum = {
86
86
  Every3Months: 'Every 3 Months',
87
87
  Every4Months: 'Every 4 Months',
88
88
  Every6Months: 'Every 6 Months',
89
- Yearly: 'Yearly'
89
+ Yearly: 'Yearly',
90
+ Every4Weeks: 'Every 4 Weeks',
91
+ Every6Weeks: 'Every 6 Weeks',
92
+ Every8Weeks: 'Every 8 Weeks'
90
93
  } as const;
91
94
  export type ChannelPartnerOrderItemAutoOrderScheduleEnum = typeof ChannelPartnerOrderItemAutoOrderScheduleEnum[keyof typeof ChannelPartnerOrderItemAutoOrderScheduleEnum];
92
95