@teemill/product-catalog 1.85.0 → 1.87.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 +10 -2
- package/api.ts +424 -17
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +249 -11
- package/dist/api.js +261 -16
- 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 +249 -11
- package/dist/esm/api.js +255 -15
- 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/Action.md +32 -0
- package/docs/AnalyticsSummary.md +26 -0
- package/docs/ProductAnalyticsApi.md +85 -6
- package/docs/ProductCreatorsApi.md +63 -0
- package/docs/Recommendation.md +34 -0
- package/docs/UserList.md +20 -0
- package/docs/UserListCreatorsInner.md +24 -0
- package/docs/UserListCreatorsInnerAvatar.md +22 -0
- package/index.ts +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ All URIs are relative to *https://api.podos.io*
|
|
|
5
5
|
|Method | HTTP request | Description|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
7
|
|[**exportProductAnalytics**](#exportproductanalytics) | **GET** /v1/catalog/analytics/export | Export product analytics|
|
|
8
|
+
|[**getProductAnalyticsSummary**](#getproductanalyticssummary) | **GET** /v1/catalog/analytics/summary | Get product analytics summary|
|
|
8
9
|
|[**listProductAnalytics**](#listproductanalytics) | **GET** /v1/catalog/analytics | List product analytics|
|
|
9
10
|
|
|
10
11
|
# **exportProductAnalytics**
|
|
@@ -25,7 +26,7 @@ const apiInstance = new ProductAnalyticsApi(configuration);
|
|
|
25
26
|
|
|
26
27
|
let project: string; //What project it is (default to undefined)
|
|
27
28
|
let sortBy: Array<string>; //An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. (optional) (default to undefined)
|
|
28
|
-
let search: string; //Search query string to filter results. Supports field-specific filters like: \'
|
|
29
|
+
let search: string; //Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\' (optional) (default to undefined)
|
|
29
30
|
let dateRangeStartDate: string; //Start date for the date range filter (ISO 8601 format) (optional) (default to undefined)
|
|
30
31
|
let dateRangeEndDate: string; //End date for the date range filter (ISO 8601 format) (optional) (default to undefined)
|
|
31
32
|
let minimumRevenue: number; //Filter to only include products with total revenue greater than or equal to this amount (optional) (default to undefined)
|
|
@@ -36,6 +37,10 @@ let minimumBasketPercent: number; //Filter to only include products where the av
|
|
|
36
37
|
let maximumBasketPercent: number; //Filter to only include products where the average basket percentage is less than or equal to this value (optional) (default to undefined)
|
|
37
38
|
let minimumTraffic: number; //Filter to only include products with total traffic greater than or equal to this number (optional) (default to undefined)
|
|
38
39
|
let maximumTraffic: number; //Filter to only include products with total traffic less than or equal to this number (optional) (default to undefined)
|
|
40
|
+
let createdBefore: string; //Filter to only include products created before the given date (optional) (default to undefined)
|
|
41
|
+
let createdAfter: string; //Filter to only include products created after the given date (optional) (default to undefined)
|
|
42
|
+
let updatedBefore: string; //Filter to only include products updated before the given date (optional) (default to undefined)
|
|
43
|
+
let updatedAfter: string; //Filter to only include products updated after the given date (optional) (default to undefined)
|
|
39
44
|
|
|
40
45
|
const { status, data } = await apiInstance.exportProductAnalytics(
|
|
41
46
|
project,
|
|
@@ -50,7 +55,11 @@ const { status, data } = await apiInstance.exportProductAnalytics(
|
|
|
50
55
|
minimumBasketPercent,
|
|
51
56
|
maximumBasketPercent,
|
|
52
57
|
minimumTraffic,
|
|
53
|
-
maximumTraffic
|
|
58
|
+
maximumTraffic,
|
|
59
|
+
createdBefore,
|
|
60
|
+
createdAfter,
|
|
61
|
+
updatedBefore,
|
|
62
|
+
updatedAfter
|
|
54
63
|
);
|
|
55
64
|
```
|
|
56
65
|
|
|
@@ -60,7 +69,7 @@ const { status, data } = await apiInstance.exportProductAnalytics(
|
|
|
60
69
|
|------------- | ------------- | ------------- | -------------|
|
|
61
70
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
62
71
|
| **sortBy** | **Array<string>** | An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. | (optional) defaults to undefined|
|
|
63
|
-
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like: \'
|
|
72
|
+
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\' | (optional) defaults to undefined|
|
|
64
73
|
| **dateRangeStartDate** | [**string**] | Start date for the date range filter (ISO 8601 format) | (optional) defaults to undefined|
|
|
65
74
|
| **dateRangeEndDate** | [**string**] | End date for the date range filter (ISO 8601 format) | (optional) defaults to undefined|
|
|
66
75
|
| **minimumRevenue** | [**number**] | Filter to only include products with total revenue greater than or equal to this amount | (optional) defaults to undefined|
|
|
@@ -71,6 +80,10 @@ const { status, data } = await apiInstance.exportProductAnalytics(
|
|
|
71
80
|
| **maximumBasketPercent** | [**number**] | Filter to only include products where the average basket percentage is less than or equal to this value | (optional) defaults to undefined|
|
|
72
81
|
| **minimumTraffic** | [**number**] | Filter to only include products with total traffic greater than or equal to this number | (optional) defaults to undefined|
|
|
73
82
|
| **maximumTraffic** | [**number**] | Filter to only include products with total traffic less than or equal to this number | (optional) defaults to undefined|
|
|
83
|
+
| **createdBefore** | [**string**] | Filter to only include products created before the given date | (optional) defaults to undefined|
|
|
84
|
+
| **createdAfter** | [**string**] | Filter to only include products created after the given date | (optional) defaults to undefined|
|
|
85
|
+
| **updatedBefore** | [**string**] | Filter to only include products updated before the given date | (optional) defaults to undefined|
|
|
86
|
+
| **updatedAfter** | [**string**] | Filter to only include products updated after the given date | (optional) defaults to undefined|
|
|
74
87
|
|
|
75
88
|
|
|
76
89
|
### Return type
|
|
@@ -98,6 +111,60 @@ const { status, data } = await apiInstance.exportProductAnalytics(
|
|
|
98
111
|
|
|
99
112
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
100
113
|
|
|
114
|
+
# **getProductAnalyticsSummary**
|
|
115
|
+
> AnalyticsSummary getProductAnalyticsSummary()
|
|
116
|
+
|
|
117
|
+
Get the AI-generated summary of the product analytics for the given project.
|
|
118
|
+
|
|
119
|
+
### Example
|
|
120
|
+
|
|
121
|
+
```typescript
|
|
122
|
+
import {
|
|
123
|
+
ProductAnalyticsApi,
|
|
124
|
+
Configuration
|
|
125
|
+
} from '@teemill/product-catalog';
|
|
126
|
+
|
|
127
|
+
const configuration = new Configuration();
|
|
128
|
+
const apiInstance = new ProductAnalyticsApi(configuration);
|
|
129
|
+
|
|
130
|
+
let project: string; //What project it is (default to undefined)
|
|
131
|
+
|
|
132
|
+
const { status, data } = await apiInstance.getProductAnalyticsSummary(
|
|
133
|
+
project
|
|
134
|
+
);
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Parameters
|
|
138
|
+
|
|
139
|
+
|Name | Type | Description | Notes|
|
|
140
|
+
|------------- | ------------- | ------------- | -------------|
|
|
141
|
+
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Return type
|
|
145
|
+
|
|
146
|
+
**AnalyticsSummary**
|
|
147
|
+
|
|
148
|
+
### Authorization
|
|
149
|
+
|
|
150
|
+
[session-oauth](../README.md#session-oauth), [api-key](../README.md#api-key)
|
|
151
|
+
|
|
152
|
+
### HTTP request headers
|
|
153
|
+
|
|
154
|
+
- **Content-Type**: Not defined
|
|
155
|
+
- **Accept**: application/json
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### HTTP response details
|
|
159
|
+
| Status code | Description | Response headers |
|
|
160
|
+
|-------------|-------------|------------------|
|
|
161
|
+
|**200** | Successfully retrieved the AI-generated summary of the product analytics. | - |
|
|
162
|
+
|**401** | Not authorised to access this resource. | - |
|
|
163
|
+
|**403** | Refuse to authorize. | - |
|
|
164
|
+
|**500** | Unknown server error. | - |
|
|
165
|
+
|
|
166
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
167
|
+
|
|
101
168
|
# **listProductAnalytics**
|
|
102
169
|
> ProductAnalyticsResponse listProductAnalytics()
|
|
103
170
|
|
|
@@ -117,7 +184,7 @@ const apiInstance = new ProductAnalyticsApi(configuration);
|
|
|
117
184
|
let project: string; //What project it is (default to undefined)
|
|
118
185
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
119
186
|
let pageSize: number; //Max page size. This is the maximum page size that will be returned, but it might be smaller. (optional) (default to 100)
|
|
120
|
-
let search: string; //Search query string to filter results. Supports field-specific filters like: \'
|
|
187
|
+
let search: string; //Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\' (optional) (default to undefined)
|
|
121
188
|
let sortBy: Array<string>; //An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. (optional) (default to undefined)
|
|
122
189
|
let dateRangeStartDate: string; //Start date for the date range filter (ISO 8601 format) (optional) (default to undefined)
|
|
123
190
|
let dateRangeEndDate: string; //End date for the date range filter (ISO 8601 format) (optional) (default to undefined)
|
|
@@ -129,6 +196,10 @@ let minimumBasketPercent: number; //Filter to only include products where the av
|
|
|
129
196
|
let maximumBasketPercent: number; //Filter to only include products where the average basket percentage is less than or equal to this value (optional) (default to undefined)
|
|
130
197
|
let minimumTraffic: number; //Filter to only include products with total traffic greater than or equal to this number (optional) (default to undefined)
|
|
131
198
|
let maximumTraffic: number; //Filter to only include products with total traffic less than or equal to this number (optional) (default to undefined)
|
|
199
|
+
let createdBefore: string; //Filter to only include products created before the given date (optional) (default to undefined)
|
|
200
|
+
let createdAfter: string; //Filter to only include products created after the given date (optional) (default to undefined)
|
|
201
|
+
let updatedBefore: string; //Filter to only include products updated before the given date (optional) (default to undefined)
|
|
202
|
+
let updatedAfter: string; //Filter to only include products updated after the given date (optional) (default to undefined)
|
|
132
203
|
|
|
133
204
|
const { status, data } = await apiInstance.listProductAnalytics(
|
|
134
205
|
project,
|
|
@@ -145,7 +216,11 @@ const { status, data } = await apiInstance.listProductAnalytics(
|
|
|
145
216
|
minimumBasketPercent,
|
|
146
217
|
maximumBasketPercent,
|
|
147
218
|
minimumTraffic,
|
|
148
|
-
maximumTraffic
|
|
219
|
+
maximumTraffic,
|
|
220
|
+
createdBefore,
|
|
221
|
+
createdAfter,
|
|
222
|
+
updatedBefore,
|
|
223
|
+
updatedAfter
|
|
149
224
|
);
|
|
150
225
|
```
|
|
151
226
|
|
|
@@ -156,7 +231,7 @@ const { status, data } = await apiInstance.listProductAnalytics(
|
|
|
156
231
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
157
232
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
158
233
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
159
|
-
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like: \'
|
|
234
|
+
| **search** | [**string**] | Search query string to filter results. Supports field-specific filters like: \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'productType:<id>\', \'Multiple filters can be combined with spaces and commas.\' | (optional) defaults to undefined|
|
|
160
235
|
| **sortBy** | **Array<string>** | An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. | (optional) defaults to undefined|
|
|
161
236
|
| **dateRangeStartDate** | [**string**] | Start date for the date range filter (ISO 8601 format) | (optional) defaults to undefined|
|
|
162
237
|
| **dateRangeEndDate** | [**string**] | End date for the date range filter (ISO 8601 format) | (optional) defaults to undefined|
|
|
@@ -168,6 +243,10 @@ const { status, data } = await apiInstance.listProductAnalytics(
|
|
|
168
243
|
| **maximumBasketPercent** | [**number**] | Filter to only include products where the average basket percentage is less than or equal to this value | (optional) defaults to undefined|
|
|
169
244
|
| **minimumTraffic** | [**number**] | Filter to only include products with total traffic greater than or equal to this number | (optional) defaults to undefined|
|
|
170
245
|
| **maximumTraffic** | [**number**] | Filter to only include products with total traffic less than or equal to this number | (optional) defaults to undefined|
|
|
246
|
+
| **createdBefore** | [**string**] | Filter to only include products created before the given date | (optional) defaults to undefined|
|
|
247
|
+
| **createdAfter** | [**string**] | Filter to only include products created after the given date | (optional) defaults to undefined|
|
|
248
|
+
| **updatedBefore** | [**string**] | Filter to only include products updated before the given date | (optional) defaults to undefined|
|
|
249
|
+
| **updatedAfter** | [**string**] | Filter to only include products updated after the given date | (optional) defaults to undefined|
|
|
171
250
|
|
|
172
251
|
|
|
173
252
|
### Return type
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# ProductCreatorsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://api.podos.io*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**listProductCreators**](#listproductcreators) | **GET** /v1/catalog/creators | List product creators|
|
|
8
|
+
|
|
9
|
+
# **listProductCreators**
|
|
10
|
+
> UserList listProductCreators()
|
|
11
|
+
|
|
12
|
+
Lists all the unique users that have created products for the given project.
|
|
13
|
+
|
|
14
|
+
### Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import {
|
|
18
|
+
ProductCreatorsApi,
|
|
19
|
+
Configuration
|
|
20
|
+
} from '@teemill/product-catalog';
|
|
21
|
+
|
|
22
|
+
const configuration = new Configuration();
|
|
23
|
+
const apiInstance = new ProductCreatorsApi(configuration);
|
|
24
|
+
|
|
25
|
+
let project: string; //What project it is (default to undefined)
|
|
26
|
+
|
|
27
|
+
const { status, data } = await apiInstance.listProductCreators(
|
|
28
|
+
project
|
|
29
|
+
);
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Parameters
|
|
33
|
+
|
|
34
|
+
|Name | Type | Description | Notes|
|
|
35
|
+
|------------- | ------------- | ------------- | -------------|
|
|
36
|
+
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Return type
|
|
40
|
+
|
|
41
|
+
**UserList**
|
|
42
|
+
|
|
43
|
+
### Authorization
|
|
44
|
+
|
|
45
|
+
[session-oauth](../README.md#session-oauth), [api-key](../README.md#api-key)
|
|
46
|
+
|
|
47
|
+
### HTTP request headers
|
|
48
|
+
|
|
49
|
+
- **Content-Type**: Not defined
|
|
50
|
+
- **Accept**: application/json
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### HTTP response details
|
|
54
|
+
| Status code | Description | Response headers |
|
|
55
|
+
|-------------|-------------|------------------|
|
|
56
|
+
|**200** | Successfully retrieved a list of creators. | - |
|
|
57
|
+
|**400** | Failed validation. | - |
|
|
58
|
+
|**401** | Not authorised to access this resource. | - |
|
|
59
|
+
|**403** | Refuse to authorize. | - |
|
|
60
|
+
|**500** | Unknown server error. | - |
|
|
61
|
+
|
|
62
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
63
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Recommendation
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | Unique object identifier | [default to undefined]
|
|
9
|
+
**ref** | **string** | A reference to the recommendation resource location | [default to undefined]
|
|
10
|
+
**reason** | **string** | The reason for the recommendation | [default to undefined]
|
|
11
|
+
**recommendation** | **string** | The recommendation for the target | [default to undefined]
|
|
12
|
+
**priority** | **string** | | [default to undefined]
|
|
13
|
+
**actions** | [**Array<Action>**](Action.md) | | [default to undefined]
|
|
14
|
+
**createdAt** | **string** | | [default to undefined]
|
|
15
|
+
**updatedAt** | **string** | | [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { Recommendation } from '@teemill/product-catalog';
|
|
21
|
+
|
|
22
|
+
const instance: Recommendation = {
|
|
23
|
+
id,
|
|
24
|
+
ref,
|
|
25
|
+
reason,
|
|
26
|
+
recommendation,
|
|
27
|
+
priority,
|
|
28
|
+
actions,
|
|
29
|
+
createdAt,
|
|
30
|
+
updatedAt,
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/UserList.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# UserList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**creators** | [**Array<UserListCreatorsInner>**](UserListCreatorsInner.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { UserList } from '@teemill/product-catalog';
|
|
14
|
+
|
|
15
|
+
const instance: UserList = {
|
|
16
|
+
creators,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# UserListCreatorsInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | Unique object identifier | [default to undefined]
|
|
9
|
+
**username** | **string** | The username of the product creator | [default to undefined]
|
|
10
|
+
**avatar** | [**UserListCreatorsInnerAvatar**](UserListCreatorsInnerAvatar.md) | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { UserListCreatorsInner } from '@teemill/product-catalog';
|
|
16
|
+
|
|
17
|
+
const instance: UserListCreatorsInner = {
|
|
18
|
+
id,
|
|
19
|
+
username,
|
|
20
|
+
avatar,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# UserListCreatorsInnerAvatar
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**thumbnail** | **string** | URL to the thumbnail version of the avatar | [default to undefined]
|
|
9
|
+
**original** | **string** | URL to the original avatar image | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { UserListCreatorsInnerAvatar } from '@teemill/product-catalog';
|
|
15
|
+
|
|
16
|
+
const instance: UserListCreatorsInnerAvatar = {
|
|
17
|
+
thumbnail,
|
|
18
|
+
original,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/index.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.87.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|