@teemill/product-catalog 1.81.0 → 1.81.2
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 +2 -2
- package/api.ts +35 -46
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +10 -10
- package/dist/api.js +31 -7
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +10 -10
- package/dist/esm/api.js +31 -7
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/ApplicationSetsApi.md +2 -2
- package/docs/ProductsApi.md +2 -2
- package/docs/VariantsApi.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.81.
|
|
1
|
+
## @teemill/product-catalog@1.81.2
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 @teemill/product-catalog@1.81.
|
|
39
|
+
npm install @teemill/product-catalog@1.81.2 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.81.
|
|
7
|
+
* The version of the OpenAPI document: 1.81.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -18,7 +18,7 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
18
18
|
import globalAxios from 'axios';
|
|
19
19
|
// Some imports not used depending on template conditions
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from './common';
|
|
22
22
|
import type { RequestArgs } from './base';
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
|
|
@@ -1903,9 +1903,8 @@ export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: C
|
|
|
1903
1903
|
localVarQueryParameter['project'] = project;
|
|
1904
1904
|
}
|
|
1905
1905
|
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
1906
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1907
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1909
1908
|
|
|
1910
1909
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1911
1910
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1954,8 +1953,8 @@ export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: C
|
|
|
1954
1953
|
localVarQueryParameter['project'] = project;
|
|
1955
1954
|
}
|
|
1956
1955
|
|
|
1956
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1957
1957
|
|
|
1958
|
-
|
|
1959
1958
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1960
1959
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1961
1960
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2002,8 +2001,8 @@ export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: C
|
|
|
2002
2001
|
localVarQueryParameter['project'] = project;
|
|
2003
2002
|
}
|
|
2004
2003
|
|
|
2004
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2005
2005
|
|
|
2006
|
-
|
|
2007
2006
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2008
2007
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2009
2008
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2061,8 +2060,8 @@ export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: C
|
|
|
2061
2060
|
localVarQueryParameter['pageSize'] = pageSize;
|
|
2062
2061
|
}
|
|
2063
2062
|
|
|
2063
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2064
2064
|
|
|
2065
|
-
|
|
2066
2065
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2067
2066
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2068
2067
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2110,9 +2109,8 @@ export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: C
|
|
|
2110
2109
|
localVarQueryParameter['project'] = project;
|
|
2111
2110
|
}
|
|
2112
2111
|
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
2112
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2113
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2116
2114
|
|
|
2117
2115
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2118
2116
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2459,9 +2457,8 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2459
2457
|
localVarQueryParameter['project'] = project;
|
|
2460
2458
|
}
|
|
2461
2459
|
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
2460
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2461
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2465
2462
|
|
|
2466
2463
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2467
2464
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2510,8 +2507,8 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2510
2507
|
localVarQueryParameter['project'] = project;
|
|
2511
2508
|
}
|
|
2512
2509
|
|
|
2510
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2513
2511
|
|
|
2514
|
-
|
|
2515
2512
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2516
2513
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2517
2514
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2558,8 +2555,8 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2558
2555
|
localVarQueryParameter['project'] = project;
|
|
2559
2556
|
}
|
|
2560
2557
|
|
|
2558
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2561
2559
|
|
|
2562
|
-
|
|
2563
2560
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2564
2561
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2565
2562
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2574,7 +2571,7 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2574
2571
|
* @summary List application sets
|
|
2575
2572
|
* @param {string} project What project it is
|
|
2576
2573
|
* @param {number} [pageToken] Page reference token
|
|
2577
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2574
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2578
2575
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2579
2576
|
* @param {*} [options] Override http request option.
|
|
2580
2577
|
* @throws {RequiredError}
|
|
@@ -2617,8 +2614,8 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2617
2614
|
localVarQueryParameter['pageSize'] = pageSize;
|
|
2618
2615
|
}
|
|
2619
2616
|
|
|
2617
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2620
2618
|
|
|
2621
|
-
|
|
2622
2619
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2623
2620
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2624
2621
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2666,9 +2663,8 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
|
|
|
2666
2663
|
localVarQueryParameter['project'] = project;
|
|
2667
2664
|
}
|
|
2668
2665
|
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
2666
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2667
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2672
2668
|
|
|
2673
2669
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2674
2670
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2736,7 +2732,7 @@ export const ApplicationSetsApiFp = function(configuration?: Configuration) {
|
|
|
2736
2732
|
* @summary List application sets
|
|
2737
2733
|
* @param {string} project What project it is
|
|
2738
2734
|
* @param {number} [pageToken] Page reference token
|
|
2739
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2735
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2740
2736
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2741
2737
|
* @param {*} [options] Override http request option.
|
|
2742
2738
|
* @throws {RequiredError}
|
|
@@ -2884,7 +2880,7 @@ export interface ApplicationSetsApiListApplicationSetsRequest {
|
|
|
2884
2880
|
readonly pageToken?: number
|
|
2885
2881
|
|
|
2886
2882
|
/**
|
|
2887
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2883
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2888
2884
|
*/
|
|
2889
2885
|
readonly search?: string
|
|
2890
2886
|
|
|
@@ -3014,8 +3010,8 @@ export const ApplicationTechnologiesApiAxiosParamCreator = function (configurati
|
|
|
3014
3010
|
localVarQueryParameter['project'] = project;
|
|
3015
3011
|
}
|
|
3016
3012
|
|
|
3013
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3017
3014
|
|
|
3018
|
-
|
|
3019
3015
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3020
3016
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3021
3017
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3136,9 +3132,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3136
3132
|
localVarQueryParameter['project'] = project;
|
|
3137
3133
|
}
|
|
3138
3134
|
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
3135
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3136
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3142
3137
|
|
|
3143
3138
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3144
3139
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3187,8 +3182,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3187
3182
|
localVarQueryParameter['project'] = project;
|
|
3188
3183
|
}
|
|
3189
3184
|
|
|
3185
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3190
3186
|
|
|
3191
|
-
|
|
3192
3187
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3193
3188
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3194
3189
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3234,9 +3229,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3234
3229
|
localVarQueryParameter['project'] = project;
|
|
3235
3230
|
}
|
|
3236
3231
|
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
3232
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3233
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3240
3234
|
|
|
3241
3235
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3242
3236
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3282,9 +3276,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3282
3276
|
localVarQueryParameter['project'] = project;
|
|
3283
3277
|
}
|
|
3284
3278
|
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
3279
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3280
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3288
3281
|
|
|
3289
3282
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3290
3283
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3329,8 +3322,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3329
3322
|
localVarQueryParameter['project'] = project;
|
|
3330
3323
|
}
|
|
3331
3324
|
|
|
3325
|
+
localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
|
|
3332
3326
|
|
|
3333
|
-
|
|
3334
3327
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3335
3328
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3336
3329
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3382,8 +3375,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3382
3375
|
localVarQueryParameter['fields'] = fields;
|
|
3383
3376
|
}
|
|
3384
3377
|
|
|
3378
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3385
3379
|
|
|
3386
|
-
|
|
3387
3380
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3388
3381
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3389
3382
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3427,9 +3420,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3427
3420
|
localVarQueryParameter['project'] = project;
|
|
3428
3421
|
}
|
|
3429
3422
|
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
3423
|
localVarHeaderParameter['Content-Type'] = 'text/plain; charset=utf-8';
|
|
3424
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3433
3425
|
|
|
3434
3426
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3435
3427
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3446,7 +3438,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3446
3438
|
* @summary List products
|
|
3447
3439
|
* @param {string} project What project it is
|
|
3448
3440
|
* @param {number} [pageToken] Page reference token
|
|
3449
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3441
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3450
3442
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
3451
3443
|
* @param {string} [start] Start of date range to filter
|
|
3452
3444
|
* @param {string} [end] End of date range to filter
|
|
@@ -3518,8 +3510,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3518
3510
|
localVarQueryParameter['fields'] = fields;
|
|
3519
3511
|
}
|
|
3520
3512
|
|
|
3513
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3521
3514
|
|
|
3522
|
-
|
|
3523
3515
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3524
3516
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3525
3517
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3563,9 +3555,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3563
3555
|
localVarQueryParameter['project'] = project;
|
|
3564
3556
|
}
|
|
3565
3557
|
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
3558
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3559
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3569
3560
|
|
|
3570
3561
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3571
3562
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3615,9 +3606,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3615
3606
|
localVarQueryParameter['project'] = project;
|
|
3616
3607
|
}
|
|
3617
3608
|
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
3609
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3610
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3621
3611
|
|
|
3622
3612
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3623
3613
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3665,9 +3655,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
3665
3655
|
localVarQueryParameter['project'] = project;
|
|
3666
3656
|
}
|
|
3667
3657
|
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
3658
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3659
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3671
3660
|
|
|
3672
3661
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3673
3662
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3791,7 +3780,7 @@ export const ProductsApiFp = function(configuration?: Configuration) {
|
|
|
3791
3780
|
* @summary List products
|
|
3792
3781
|
* @param {string} project What project it is
|
|
3793
3782
|
* @param {number} [pageToken] Page reference token
|
|
3794
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3783
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3795
3784
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
3796
3785
|
* @param {string} [start] Start of date range to filter
|
|
3797
3786
|
* @param {string} [end] End of date range to filter
|
|
@@ -4089,7 +4078,7 @@ export interface ProductsApiListProductsRequest {
|
|
|
4089
4078
|
readonly pageToken?: number
|
|
4090
4079
|
|
|
4091
4080
|
/**
|
|
4092
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4081
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4093
4082
|
*/
|
|
4094
4083
|
readonly search?: string
|
|
4095
4084
|
|
|
@@ -4351,8 +4340,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4351
4340
|
localVarQueryParameter['fields'] = fields;
|
|
4352
4341
|
}
|
|
4353
4342
|
|
|
4343
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4354
4344
|
|
|
4355
|
-
|
|
4356
4345
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4357
4346
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4358
4347
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4366,7 +4355,7 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4366
4355
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
4367
4356
|
* @summary List variants
|
|
4368
4357
|
* @param {string} project What project it is
|
|
4369
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4358
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4370
4359
|
* @param {number} [pageToken] Page reference token
|
|
4371
4360
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4372
4361
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -4415,8 +4404,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
4415
4404
|
localVarQueryParameter['fields'] = fields;
|
|
4416
4405
|
}
|
|
4417
4406
|
|
|
4407
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
4418
4408
|
|
|
4419
|
-
|
|
4420
4409
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4421
4410
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4422
4411
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4454,7 +4443,7 @@ export const VariantsApiFp = function(configuration?: Configuration) {
|
|
|
4454
4443
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
4455
4444
|
* @summary List variants
|
|
4456
4445
|
* @param {string} project What project it is
|
|
4457
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4446
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4458
4447
|
* @param {number} [pageToken] Page reference token
|
|
4459
4448
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4460
4449
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -4529,7 +4518,7 @@ export interface VariantsApiListVariantsRequest {
|
|
|
4529
4518
|
readonly project: string
|
|
4530
4519
|
|
|
4531
4520
|
/**
|
|
4532
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
4521
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
4533
4522
|
*/
|
|
4534
4523
|
readonly search?: string
|
|
4535
4524
|
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.81.
|
|
7
|
+
* The version of the OpenAPI document: 1.81.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.81.
|
|
7
|
+
* The version of the OpenAPI document: 1.81.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Product Catalog API
|
|
4
4
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.81.
|
|
6
|
+
* The version of the OpenAPI document: 1.81.2
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.81.
|
|
5
|
+
* The version of the OpenAPI document: 1.81.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2113,7 +2113,7 @@ export declare const ApplicationSetsApiAxiosParamCreator: (configuration?: Confi
|
|
|
2113
2113
|
* @summary List application sets
|
|
2114
2114
|
* @param {string} project What project it is
|
|
2115
2115
|
* @param {number} [pageToken] Page reference token
|
|
2116
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2116
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2117
2117
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2118
2118
|
* @param {*} [options] Override http request option.
|
|
2119
2119
|
* @throws {RequiredError}
|
|
@@ -2166,7 +2166,7 @@ export declare const ApplicationSetsApiFp: (configuration?: Configuration) => {
|
|
|
2166
2166
|
* @summary List application sets
|
|
2167
2167
|
* @param {string} project What project it is
|
|
2168
2168
|
* @param {number} [pageToken] Page reference token
|
|
2169
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2169
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2170
2170
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2171
2171
|
* @param {*} [options] Override http request option.
|
|
2172
2172
|
* @throws {RequiredError}
|
|
@@ -2280,7 +2280,7 @@ export interface ApplicationSetsApiListApplicationSetsRequest {
|
|
|
2280
2280
|
*/
|
|
2281
2281
|
readonly pageToken?: number;
|
|
2282
2282
|
/**
|
|
2283
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2283
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2284
2284
|
*/
|
|
2285
2285
|
readonly search?: string;
|
|
2286
2286
|
/**
|
|
@@ -2483,7 +2483,7 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2483
2483
|
* @summary List products
|
|
2484
2484
|
* @param {string} project What project it is
|
|
2485
2485
|
* @param {number} [pageToken] Page reference token
|
|
2486
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2486
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2487
2487
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2488
2488
|
* @param {string} [start] Start of date range to filter
|
|
2489
2489
|
* @param {string} [end] End of date range to filter
|
|
@@ -2595,7 +2595,7 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
2595
2595
|
* @summary List products
|
|
2596
2596
|
* @param {string} project What project it is
|
|
2597
2597
|
* @param {number} [pageToken] Page reference token
|
|
2598
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2598
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2599
2599
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2600
2600
|
* @param {string} [start] Start of date range to filter
|
|
2601
2601
|
* @param {string} [end] End of date range to filter
|
|
@@ -2829,7 +2829,7 @@ export interface ProductsApiListProductsRequest {
|
|
|
2829
2829
|
*/
|
|
2830
2830
|
readonly pageToken?: number;
|
|
2831
2831
|
/**
|
|
2832
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
2832
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
2833
2833
|
*/
|
|
2834
2834
|
readonly search?: string;
|
|
2835
2835
|
/**
|
|
@@ -3013,7 +3013,7 @@ export declare const VariantsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3013
3013
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
3014
3014
|
* @summary List variants
|
|
3015
3015
|
* @param {string} project What project it is
|
|
3016
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3016
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3017
3017
|
* @param {number} [pageToken] Page reference token
|
|
3018
3018
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3019
3019
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -3040,7 +3040,7 @@ export declare const VariantsApiFp: (configuration?: Configuration) => {
|
|
|
3040
3040
|
* Lists all variants that belong to enabled products attached to the given project.
|
|
3041
3041
|
* @summary List variants
|
|
3042
3042
|
* @param {string} project What project it is
|
|
3043
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3043
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3044
3044
|
* @param {number} [pageToken] Page reference token
|
|
3045
3045
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3046
3046
|
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
@@ -3096,7 +3096,7 @@ export interface VariantsApiListVariantsRequest {
|
|
|
3096
3096
|
*/
|
|
3097
3097
|
readonly project: string;
|
|
3098
3098
|
/**
|
|
3099
|
-
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\',
|
|
3099
|
+
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', \'tag:\"tag name\"\', and \'type:product,template,bundle\'. Multiple filters can be combined with spaces and commas.
|
|
3100
3100
|
*/
|
|
3101
3101
|
readonly search?: string;
|
|
3102
3102
|
/**
|