@teemill/product-catalog 1.33.1 → 1.35.0
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 +138 -108
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +8 -2
- package/dist/api.d.ts +97 -67
- package/dist/api.js +72 -72
- 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 +3 -2
- package/dist/esm/api.d.ts +97 -67
- package/dist/esm/api.js +72 -72
- 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 +3 -2
- 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/index.ts +1 -1
- package/package.json +1 -1
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.35.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -523,6 +523,12 @@ export interface CreateProductRequest {
|
|
|
523
523
|
* @memberof CreateProductRequest
|
|
524
524
|
*/
|
|
525
525
|
'includeInDataFeeds'?: boolean;
|
|
526
|
+
/**
|
|
527
|
+
* For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
|
|
528
|
+
* @type {number}
|
|
529
|
+
* @memberof CreateProductRequest
|
|
530
|
+
*/
|
|
531
|
+
'shopifyId'?: number;
|
|
526
532
|
/**
|
|
527
533
|
* Key/value pairs that can be used to store additional information about the product
|
|
528
534
|
* @type {Array<MetaField>}
|
|
@@ -642,6 +648,12 @@ export interface CreateProductVariant {
|
|
|
642
648
|
* @memberof CreateProductVariant
|
|
643
649
|
*/
|
|
644
650
|
'applicationSets'?: Array<string>;
|
|
651
|
+
/**
|
|
652
|
+
* For use with the Shopify integration. Use this to provide a Shopify variant ID to link to an existing Shopify variant rather than creating a new one.
|
|
653
|
+
* @type {number}
|
|
654
|
+
* @memberof CreateProductVariant
|
|
655
|
+
*/
|
|
656
|
+
'shopifyId'?: number;
|
|
645
657
|
}
|
|
646
658
|
/**
|
|
647
659
|
*
|
|
@@ -1011,6 +1023,12 @@ export interface Product {
|
|
|
1011
1023
|
* @memberof Product
|
|
1012
1024
|
*/
|
|
1013
1025
|
'includeInDataFeeds'?: boolean;
|
|
1026
|
+
/**
|
|
1027
|
+
* For use with the Shopify integration. The Shopify product ID that this product is linked to.
|
|
1028
|
+
* @type {number}
|
|
1029
|
+
* @memberof Product
|
|
1030
|
+
*/
|
|
1031
|
+
'shopifyId'?: number;
|
|
1014
1032
|
/**
|
|
1015
1033
|
*
|
|
1016
1034
|
* @type {ProductWarehouseProduct}
|
|
@@ -1346,6 +1364,12 @@ export interface UpdateProductRequest {
|
|
|
1346
1364
|
* @memberof UpdateProductRequest
|
|
1347
1365
|
*/
|
|
1348
1366
|
'includeInDataFeeds'?: boolean;
|
|
1367
|
+
/**
|
|
1368
|
+
* For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
|
|
1369
|
+
* @type {number}
|
|
1370
|
+
* @memberof UpdateProductRequest
|
|
1371
|
+
*/
|
|
1372
|
+
'shopifyId'?: number;
|
|
1349
1373
|
/**
|
|
1350
1374
|
* Key/value pairs that can be used to store additional information about the product
|
|
1351
1375
|
* @type {Array<MetaField>}
|
|
@@ -1455,6 +1479,12 @@ export interface Variant {
|
|
|
1455
1479
|
* @memberof Variant
|
|
1456
1480
|
*/
|
|
1457
1481
|
'gtin'?: string | null;
|
|
1482
|
+
/**
|
|
1483
|
+
* For use with the Shopify integration. The Shopify variant ID that this variant is linked to.
|
|
1484
|
+
* @type {number}
|
|
1485
|
+
* @memberof Variant
|
|
1486
|
+
*/
|
|
1487
|
+
'shopifyId'?: number;
|
|
1458
1488
|
/**
|
|
1459
1489
|
* Key/value pairs that can be used to store additional information about the variant
|
|
1460
1490
|
* @type {Array<MetaField>}
|
|
@@ -1910,7 +1940,16 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1910
1940
|
*/
|
|
1911
1941
|
getProduct: (project: string, productId: string, fields?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1912
1942
|
/**
|
|
1913
|
-
*
|
|
1943
|
+
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1944
|
+
* @summary Import products
|
|
1945
|
+
* @param {string} project What project it is
|
|
1946
|
+
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1947
|
+
* @param {*} [options] Override http request option.
|
|
1948
|
+
* @throws {RequiredError}
|
|
1949
|
+
*/
|
|
1950
|
+
importProducts: (project: string, body?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1951
|
+
/**
|
|
1952
|
+
* Lists all store listing products attached to the given project.
|
|
1914
1953
|
* @summary List products
|
|
1915
1954
|
* @param {string} project What project it is
|
|
1916
1955
|
* @param {number} [pageToken] Page reference token
|
|
@@ -1921,16 +1960,7 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1921
1960
|
* @param {*} [options] Override http request option.
|
|
1922
1961
|
* @throws {RequiredError}
|
|
1923
1962
|
*/
|
|
1924
|
-
|
|
1925
|
-
/**
|
|
1926
|
-
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1927
|
-
* @summary Import products
|
|
1928
|
-
* @param {string} project What project it is
|
|
1929
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1930
|
-
* @param {*} [options] Override http request option.
|
|
1931
|
-
* @throws {RequiredError}
|
|
1932
|
-
*/
|
|
1933
|
-
importProducts: (project: string, body?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1963
|
+
listProducts: (project: string, pageToken?: number, search?: string, sortBy?: Array<string>, pageSize?: number, fields?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1934
1964
|
/**
|
|
1935
1965
|
* Updates a product by a given ID.
|
|
1936
1966
|
* @summary Update product
|
|
@@ -1976,7 +2006,16 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
1976
2006
|
*/
|
|
1977
2007
|
getProduct(project: string, productId: string, fields?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
|
|
1978
2008
|
/**
|
|
1979
|
-
*
|
|
2009
|
+
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
2010
|
+
* @summary Import products
|
|
2011
|
+
* @param {string} project What project it is
|
|
2012
|
+
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
2013
|
+
* @param {*} [options] Override http request option.
|
|
2014
|
+
* @throws {RequiredError}
|
|
2015
|
+
*/
|
|
2016
|
+
importProducts(project: string, body?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportProducts200Response>>;
|
|
2017
|
+
/**
|
|
2018
|
+
* Lists all store listing products attached to the given project.
|
|
1980
2019
|
* @summary List products
|
|
1981
2020
|
* @param {string} project What project it is
|
|
1982
2021
|
* @param {number} [pageToken] Page reference token
|
|
@@ -1987,16 +2026,7 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
1987
2026
|
* @param {*} [options] Override http request option.
|
|
1988
2027
|
* @throws {RequiredError}
|
|
1989
2028
|
*/
|
|
1990
|
-
|
|
1991
|
-
/**
|
|
1992
|
-
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1993
|
-
* @summary Import products
|
|
1994
|
-
* @param {string} project What project it is
|
|
1995
|
-
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
1996
|
-
* @param {*} [options] Override http request option.
|
|
1997
|
-
* @throws {RequiredError}
|
|
1998
|
-
*/
|
|
1999
|
-
importProducts(project: string, body?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportProducts200Response>>;
|
|
2029
|
+
listProducts(project: string, pageToken?: number, search?: string, sortBy?: Array<string>, pageSize?: number, fields?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductsResponse>>;
|
|
2000
2030
|
/**
|
|
2001
2031
|
* Updates a product by a given ID.
|
|
2002
2032
|
* @summary Update product
|
|
@@ -2037,14 +2067,6 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
2037
2067
|
* @throws {RequiredError}
|
|
2038
2068
|
*/
|
|
2039
2069
|
getProduct(requestParameters: ProductsApiGetProductRequest, options?: RawAxiosRequestConfig): AxiosPromise<Product>;
|
|
2040
|
-
/**
|
|
2041
|
-
* Lists all enabled store listing products attached to the given project.
|
|
2042
|
-
* @summary List products
|
|
2043
|
-
* @param {ProductsApiGetProductsRequest} requestParameters Request parameters.
|
|
2044
|
-
* @param {*} [options] Override http request option.
|
|
2045
|
-
* @throws {RequiredError}
|
|
2046
|
-
*/
|
|
2047
|
-
getProducts(requestParameters: ProductsApiGetProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductsResponse>;
|
|
2048
2070
|
/**
|
|
2049
2071
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
2050
2072
|
* @summary Import products
|
|
@@ -2053,6 +2075,14 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
2053
2075
|
* @throws {RequiredError}
|
|
2054
2076
|
*/
|
|
2055
2077
|
importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImportProducts200Response>;
|
|
2078
|
+
/**
|
|
2079
|
+
* Lists all store listing products attached to the given project.
|
|
2080
|
+
* @summary List products
|
|
2081
|
+
* @param {ProductsApiListProductsRequest} requestParameters Request parameters.
|
|
2082
|
+
* @param {*} [options] Override http request option.
|
|
2083
|
+
* @throws {RequiredError}
|
|
2084
|
+
*/
|
|
2085
|
+
listProducts(requestParameters: ProductsApiListProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProductsResponse>;
|
|
2056
2086
|
/**
|
|
2057
2087
|
* Updates a product by a given ID.
|
|
2058
2088
|
* @summary Update product
|
|
@@ -2126,67 +2156,67 @@ export interface ProductsApiGetProductRequest {
|
|
|
2126
2156
|
readonly fields?: string;
|
|
2127
2157
|
}
|
|
2128
2158
|
/**
|
|
2129
|
-
* Request parameters for
|
|
2159
|
+
* Request parameters for importProducts operation in ProductsApi.
|
|
2130
2160
|
* @export
|
|
2131
|
-
* @interface
|
|
2161
|
+
* @interface ProductsApiImportProductsRequest
|
|
2132
2162
|
*/
|
|
2133
|
-
export interface
|
|
2163
|
+
export interface ProductsApiImportProductsRequest {
|
|
2134
2164
|
/**
|
|
2135
2165
|
* What project it is
|
|
2136
2166
|
* @type {string}
|
|
2137
|
-
* @memberof
|
|
2167
|
+
* @memberof ProductsApiImportProducts
|
|
2168
|
+
*/
|
|
2169
|
+
readonly project: string;
|
|
2170
|
+
/**
|
|
2171
|
+
* A data URL of a CSV file containing data for one or more products.
|
|
2172
|
+
* @type {string}
|
|
2173
|
+
* @memberof ProductsApiImportProducts
|
|
2174
|
+
*/
|
|
2175
|
+
readonly body?: string;
|
|
2176
|
+
}
|
|
2177
|
+
/**
|
|
2178
|
+
* Request parameters for listProducts operation in ProductsApi.
|
|
2179
|
+
* @export
|
|
2180
|
+
* @interface ProductsApiListProductsRequest
|
|
2181
|
+
*/
|
|
2182
|
+
export interface ProductsApiListProductsRequest {
|
|
2183
|
+
/**
|
|
2184
|
+
* What project it is
|
|
2185
|
+
* @type {string}
|
|
2186
|
+
* @memberof ProductsApiListProducts
|
|
2138
2187
|
*/
|
|
2139
2188
|
readonly project: string;
|
|
2140
2189
|
/**
|
|
2141
2190
|
* Page reference token
|
|
2142
2191
|
* @type {number}
|
|
2143
|
-
* @memberof
|
|
2192
|
+
* @memberof ProductsApiListProducts
|
|
2144
2193
|
*/
|
|
2145
2194
|
readonly pageToken?: number;
|
|
2146
2195
|
/**
|
|
2147
2196
|
* Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
|
|
2148
2197
|
* @type {string}
|
|
2149
|
-
* @memberof
|
|
2198
|
+
* @memberof ProductsApiListProducts
|
|
2150
2199
|
*/
|
|
2151
2200
|
readonly search?: string;
|
|
2152
2201
|
/**
|
|
2153
2202
|
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2154
2203
|
* @type {Array<string>}
|
|
2155
|
-
* @memberof
|
|
2204
|
+
* @memberof ProductsApiListProducts
|
|
2156
2205
|
*/
|
|
2157
2206
|
readonly sortBy?: Array<string>;
|
|
2158
2207
|
/**
|
|
2159
2208
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2160
2209
|
* @type {number}
|
|
2161
|
-
* @memberof
|
|
2210
|
+
* @memberof ProductsApiListProducts
|
|
2162
2211
|
*/
|
|
2163
2212
|
readonly pageSize?: number;
|
|
2164
2213
|
/**
|
|
2165
2214
|
* Filter response fields to only include a subset of the resource.
|
|
2166
2215
|
* @type {string}
|
|
2167
|
-
* @memberof
|
|
2216
|
+
* @memberof ProductsApiListProducts
|
|
2168
2217
|
*/
|
|
2169
2218
|
readonly fields?: string;
|
|
2170
2219
|
}
|
|
2171
|
-
/**
|
|
2172
|
-
* Request parameters for importProducts operation in ProductsApi.
|
|
2173
|
-
* @export
|
|
2174
|
-
* @interface ProductsApiImportProductsRequest
|
|
2175
|
-
*/
|
|
2176
|
-
export interface ProductsApiImportProductsRequest {
|
|
2177
|
-
/**
|
|
2178
|
-
* What project it is
|
|
2179
|
-
* @type {string}
|
|
2180
|
-
* @memberof ProductsApiImportProducts
|
|
2181
|
-
*/
|
|
2182
|
-
readonly project: string;
|
|
2183
|
-
/**
|
|
2184
|
-
* A data URL of a CSV file containing data for one or more products.
|
|
2185
|
-
* @type {string}
|
|
2186
|
-
* @memberof ProductsApiImportProducts
|
|
2187
|
-
*/
|
|
2188
|
-
readonly body?: string;
|
|
2189
|
-
}
|
|
2190
2220
|
/**
|
|
2191
2221
|
* Request parameters for updateProduct operation in ProductsApi.
|
|
2192
2222
|
* @export
|
|
@@ -2247,23 +2277,23 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
2247
2277
|
*/
|
|
2248
2278
|
getProduct(requestParameters: ProductsApiGetProductRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
|
|
2249
2279
|
/**
|
|
2250
|
-
*
|
|
2251
|
-
* @summary
|
|
2252
|
-
* @param {
|
|
2280
|
+
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
2281
|
+
* @summary Import products
|
|
2282
|
+
* @param {ProductsApiImportProductsRequest} requestParameters Request parameters.
|
|
2253
2283
|
* @param {*} [options] Override http request option.
|
|
2254
2284
|
* @throws {RequiredError}
|
|
2255
2285
|
* @memberof ProductsApi
|
|
2256
2286
|
*/
|
|
2257
|
-
|
|
2287
|
+
importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportProducts200Response, any>>;
|
|
2258
2288
|
/**
|
|
2259
|
-
*
|
|
2260
|
-
* @summary
|
|
2261
|
-
* @param {
|
|
2289
|
+
* Lists all store listing products attached to the given project.
|
|
2290
|
+
* @summary List products
|
|
2291
|
+
* @param {ProductsApiListProductsRequest} requestParameters Request parameters.
|
|
2262
2292
|
* @param {*} [options] Override http request option.
|
|
2263
2293
|
* @throws {RequiredError}
|
|
2264
2294
|
* @memberof ProductsApi
|
|
2265
2295
|
*/
|
|
2266
|
-
|
|
2296
|
+
listProducts(requestParameters: ProductsApiListProductsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductsResponse, any>>;
|
|
2267
2297
|
/**
|
|
2268
2298
|
* Updates a product by a given ID.
|
|
2269
2299
|
* @summary Update product
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* 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.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.35.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -654,28 +654,24 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
654
654
|
};
|
|
655
655
|
}),
|
|
656
656
|
/**
|
|
657
|
-
*
|
|
658
|
-
* @summary
|
|
657
|
+
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
658
|
+
* @summary Import products
|
|
659
659
|
* @param {string} project What project it is
|
|
660
|
-
* @param {
|
|
661
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
|
|
662
|
-
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
663
|
-
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
664
|
-
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
660
|
+
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
665
661
|
* @param {*} [options] Override http request option.
|
|
666
662
|
* @throws {RequiredError}
|
|
667
663
|
*/
|
|
668
|
-
|
|
664
|
+
importProducts: (project_1, body_1, ...args_1) => __awaiter(this, [project_1, body_1, ...args_1], void 0, function* (project, body, options = {}) {
|
|
669
665
|
// verify required parameter 'project' is not null or undefined
|
|
670
|
-
(0, common_1.assertParamExists)('
|
|
671
|
-
const localVarPath = `/v1/catalog/products`;
|
|
666
|
+
(0, common_1.assertParamExists)('importProducts', 'project', project);
|
|
667
|
+
const localVarPath = `/v1/catalog/products/import`;
|
|
672
668
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
673
669
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
674
670
|
let baseOptions;
|
|
675
671
|
if (configuration) {
|
|
676
672
|
baseOptions = configuration.baseOptions;
|
|
677
673
|
}
|
|
678
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: '
|
|
674
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
679
675
|
const localVarHeaderParameter = {};
|
|
680
676
|
const localVarQueryParameter = {};
|
|
681
677
|
// authentication session-oauth required
|
|
@@ -686,48 +682,39 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
686
682
|
if (project !== undefined) {
|
|
687
683
|
localVarQueryParameter['project'] = project;
|
|
688
684
|
}
|
|
689
|
-
|
|
690
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
691
|
-
}
|
|
692
|
-
if (search !== undefined) {
|
|
693
|
-
localVarQueryParameter['search'] = search;
|
|
694
|
-
}
|
|
695
|
-
if (sortBy) {
|
|
696
|
-
localVarQueryParameter['sortBy'] = sortBy;
|
|
697
|
-
}
|
|
698
|
-
if (pageSize !== undefined) {
|
|
699
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
700
|
-
}
|
|
701
|
-
if (fields !== undefined) {
|
|
702
|
-
localVarQueryParameter['fields'] = fields;
|
|
703
|
-
}
|
|
685
|
+
localVarHeaderParameter['Content-Type'] = 'text/csv';
|
|
704
686
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
705
687
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
706
688
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
689
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
|
|
707
690
|
return {
|
|
708
691
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
709
692
|
options: localVarRequestOptions,
|
|
710
693
|
};
|
|
711
694
|
}),
|
|
712
695
|
/**
|
|
713
|
-
*
|
|
714
|
-
* @summary
|
|
696
|
+
* Lists all store listing products attached to the given project.
|
|
697
|
+
* @summary List products
|
|
715
698
|
* @param {string} project What project it is
|
|
716
|
-
* @param {
|
|
699
|
+
* @param {number} [pageToken] Page reference token
|
|
700
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
|
|
701
|
+
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
702
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
703
|
+
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
717
704
|
* @param {*} [options] Override http request option.
|
|
718
705
|
* @throws {RequiredError}
|
|
719
706
|
*/
|
|
720
|
-
|
|
707
|
+
listProducts: (project_1, pageToken_1, search_1, sortBy_1, pageSize_1, fields_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, pageSize_1, fields_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, pageSize, fields, options = {}) {
|
|
721
708
|
// verify required parameter 'project' is not null or undefined
|
|
722
|
-
(0, common_1.assertParamExists)('
|
|
723
|
-
const localVarPath = `/v1/catalog/products
|
|
709
|
+
(0, common_1.assertParamExists)('listProducts', 'project', project);
|
|
710
|
+
const localVarPath = `/v1/catalog/products`;
|
|
724
711
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
725
712
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
726
713
|
let baseOptions;
|
|
727
714
|
if (configuration) {
|
|
728
715
|
baseOptions = configuration.baseOptions;
|
|
729
716
|
}
|
|
730
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: '
|
|
717
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
731
718
|
const localVarHeaderParameter = {};
|
|
732
719
|
const localVarQueryParameter = {};
|
|
733
720
|
// authentication session-oauth required
|
|
@@ -738,11 +725,24 @@ const ProductsApiAxiosParamCreator = function (configuration) {
|
|
|
738
725
|
if (project !== undefined) {
|
|
739
726
|
localVarQueryParameter['project'] = project;
|
|
740
727
|
}
|
|
741
|
-
|
|
728
|
+
if (pageToken !== undefined) {
|
|
729
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
730
|
+
}
|
|
731
|
+
if (search !== undefined) {
|
|
732
|
+
localVarQueryParameter['search'] = search;
|
|
733
|
+
}
|
|
734
|
+
if (sortBy) {
|
|
735
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
736
|
+
}
|
|
737
|
+
if (pageSize !== undefined) {
|
|
738
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
739
|
+
}
|
|
740
|
+
if (fields !== undefined) {
|
|
741
|
+
localVarQueryParameter['fields'] = fields;
|
|
742
|
+
}
|
|
742
743
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
743
744
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
744
745
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
745
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
|
|
746
746
|
return {
|
|
747
747
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
748
748
|
options: localVarRequestOptions,
|
|
@@ -854,40 +854,40 @@ const ProductsApiFp = function (configuration) {
|
|
|
854
854
|
});
|
|
855
855
|
},
|
|
856
856
|
/**
|
|
857
|
-
*
|
|
858
|
-
* @summary
|
|
857
|
+
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
858
|
+
* @summary Import products
|
|
859
859
|
* @param {string} project What project it is
|
|
860
|
-
* @param {
|
|
861
|
-
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
|
|
862
|
-
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
863
|
-
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
864
|
-
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
860
|
+
* @param {string} [body] A data URL of a CSV file containing data for one or more products.
|
|
865
861
|
* @param {*} [options] Override http request option.
|
|
866
862
|
* @throws {RequiredError}
|
|
867
863
|
*/
|
|
868
|
-
|
|
864
|
+
importProducts(project, body, options) {
|
|
869
865
|
return __awaiter(this, void 0, void 0, function* () {
|
|
870
866
|
var _a, _b, _c;
|
|
871
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
867
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.importProducts(project, body, options);
|
|
872
868
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
873
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductsApi.
|
|
869
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductsApi.importProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
874
870
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
875
871
|
});
|
|
876
872
|
},
|
|
877
873
|
/**
|
|
878
|
-
*
|
|
879
|
-
* @summary
|
|
874
|
+
* Lists all store listing products attached to the given project.
|
|
875
|
+
* @summary List products
|
|
880
876
|
* @param {string} project What project it is
|
|
881
|
-
* @param {
|
|
877
|
+
* @param {number} [pageToken] Page reference token
|
|
878
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like \'enabled:true\', \'uuid:<id>\', \'name:\"product name\"\', and \'tag:\"tag name\"\'. Multiple filters can be combined with spaces and commas.
|
|
879
|
+
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
880
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
881
|
+
* @param {string} [fields] Filter response fields to only include a subset of the resource.
|
|
882
882
|
* @param {*} [options] Override http request option.
|
|
883
883
|
* @throws {RequiredError}
|
|
884
884
|
*/
|
|
885
|
-
|
|
885
|
+
listProducts(project, pageToken, search, sortBy, pageSize, fields, options) {
|
|
886
886
|
return __awaiter(this, void 0, void 0, function* () {
|
|
887
887
|
var _a, _b, _c;
|
|
888
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.
|
|
888
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listProducts(project, pageToken, search, sortBy, pageSize, fields, options);
|
|
889
889
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
890
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductsApi.
|
|
890
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductsApi.listProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
891
891
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
892
892
|
});
|
|
893
893
|
},
|
|
@@ -949,16 +949,6 @@ const ProductsApiFactory = function (configuration, basePath, axios) {
|
|
|
949
949
|
getProduct(requestParameters, options) {
|
|
950
950
|
return localVarFp.getProduct(requestParameters.project, requestParameters.productId, requestParameters.fields, options).then((request) => request(axios, basePath));
|
|
951
951
|
},
|
|
952
|
-
/**
|
|
953
|
-
* Lists all enabled store listing products attached to the given project.
|
|
954
|
-
* @summary List products
|
|
955
|
-
* @param {ProductsApiGetProductsRequest} requestParameters Request parameters.
|
|
956
|
-
* @param {*} [options] Override http request option.
|
|
957
|
-
* @throws {RequiredError}
|
|
958
|
-
*/
|
|
959
|
-
getProducts(requestParameters, options) {
|
|
960
|
-
return localVarFp.getProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(axios, basePath));
|
|
961
|
-
},
|
|
962
952
|
/**
|
|
963
953
|
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
964
954
|
* @summary Import products
|
|
@@ -969,6 +959,16 @@ const ProductsApiFactory = function (configuration, basePath, axios) {
|
|
|
969
959
|
importProducts(requestParameters, options) {
|
|
970
960
|
return localVarFp.importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(axios, basePath));
|
|
971
961
|
},
|
|
962
|
+
/**
|
|
963
|
+
* Lists all store listing products attached to the given project.
|
|
964
|
+
* @summary List products
|
|
965
|
+
* @param {ProductsApiListProductsRequest} requestParameters Request parameters.
|
|
966
|
+
* @param {*} [options] Override http request option.
|
|
967
|
+
* @throws {RequiredError}
|
|
968
|
+
*/
|
|
969
|
+
listProducts(requestParameters, options) {
|
|
970
|
+
return localVarFp.listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(axios, basePath));
|
|
971
|
+
},
|
|
972
972
|
/**
|
|
973
973
|
* Updates a product by a given ID.
|
|
974
974
|
* @summary Update product
|
|
@@ -1023,26 +1023,26 @@ class ProductsApi extends base_1.BaseAPI {
|
|
|
1023
1023
|
return (0, exports.ProductsApiFp)(this.configuration).getProduct(requestParameters.project, requestParameters.productId, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
|
|
1024
1024
|
}
|
|
1025
1025
|
/**
|
|
1026
|
-
*
|
|
1027
|
-
* @summary
|
|
1028
|
-
* @param {
|
|
1026
|
+
* Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
1027
|
+
* @summary Import products
|
|
1028
|
+
* @param {ProductsApiImportProductsRequest} requestParameters Request parameters.
|
|
1029
1029
|
* @param {*} [options] Override http request option.
|
|
1030
1030
|
* @throws {RequiredError}
|
|
1031
1031
|
* @memberof ProductsApi
|
|
1032
1032
|
*/
|
|
1033
|
-
|
|
1034
|
-
return (0, exports.ProductsApiFp)(this.configuration).
|
|
1033
|
+
importProducts(requestParameters, options) {
|
|
1034
|
+
return (0, exports.ProductsApiFp)(this.configuration).importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
1035
1035
|
}
|
|
1036
1036
|
/**
|
|
1037
|
-
*
|
|
1038
|
-
* @summary
|
|
1039
|
-
* @param {
|
|
1037
|
+
* Lists all store listing products attached to the given project.
|
|
1038
|
+
* @summary List products
|
|
1039
|
+
* @param {ProductsApiListProductsRequest} requestParameters Request parameters.
|
|
1040
1040
|
* @param {*} [options] Override http request option.
|
|
1041
1041
|
* @throws {RequiredError}
|
|
1042
1042
|
* @memberof ProductsApi
|
|
1043
1043
|
*/
|
|
1044
|
-
|
|
1045
|
-
return (0, exports.ProductsApiFp)(this.configuration).
|
|
1044
|
+
listProducts(requestParameters, options) {
|
|
1045
|
+
return (0, exports.ProductsApiFp)(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
1048
|
* Updates a product by a given ID.
|
package/dist/base.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.35.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* 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.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.35.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.35.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* 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.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.35.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.35.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* 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.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.35.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -16,13 +16,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.Configuration = void 0;
|
|
17
17
|
class Configuration {
|
|
18
18
|
constructor(param = {}) {
|
|
19
|
+
var _a;
|
|
19
20
|
this.apiKey = param.apiKey;
|
|
20
21
|
this.username = param.username;
|
|
21
22
|
this.password = param.password;
|
|
22
23
|
this.accessToken = param.accessToken;
|
|
23
24
|
this.basePath = param.basePath;
|
|
24
25
|
this.serverIndex = param.serverIndex;
|
|
25
|
-
this.baseOptions = param.baseOptions;
|
|
26
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/1.35.0/typescript-axios" }) }, param.baseOptions);
|
|
26
27
|
this.formDataCtor = param.formDataCtor;
|
|
27
28
|
}
|
|
28
29
|
/**
|