ultracart_rest_api_v2_typescript 3.10.172 → 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 +3 -2
- package/api.ts +2 -2
- package/dist/api.d.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
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.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.173 --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.173 | 11/20/2023 | item.google_product_search.color bugfix for bad length validation: 20 to 100 |
|
|
57
58
|
| 3.10.172 | 11/13/2023 | coupon - editor values for item tags |
|
|
58
59
|
| 3.10.171 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
|
|
59
60
|
| 3.10.170 | 11/09/2023 | item - new auto order step type: pause until |
|
package/api.ts
CHANGED
|
@@ -94440,7 +94440,7 @@ export const WorkflowApiFp = function(configuration?: Configuration) {
|
|
|
94440
94440
|
* @param {*} [options] Override http request option.
|
|
94441
94441
|
* @throws {RequiredError}
|
|
94442
94442
|
*/
|
|
94443
|
-
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
94443
|
+
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WorkflowTasksResponse> {
|
|
94444
94444
|
const localVarFetchArgs = WorkflowApiFetchParamCreator(configuration).getWorkflowTaskByObjectType(object_type, object_id, options);
|
|
94445
94445
|
return (fetch: FetchAPI = portableFetch, basePath: string = BASE_PATH) => {
|
|
94446
94446
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
@@ -94677,7 +94677,7 @@ export interface WorkflowApiInterface {
|
|
|
94677
94677
|
* @throws {RequiredError}
|
|
94678
94678
|
* @memberof WorkflowApiInterface
|
|
94679
94679
|
*/
|
|
94680
|
-
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<
|
|
94680
|
+
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
|
|
94681
94681
|
|
|
94682
94682
|
/**
|
|
94683
94683
|
* Retrieves a set of workflow tasks from the account based on a query object.
|
package/dist/api.d.ts
CHANGED
|
@@ -61996,7 +61996,7 @@ export declare const WorkflowApiFp: (configuration?: Configuration) => {
|
|
|
61996
61996
|
* @param {*} [options] Override http request option.
|
|
61997
61997
|
* @throws {RequiredError}
|
|
61998
61998
|
*/
|
|
61999
|
-
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
61999
|
+
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WorkflowTasksResponse>;
|
|
62000
62000
|
/**
|
|
62001
62001
|
* Retrieves a set of workflow tasks from the account based on a query object.
|
|
62002
62002
|
* @summary Search workflow tasks
|
|
@@ -62073,7 +62073,7 @@ export declare const WorkflowApiFactory: (configuration?: Configuration, fetch?:
|
|
|
62073
62073
|
* @param {*} [options] Override http request option.
|
|
62074
62074
|
* @throws {RequiredError}
|
|
62075
62075
|
*/
|
|
62076
|
-
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<
|
|
62076
|
+
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
|
|
62077
62077
|
/**
|
|
62078
62078
|
* Retrieves a set of workflow tasks from the account based on a query object.
|
|
62079
62079
|
* @summary Search workflow tasks
|
|
@@ -62156,7 +62156,7 @@ export interface WorkflowApiInterface {
|
|
|
62156
62156
|
* @throws {RequiredError}
|
|
62157
62157
|
* @memberof WorkflowApiInterface
|
|
62158
62158
|
*/
|
|
62159
|
-
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<
|
|
62159
|
+
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
|
|
62160
62160
|
/**
|
|
62161
62161
|
* Retrieves a set of workflow tasks from the account based on a query object.
|
|
62162
62162
|
* @summary Search workflow tasks
|
|
@@ -62243,7 +62243,7 @@ export declare class WorkflowApi extends BaseAPI implements WorkflowApiInterface
|
|
|
62243
62243
|
* @throws {RequiredError}
|
|
62244
62244
|
* @memberof WorkflowApi
|
|
62245
62245
|
*/
|
|
62246
|
-
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<
|
|
62246
|
+
getWorkflowTaskByObjectType(object_type: string, object_id: string, options?: any): Promise<WorkflowTasksResponse>;
|
|
62247
62247
|
/**
|
|
62248
62248
|
* Retrieves a set of workflow tasks from the account based on a query object.
|
|
62249
62249
|
* @summary Search workflow tasks
|