ultracart_rest_api_v2_typescript 3.10.171 → 3.10.173

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.171
1
+ ## ultracart_rest_api_v2_typescript@3.10.173
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.171 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.173 --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.173 | 11/20/2023 | item.google_product_search.color bugfix for bad length validation: 20 to 100 |
58
+ | 3.10.172 | 11/13/2023 | coupon - editor values for item tags |
57
59
  | 3.10.171 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
58
60
  | 3.10.170 | 11/09/2023 | item - new auto order step type: pause until |
59
61
  | 3.10.169 | 11/06/2023 | customer api - added wishlist methods |
package/api.ts CHANGED
@@ -10588,6 +10588,12 @@ export interface CouponEditorValues {
10588
10588
  * @memberof CouponEditorValues
10589
10589
  */
10590
10590
  deprecated_themes?: Array<SimpleValue>;
10591
+ /**
10592
+ * Item tags
10593
+ * @type {Array<string>}
10594
+ * @memberof CouponEditorValues
10595
+ */
10596
+ item_tags?: Array<string>;
10591
10597
  /**
10592
10598
  * mix_and_match_names
10593
10599
  * @type {Array<string>}
@@ -94434,7 +94440,7 @@ export const WorkflowApiFp = function(configuration?: Configuration) {
94434
94440
  * @param {*} [options] Override http request option.
94435
94441
  * @throws {RequiredError}
94436
94442
  */
94437
- getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WorkflowTaskResponse> {
94443
+ getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WorkflowTasksResponse> {
94438
94444
  const localVarFetchArgs = WorkflowApiFetchParamCreator(configuration).getWorkflowTaskByObjectType(object_type, object_id, options);
94439
94445
  return (fetch: FetchAPI = portableFetch, basePath: string = BASE_PATH) => {
94440
94446
  return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
@@ -94671,7 +94677,7 @@ export interface WorkflowApiInterface {
94671
94677
  * @throws {RequiredError}
94672
94678
  * @memberof WorkflowApiInterface
94673
94679
  */
94674
- getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTaskResponse>;
94680
+ getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
94675
94681
 
94676
94682
  /**
94677
94683
  * Retrieves a set of workflow tasks from the account based on a query object.
package/dist/api.d.ts CHANGED
@@ -10336,6 +10336,12 @@ export interface CouponEditorValues {
10336
10336
  * @memberof CouponEditorValues
10337
10337
  */
10338
10338
  deprecated_themes?: Array<SimpleValue>;
10339
+ /**
10340
+ * Item tags
10341
+ * @type {Array<string>}
10342
+ * @memberof CouponEditorValues
10343
+ */
10344
+ item_tags?: Array<string>;
10339
10345
  /**
10340
10346
  * mix_and_match_names
10341
10347
  * @type {Array<string>}
@@ -61990,7 +61996,7 @@ export declare const WorkflowApiFp: (configuration?: Configuration) => {
61990
61996
  * @param {*} [options] Override http request option.
61991
61997
  * @throws {RequiredError}
61992
61998
  */
61993
- getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WorkflowTaskResponse>;
61999
+ getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WorkflowTasksResponse>;
61994
62000
  /**
61995
62001
  * Retrieves a set of workflow tasks from the account based on a query object.
61996
62002
  * @summary Search workflow tasks
@@ -62067,7 +62073,7 @@ export declare const WorkflowApiFactory: (configuration?: Configuration, fetch?:
62067
62073
  * @param {*} [options] Override http request option.
62068
62074
  * @throws {RequiredError}
62069
62075
  */
62070
- getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTaskResponse>;
62076
+ getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
62071
62077
  /**
62072
62078
  * Retrieves a set of workflow tasks from the account based on a query object.
62073
62079
  * @summary Search workflow tasks
@@ -62150,7 +62156,7 @@ export interface WorkflowApiInterface {
62150
62156
  * @throws {RequiredError}
62151
62157
  * @memberof WorkflowApiInterface
62152
62158
  */
62153
- getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTaskResponse>;
62159
+ getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
62154
62160
  /**
62155
62161
  * Retrieves a set of workflow tasks from the account based on a query object.
62156
62162
  * @summary Search workflow tasks
@@ -62237,7 +62243,7 @@ export declare class WorkflowApi extends BaseAPI implements WorkflowApiInterface
62237
62243
  * @throws {RequiredError}
62238
62244
  * @memberof WorkflowApi
62239
62245
  */
62240
- getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTaskResponse>;
62246
+ getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
62241
62247
  /**
62242
62248
  * Retrieves a set of workflow tasks from the account based on a query object.
62243
62249
  * @summary Search workflow tasks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.171",
3
+ "version": "3.10.173",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [