@teemill/product-catalog 1.64.1 → 1.68.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/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.64.1
5
+ * The version of the OpenAPI document: 1.68.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
- * The group of the application. 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.
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
- 'group'?: string | null;
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
- * @type ApplicationPropertiesProperties
344
+ *
288
345
  * @export
346
+ * @interface ApplicationPropertiesProperties
289
347
  */
290
- export type ApplicationPropertiesProperties = ApplicationProperties | TextApplicationProperties;
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
@@ -593,11 +731,11 @@ export interface CreateApplication {
593
731
  */
594
732
  'src': string;
595
733
  /**
596
- * The group of the application. 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.
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
- 'group'?: string | null;
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
- * @type CreateApplicationProperties
774
+ *
636
775
  * @export
776
+ * @interface CreateApplicationGroupRequest
637
777
  */
638
- export type CreateApplicationProperties = ApplicationProperties | TextApplicationProperties;
778
+ export interface CreateApplicationGroupRequest {
779
+ /**
780
+ * Name of the application group
781
+ * @type {string}
782
+ * @memberof CreateApplicationGroupRequest
783
+ */
784
+ 'name': string;
785
+ }
786
+ /**
787
+ *
788
+ * @export
789
+ * @interface CreateApplicationProperties
790
+ */
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
@@ -1220,6 +1453,37 @@ export interface ImageFile {
1220
1453
  * @memberof ImageFile
1221
1454
  */
1222
1455
  'variantIds'?: Array<string>;
1456
+ /**
1457
+ *
1458
+ * @type {ImageFileFocalPoint}
1459
+ * @memberof ImageFile
1460
+ */
1461
+ 'focalPoint'?: ImageFileFocalPoint;
1462
+ /**
1463
+ * The zoom level of the image, used for cropping the image when it\'s rendered to specific dimensions.
1464
+ * @type {number}
1465
+ * @memberof ImageFile
1466
+ */
1467
+ 'zoom'?: number;
1468
+ }
1469
+ /**
1470
+ * The focal point of the image, used for positioning the image when it\'s rendered to specific dimensions.
1471
+ * @export
1472
+ * @interface ImageFileFocalPoint
1473
+ */
1474
+ export interface ImageFileFocalPoint {
1475
+ /**
1476
+ * The x-coordinate of the focal point, where 0 is the left edge and 1 is the right edge.
1477
+ * @type {number}
1478
+ * @memberof ImageFileFocalPoint
1479
+ */
1480
+ 'x': number;
1481
+ /**
1482
+ * The y-coordinate of the focal point, where 0 is the top edge and 1 is the bottom edge.
1483
+ * @type {number}
1484
+ * @memberof ImageFileFocalPoint
1485
+ */
1486
+ 'y': number;
1223
1487
  }
1224
1488
  /**
1225
1489
  *
@@ -1885,6 +2149,19 @@ export interface TextApplicationPropertiesPosition {
1885
2149
  */
1886
2150
  'z'?: number;
1887
2151
  }
2152
+ /**
2153
+ *
2154
+ * @export
2155
+ * @interface UpdateApplicationGroupRequest
2156
+ */
2157
+ export interface UpdateApplicationGroupRequest {
2158
+ /**
2159
+ * Name of the application group
2160
+ * @type {string}
2161
+ * @memberof UpdateApplicationGroupRequest
2162
+ */
2163
+ 'name'?: string;
2164
+ }
1888
2165
  /**
1889
2166
  *
1890
2167
  * @export
@@ -2658,6 +2935,326 @@ export interface VideoFile {
2658
2935
  */
2659
2936
  'src'?: string;
2660
2937
  }
2938
+ /**
2939
+ * ApplicationGroupsApi - axios parameter creator
2940
+ * @export
2941
+ */
2942
+ export declare const ApplicationGroupsApiAxiosParamCreator: (configuration?: Configuration) => {
2943
+ /**
2944
+ * 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.
2945
+ * @summary Create application group
2946
+ * @param {string} project What project it is
2947
+ * @param {CreateApplicationGroupRequest} [createApplicationGroupRequest] Create a new application group.
2948
+ * @param {*} [options] Override http request option.
2949
+ * @throws {RequiredError}
2950
+ */
2951
+ createApplicationGroup: (project: string, createApplicationGroupRequest?: CreateApplicationGroupRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2952
+ /**
2953
+ * Deletes an existing application group.
2954
+ * @summary Delete an application group
2955
+ * @param {string} project What project it is
2956
+ * @param {string} applicationGroupId Application group\&#39;s unique identifier
2957
+ * @param {*} [options] Override http request option.
2958
+ * @throws {RequiredError}
2959
+ */
2960
+ deleteApplicationGroup: (project: string, applicationGroupId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2961
+ /**
2962
+ * 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.
2963
+ * @summary Get an application group
2964
+ * @param {string} project What project it is
2965
+ * @param {string} applicationGroupId Application group\&#39;s unique identifier
2966
+ * @param {*} [options] Override http request option.
2967
+ * @throws {RequiredError}
2968
+ */
2969
+ getApplicationGroup: (project: string, applicationGroupId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2970
+ /**
2971
+ * 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.
2972
+ * @summary List application groups
2973
+ * @param {string} project What project it is
2974
+ * @param {number} [pageToken] Page reference token
2975
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;application group name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
2976
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2977
+ * @param {*} [options] Override http request option.
2978
+ * @throws {RequiredError}
2979
+ */
2980
+ listApplicationGroups: (project: string, pageToken?: number, search?: string, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2981
+ /**
2982
+ * Updates an existing application group.
2983
+ * @summary Update application group
2984
+ * @param {string} project What project it is
2985
+ * @param {string} applicationGroupId Application group\&#39;s unique identifier
2986
+ * @param {UpdateApplicationGroupRequest} [updateApplicationGroupRequest] Update an existing application group.
2987
+ * @param {*} [options] Override http request option.
2988
+ * @throws {RequiredError}
2989
+ */
2990
+ updateApplicationGroup: (project: string, applicationGroupId: string, updateApplicationGroupRequest?: UpdateApplicationGroupRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2991
+ };
2992
+ /**
2993
+ * ApplicationGroupsApi - functional programming interface
2994
+ * @export
2995
+ */
2996
+ export declare const ApplicationGroupsApiFp: (configuration?: Configuration) => {
2997
+ /**
2998
+ * 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.
2999
+ * @summary Create application group
3000
+ * @param {string} project What project it is
3001
+ * @param {CreateApplicationGroupRequest} [createApplicationGroupRequest] Create a new application group.
3002
+ * @param {*} [options] Override http request option.
3003
+ * @throws {RequiredError}
3004
+ */
3005
+ createApplicationGroup(project: string, createApplicationGroupRequest?: CreateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroup>>;
3006
+ /**
3007
+ * Deletes an existing application group.
3008
+ * @summary Delete an application group
3009
+ * @param {string} project What project it is
3010
+ * @param {string} applicationGroupId Application group\&#39;s unique identifier
3011
+ * @param {*} [options] Override http request option.
3012
+ * @throws {RequiredError}
3013
+ */
3014
+ deleteApplicationGroup(project: string, applicationGroupId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3015
+ /**
3016
+ * 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.
3017
+ * @summary Get an application group
3018
+ * @param {string} project What project it is
3019
+ * @param {string} applicationGroupId Application group\&#39;s unique identifier
3020
+ * @param {*} [options] Override http request option.
3021
+ * @throws {RequiredError}
3022
+ */
3023
+ getApplicationGroup(project: string, applicationGroupId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroup>>;
3024
+ /**
3025
+ * 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.
3026
+ * @summary List application groups
3027
+ * @param {string} project What project it is
3028
+ * @param {number} [pageToken] Page reference token
3029
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;application group name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
3030
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3031
+ * @param {*} [options] Override http request option.
3032
+ * @throws {RequiredError}
3033
+ */
3034
+ listApplicationGroups(project: string, pageToken?: number, search?: string, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroupsResponse>>;
3035
+ /**
3036
+ * Updates an existing application group.
3037
+ * @summary Update application group
3038
+ * @param {string} project What project it is
3039
+ * @param {string} applicationGroupId Application group\&#39;s unique identifier
3040
+ * @param {UpdateApplicationGroupRequest} [updateApplicationGroupRequest] Update an existing application group.
3041
+ * @param {*} [options] Override http request option.
3042
+ * @throws {RequiredError}
3043
+ */
3044
+ updateApplicationGroup(project: string, applicationGroupId: string, updateApplicationGroupRequest?: UpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplicationGroup>>;
3045
+ };
3046
+ /**
3047
+ * ApplicationGroupsApi - factory interface
3048
+ * @export
3049
+ */
3050
+ export declare const ApplicationGroupsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3051
+ /**
3052
+ * 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.
3053
+ * @summary Create application group
3054
+ * @param {ApplicationGroupsApiCreateApplicationGroupRequest} requestParameters Request parameters.
3055
+ * @param {*} [options] Override http request option.
3056
+ * @throws {RequiredError}
3057
+ */
3058
+ createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroup>;
3059
+ /**
3060
+ * Deletes an existing application group.
3061
+ * @summary Delete an application group
3062
+ * @param {ApplicationGroupsApiDeleteApplicationGroupRequest} requestParameters Request parameters.
3063
+ * @param {*} [options] Override http request option.
3064
+ * @throws {RequiredError}
3065
+ */
3066
+ deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3067
+ /**
3068
+ * 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.
3069
+ * @summary Get an application group
3070
+ * @param {ApplicationGroupsApiGetApplicationGroupRequest} requestParameters Request parameters.
3071
+ * @param {*} [options] Override http request option.
3072
+ * @throws {RequiredError}
3073
+ */
3074
+ getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroup>;
3075
+ /**
3076
+ * 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.
3077
+ * @summary List application groups
3078
+ * @param {ApplicationGroupsApiListApplicationGroupsRequest} requestParameters Request parameters.
3079
+ * @param {*} [options] Override http request option.
3080
+ * @throws {RequiredError}
3081
+ */
3082
+ listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroupsResponse>;
3083
+ /**
3084
+ * Updates an existing application group.
3085
+ * @summary Update application group
3086
+ * @param {ApplicationGroupsApiUpdateApplicationGroupRequest} requestParameters Request parameters.
3087
+ * @param {*} [options] Override http request option.
3088
+ * @throws {RequiredError}
3089
+ */
3090
+ updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ApplicationGroup>;
3091
+ };
3092
+ /**
3093
+ * Request parameters for createApplicationGroup operation in ApplicationGroupsApi.
3094
+ * @export
3095
+ * @interface ApplicationGroupsApiCreateApplicationGroupRequest
3096
+ */
3097
+ export interface ApplicationGroupsApiCreateApplicationGroupRequest {
3098
+ /**
3099
+ * What project it is
3100
+ * @type {string}
3101
+ * @memberof ApplicationGroupsApiCreateApplicationGroup
3102
+ */
3103
+ readonly project: string;
3104
+ /**
3105
+ * Create a new application group.
3106
+ * @type {CreateApplicationGroupRequest}
3107
+ * @memberof ApplicationGroupsApiCreateApplicationGroup
3108
+ */
3109
+ readonly createApplicationGroupRequest?: CreateApplicationGroupRequest;
3110
+ }
3111
+ /**
3112
+ * Request parameters for deleteApplicationGroup operation in ApplicationGroupsApi.
3113
+ * @export
3114
+ * @interface ApplicationGroupsApiDeleteApplicationGroupRequest
3115
+ */
3116
+ export interface ApplicationGroupsApiDeleteApplicationGroupRequest {
3117
+ /**
3118
+ * What project it is
3119
+ * @type {string}
3120
+ * @memberof ApplicationGroupsApiDeleteApplicationGroup
3121
+ */
3122
+ readonly project: string;
3123
+ /**
3124
+ * Application group\&#39;s unique identifier
3125
+ * @type {string}
3126
+ * @memberof ApplicationGroupsApiDeleteApplicationGroup
3127
+ */
3128
+ readonly applicationGroupId: string;
3129
+ }
3130
+ /**
3131
+ * Request parameters for getApplicationGroup operation in ApplicationGroupsApi.
3132
+ * @export
3133
+ * @interface ApplicationGroupsApiGetApplicationGroupRequest
3134
+ */
3135
+ export interface ApplicationGroupsApiGetApplicationGroupRequest {
3136
+ /**
3137
+ * What project it is
3138
+ * @type {string}
3139
+ * @memberof ApplicationGroupsApiGetApplicationGroup
3140
+ */
3141
+ readonly project: string;
3142
+ /**
3143
+ * Application group\&#39;s unique identifier
3144
+ * @type {string}
3145
+ * @memberof ApplicationGroupsApiGetApplicationGroup
3146
+ */
3147
+ readonly applicationGroupId: string;
3148
+ }
3149
+ /**
3150
+ * Request parameters for listApplicationGroups operation in ApplicationGroupsApi.
3151
+ * @export
3152
+ * @interface ApplicationGroupsApiListApplicationGroupsRequest
3153
+ */
3154
+ export interface ApplicationGroupsApiListApplicationGroupsRequest {
3155
+ /**
3156
+ * What project it is
3157
+ * @type {string}
3158
+ * @memberof ApplicationGroupsApiListApplicationGroups
3159
+ */
3160
+ readonly project: string;
3161
+ /**
3162
+ * Page reference token
3163
+ * @type {number}
3164
+ * @memberof ApplicationGroupsApiListApplicationGroups
3165
+ */
3166
+ readonly pageToken?: number;
3167
+ /**
3168
+ * Search query string to filter results. Supports field-specific filters like \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;application group name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
3169
+ * @type {string}
3170
+ * @memberof ApplicationGroupsApiListApplicationGroups
3171
+ */
3172
+ readonly search?: string;
3173
+ /**
3174
+ * Max page size. This is the maximum page size that will be returned, but it might be smaller.
3175
+ * @type {number}
3176
+ * @memberof ApplicationGroupsApiListApplicationGroups
3177
+ */
3178
+ readonly pageSize?: number;
3179
+ }
3180
+ /**
3181
+ * Request parameters for updateApplicationGroup operation in ApplicationGroupsApi.
3182
+ * @export
3183
+ * @interface ApplicationGroupsApiUpdateApplicationGroupRequest
3184
+ */
3185
+ export interface ApplicationGroupsApiUpdateApplicationGroupRequest {
3186
+ /**
3187
+ * What project it is
3188
+ * @type {string}
3189
+ * @memberof ApplicationGroupsApiUpdateApplicationGroup
3190
+ */
3191
+ readonly project: string;
3192
+ /**
3193
+ * Application group\&#39;s unique identifier
3194
+ * @type {string}
3195
+ * @memberof ApplicationGroupsApiUpdateApplicationGroup
3196
+ */
3197
+ readonly applicationGroupId: string;
3198
+ /**
3199
+ * Update an existing application group.
3200
+ * @type {UpdateApplicationGroupRequest}
3201
+ * @memberof ApplicationGroupsApiUpdateApplicationGroup
3202
+ */
3203
+ readonly updateApplicationGroupRequest?: UpdateApplicationGroupRequest;
3204
+ }
3205
+ /**
3206
+ * ApplicationGroupsApi - object-oriented interface
3207
+ * @export
3208
+ * @class ApplicationGroupsApi
3209
+ * @extends {BaseAPI}
3210
+ */
3211
+ export declare class ApplicationGroupsApi extends BaseAPI {
3212
+ /**
3213
+ * 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.
3214
+ * @summary Create application group
3215
+ * @param {ApplicationGroupsApiCreateApplicationGroupRequest} requestParameters Request parameters.
3216
+ * @param {*} [options] Override http request option.
3217
+ * @throws {RequiredError}
3218
+ * @memberof ApplicationGroupsApi
3219
+ */
3220
+ createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
3221
+ /**
3222
+ * Deletes an existing application group.
3223
+ * @summary Delete an application group
3224
+ * @param {ApplicationGroupsApiDeleteApplicationGroupRequest} requestParameters Request parameters.
3225
+ * @param {*} [options] Override http request option.
3226
+ * @throws {RequiredError}
3227
+ * @memberof ApplicationGroupsApi
3228
+ */
3229
+ deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3230
+ /**
3231
+ * 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.
3232
+ * @summary Get an application group
3233
+ * @param {ApplicationGroupsApiGetApplicationGroupRequest} requestParameters Request parameters.
3234
+ * @param {*} [options] Override http request option.
3235
+ * @throws {RequiredError}
3236
+ * @memberof ApplicationGroupsApi
3237
+ */
3238
+ getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
3239
+ /**
3240
+ * 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.
3241
+ * @summary List application groups
3242
+ * @param {ApplicationGroupsApiListApplicationGroupsRequest} requestParameters Request parameters.
3243
+ * @param {*} [options] Override http request option.
3244
+ * @throws {RequiredError}
3245
+ * @memberof ApplicationGroupsApi
3246
+ */
3247
+ listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroupsResponse, any>>;
3248
+ /**
3249
+ * Updates an existing application group.
3250
+ * @summary Update application group
3251
+ * @param {ApplicationGroupsApiUpdateApplicationGroupRequest} requestParameters Request parameters.
3252
+ * @param {*} [options] Override http request option.
3253
+ * @throws {RequiredError}
3254
+ * @memberof ApplicationGroupsApi
3255
+ */
3256
+ updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationGroup, any>>;
3257
+ }
2661
3258
  /**
2662
3259
  * ApplicationSetsApi - axios parameter creator
2663
3260
  * @export