@teemill/product-catalog 1.57.0 → 1.58.1
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 +4 -2
- package/api.ts +57 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +57 -1
- package/dist/api.js +1 -1
- 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 +57 -1
- package/dist/esm/api.js +1 -1
- 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/Application.md +2 -0
- package/docs/ApplicationProperties.md +25 -0
- package/docs/ApplicationPropertiesPosition.md +23 -0
- package/docs/CreateApplication.md +2 -0
- package/docs/CreateApplicationProperties.md +25 -0
- package/docs/CreateApplicationPropertiesPosition.md +23 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.58.1
|
|
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.
|
|
39
|
+
npm install @teemill/product-catalog@1.58.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -78,6 +78,8 @@ Class | Method | HTTP request | Description
|
|
|
78
78
|
- [ApiError](docs/ApiError.md)
|
|
79
79
|
- [Application](docs/Application.md)
|
|
80
80
|
- [ApplicationMockup](docs/ApplicationMockup.md)
|
|
81
|
+
- [ApplicationProperties](docs/ApplicationProperties.md)
|
|
82
|
+
- [ApplicationPropertiesPosition](docs/ApplicationPropertiesPosition.md)
|
|
81
83
|
- [ApplicationSet](docs/ApplicationSet.md)
|
|
82
84
|
- [ApplicationSet1](docs/ApplicationSet1.md)
|
|
83
85
|
- [ApplicationSetRecord](docs/ApplicationSetRecord.md)
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -103,6 +103,12 @@ export interface Application {
|
|
|
103
103
|
* @memberof Application
|
|
104
104
|
*/
|
|
105
105
|
'stockedOnly'?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {ApplicationProperties}
|
|
109
|
+
* @memberof Application
|
|
110
|
+
*/
|
|
111
|
+
'properties'?: ApplicationProperties | null;
|
|
106
112
|
}
|
|
107
113
|
|
|
108
114
|
export const ApplicationTechnologyEnum = {
|
|
@@ -147,6 +153,50 @@ export interface ApplicationMockup {
|
|
|
147
153
|
*/
|
|
148
154
|
'preview'?: string;
|
|
149
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* Optional properties for the application. Leave width, height and position empty and the system will automatically calculate the size for the application.
|
|
158
|
+
* @export
|
|
159
|
+
* @interface ApplicationProperties
|
|
160
|
+
*/
|
|
161
|
+
export interface ApplicationProperties {
|
|
162
|
+
/**
|
|
163
|
+
* Width of the application in pixels
|
|
164
|
+
* @type {number}
|
|
165
|
+
* @memberof ApplicationProperties
|
|
166
|
+
*/
|
|
167
|
+
'width'?: number | null;
|
|
168
|
+
/**
|
|
169
|
+
* Height of the application in pixels
|
|
170
|
+
* @type {number}
|
|
171
|
+
* @memberof ApplicationProperties
|
|
172
|
+
*/
|
|
173
|
+
'height'?: number | null;
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* @type {ApplicationPropertiesPosition}
|
|
177
|
+
* @memberof ApplicationProperties
|
|
178
|
+
*/
|
|
179
|
+
'position'?: ApplicationPropertiesPosition | null;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Position of the application
|
|
183
|
+
* @export
|
|
184
|
+
* @interface ApplicationPropertiesPosition
|
|
185
|
+
*/
|
|
186
|
+
export interface ApplicationPropertiesPosition {
|
|
187
|
+
/**
|
|
188
|
+
* X coordinate of the application in pixels relative to the bounding box of the product
|
|
189
|
+
* @type {number}
|
|
190
|
+
* @memberof ApplicationPropertiesPosition
|
|
191
|
+
*/
|
|
192
|
+
'x': number;
|
|
193
|
+
/**
|
|
194
|
+
* Y coordinate of the application in pixels relative to the bounding box of the product
|
|
195
|
+
* @type {number}
|
|
196
|
+
* @memberof ApplicationPropertiesPosition
|
|
197
|
+
*/
|
|
198
|
+
'y': number;
|
|
199
|
+
}
|
|
150
200
|
/**
|
|
151
201
|
*
|
|
152
202
|
* @export
|
|
@@ -460,6 +510,12 @@ export interface CreateApplication {
|
|
|
460
510
|
* @memberof CreateApplication
|
|
461
511
|
*/
|
|
462
512
|
'stockedOnly'?: boolean;
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
* @type {ApplicationProperties}
|
|
516
|
+
* @memberof CreateApplication
|
|
517
|
+
*/
|
|
518
|
+
'properties'?: ApplicationProperties | null;
|
|
463
519
|
}
|
|
464
520
|
|
|
465
521
|
export const CreateApplicationTechnologyEnum = {
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.58.1
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -93,6 +93,12 @@ export interface Application {
|
|
|
93
93
|
* @memberof Application
|
|
94
94
|
*/
|
|
95
95
|
'stockedOnly'?: boolean;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {ApplicationProperties}
|
|
99
|
+
* @memberof Application
|
|
100
|
+
*/
|
|
101
|
+
'properties'?: ApplicationProperties | null;
|
|
96
102
|
}
|
|
97
103
|
export declare const ApplicationTechnologyEnum: {
|
|
98
104
|
readonly Dtg: "dtg";
|
|
@@ -133,6 +139,50 @@ export interface ApplicationMockup {
|
|
|
133
139
|
*/
|
|
134
140
|
'preview'?: string;
|
|
135
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* Optional properties for the application. Leave width, height and position empty and the system will automatically calculate the size for the application.
|
|
144
|
+
* @export
|
|
145
|
+
* @interface ApplicationProperties
|
|
146
|
+
*/
|
|
147
|
+
export interface ApplicationProperties {
|
|
148
|
+
/**
|
|
149
|
+
* Width of the application in pixels
|
|
150
|
+
* @type {number}
|
|
151
|
+
* @memberof ApplicationProperties
|
|
152
|
+
*/
|
|
153
|
+
'width'?: number | null;
|
|
154
|
+
/**
|
|
155
|
+
* Height of the application in pixels
|
|
156
|
+
* @type {number}
|
|
157
|
+
* @memberof ApplicationProperties
|
|
158
|
+
*/
|
|
159
|
+
'height'?: number | null;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {ApplicationPropertiesPosition}
|
|
163
|
+
* @memberof ApplicationProperties
|
|
164
|
+
*/
|
|
165
|
+
'position'?: ApplicationPropertiesPosition | null;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Position of the application
|
|
169
|
+
* @export
|
|
170
|
+
* @interface ApplicationPropertiesPosition
|
|
171
|
+
*/
|
|
172
|
+
export interface ApplicationPropertiesPosition {
|
|
173
|
+
/**
|
|
174
|
+
* X coordinate of the application in pixels relative to the bounding box of the product
|
|
175
|
+
* @type {number}
|
|
176
|
+
* @memberof ApplicationPropertiesPosition
|
|
177
|
+
*/
|
|
178
|
+
'x': number;
|
|
179
|
+
/**
|
|
180
|
+
* Y coordinate of the application in pixels relative to the bounding box of the product
|
|
181
|
+
* @type {number}
|
|
182
|
+
* @memberof ApplicationPropertiesPosition
|
|
183
|
+
*/
|
|
184
|
+
'y': number;
|
|
185
|
+
}
|
|
136
186
|
/**
|
|
137
187
|
*
|
|
138
188
|
* @export
|
|
@@ -443,6 +493,12 @@ export interface CreateApplication {
|
|
|
443
493
|
* @memberof CreateApplication
|
|
444
494
|
*/
|
|
445
495
|
'stockedOnly'?: boolean;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {ApplicationProperties}
|
|
499
|
+
* @memberof CreateApplication
|
|
500
|
+
*/
|
|
501
|
+
'properties'?: ApplicationProperties | null;
|
|
446
502
|
}
|
|
447
503
|
export declare const CreateApplicationTechnologyEnum: {
|
|
448
504
|
readonly Dtg: "dtg";
|
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.58.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.58.1
|
|
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.58.1
|
|
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.58.1
|
|
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.58.1
|
|
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.58.1
|
|
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.58.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -93,6 +93,12 @@ export interface Application {
|
|
|
93
93
|
* @memberof Application
|
|
94
94
|
*/
|
|
95
95
|
'stockedOnly'?: boolean;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {ApplicationProperties}
|
|
99
|
+
* @memberof Application
|
|
100
|
+
*/
|
|
101
|
+
'properties'?: ApplicationProperties | null;
|
|
96
102
|
}
|
|
97
103
|
export declare const ApplicationTechnologyEnum: {
|
|
98
104
|
readonly Dtg: "dtg";
|
|
@@ -133,6 +139,50 @@ export interface ApplicationMockup {
|
|
|
133
139
|
*/
|
|
134
140
|
'preview'?: string;
|
|
135
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* Optional properties for the application. Leave width, height and position empty and the system will automatically calculate the size for the application.
|
|
144
|
+
* @export
|
|
145
|
+
* @interface ApplicationProperties
|
|
146
|
+
*/
|
|
147
|
+
export interface ApplicationProperties {
|
|
148
|
+
/**
|
|
149
|
+
* Width of the application in pixels
|
|
150
|
+
* @type {number}
|
|
151
|
+
* @memberof ApplicationProperties
|
|
152
|
+
*/
|
|
153
|
+
'width'?: number | null;
|
|
154
|
+
/**
|
|
155
|
+
* Height of the application in pixels
|
|
156
|
+
* @type {number}
|
|
157
|
+
* @memberof ApplicationProperties
|
|
158
|
+
*/
|
|
159
|
+
'height'?: number | null;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {ApplicationPropertiesPosition}
|
|
163
|
+
* @memberof ApplicationProperties
|
|
164
|
+
*/
|
|
165
|
+
'position'?: ApplicationPropertiesPosition | null;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Position of the application
|
|
169
|
+
* @export
|
|
170
|
+
* @interface ApplicationPropertiesPosition
|
|
171
|
+
*/
|
|
172
|
+
export interface ApplicationPropertiesPosition {
|
|
173
|
+
/**
|
|
174
|
+
* X coordinate of the application in pixels relative to the bounding box of the product
|
|
175
|
+
* @type {number}
|
|
176
|
+
* @memberof ApplicationPropertiesPosition
|
|
177
|
+
*/
|
|
178
|
+
'x': number;
|
|
179
|
+
/**
|
|
180
|
+
* Y coordinate of the application in pixels relative to the bounding box of the product
|
|
181
|
+
* @type {number}
|
|
182
|
+
* @memberof ApplicationPropertiesPosition
|
|
183
|
+
*/
|
|
184
|
+
'y': number;
|
|
185
|
+
}
|
|
136
186
|
/**
|
|
137
187
|
*
|
|
138
188
|
* @export
|
|
@@ -443,6 +493,12 @@ export interface CreateApplication {
|
|
|
443
493
|
* @memberof CreateApplication
|
|
444
494
|
*/
|
|
445
495
|
'stockedOnly'?: boolean;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {ApplicationProperties}
|
|
499
|
+
* @memberof CreateApplication
|
|
500
|
+
*/
|
|
501
|
+
'properties'?: ApplicationProperties | null;
|
|
446
502
|
}
|
|
447
503
|
export declare const CreateApplicationTechnologyEnum: {
|
|
448
504
|
readonly Dtg: "dtg";
|
package/dist/esm/api.js
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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.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.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.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.58.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.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.58.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/Application.md
CHANGED
|
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**src** | **string** | Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files. | [default to undefined]
|
|
13
13
|
**mockup** | [**ApplicationMockup**](ApplicationMockup.md) | | [optional] [default to undefined]
|
|
14
14
|
**stockedOnly** | **boolean** | If set to true, transfers for this application will not be printed on demand, and will need to be stocked in trays in the factory. Note that this can only be set if the technology is stockable, such as DTF. | [optional] [default to undefined]
|
|
15
|
+
**properties** | [**ApplicationProperties**](ApplicationProperties.md) | | [optional] [default to undefined]
|
|
15
16
|
|
|
16
17
|
## Example
|
|
17
18
|
|
|
@@ -26,6 +27,7 @@ const instance: Application = {
|
|
|
26
27
|
src,
|
|
27
28
|
mockup,
|
|
28
29
|
stockedOnly,
|
|
30
|
+
properties,
|
|
29
31
|
};
|
|
30
32
|
```
|
|
31
33
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# ApplicationProperties
|
|
2
|
+
|
|
3
|
+
Optional properties for the application. Leave width, height and position empty and the system will automatically calculate the size for the application.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**width** | **number** | Width of the application in pixels | [optional] [default to undefined]
|
|
10
|
+
**height** | **number** | Height of the application in pixels | [optional] [default to undefined]
|
|
11
|
+
**position** | [**ApplicationPropertiesPosition**](ApplicationPropertiesPosition.md) | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { ApplicationProperties } from '@teemill/product-catalog';
|
|
17
|
+
|
|
18
|
+
const instance: ApplicationProperties = {
|
|
19
|
+
width,
|
|
20
|
+
height,
|
|
21
|
+
position,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[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,23 @@
|
|
|
1
|
+
# ApplicationPropertiesPosition
|
|
2
|
+
|
|
3
|
+
Position of the application
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**x** | **number** | X coordinate of the application in pixels relative to the bounding box of the product | [default to undefined]
|
|
10
|
+
**y** | **number** | Y coordinate of the application in pixels relative to the bounding box of the product | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { ApplicationPropertiesPosition } from '@teemill/product-catalog';
|
|
16
|
+
|
|
17
|
+
const instance: ApplicationPropertiesPosition = {
|
|
18
|
+
x,
|
|
19
|
+
y,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**additionalInstructions** | **string** | Any additional instructions for the application | [optional] [default to undefined]
|
|
11
11
|
**src** | **string** | Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files. | [default to undefined]
|
|
12
12
|
**stockedOnly** | **boolean** | If set to true, transfers for this application will not be printed on demand, and will need to be stocked in trays in the factory. Note that this can only be set if the technology is stockable, such as DTF. | [optional] [default to undefined]
|
|
13
|
+
**properties** | [**ApplicationProperties**](ApplicationProperties.md) | | [optional] [default to undefined]
|
|
13
14
|
|
|
14
15
|
## Example
|
|
15
16
|
|
|
@@ -22,6 +23,7 @@ const instance: CreateApplication = {
|
|
|
22
23
|
additionalInstructions,
|
|
23
24
|
src,
|
|
24
25
|
stockedOnly,
|
|
26
|
+
properties,
|
|
25
27
|
};
|
|
26
28
|
```
|
|
27
29
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# CreateApplicationProperties
|
|
2
|
+
|
|
3
|
+
Optional properties for the application. Leave width, height and position empty and the system will automatically calculate the size for the application.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**width** | **number** | Width of the application in pixels | [optional] [default to undefined]
|
|
10
|
+
**height** | **number** | Height of the application in pixels | [optional] [default to undefined]
|
|
11
|
+
**position** | [**CreateApplicationPropertiesPosition**](CreateApplicationPropertiesPosition.md) | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { CreateApplicationProperties } from '@teemill/product-catalog';
|
|
17
|
+
|
|
18
|
+
const instance: CreateApplicationProperties = {
|
|
19
|
+
width,
|
|
20
|
+
height,
|
|
21
|
+
position,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[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,23 @@
|
|
|
1
|
+
# CreateApplicationPropertiesPosition
|
|
2
|
+
|
|
3
|
+
Position of the application
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**x** | **number** | X coordinate of the application in pixels relative to the bounding box of the product | [default to undefined]
|
|
10
|
+
**y** | **number** | Y coordinate of the application in pixels relative to the bounding box of the product | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { CreateApplicationPropertiesPosition } from '@teemill/product-catalog';
|
|
16
|
+
|
|
17
|
+
const instance: CreateApplicationPropertiesPosition = {
|
|
18
|
+
x,
|
|
19
|
+
y,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[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.58.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|