@teemill/product-catalog 1.64.0 → 1.66.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 +11 -2
- package/api.ts +871 -16
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +580 -14
- package/dist/api.js +469 -4
- 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 +580 -14
- package/dist/esm/api.js +464 -3
- 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 -2
- package/docs/ApplicationGroup.md +28 -0
- package/docs/ApplicationGroupsApi.md +317 -0
- package/docs/ApplicationGroupsResponse.md +22 -0
- package/docs/ApplicationSet.md +1 -1
- package/docs/ApplicationSet1.md +1 -1
- package/docs/ApplicationSetsApi.md +1 -1
- package/docs/ApplicationTechnologyIntegrationProduct.md +1 -1
- package/docs/CreateApplication.md +2 -2
- package/docs/CreateApplicationGroupRequest.md +20 -0
- package/docs/ProductApplicationSetsInner.md +1 -1
- package/docs/UpdateApplicationGroupRequest.md +20 -0
- package/docs/Variant.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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.66.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -82,11 +82,11 @@ export interface Application {
|
|
|
82
82
|
*/
|
|
83
83
|
'src'?: string;
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* A reference to the application group. The src across all applications in the same group will be considered the same src. The is useful for DTF when using the same transfer across multiple products.
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof Application
|
|
88
88
|
*/
|
|
89
|
-
'
|
|
89
|
+
'groupRef'?: string | null;
|
|
90
90
|
/**
|
|
91
91
|
*
|
|
92
92
|
* @type {ApplicationMockup}
|
|
@@ -116,6 +116,7 @@ export declare const ApplicationTechnologyEnum: {
|
|
|
116
116
|
readonly AdditionalApplication: "additional_application";
|
|
117
117
|
readonly NotebookSublimation: "notebook_sublimation";
|
|
118
118
|
readonly DuplexPrint: "duplex_print";
|
|
119
|
+
readonly DuplexInsert: "duplex_insert";
|
|
119
120
|
};
|
|
120
121
|
export type ApplicationTechnologyEnum = typeof ApplicationTechnologyEnum[keyof typeof ApplicationTechnologyEnum];
|
|
121
122
|
export declare const ApplicationPlacementEnum: {
|
|
@@ -126,6 +127,62 @@ export declare const ApplicationPlacementEnum: {
|
|
|
126
127
|
readonly Neck: "neck";
|
|
127
128
|
};
|
|
128
129
|
export type ApplicationPlacementEnum = typeof ApplicationPlacementEnum[keyof typeof ApplicationPlacementEnum];
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @export
|
|
133
|
+
* @interface ApplicationGroup
|
|
134
|
+
*/
|
|
135
|
+
export interface ApplicationGroup {
|
|
136
|
+
/**
|
|
137
|
+
* Unique object identifier
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof ApplicationGroup
|
|
140
|
+
*/
|
|
141
|
+
'id': string;
|
|
142
|
+
/**
|
|
143
|
+
* A reference to the application group resource location
|
|
144
|
+
* @type {string}
|
|
145
|
+
* @memberof ApplicationGroup
|
|
146
|
+
*/
|
|
147
|
+
'ref': string;
|
|
148
|
+
/**
|
|
149
|
+
* Name of the application group
|
|
150
|
+
* @type {string}
|
|
151
|
+
* @memberof ApplicationGroup
|
|
152
|
+
*/
|
|
153
|
+
'name': string;
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof ApplicationGroup
|
|
158
|
+
*/
|
|
159
|
+
'createdAt': string;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof ApplicationGroup
|
|
164
|
+
*/
|
|
165
|
+
'updatedAt': string;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @export
|
|
170
|
+
* @interface ApplicationGroupsResponse
|
|
171
|
+
*/
|
|
172
|
+
export interface ApplicationGroupsResponse {
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {Array<ApplicationGroup>}
|
|
176
|
+
* @memberof ApplicationGroupsResponse
|
|
177
|
+
*/
|
|
178
|
+
'applicationGroups'?: Array<ApplicationGroup>;
|
|
179
|
+
/**
|
|
180
|
+
* The token referencing the next page number
|
|
181
|
+
* @type {number}
|
|
182
|
+
* @memberof ApplicationGroupsResponse
|
|
183
|
+
*/
|
|
184
|
+
'nextPageToken'?: number | null;
|
|
185
|
+
}
|
|
129
186
|
/**
|
|
130
187
|
*
|
|
131
188
|
* @export
|
|
@@ -284,10 +341,91 @@ export interface ApplicationPropertiesPositionInference {
|
|
|
284
341
|
'baseFlat': string;
|
|
285
342
|
}
|
|
286
343
|
/**
|
|
287
|
-
*
|
|
344
|
+
*
|
|
288
345
|
* @export
|
|
346
|
+
* @interface ApplicationPropertiesProperties
|
|
289
347
|
*/
|
|
290
|
-
export
|
|
348
|
+
export interface ApplicationPropertiesProperties {
|
|
349
|
+
/**
|
|
350
|
+
*
|
|
351
|
+
* @type {ApplicationPropertiesPosition}
|
|
352
|
+
* @memberof ApplicationPropertiesProperties
|
|
353
|
+
*/
|
|
354
|
+
'position'?: ApplicationPropertiesPosition | null;
|
|
355
|
+
/**
|
|
356
|
+
*
|
|
357
|
+
* @type {ApplicationPropertiesPositionInference}
|
|
358
|
+
* @memberof ApplicationPropertiesProperties
|
|
359
|
+
*/
|
|
360
|
+
'positionInference'?: ApplicationPropertiesPositionInference | null;
|
|
361
|
+
/**
|
|
362
|
+
* An array of text lines.
|
|
363
|
+
* @type {Array<string>}
|
|
364
|
+
* @memberof ApplicationPropertiesProperties
|
|
365
|
+
*/
|
|
366
|
+
'lines'?: Array<string>;
|
|
367
|
+
/**
|
|
368
|
+
* The font to be used for the text. This font must be available in the PodOS font library.
|
|
369
|
+
* @type {string}
|
|
370
|
+
* @memberof ApplicationPropertiesProperties
|
|
371
|
+
*/
|
|
372
|
+
'font'?: string;
|
|
373
|
+
/**
|
|
374
|
+
* The size of the text in pixels.
|
|
375
|
+
* @type {number}
|
|
376
|
+
* @memberof ApplicationPropertiesProperties
|
|
377
|
+
*/
|
|
378
|
+
'fontSize'?: number;
|
|
379
|
+
/**
|
|
380
|
+
* The weight of the text. This must be a valid CSS font-weight value.
|
|
381
|
+
* @type {string}
|
|
382
|
+
* @memberof ApplicationPropertiesProperties
|
|
383
|
+
*/
|
|
384
|
+
'fontWeight'?: ApplicationPropertiesPropertiesFontWeightEnum;
|
|
385
|
+
/**
|
|
386
|
+
* The style of the text. This must be a valid CSS font-style value.
|
|
387
|
+
* @type {string}
|
|
388
|
+
* @memberof ApplicationPropertiesProperties
|
|
389
|
+
*/
|
|
390
|
+
'fontStyle'?: ApplicationPropertiesPropertiesFontStyleEnum;
|
|
391
|
+
/**
|
|
392
|
+
* The colour of the text in hex format.
|
|
393
|
+
* @type {string}
|
|
394
|
+
* @memberof ApplicationPropertiesProperties
|
|
395
|
+
*/
|
|
396
|
+
'color'?: string;
|
|
397
|
+
/**
|
|
398
|
+
* Width of the application in pixels
|
|
399
|
+
* @type {number}
|
|
400
|
+
* @memberof ApplicationPropertiesProperties
|
|
401
|
+
*/
|
|
402
|
+
'width'?: number | null;
|
|
403
|
+
/**
|
|
404
|
+
* Height of the application in pixels
|
|
405
|
+
* @type {number}
|
|
406
|
+
* @memberof ApplicationPropertiesProperties
|
|
407
|
+
*/
|
|
408
|
+
'height'?: number | null;
|
|
409
|
+
/**
|
|
410
|
+
*
|
|
411
|
+
* @type {ApplicationPropertiesMetadata}
|
|
412
|
+
* @memberof ApplicationPropertiesProperties
|
|
413
|
+
*/
|
|
414
|
+
'metadata'?: ApplicationPropertiesMetadata | null;
|
|
415
|
+
}
|
|
416
|
+
export declare const ApplicationPropertiesPropertiesFontWeightEnum: {
|
|
417
|
+
readonly Lighter: "lighter";
|
|
418
|
+
readonly Normal: "normal";
|
|
419
|
+
readonly Bold: "bold";
|
|
420
|
+
readonly Bolder: "bolder";
|
|
421
|
+
};
|
|
422
|
+
export type ApplicationPropertiesPropertiesFontWeightEnum = typeof ApplicationPropertiesPropertiesFontWeightEnum[keyof typeof ApplicationPropertiesPropertiesFontWeightEnum];
|
|
423
|
+
export declare const ApplicationPropertiesPropertiesFontStyleEnum: {
|
|
424
|
+
readonly Normal: "normal";
|
|
425
|
+
readonly Italic: "italic";
|
|
426
|
+
readonly Oblique: "oblique";
|
|
427
|
+
};
|
|
428
|
+
export type ApplicationPropertiesPropertiesFontStyleEnum = typeof ApplicationPropertiesPropertiesFontStyleEnum[keyof typeof ApplicationPropertiesPropertiesFontStyleEnum];
|
|
291
429
|
/**
|
|
292
430
|
*
|
|
293
431
|
* @export
|
|
@@ -301,7 +439,7 @@ export interface ApplicationSet {
|
|
|
301
439
|
*/
|
|
302
440
|
'id': string;
|
|
303
441
|
/**
|
|
304
|
-
* A reference to the resource location
|
|
442
|
+
* A reference to the application set resource location
|
|
305
443
|
* @type {string}
|
|
306
444
|
* @memberof ApplicationSet
|
|
307
445
|
*/
|
|
@@ -368,7 +506,7 @@ export interface ApplicationSet1 {
|
|
|
368
506
|
*/
|
|
369
507
|
'id'?: string;
|
|
370
508
|
/**
|
|
371
|
-
* A reference to the resource location
|
|
509
|
+
* A reference to the application set resource location
|
|
372
510
|
* @type {string}
|
|
373
511
|
* @memberof ApplicationSet1
|
|
374
512
|
*/
|
|
@@ -481,7 +619,7 @@ export interface ApplicationTechnologyIntegrationProduct {
|
|
|
481
619
|
*/
|
|
482
620
|
'sku'?: string;
|
|
483
621
|
/**
|
|
484
|
-
* A reference to the resource location
|
|
622
|
+
* A reference to the integration product resource location
|
|
485
623
|
* @type {string}
|
|
486
624
|
* @memberof ApplicationTechnologyIntegrationProduct
|
|
487
625
|
*/
|
|
@@ -593,11 +731,11 @@ export interface CreateApplication {
|
|
|
593
731
|
*/
|
|
594
732
|
'src': string;
|
|
595
733
|
/**
|
|
596
|
-
*
|
|
734
|
+
* A reference to the application group. The src across all applications in the same group will be considered the same src. The is useful for DTF when using the same transfer across multiple products.
|
|
597
735
|
* @type {string}
|
|
598
736
|
* @memberof CreateApplication
|
|
599
737
|
*/
|
|
600
|
-
'
|
|
738
|
+
'groupRef'?: string | null;
|
|
601
739
|
/**
|
|
602
740
|
* 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.
|
|
603
741
|
* @type {boolean}
|
|
@@ -621,6 +759,7 @@ export declare const CreateApplicationTechnologyEnum: {
|
|
|
621
759
|
readonly AdditionalApplication: "additional_application";
|
|
622
760
|
readonly NotebookSublimation: "notebook_sublimation";
|
|
623
761
|
readonly DuplexPrint: "duplex_print";
|
|
762
|
+
readonly DuplexInsert: "duplex_insert";
|
|
624
763
|
};
|
|
625
764
|
export type CreateApplicationTechnologyEnum = typeof CreateApplicationTechnologyEnum[keyof typeof CreateApplicationTechnologyEnum];
|
|
626
765
|
export declare const CreateApplicationPlacementEnum: {
|
|
@@ -632,10 +771,104 @@ export declare const CreateApplicationPlacementEnum: {
|
|
|
632
771
|
};
|
|
633
772
|
export type CreateApplicationPlacementEnum = typeof CreateApplicationPlacementEnum[keyof typeof CreateApplicationPlacementEnum];
|
|
634
773
|
/**
|
|
635
|
-
*
|
|
774
|
+
*
|
|
775
|
+
* @export
|
|
776
|
+
* @interface CreateApplicationGroupRequest
|
|
777
|
+
*/
|
|
778
|
+
export interface CreateApplicationGroupRequest {
|
|
779
|
+
/**
|
|
780
|
+
* Name of the application group
|
|
781
|
+
* @type {string}
|
|
782
|
+
* @memberof CreateApplicationGroupRequest
|
|
783
|
+
*/
|
|
784
|
+
'name': string;
|
|
785
|
+
}
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
636
788
|
* @export
|
|
789
|
+
* @interface CreateApplicationProperties
|
|
637
790
|
*/
|
|
638
|
-
export
|
|
791
|
+
export interface CreateApplicationProperties {
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {ApplicationPropertiesPosition}
|
|
795
|
+
* @memberof CreateApplicationProperties
|
|
796
|
+
*/
|
|
797
|
+
'position'?: ApplicationPropertiesPosition | null;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {ApplicationPropertiesPositionInference}
|
|
801
|
+
* @memberof CreateApplicationProperties
|
|
802
|
+
*/
|
|
803
|
+
'positionInference'?: ApplicationPropertiesPositionInference | null;
|
|
804
|
+
/**
|
|
805
|
+
* An array of text lines.
|
|
806
|
+
* @type {Array<string>}
|
|
807
|
+
* @memberof CreateApplicationProperties
|
|
808
|
+
*/
|
|
809
|
+
'lines'?: Array<string>;
|
|
810
|
+
/**
|
|
811
|
+
* The font to be used for the text. This font must be available in the PodOS font library.
|
|
812
|
+
* @type {string}
|
|
813
|
+
* @memberof CreateApplicationProperties
|
|
814
|
+
*/
|
|
815
|
+
'font'?: string;
|
|
816
|
+
/**
|
|
817
|
+
* The size of the text in pixels.
|
|
818
|
+
* @type {number}
|
|
819
|
+
* @memberof CreateApplicationProperties
|
|
820
|
+
*/
|
|
821
|
+
'fontSize'?: number;
|
|
822
|
+
/**
|
|
823
|
+
* The weight of the text. This must be a valid CSS font-weight value.
|
|
824
|
+
* @type {string}
|
|
825
|
+
* @memberof CreateApplicationProperties
|
|
826
|
+
*/
|
|
827
|
+
'fontWeight'?: CreateApplicationPropertiesFontWeightEnum;
|
|
828
|
+
/**
|
|
829
|
+
* The style of the text. This must be a valid CSS font-style value.
|
|
830
|
+
* @type {string}
|
|
831
|
+
* @memberof CreateApplicationProperties
|
|
832
|
+
*/
|
|
833
|
+
'fontStyle'?: CreateApplicationPropertiesFontStyleEnum;
|
|
834
|
+
/**
|
|
835
|
+
* The colour of the text in hex format.
|
|
836
|
+
* @type {string}
|
|
837
|
+
* @memberof CreateApplicationProperties
|
|
838
|
+
*/
|
|
839
|
+
'color'?: string;
|
|
840
|
+
/**
|
|
841
|
+
* Width of the application in pixels
|
|
842
|
+
* @type {number}
|
|
843
|
+
* @memberof CreateApplicationProperties
|
|
844
|
+
*/
|
|
845
|
+
'width'?: number | null;
|
|
846
|
+
/**
|
|
847
|
+
* Height of the application in pixels
|
|
848
|
+
* @type {number}
|
|
849
|
+
* @memberof CreateApplicationProperties
|
|
850
|
+
*/
|
|
851
|
+
'height'?: number | null;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {ApplicationPropertiesMetadata}
|
|
855
|
+
* @memberof CreateApplicationProperties
|
|
856
|
+
*/
|
|
857
|
+
'metadata'?: ApplicationPropertiesMetadata | null;
|
|
858
|
+
}
|
|
859
|
+
export declare const CreateApplicationPropertiesFontWeightEnum: {
|
|
860
|
+
readonly Lighter: "lighter";
|
|
861
|
+
readonly Normal: "normal";
|
|
862
|
+
readonly Bold: "bold";
|
|
863
|
+
readonly Bolder: "bolder";
|
|
864
|
+
};
|
|
865
|
+
export type CreateApplicationPropertiesFontWeightEnum = typeof CreateApplicationPropertiesFontWeightEnum[keyof typeof CreateApplicationPropertiesFontWeightEnum];
|
|
866
|
+
export declare const CreateApplicationPropertiesFontStyleEnum: {
|
|
867
|
+
readonly Normal: "normal";
|
|
868
|
+
readonly Italic: "italic";
|
|
869
|
+
readonly Oblique: "oblique";
|
|
870
|
+
};
|
|
871
|
+
export type CreateApplicationPropertiesFontStyleEnum = typeof CreateApplicationPropertiesFontStyleEnum[keyof typeof CreateApplicationPropertiesFontStyleEnum];
|
|
639
872
|
/**
|
|
640
873
|
*
|
|
641
874
|
* @export
|
|
@@ -1557,7 +1790,7 @@ export interface ProductApplicationSetsInner {
|
|
|
1557
1790
|
*/
|
|
1558
1791
|
'id'?: string;
|
|
1559
1792
|
/**
|
|
1560
|
-
* A reference to the resource location
|
|
1793
|
+
* A reference to the application set resource location
|
|
1561
1794
|
* @type {string}
|
|
1562
1795
|
* @memberof ProductApplicationSetsInner
|
|
1563
1796
|
*/
|
|
@@ -1885,6 +2118,19 @@ export interface TextApplicationPropertiesPosition {
|
|
|
1885
2118
|
*/
|
|
1886
2119
|
'z'?: number;
|
|
1887
2120
|
}
|
|
2121
|
+
/**
|
|
2122
|
+
*
|
|
2123
|
+
* @export
|
|
2124
|
+
* @interface UpdateApplicationGroupRequest
|
|
2125
|
+
*/
|
|
2126
|
+
export interface UpdateApplicationGroupRequest {
|
|
2127
|
+
/**
|
|
2128
|
+
* Name of the application group
|
|
2129
|
+
* @type {string}
|
|
2130
|
+
* @memberof UpdateApplicationGroupRequest
|
|
2131
|
+
*/
|
|
2132
|
+
'name'?: string;
|
|
2133
|
+
}
|
|
1888
2134
|
/**
|
|
1889
2135
|
*
|
|
1890
2136
|
* @export
|
|
@@ -2417,7 +2663,7 @@ export interface Variant {
|
|
|
2417
2663
|
*/
|
|
2418
2664
|
'sku': string;
|
|
2419
2665
|
/**
|
|
2420
|
-
* A reference to the resource location
|
|
2666
|
+
* A reference to the variant resource location
|
|
2421
2667
|
* @type {string}
|
|
2422
2668
|
* @memberof Variant
|
|
2423
2669
|
*/
|
|
@@ -2658,6 +2904,326 @@ export interface VideoFile {
|
|
|
2658
2904
|
*/
|
|
2659
2905
|
'src'?: string;
|
|
2660
2906
|
}
|
|
2907
|
+
/**
|
|
2908
|
+
* ApplicationGroupsApi - axios parameter creator
|
|
2909
|
+
* @export
|
|
2910
|
+
*/
|
|
2911
|
+
export declare const ApplicationGroupsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2912
|
+
/**
|
|
2913
|
+
* Creates a new application group. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
2914
|
+
* @summary Create application group
|
|
2915
|
+
* @param {string} project What project it is
|
|
2916
|
+
* @param {CreateApplicationGroupRequest} [createApplicationGroupRequest] Create a new application group.
|
|
2917
|
+
* @param {*} [options] Override http request option.
|
|
2918
|
+
* @throws {RequiredError}
|
|
2919
|
+
*/
|
|
2920
|
+
createApplicationGroup: (project: string, createApplicationGroupRequest?: CreateApplicationGroupRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2921
|
+
/**
|
|
2922
|
+
* Deletes an existing application group.
|
|
2923
|
+
* @summary Delete an application group
|
|
2924
|
+
* @param {string} project What project it is
|
|
2925
|
+
* @param {string} applicationGroupId Application group\'s unique identifier
|
|
2926
|
+
* @param {*} [options] Override http request option.
|
|
2927
|
+
* @throws {RequiredError}
|
|
2928
|
+
*/
|
|
2929
|
+
deleteApplicationGroup: (project: string, applicationGroupId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2930
|
+
/**
|
|
2931
|
+
* Get an application group by the given id. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
2932
|
+
* @summary Get an application group
|
|
2933
|
+
* @param {string} project What project it is
|
|
2934
|
+
* @param {string} applicationGroupId Application group\'s unique identifier
|
|
2935
|
+
* @param {*} [options] Override http request option.
|
|
2936
|
+
* @throws {RequiredError}
|
|
2937
|
+
*/
|
|
2938
|
+
getApplicationGroup: (project: string, applicationGroupId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2939
|
+
/**
|
|
2940
|
+
* Lists all application groups that belong to the given project. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
2941
|
+
* @summary List application groups
|
|
2942
|
+
* @param {string} project What project it is
|
|
2943
|
+
* @param {number} [pageToken] Page reference token
|
|
2944
|
+
* @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.
|
|
2945
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2946
|
+
* @param {*} [options] Override http request option.
|
|
2947
|
+
* @throws {RequiredError}
|
|
2948
|
+
*/
|
|
2949
|
+
listApplicationGroups: (project: string, pageToken?: number, search?: string, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2950
|
+
/**
|
|
2951
|
+
* Updates an existing application group.
|
|
2952
|
+
* @summary Update application group
|
|
2953
|
+
* @param {string} project What project it is
|
|
2954
|
+
* @param {string} applicationGroupId Application group\'s unique identifier
|
|
2955
|
+
* @param {UpdateApplicationGroupRequest} [updateApplicationGroupRequest] Update an existing application group.
|
|
2956
|
+
* @param {*} [options] Override http request option.
|
|
2957
|
+
* @throws {RequiredError}
|
|
2958
|
+
*/
|
|
2959
|
+
updateApplicationGroup: (project: string, applicationGroupId: string, updateApplicationGroupRequest?: UpdateApplicationGroupRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2960
|
+
};
|
|
2961
|
+
/**
|
|
2962
|
+
* ApplicationGroupsApi - functional programming interface
|
|
2963
|
+
* @export
|
|
2964
|
+
*/
|
|
2965
|
+
export declare const ApplicationGroupsApiFp: (configuration?: Configuration) => {
|
|
2966
|
+
/**
|
|
2967
|
+
* Creates a new application group. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
2968
|
+
* @summary Create application group
|
|
2969
|
+
* @param {string} project What project it is
|
|
2970
|
+
* @param {CreateApplicationGroupRequest} [createApplicationGroupRequest] Create a new application group.
|
|
2971
|
+
* @param {*} [options] Override http request option.
|
|
2972
|
+
* @throws {RequiredError}
|
|
2973
|
+
*/
|
|
2974
|
+
createApplicationGroup(project: string, createApplicationGroupRequest?: CreateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroup>>;
|
|
2975
|
+
/**
|
|
2976
|
+
* Deletes an existing application group.
|
|
2977
|
+
* @summary Delete an application group
|
|
2978
|
+
* @param {string} project What project it is
|
|
2979
|
+
* @param {string} applicationGroupId Application group\'s unique identifier
|
|
2980
|
+
* @param {*} [options] Override http request option.
|
|
2981
|
+
* @throws {RequiredError}
|
|
2982
|
+
*/
|
|
2983
|
+
deleteApplicationGroup(project: string, applicationGroupId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2984
|
+
/**
|
|
2985
|
+
* Get an application group by the given id. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
2986
|
+
* @summary Get an application group
|
|
2987
|
+
* @param {string} project What project it is
|
|
2988
|
+
* @param {string} applicationGroupId Application group\'s unique identifier
|
|
2989
|
+
* @param {*} [options] Override http request option.
|
|
2990
|
+
* @throws {RequiredError}
|
|
2991
|
+
*/
|
|
2992
|
+
getApplicationGroup(project: string, applicationGroupId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroup>>;
|
|
2993
|
+
/**
|
|
2994
|
+
* Lists all application groups that belong to the given project. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
2995
|
+
* @summary List application groups
|
|
2996
|
+
* @param {string} project What project it is
|
|
2997
|
+
* @param {number} [pageToken] Page reference token
|
|
2998
|
+
* @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.
|
|
2999
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3000
|
+
* @param {*} [options] Override http request option.
|
|
3001
|
+
* @throws {RequiredError}
|
|
3002
|
+
*/
|
|
3003
|
+
listApplicationGroups(project: string, pageToken?: number, search?: string, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroupsResponse>>;
|
|
3004
|
+
/**
|
|
3005
|
+
* Updates an existing application group.
|
|
3006
|
+
* @summary Update application group
|
|
3007
|
+
* @param {string} project What project it is
|
|
3008
|
+
* @param {string} applicationGroupId Application group\'s unique identifier
|
|
3009
|
+
* @param {UpdateApplicationGroupRequest} [updateApplicationGroupRequest] Update an existing application group.
|
|
3010
|
+
* @param {*} [options] Override http request option.
|
|
3011
|
+
* @throws {RequiredError}
|
|
3012
|
+
*/
|
|
3013
|
+
updateApplicationGroup(project: string, applicationGroupId: string, updateApplicationGroupRequest?: UpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroup>>;
|
|
3014
|
+
};
|
|
3015
|
+
/**
|
|
3016
|
+
* ApplicationGroupsApi - factory interface
|
|
3017
|
+
* @export
|
|
3018
|
+
*/
|
|
3019
|
+
export declare const ApplicationGroupsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3020
|
+
/**
|
|
3021
|
+
* Creates a new application group. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
3022
|
+
* @summary Create application group
|
|
3023
|
+
* @param {ApplicationGroupsApiCreateApplicationGroupRequest} requestParameters Request parameters.
|
|
3024
|
+
* @param {*} [options] Override http request option.
|
|
3025
|
+
* @throws {RequiredError}
|
|
3026
|
+
*/
|
|
3027
|
+
createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroup>;
|
|
3028
|
+
/**
|
|
3029
|
+
* Deletes an existing application group.
|
|
3030
|
+
* @summary Delete an application group
|
|
3031
|
+
* @param {ApplicationGroupsApiDeleteApplicationGroupRequest} requestParameters Request parameters.
|
|
3032
|
+
* @param {*} [options] Override http request option.
|
|
3033
|
+
* @throws {RequiredError}
|
|
3034
|
+
*/
|
|
3035
|
+
deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3036
|
+
/**
|
|
3037
|
+
* Get an application group by the given id. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
3038
|
+
* @summary Get an application group
|
|
3039
|
+
* @param {ApplicationGroupsApiGetApplicationGroupRequest} requestParameters Request parameters.
|
|
3040
|
+
* @param {*} [options] Override http request option.
|
|
3041
|
+
* @throws {RequiredError}
|
|
3042
|
+
*/
|
|
3043
|
+
getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroup>;
|
|
3044
|
+
/**
|
|
3045
|
+
* Lists all application groups that belong to the given project. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
3046
|
+
* @summary List application groups
|
|
3047
|
+
* @param {ApplicationGroupsApiListApplicationGroupsRequest} requestParameters Request parameters.
|
|
3048
|
+
* @param {*} [options] Override http request option.
|
|
3049
|
+
* @throws {RequiredError}
|
|
3050
|
+
*/
|
|
3051
|
+
listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroupsResponse>;
|
|
3052
|
+
/**
|
|
3053
|
+
* Updates an existing application group.
|
|
3054
|
+
* @summary Update application group
|
|
3055
|
+
* @param {ApplicationGroupsApiUpdateApplicationGroupRequest} requestParameters Request parameters.
|
|
3056
|
+
* @param {*} [options] Override http request option.
|
|
3057
|
+
* @throws {RequiredError}
|
|
3058
|
+
*/
|
|
3059
|
+
updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroup>;
|
|
3060
|
+
};
|
|
3061
|
+
/**
|
|
3062
|
+
* Request parameters for createApplicationGroup operation in ApplicationGroupsApi.
|
|
3063
|
+
* @export
|
|
3064
|
+
* @interface ApplicationGroupsApiCreateApplicationGroupRequest
|
|
3065
|
+
*/
|
|
3066
|
+
export interface ApplicationGroupsApiCreateApplicationGroupRequest {
|
|
3067
|
+
/**
|
|
3068
|
+
* What project it is
|
|
3069
|
+
* @type {string}
|
|
3070
|
+
* @memberof ApplicationGroupsApiCreateApplicationGroup
|
|
3071
|
+
*/
|
|
3072
|
+
readonly project: string;
|
|
3073
|
+
/**
|
|
3074
|
+
* Create a new application group.
|
|
3075
|
+
* @type {CreateApplicationGroupRequest}
|
|
3076
|
+
* @memberof ApplicationGroupsApiCreateApplicationGroup
|
|
3077
|
+
*/
|
|
3078
|
+
readonly createApplicationGroupRequest?: CreateApplicationGroupRequest;
|
|
3079
|
+
}
|
|
3080
|
+
/**
|
|
3081
|
+
* Request parameters for deleteApplicationGroup operation in ApplicationGroupsApi.
|
|
3082
|
+
* @export
|
|
3083
|
+
* @interface ApplicationGroupsApiDeleteApplicationGroupRequest
|
|
3084
|
+
*/
|
|
3085
|
+
export interface ApplicationGroupsApiDeleteApplicationGroupRequest {
|
|
3086
|
+
/**
|
|
3087
|
+
* What project it is
|
|
3088
|
+
* @type {string}
|
|
3089
|
+
* @memberof ApplicationGroupsApiDeleteApplicationGroup
|
|
3090
|
+
*/
|
|
3091
|
+
readonly project: string;
|
|
3092
|
+
/**
|
|
3093
|
+
* Application group\'s unique identifier
|
|
3094
|
+
* @type {string}
|
|
3095
|
+
* @memberof ApplicationGroupsApiDeleteApplicationGroup
|
|
3096
|
+
*/
|
|
3097
|
+
readonly applicationGroupId: string;
|
|
3098
|
+
}
|
|
3099
|
+
/**
|
|
3100
|
+
* Request parameters for getApplicationGroup operation in ApplicationGroupsApi.
|
|
3101
|
+
* @export
|
|
3102
|
+
* @interface ApplicationGroupsApiGetApplicationGroupRequest
|
|
3103
|
+
*/
|
|
3104
|
+
export interface ApplicationGroupsApiGetApplicationGroupRequest {
|
|
3105
|
+
/**
|
|
3106
|
+
* What project it is
|
|
3107
|
+
* @type {string}
|
|
3108
|
+
* @memberof ApplicationGroupsApiGetApplicationGroup
|
|
3109
|
+
*/
|
|
3110
|
+
readonly project: string;
|
|
3111
|
+
/**
|
|
3112
|
+
* Application group\'s unique identifier
|
|
3113
|
+
* @type {string}
|
|
3114
|
+
* @memberof ApplicationGroupsApiGetApplicationGroup
|
|
3115
|
+
*/
|
|
3116
|
+
readonly applicationGroupId: string;
|
|
3117
|
+
}
|
|
3118
|
+
/**
|
|
3119
|
+
* Request parameters for listApplicationGroups operation in ApplicationGroupsApi.
|
|
3120
|
+
* @export
|
|
3121
|
+
* @interface ApplicationGroupsApiListApplicationGroupsRequest
|
|
3122
|
+
*/
|
|
3123
|
+
export interface ApplicationGroupsApiListApplicationGroupsRequest {
|
|
3124
|
+
/**
|
|
3125
|
+
* What project it is
|
|
3126
|
+
* @type {string}
|
|
3127
|
+
* @memberof ApplicationGroupsApiListApplicationGroups
|
|
3128
|
+
*/
|
|
3129
|
+
readonly project: string;
|
|
3130
|
+
/**
|
|
3131
|
+
* Page reference token
|
|
3132
|
+
* @type {number}
|
|
3133
|
+
* @memberof ApplicationGroupsApiListApplicationGroups
|
|
3134
|
+
*/
|
|
3135
|
+
readonly pageToken?: number;
|
|
3136
|
+
/**
|
|
3137
|
+
* 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.
|
|
3138
|
+
* @type {string}
|
|
3139
|
+
* @memberof ApplicationGroupsApiListApplicationGroups
|
|
3140
|
+
*/
|
|
3141
|
+
readonly search?: string;
|
|
3142
|
+
/**
|
|
3143
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3144
|
+
* @type {number}
|
|
3145
|
+
* @memberof ApplicationGroupsApiListApplicationGroups
|
|
3146
|
+
*/
|
|
3147
|
+
readonly pageSize?: number;
|
|
3148
|
+
}
|
|
3149
|
+
/**
|
|
3150
|
+
* Request parameters for updateApplicationGroup operation in ApplicationGroupsApi.
|
|
3151
|
+
* @export
|
|
3152
|
+
* @interface ApplicationGroupsApiUpdateApplicationGroupRequest
|
|
3153
|
+
*/
|
|
3154
|
+
export interface ApplicationGroupsApiUpdateApplicationGroupRequest {
|
|
3155
|
+
/**
|
|
3156
|
+
* What project it is
|
|
3157
|
+
* @type {string}
|
|
3158
|
+
* @memberof ApplicationGroupsApiUpdateApplicationGroup
|
|
3159
|
+
*/
|
|
3160
|
+
readonly project: string;
|
|
3161
|
+
/**
|
|
3162
|
+
* Application group\'s unique identifier
|
|
3163
|
+
* @type {string}
|
|
3164
|
+
* @memberof ApplicationGroupsApiUpdateApplicationGroup
|
|
3165
|
+
*/
|
|
3166
|
+
readonly applicationGroupId: string;
|
|
3167
|
+
/**
|
|
3168
|
+
* Update an existing application group.
|
|
3169
|
+
* @type {UpdateApplicationGroupRequest}
|
|
3170
|
+
* @memberof ApplicationGroupsApiUpdateApplicationGroup
|
|
3171
|
+
*/
|
|
3172
|
+
readonly updateApplicationGroupRequest?: UpdateApplicationGroupRequest;
|
|
3173
|
+
}
|
|
3174
|
+
/**
|
|
3175
|
+
* ApplicationGroupsApi - object-oriented interface
|
|
3176
|
+
* @export
|
|
3177
|
+
* @class ApplicationGroupsApi
|
|
3178
|
+
* @extends {BaseAPI}
|
|
3179
|
+
*/
|
|
3180
|
+
export declare class ApplicationGroupsApi extends BaseAPI {
|
|
3181
|
+
/**
|
|
3182
|
+
* Creates a new application group. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
3183
|
+
* @summary Create application group
|
|
3184
|
+
* @param {ApplicationGroupsApiCreateApplicationGroupRequest} requestParameters Request parameters.
|
|
3185
|
+
* @param {*} [options] Override http request option.
|
|
3186
|
+
* @throws {RequiredError}
|
|
3187
|
+
* @memberof ApplicationGroupsApi
|
|
3188
|
+
*/
|
|
3189
|
+
createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
|
|
3190
|
+
/**
|
|
3191
|
+
* Deletes an existing application group.
|
|
3192
|
+
* @summary Delete an application group
|
|
3193
|
+
* @param {ApplicationGroupsApiDeleteApplicationGroupRequest} requestParameters Request parameters.
|
|
3194
|
+
* @param {*} [options] Override http request option.
|
|
3195
|
+
* @throws {RequiredError}
|
|
3196
|
+
* @memberof ApplicationGroupsApi
|
|
3197
|
+
*/
|
|
3198
|
+
deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3199
|
+
/**
|
|
3200
|
+
* Get an application group by the given id. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
3201
|
+
* @summary Get an application group
|
|
3202
|
+
* @param {ApplicationGroupsApiGetApplicationGroupRequest} requestParameters Request parameters.
|
|
3203
|
+
* @param {*} [options] Override http request option.
|
|
3204
|
+
* @throws {RequiredError}
|
|
3205
|
+
* @memberof ApplicationGroupsApi
|
|
3206
|
+
*/
|
|
3207
|
+
getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
|
|
3208
|
+
/**
|
|
3209
|
+
* Lists all application groups that belong to the given project. Application groups are used to organize design applications that share the same source file, particularly useful for DTF (Direct to Film) transfers where the same transfer can be used across multiple products or variants.
|
|
3210
|
+
* @summary List application groups
|
|
3211
|
+
* @param {ApplicationGroupsApiListApplicationGroupsRequest} requestParameters Request parameters.
|
|
3212
|
+
* @param {*} [options] Override http request option.
|
|
3213
|
+
* @throws {RequiredError}
|
|
3214
|
+
* @memberof ApplicationGroupsApi
|
|
3215
|
+
*/
|
|
3216
|
+
listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroupsResponse, any>>;
|
|
3217
|
+
/**
|
|
3218
|
+
* Updates an existing application group.
|
|
3219
|
+
* @summary Update application group
|
|
3220
|
+
* @param {ApplicationGroupsApiUpdateApplicationGroupRequest} requestParameters Request parameters.
|
|
3221
|
+
* @param {*} [options] Override http request option.
|
|
3222
|
+
* @throws {RequiredError}
|
|
3223
|
+
* @memberof ApplicationGroupsApi
|
|
3224
|
+
*/
|
|
3225
|
+
updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
|
|
3226
|
+
}
|
|
2661
3227
|
/**
|
|
2662
3228
|
* ApplicationSetsApi - axios parameter creator
|
|
2663
3229
|
* @export
|