@teemill/product-catalog 1.16.0 → 1.18.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/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/api.ts +899 -10
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +616 -10
- package/dist/api.js +444 -3
- 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 +616 -10
- package/dist/esm/api.js +439 -2
- 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/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 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.18.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -115,6 +115,118 @@ export interface ApplicationMockup {
|
|
|
115
115
|
*/
|
|
116
116
|
'preview'?: string;
|
|
117
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @export
|
|
121
|
+
* @interface ApplicationSet
|
|
122
|
+
*/
|
|
123
|
+
export interface ApplicationSet {
|
|
124
|
+
/**
|
|
125
|
+
* Unique object identifier
|
|
126
|
+
* @type {string}
|
|
127
|
+
* @memberof ApplicationSet
|
|
128
|
+
*/
|
|
129
|
+
'id'?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Name of the application set
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof ApplicationSet
|
|
134
|
+
*/
|
|
135
|
+
'name': string;
|
|
136
|
+
/**
|
|
137
|
+
* Description of the application set
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof ApplicationSet
|
|
140
|
+
*/
|
|
141
|
+
'description'?: string;
|
|
142
|
+
/**
|
|
143
|
+
* The width, in pixels of the images in the set
|
|
144
|
+
* @type {number}
|
|
145
|
+
* @memberof ApplicationSet
|
|
146
|
+
*/
|
|
147
|
+
'width': number;
|
|
148
|
+
/**
|
|
149
|
+
* The height, in pixels of the images in the set
|
|
150
|
+
* @type {number}
|
|
151
|
+
* @memberof ApplicationSet
|
|
152
|
+
*/
|
|
153
|
+
'height': number;
|
|
154
|
+
/**
|
|
155
|
+
* The DPI used when printing the images in the set
|
|
156
|
+
* @type {number}
|
|
157
|
+
* @memberof ApplicationSet
|
|
158
|
+
*/
|
|
159
|
+
'dpi': number;
|
|
160
|
+
/**
|
|
161
|
+
* List of application set records
|
|
162
|
+
* @type {Array<ApplicationSetRecord>}
|
|
163
|
+
* @memberof ApplicationSet
|
|
164
|
+
*/
|
|
165
|
+
'records'?: Array<ApplicationSetRecord>;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @export
|
|
170
|
+
* @interface ApplicationSet1
|
|
171
|
+
*/
|
|
172
|
+
export interface ApplicationSet1 {
|
|
173
|
+
/**
|
|
174
|
+
* Unique object identifier
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof ApplicationSet1
|
|
177
|
+
*/
|
|
178
|
+
'id'?: string;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
* @export
|
|
183
|
+
* @interface ApplicationSetRecord
|
|
184
|
+
*/
|
|
185
|
+
export interface ApplicationSetRecord {
|
|
186
|
+
/**
|
|
187
|
+
* Unique object identifier
|
|
188
|
+
* @type {string}
|
|
189
|
+
* @memberof ApplicationSetRecord
|
|
190
|
+
*/
|
|
191
|
+
'id'?: string;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @type {ApplicationSet1}
|
|
195
|
+
* @memberof ApplicationSetRecord
|
|
196
|
+
*/
|
|
197
|
+
'set'?: ApplicationSet1;
|
|
198
|
+
/**
|
|
199
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`. Attribute tags are intended for grouping and filtering, e.g. by a group of colours.
|
|
200
|
+
* @type {Array<Attribute>}
|
|
201
|
+
* @memberof ApplicationSetRecord
|
|
202
|
+
*/
|
|
203
|
+
'attributes'?: Array<Attribute>;
|
|
204
|
+
/**
|
|
205
|
+
* List of applications for this record
|
|
206
|
+
* @type {Array<Application>}
|
|
207
|
+
* @memberof ApplicationSetRecord
|
|
208
|
+
*/
|
|
209
|
+
'applications'?: Array<Application>;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @export
|
|
214
|
+
* @interface ApplicationSetsResponse
|
|
215
|
+
*/
|
|
216
|
+
export interface ApplicationSetsResponse {
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @type {Array<ApplicationSet>}
|
|
220
|
+
* @memberof ApplicationSetsResponse
|
|
221
|
+
*/
|
|
222
|
+
'applicationSets'?: Array<ApplicationSet>;
|
|
223
|
+
/**
|
|
224
|
+
*
|
|
225
|
+
* @type {number}
|
|
226
|
+
* @memberof ApplicationSetsResponse
|
|
227
|
+
*/
|
|
228
|
+
'nextPageToken'?: number;
|
|
229
|
+
}
|
|
118
230
|
/**
|
|
119
231
|
*
|
|
120
232
|
* @export
|
|
@@ -135,10 +247,10 @@ export interface Attribute {
|
|
|
135
247
|
'value': string;
|
|
136
248
|
/**
|
|
137
249
|
*
|
|
138
|
-
* @type {
|
|
250
|
+
* @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
|
|
139
251
|
* @memberof Attribute
|
|
140
252
|
*/
|
|
141
|
-
'thumbnail'?:
|
|
253
|
+
'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
|
|
142
254
|
/**
|
|
143
255
|
* Attribute tags
|
|
144
256
|
* @type {Array<string>}
|
|
@@ -146,31 +258,118 @@ export interface Attribute {
|
|
|
146
258
|
*/
|
|
147
259
|
'tags'?: Array<string>;
|
|
148
260
|
}
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @export
|
|
264
|
+
* @interface CreateApplicationSetRequest
|
|
265
|
+
*/
|
|
266
|
+
export interface CreateApplicationSetRequest {
|
|
267
|
+
/**
|
|
268
|
+
* Name of the application set
|
|
269
|
+
* @type {string}
|
|
270
|
+
* @memberof CreateApplicationSetRequest
|
|
271
|
+
*/
|
|
272
|
+
'name'?: string;
|
|
273
|
+
/**
|
|
274
|
+
* Description of the application set
|
|
275
|
+
* @type {string}
|
|
276
|
+
* @memberof CreateApplicationSetRequest
|
|
277
|
+
*/
|
|
278
|
+
'description'?: string;
|
|
279
|
+
/**
|
|
280
|
+
* The width, in pixels of the images in the set
|
|
281
|
+
* @type {number}
|
|
282
|
+
* @memberof CreateApplicationSetRequest
|
|
283
|
+
*/
|
|
284
|
+
'width'?: number;
|
|
285
|
+
/**
|
|
286
|
+
* The height, in pixels of the images in the set
|
|
287
|
+
* @type {number}
|
|
288
|
+
* @memberof CreateApplicationSetRequest
|
|
289
|
+
*/
|
|
290
|
+
'height'?: number;
|
|
291
|
+
/**
|
|
292
|
+
* The DPI used when printing the images in the set
|
|
293
|
+
* @type {number}
|
|
294
|
+
* @memberof CreateApplicationSetRequest
|
|
295
|
+
*/
|
|
296
|
+
'dpi'?: number;
|
|
297
|
+
/**
|
|
298
|
+
* List of application set records
|
|
299
|
+
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
300
|
+
* @memberof CreateApplicationSetRequest
|
|
301
|
+
*/
|
|
302
|
+
'records'?: Array<CreateApplicationSetRequestRecordsInner>;
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @export
|
|
307
|
+
* @interface CreateApplicationSetRequestRecordsInner
|
|
308
|
+
*/
|
|
309
|
+
export interface CreateApplicationSetRequestRecordsInner {
|
|
310
|
+
/**
|
|
311
|
+
* List of attributes this record applies to
|
|
312
|
+
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
313
|
+
* @memberof CreateApplicationSetRequestRecordsInner
|
|
314
|
+
*/
|
|
315
|
+
'attributes'?: Array<CreateApplicationSetRequestRecordsInnerAttributesInner>;
|
|
316
|
+
/**
|
|
317
|
+
* List of applications for this record
|
|
318
|
+
* @type {Array<Application>}
|
|
319
|
+
* @memberof CreateApplicationSetRequestRecordsInner
|
|
320
|
+
*/
|
|
321
|
+
'applications'?: Array<Application>;
|
|
322
|
+
}
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @export
|
|
326
|
+
* @interface CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
327
|
+
*/
|
|
328
|
+
export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
329
|
+
/**
|
|
330
|
+
* The name of the option type. e.g. Size, Colour
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
333
|
+
*/
|
|
334
|
+
'name'?: string;
|
|
335
|
+
/**
|
|
336
|
+
* The value of the option this record applies to
|
|
337
|
+
* @type {string}
|
|
338
|
+
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
339
|
+
*/
|
|
340
|
+
'value'?: string;
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
|
|
344
|
+
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
345
|
+
*/
|
|
346
|
+
'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
|
|
347
|
+
}
|
|
149
348
|
/**
|
|
150
349
|
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
151
350
|
* @export
|
|
152
|
-
* @interface
|
|
351
|
+
* @interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
153
352
|
*/
|
|
154
|
-
export interface
|
|
353
|
+
export interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail {
|
|
155
354
|
/**
|
|
156
355
|
*
|
|
157
356
|
* @type {string}
|
|
158
|
-
* @memberof
|
|
357
|
+
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
159
358
|
*/
|
|
160
|
-
'type'?:
|
|
359
|
+
'type'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum;
|
|
161
360
|
/**
|
|
162
361
|
*
|
|
163
362
|
* @type {string}
|
|
164
|
-
* @memberof
|
|
363
|
+
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
165
364
|
*/
|
|
166
365
|
'value'?: string;
|
|
167
366
|
}
|
|
168
|
-
export declare const
|
|
367
|
+
export declare const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum: {
|
|
169
368
|
readonly Text: "text";
|
|
170
369
|
readonly Color: "color";
|
|
171
370
|
readonly Image: "image";
|
|
172
371
|
};
|
|
173
|
-
export type
|
|
372
|
+
export type CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum[keyof typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum];
|
|
174
373
|
/**
|
|
175
374
|
*
|
|
176
375
|
* @export
|
|
@@ -639,6 +838,93 @@ export interface Stock {
|
|
|
639
838
|
*/
|
|
640
839
|
'level'?: number;
|
|
641
840
|
}
|
|
841
|
+
/**
|
|
842
|
+
*
|
|
843
|
+
* @export
|
|
844
|
+
* @interface UpdateApplicationSetRequest
|
|
845
|
+
*/
|
|
846
|
+
export interface UpdateApplicationSetRequest {
|
|
847
|
+
/**
|
|
848
|
+
*
|
|
849
|
+
* @type {string}
|
|
850
|
+
* @memberof UpdateApplicationSetRequest
|
|
851
|
+
*/
|
|
852
|
+
'id'?: string;
|
|
853
|
+
/**
|
|
854
|
+
* Name of the application set
|
|
855
|
+
* @type {string}
|
|
856
|
+
* @memberof UpdateApplicationSetRequest
|
|
857
|
+
*/
|
|
858
|
+
'name'?: string;
|
|
859
|
+
/**
|
|
860
|
+
* Description of the application set
|
|
861
|
+
* @type {string}
|
|
862
|
+
* @memberof UpdateApplicationSetRequest
|
|
863
|
+
*/
|
|
864
|
+
'description'?: string;
|
|
865
|
+
/**
|
|
866
|
+
* The width, in pixels of the images in the set
|
|
867
|
+
* @type {number}
|
|
868
|
+
* @memberof UpdateApplicationSetRequest
|
|
869
|
+
*/
|
|
870
|
+
'width'?: number;
|
|
871
|
+
/**
|
|
872
|
+
* The height, in pixels of the images in the set
|
|
873
|
+
* @type {number}
|
|
874
|
+
* @memberof UpdateApplicationSetRequest
|
|
875
|
+
*/
|
|
876
|
+
'height'?: number;
|
|
877
|
+
/**
|
|
878
|
+
* The DPI used when printing the images in the set
|
|
879
|
+
* @type {number}
|
|
880
|
+
* @memberof UpdateApplicationSetRequest
|
|
881
|
+
*/
|
|
882
|
+
'dpi'?: number;
|
|
883
|
+
/**
|
|
884
|
+
* List of application set records
|
|
885
|
+
* @type {Array<UpdateApplicationSetRequestRecordsInner>}
|
|
886
|
+
* @memberof UpdateApplicationSetRequest
|
|
887
|
+
*/
|
|
888
|
+
'records'?: Array<UpdateApplicationSetRequestRecordsInner>;
|
|
889
|
+
}
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @export
|
|
893
|
+
* @interface UpdateApplicationSetRequestRecordsInner
|
|
894
|
+
*/
|
|
895
|
+
export interface UpdateApplicationSetRequestRecordsInner {
|
|
896
|
+
/**
|
|
897
|
+
* List of attributes this record applies to
|
|
898
|
+
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
899
|
+
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
900
|
+
*/
|
|
901
|
+
'attributes'?: Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>;
|
|
902
|
+
/**
|
|
903
|
+
* List of applications for this record
|
|
904
|
+
* @type {Array<Application>}
|
|
905
|
+
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
906
|
+
*/
|
|
907
|
+
'applications'?: Array<Application>;
|
|
908
|
+
}
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @export
|
|
912
|
+
* @interface UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
913
|
+
*/
|
|
914
|
+
export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
915
|
+
/**
|
|
916
|
+
* The name of the option type. e.g. Size, Colour
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
919
|
+
*/
|
|
920
|
+
'option'?: string;
|
|
921
|
+
/**
|
|
922
|
+
* The value of the option this record applies to
|
|
923
|
+
* @type {string}
|
|
924
|
+
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
925
|
+
*/
|
|
926
|
+
'value'?: string;
|
|
927
|
+
}
|
|
642
928
|
/**
|
|
643
929
|
*
|
|
644
930
|
* @export
|
|
@@ -853,6 +1139,326 @@ export interface VariantsResponse {
|
|
|
853
1139
|
*/
|
|
854
1140
|
'nextPageToken'?: number;
|
|
855
1141
|
}
|
|
1142
|
+
/**
|
|
1143
|
+
* ApplicationSetsApi - axios parameter creator
|
|
1144
|
+
* @export
|
|
1145
|
+
*/
|
|
1146
|
+
export declare const ApplicationSetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1147
|
+
/**
|
|
1148
|
+
* Creates a new application set.
|
|
1149
|
+
* @summary Create application set
|
|
1150
|
+
* @param {string} project What project it is
|
|
1151
|
+
* @param {CreateApplicationSetRequest} [createApplicationSetRequest] Create a new application set.
|
|
1152
|
+
* @param {*} [options] Override http request option.
|
|
1153
|
+
* @throws {RequiredError}
|
|
1154
|
+
*/
|
|
1155
|
+
createApplicationSet: (project: string, createApplicationSetRequest?: CreateApplicationSetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1156
|
+
/**
|
|
1157
|
+
* Deletes an existing application set.
|
|
1158
|
+
* @summary Delete an application set
|
|
1159
|
+
* @param {string} project What project it is
|
|
1160
|
+
* @param {string} applicationSetId Application set\'s unique identifier
|
|
1161
|
+
* @param {*} [options] Override http request option.
|
|
1162
|
+
* @throws {RequiredError}
|
|
1163
|
+
*/
|
|
1164
|
+
deleteApplicationSet: (project: string, applicationSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1165
|
+
/**
|
|
1166
|
+
* Get an application by the given id.
|
|
1167
|
+
* @summary Get an application set
|
|
1168
|
+
* @param {string} project What project it is
|
|
1169
|
+
* @param {string} applicationSetId Application set\'s unique identifier
|
|
1170
|
+
* @param {*} [options] Override http request option.
|
|
1171
|
+
* @throws {RequiredError}
|
|
1172
|
+
*/
|
|
1173
|
+
getApplicationSet: (project: string, applicationSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1174
|
+
/**
|
|
1175
|
+
* Lists all application sets that belong to the given project.
|
|
1176
|
+
* @summary List application sets
|
|
1177
|
+
* @param {string} project What project it is
|
|
1178
|
+
* @param {number} [pageToken] Page reference token
|
|
1179
|
+
* @param {string} [search] Search term to filter based on product tags.
|
|
1180
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1181
|
+
* @param {*} [options] Override http request option.
|
|
1182
|
+
* @throws {RequiredError}
|
|
1183
|
+
*/
|
|
1184
|
+
listApplicationSets: (project: string, pageToken?: number, search?: string, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1185
|
+
/**
|
|
1186
|
+
* Updates an existing application set.
|
|
1187
|
+
* @summary Update application set
|
|
1188
|
+
* @param {string} project What project it is
|
|
1189
|
+
* @param {string} applicationSetId Application set\'s unique identifier
|
|
1190
|
+
* @param {UpdateApplicationSetRequest} [updateApplicationSetRequest] Create a new application set.
|
|
1191
|
+
* @param {*} [options] Override http request option.
|
|
1192
|
+
* @throws {RequiredError}
|
|
1193
|
+
*/
|
|
1194
|
+
updateApplicationSet: (project: string, applicationSetId: string, updateApplicationSetRequest?: UpdateApplicationSetRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1195
|
+
};
|
|
1196
|
+
/**
|
|
1197
|
+
* ApplicationSetsApi - functional programming interface
|
|
1198
|
+
* @export
|
|
1199
|
+
*/
|
|
1200
|
+
export declare const ApplicationSetsApiFp: (configuration?: Configuration) => {
|
|
1201
|
+
/**
|
|
1202
|
+
* Creates a new application set.
|
|
1203
|
+
* @summary Create application set
|
|
1204
|
+
* @param {string} project What project it is
|
|
1205
|
+
* @param {CreateApplicationSetRequest} [createApplicationSetRequest] Create a new application set.
|
|
1206
|
+
* @param {*} [options] Override http request option.
|
|
1207
|
+
* @throws {RequiredError}
|
|
1208
|
+
*/
|
|
1209
|
+
createApplicationSet(project: string, createApplicationSetRequest?: CreateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationSet>>;
|
|
1210
|
+
/**
|
|
1211
|
+
* Deletes an existing application set.
|
|
1212
|
+
* @summary Delete an application set
|
|
1213
|
+
* @param {string} project What project it is
|
|
1214
|
+
* @param {string} applicationSetId Application set\'s unique identifier
|
|
1215
|
+
* @param {*} [options] Override http request option.
|
|
1216
|
+
* @throws {RequiredError}
|
|
1217
|
+
*/
|
|
1218
|
+
deleteApplicationSet(project: string, applicationSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1219
|
+
/**
|
|
1220
|
+
* Get an application by the given id.
|
|
1221
|
+
* @summary Get an application set
|
|
1222
|
+
* @param {string} project What project it is
|
|
1223
|
+
* @param {string} applicationSetId Application set\'s unique identifier
|
|
1224
|
+
* @param {*} [options] Override http request option.
|
|
1225
|
+
* @throws {RequiredError}
|
|
1226
|
+
*/
|
|
1227
|
+
getApplicationSet(project: string, applicationSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationSet>>;
|
|
1228
|
+
/**
|
|
1229
|
+
* Lists all application sets that belong to the given project.
|
|
1230
|
+
* @summary List application sets
|
|
1231
|
+
* @param {string} project What project it is
|
|
1232
|
+
* @param {number} [pageToken] Page reference token
|
|
1233
|
+
* @param {string} [search] Search term to filter based on product tags.
|
|
1234
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1235
|
+
* @param {*} [options] Override http request option.
|
|
1236
|
+
* @throws {RequiredError}
|
|
1237
|
+
*/
|
|
1238
|
+
listApplicationSets(project: string, pageToken?: number, search?: string, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationSetsResponse>>;
|
|
1239
|
+
/**
|
|
1240
|
+
* Updates an existing application set.
|
|
1241
|
+
* @summary Update application set
|
|
1242
|
+
* @param {string} project What project it is
|
|
1243
|
+
* @param {string} applicationSetId Application set\'s unique identifier
|
|
1244
|
+
* @param {UpdateApplicationSetRequest} [updateApplicationSetRequest] Create a new application set.
|
|
1245
|
+
* @param {*} [options] Override http request option.
|
|
1246
|
+
* @throws {RequiredError}
|
|
1247
|
+
*/
|
|
1248
|
+
updateApplicationSet(project: string, applicationSetId: string, updateApplicationSetRequest?: UpdateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationSet>>;
|
|
1249
|
+
};
|
|
1250
|
+
/**
|
|
1251
|
+
* ApplicationSetsApi - factory interface
|
|
1252
|
+
* @export
|
|
1253
|
+
*/
|
|
1254
|
+
export declare const ApplicationSetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1255
|
+
/**
|
|
1256
|
+
* Creates a new application set.
|
|
1257
|
+
* @summary Create application set
|
|
1258
|
+
* @param {ApplicationSetsApiCreateApplicationSetRequest} requestParameters Request parameters.
|
|
1259
|
+
* @param {*} [options] Override http request option.
|
|
1260
|
+
* @throws {RequiredError}
|
|
1261
|
+
*/
|
|
1262
|
+
createApplicationSet(requestParameters: ApplicationSetsApiCreateApplicationSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationSet>;
|
|
1263
|
+
/**
|
|
1264
|
+
* Deletes an existing application set.
|
|
1265
|
+
* @summary Delete an application set
|
|
1266
|
+
* @param {ApplicationSetsApiDeleteApplicationSetRequest} requestParameters Request parameters.
|
|
1267
|
+
* @param {*} [options] Override http request option.
|
|
1268
|
+
* @throws {RequiredError}
|
|
1269
|
+
*/
|
|
1270
|
+
deleteApplicationSet(requestParameters: ApplicationSetsApiDeleteApplicationSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1271
|
+
/**
|
|
1272
|
+
* Get an application by the given id.
|
|
1273
|
+
* @summary Get an application set
|
|
1274
|
+
* @param {ApplicationSetsApiGetApplicationSetRequest} requestParameters Request parameters.
|
|
1275
|
+
* @param {*} [options] Override http request option.
|
|
1276
|
+
* @throws {RequiredError}
|
|
1277
|
+
*/
|
|
1278
|
+
getApplicationSet(requestParameters: ApplicationSetsApiGetApplicationSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationSet>;
|
|
1279
|
+
/**
|
|
1280
|
+
* Lists all application sets that belong to the given project.
|
|
1281
|
+
* @summary List application sets
|
|
1282
|
+
* @param {ApplicationSetsApiListApplicationSetsRequest} requestParameters Request parameters.
|
|
1283
|
+
* @param {*} [options] Override http request option.
|
|
1284
|
+
* @throws {RequiredError}
|
|
1285
|
+
*/
|
|
1286
|
+
listApplicationSets(requestParameters: ApplicationSetsApiListApplicationSetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationSetsResponse>;
|
|
1287
|
+
/**
|
|
1288
|
+
* Updates an existing application set.
|
|
1289
|
+
* @summary Update application set
|
|
1290
|
+
* @param {ApplicationSetsApiUpdateApplicationSetRequest} requestParameters Request parameters.
|
|
1291
|
+
* @param {*} [options] Override http request option.
|
|
1292
|
+
* @throws {RequiredError}
|
|
1293
|
+
*/
|
|
1294
|
+
updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationSet>;
|
|
1295
|
+
};
|
|
1296
|
+
/**
|
|
1297
|
+
* Request parameters for createApplicationSet operation in ApplicationSetsApi.
|
|
1298
|
+
* @export
|
|
1299
|
+
* @interface ApplicationSetsApiCreateApplicationSetRequest
|
|
1300
|
+
*/
|
|
1301
|
+
export interface ApplicationSetsApiCreateApplicationSetRequest {
|
|
1302
|
+
/**
|
|
1303
|
+
* What project it is
|
|
1304
|
+
* @type {string}
|
|
1305
|
+
* @memberof ApplicationSetsApiCreateApplicationSet
|
|
1306
|
+
*/
|
|
1307
|
+
readonly project: string;
|
|
1308
|
+
/**
|
|
1309
|
+
* Create a new application set.
|
|
1310
|
+
* @type {CreateApplicationSetRequest}
|
|
1311
|
+
* @memberof ApplicationSetsApiCreateApplicationSet
|
|
1312
|
+
*/
|
|
1313
|
+
readonly createApplicationSetRequest?: CreateApplicationSetRequest;
|
|
1314
|
+
}
|
|
1315
|
+
/**
|
|
1316
|
+
* Request parameters for deleteApplicationSet operation in ApplicationSetsApi.
|
|
1317
|
+
* @export
|
|
1318
|
+
* @interface ApplicationSetsApiDeleteApplicationSetRequest
|
|
1319
|
+
*/
|
|
1320
|
+
export interface ApplicationSetsApiDeleteApplicationSetRequest {
|
|
1321
|
+
/**
|
|
1322
|
+
* What project it is
|
|
1323
|
+
* @type {string}
|
|
1324
|
+
* @memberof ApplicationSetsApiDeleteApplicationSet
|
|
1325
|
+
*/
|
|
1326
|
+
readonly project: string;
|
|
1327
|
+
/**
|
|
1328
|
+
* Application set\'s unique identifier
|
|
1329
|
+
* @type {string}
|
|
1330
|
+
* @memberof ApplicationSetsApiDeleteApplicationSet
|
|
1331
|
+
*/
|
|
1332
|
+
readonly applicationSetId: string;
|
|
1333
|
+
}
|
|
1334
|
+
/**
|
|
1335
|
+
* Request parameters for getApplicationSet operation in ApplicationSetsApi.
|
|
1336
|
+
* @export
|
|
1337
|
+
* @interface ApplicationSetsApiGetApplicationSetRequest
|
|
1338
|
+
*/
|
|
1339
|
+
export interface ApplicationSetsApiGetApplicationSetRequest {
|
|
1340
|
+
/**
|
|
1341
|
+
* What project it is
|
|
1342
|
+
* @type {string}
|
|
1343
|
+
* @memberof ApplicationSetsApiGetApplicationSet
|
|
1344
|
+
*/
|
|
1345
|
+
readonly project: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* Application set\'s unique identifier
|
|
1348
|
+
* @type {string}
|
|
1349
|
+
* @memberof ApplicationSetsApiGetApplicationSet
|
|
1350
|
+
*/
|
|
1351
|
+
readonly applicationSetId: string;
|
|
1352
|
+
}
|
|
1353
|
+
/**
|
|
1354
|
+
* Request parameters for listApplicationSets operation in ApplicationSetsApi.
|
|
1355
|
+
* @export
|
|
1356
|
+
* @interface ApplicationSetsApiListApplicationSetsRequest
|
|
1357
|
+
*/
|
|
1358
|
+
export interface ApplicationSetsApiListApplicationSetsRequest {
|
|
1359
|
+
/**
|
|
1360
|
+
* What project it is
|
|
1361
|
+
* @type {string}
|
|
1362
|
+
* @memberof ApplicationSetsApiListApplicationSets
|
|
1363
|
+
*/
|
|
1364
|
+
readonly project: string;
|
|
1365
|
+
/**
|
|
1366
|
+
* Page reference token
|
|
1367
|
+
* @type {number}
|
|
1368
|
+
* @memberof ApplicationSetsApiListApplicationSets
|
|
1369
|
+
*/
|
|
1370
|
+
readonly pageToken?: number;
|
|
1371
|
+
/**
|
|
1372
|
+
* Search term to filter based on product tags.
|
|
1373
|
+
* @type {string}
|
|
1374
|
+
* @memberof ApplicationSetsApiListApplicationSets
|
|
1375
|
+
*/
|
|
1376
|
+
readonly search?: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1379
|
+
* @type {number}
|
|
1380
|
+
* @memberof ApplicationSetsApiListApplicationSets
|
|
1381
|
+
*/
|
|
1382
|
+
readonly pageSize?: number;
|
|
1383
|
+
}
|
|
1384
|
+
/**
|
|
1385
|
+
* Request parameters for updateApplicationSet operation in ApplicationSetsApi.
|
|
1386
|
+
* @export
|
|
1387
|
+
* @interface ApplicationSetsApiUpdateApplicationSetRequest
|
|
1388
|
+
*/
|
|
1389
|
+
export interface ApplicationSetsApiUpdateApplicationSetRequest {
|
|
1390
|
+
/**
|
|
1391
|
+
* What project it is
|
|
1392
|
+
* @type {string}
|
|
1393
|
+
* @memberof ApplicationSetsApiUpdateApplicationSet
|
|
1394
|
+
*/
|
|
1395
|
+
readonly project: string;
|
|
1396
|
+
/**
|
|
1397
|
+
* Application set\'s unique identifier
|
|
1398
|
+
* @type {string}
|
|
1399
|
+
* @memberof ApplicationSetsApiUpdateApplicationSet
|
|
1400
|
+
*/
|
|
1401
|
+
readonly applicationSetId: string;
|
|
1402
|
+
/**
|
|
1403
|
+
* Create a new application set.
|
|
1404
|
+
* @type {UpdateApplicationSetRequest}
|
|
1405
|
+
* @memberof ApplicationSetsApiUpdateApplicationSet
|
|
1406
|
+
*/
|
|
1407
|
+
readonly updateApplicationSetRequest?: UpdateApplicationSetRequest;
|
|
1408
|
+
}
|
|
1409
|
+
/**
|
|
1410
|
+
* ApplicationSetsApi - object-oriented interface
|
|
1411
|
+
* @export
|
|
1412
|
+
* @class ApplicationSetsApi
|
|
1413
|
+
* @extends {BaseAPI}
|
|
1414
|
+
*/
|
|
1415
|
+
export declare class ApplicationSetsApi extends BaseAPI {
|
|
1416
|
+
/**
|
|
1417
|
+
* Creates a new application set.
|
|
1418
|
+
* @summary Create application set
|
|
1419
|
+
* @param {ApplicationSetsApiCreateApplicationSetRequest} requestParameters Request parameters.
|
|
1420
|
+
* @param {*} [options] Override http request option.
|
|
1421
|
+
* @throws {RequiredError}
|
|
1422
|
+
* @memberof ApplicationSetsApi
|
|
1423
|
+
*/
|
|
1424
|
+
createApplicationSet(requestParameters: ApplicationSetsApiCreateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
|
|
1425
|
+
/**
|
|
1426
|
+
* Deletes an existing application set.
|
|
1427
|
+
* @summary Delete an application set
|
|
1428
|
+
* @param {ApplicationSetsApiDeleteApplicationSetRequest} requestParameters Request parameters.
|
|
1429
|
+
* @param {*} [options] Override http request option.
|
|
1430
|
+
* @throws {RequiredError}
|
|
1431
|
+
* @memberof ApplicationSetsApi
|
|
1432
|
+
*/
|
|
1433
|
+
deleteApplicationSet(requestParameters: ApplicationSetsApiDeleteApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1434
|
+
/**
|
|
1435
|
+
* Get an application by the given id.
|
|
1436
|
+
* @summary Get an application set
|
|
1437
|
+
* @param {ApplicationSetsApiGetApplicationSetRequest} requestParameters Request parameters.
|
|
1438
|
+
* @param {*} [options] Override http request option.
|
|
1439
|
+
* @throws {RequiredError}
|
|
1440
|
+
* @memberof ApplicationSetsApi
|
|
1441
|
+
*/
|
|
1442
|
+
getApplicationSet(requestParameters: ApplicationSetsApiGetApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
|
|
1443
|
+
/**
|
|
1444
|
+
* Lists all application sets that belong to the given project.
|
|
1445
|
+
* @summary List application sets
|
|
1446
|
+
* @param {ApplicationSetsApiListApplicationSetsRequest} requestParameters Request parameters.
|
|
1447
|
+
* @param {*} [options] Override http request option.
|
|
1448
|
+
* @throws {RequiredError}
|
|
1449
|
+
* @memberof ApplicationSetsApi
|
|
1450
|
+
*/
|
|
1451
|
+
listApplicationSets(requestParameters: ApplicationSetsApiListApplicationSetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSetsResponse, any>>;
|
|
1452
|
+
/**
|
|
1453
|
+
* Updates an existing application set.
|
|
1454
|
+
* @summary Update application set
|
|
1455
|
+
* @param {ApplicationSetsApiUpdateApplicationSetRequest} requestParameters Request parameters.
|
|
1456
|
+
* @param {*} [options] Override http request option.
|
|
1457
|
+
* @throws {RequiredError}
|
|
1458
|
+
* @memberof ApplicationSetsApi
|
|
1459
|
+
*/
|
|
1460
|
+
updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationSet, any>>;
|
|
1461
|
+
}
|
|
856
1462
|
/**
|
|
857
1463
|
* ProductsApi - axios parameter creator
|
|
858
1464
|
* @export
|