ultracart_rest_api_v2_typescript 4.0.215 → 4.0.216

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.215
1
+ ## ultracart_rest_api_v2_typescript@4.0.216
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.215 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.216 --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.216 | 05/13/2024 | conversation pbx - allow nullable day of week in time range |
57
58
  | 4.0.215 | 05/08/2024 | added echeck fields to channel partner order import |
58
59
  | 4.0.214 | 05/02/2024 | conversation - new method to load pbx audio usage |
59
60
  | 4.0.213 | 05/02/2024 | autoorder - fields to record merge association and tstamp |
@@ -21,6 +21,12 @@ export interface CartCheckout {
21
21
  * @memberof CartCheckout
22
22
  */
23
23
  comments?: string;
24
+ /**
25
+ * Current step of the checkout (read only)
26
+ * @type {string}
27
+ * @memberof CartCheckout
28
+ */
29
+ current_step?: string;
24
30
  /**
25
31
  * Custom field 1
26
32
  * @type {string}
@@ -25,6 +25,7 @@ function CartCheckoutFromJSONTyped(json, ignoreDiscriminator) {
25
25
  }
26
26
  return {
27
27
  'comments': !(0, runtime_1.exists)(json, 'comments') ? undefined : json['comments'],
28
+ 'current_step': !(0, runtime_1.exists)(json, 'current_step') ? undefined : json['current_step'],
28
29
  'custom_field1': !(0, runtime_1.exists)(json, 'custom_field1') ? undefined : json['custom_field1'],
29
30
  'custom_field10': !(0, runtime_1.exists)(json, 'custom_field10') ? undefined : json['custom_field10'],
30
31
  'custom_field2': !(0, runtime_1.exists)(json, 'custom_field2') ? undefined : json['custom_field2'],
@@ -53,6 +54,7 @@ function CartCheckoutToJSON(value) {
53
54
  }
54
55
  return {
55
56
  'comments': value.comments,
57
+ 'current_step': value.current_step,
56
58
  'custom_field1': value.custom_field1,
57
59
  'custom_field10': value.custom_field10,
58
60
  'custom_field2': value.custom_field2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.215",
3
+ "version": "4.0.216",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -25,6 +25,12 @@ export interface CartCheckout {
25
25
  * @memberof CartCheckout
26
26
  */
27
27
  comments?: string;
28
+ /**
29
+ * Current step of the checkout (read only)
30
+ * @type {string}
31
+ * @memberof CartCheckout
32
+ */
33
+ current_step?: string;
28
34
  /**
29
35
  * Custom field 1
30
36
  * @type {string}
@@ -134,6 +140,7 @@ export function CartCheckoutFromJSONTyped(json: any, ignoreDiscriminator: boolea
134
140
  return {
135
141
 
136
142
  'comments': !exists(json, 'comments') ? undefined : json['comments'],
143
+ 'current_step': !exists(json, 'current_step') ? undefined : json['current_step'],
137
144
  'custom_field1': !exists(json, 'custom_field1') ? undefined : json['custom_field1'],
138
145
  'custom_field10': !exists(json, 'custom_field10') ? undefined : json['custom_field10'],
139
146
  'custom_field2': !exists(json, 'custom_field2') ? undefined : json['custom_field2'],
@@ -163,6 +170,7 @@ export function CartCheckoutToJSON(value?: CartCheckout | null): any {
163
170
  return {
164
171
 
165
172
  'comments': value.comments,
173
+ 'current_step': value.current_step,
166
174
  'custom_field1': value.custom_field1,
167
175
  'custom_field10': value.custom_field10,
168
176
  'custom_field2': value.custom_field2,