@purpleschool/gptbot 0.15.65 → 0.15.66
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.
|
@@ -40,6 +40,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
40
40
|
enhancePrompt: z.ZodOptional<z.ZodBoolean>;
|
|
41
41
|
imageUrls: z.ZodArray<z.ZodString>;
|
|
42
42
|
aspectRatio: z.ZodString;
|
|
43
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
43
44
|
}, z.core.$strict>;
|
|
44
45
|
}, z.core.$strip>, z.ZodObject<{
|
|
45
46
|
position: z.ZodObject<{
|
|
@@ -79,6 +80,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
79
80
|
enhancePrompt: z.ZodOptional<z.ZodBoolean>;
|
|
80
81
|
imageUrls: z.ZodArray<z.ZodString>;
|
|
81
82
|
aspectRatio: z.ZodString;
|
|
83
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
82
84
|
}, z.core.$strict>;
|
|
83
85
|
}, z.core.$strip>, z.ZodObject<{
|
|
84
86
|
position: z.ZodObject<{
|
|
@@ -99,6 +101,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
99
101
|
enhancePrompt: z.ZodOptional<z.ZodBoolean>;
|
|
100
102
|
imageUrls: z.ZodArray<z.ZodString>;
|
|
101
103
|
aspectRatio: z.ZodString;
|
|
104
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
102
105
|
}, z.core.$strict>;
|
|
103
106
|
}, z.core.$strip>, z.ZodObject<{
|
|
104
107
|
position: z.ZodObject<{
|
|
@@ -119,6 +122,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
119
122
|
enhancePrompt: z.ZodOptional<z.ZodBoolean>;
|
|
120
123
|
imageUrls: z.ZodArray<z.ZodString>;
|
|
121
124
|
aspectRatio: z.ZodString;
|
|
125
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
122
126
|
}, z.core.$strict>;
|
|
123
127
|
}, z.core.$strip>, z.ZodObject<{
|
|
124
128
|
position: z.ZodObject<{
|
|
@@ -139,6 +143,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
139
143
|
imageUrls: z.ZodArray<z.ZodString>;
|
|
140
144
|
enhancePrompt: z.ZodOptional<z.ZodBoolean>;
|
|
141
145
|
aspectRatio: z.ZodOptional<z.ZodString>;
|
|
146
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
142
147
|
}, z.core.$strict>;
|
|
143
148
|
}, z.core.$strip>, z.ZodObject<{
|
|
144
149
|
position: z.ZodObject<{
|
|
@@ -158,6 +163,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
158
163
|
params: z.ZodObject<{
|
|
159
164
|
imageUrls: z.ZodArray<z.ZodString>;
|
|
160
165
|
aspectRatio: z.ZodOptional<z.ZodString>;
|
|
166
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
161
167
|
}, z.core.$strict>;
|
|
162
168
|
}, z.core.$strip>, z.ZodObject<{
|
|
163
169
|
position: z.ZodObject<{
|
|
@@ -197,6 +203,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
197
203
|
variationStrength: z.ZodOptional<z.ZodEnum<typeof PHOTO_STUDIO_VARIATION_STRENGTH_ALIAS>>;
|
|
198
204
|
enhancePrompt: z.ZodOptional<z.ZodBoolean>;
|
|
199
205
|
aspectRatio: z.ZodOptional<z.ZodString>;
|
|
206
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
200
207
|
positions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
201
208
|
topLeft: z.ZodObject<{
|
|
202
209
|
x: z.ZodNumber;
|
|
@@ -229,6 +236,7 @@ export declare namespace ExecutePhotoStudioActionCommand {
|
|
|
229
236
|
placement: z.ZodEnum<typeof PHOTO_STUDIO_PLACEMENT_ALIAS>;
|
|
230
237
|
color: z.ZodOptional<z.ZodString>;
|
|
231
238
|
aspectRatio: z.ZodOptional<z.ZodString>;
|
|
239
|
+
resolution: z.ZodOptional<z.ZodString>;
|
|
232
240
|
}, z.core.$strict>;
|
|
233
241
|
}, z.core.$strip>, z.ZodObject<{
|
|
234
242
|
position: z.ZodObject<{
|
|
@@ -18,6 +18,7 @@ var ExecutePhotoStudioActionCommand;
|
|
|
18
18
|
enhancePrompt: zod_1.z.boolean().optional(),
|
|
19
19
|
imageUrls: zod_1.z.array(zod_1.z.string().uuid()).length(1),
|
|
20
20
|
aspectRatio: zod_1.z.string(),
|
|
21
|
+
resolution: zod_1.z.string().optional(),
|
|
21
22
|
})
|
|
22
23
|
.strict();
|
|
23
24
|
const EditParamsSchema = OneImageParamsSchema;
|
|
@@ -39,6 +40,7 @@ var ExecutePhotoStudioActionCommand;
|
|
|
39
40
|
variationStrength: zod_1.z.nativeEnum(constants_1.PHOTO_STUDIO_VARIATION_STRENGTH_ALIAS).optional(),
|
|
40
41
|
enhancePrompt: zod_1.z.boolean().optional(),
|
|
41
42
|
aspectRatio: zod_1.z.string().optional(),
|
|
43
|
+
resolution: zod_1.z.string().optional(),
|
|
42
44
|
positions: zod_1.z.array(models_1.CanvasNodePositionSchema).min(2).max(4).optional(),
|
|
43
45
|
})
|
|
44
46
|
.strict();
|
|
@@ -55,6 +57,7 @@ var ExecutePhotoStudioActionCommand;
|
|
|
55
57
|
placement: zod_1.z.nativeEnum(constants_1.PHOTO_STUDIO_PLACEMENT_ALIAS),
|
|
56
58
|
color: zod_1.z.string().optional(),
|
|
57
59
|
aspectRatio: zod_1.z.string().optional(),
|
|
60
|
+
resolution: zod_1.z.string().optional(),
|
|
58
61
|
})
|
|
59
62
|
.strict();
|
|
60
63
|
const UpscaleParamsSchema = zod_1.z
|
|
@@ -68,12 +71,14 @@ var ExecutePhotoStudioActionCommand;
|
|
|
68
71
|
imageUrls: zod_1.z.array(zod_1.z.string().uuid()).min(2).max(5),
|
|
69
72
|
enhancePrompt: zod_1.z.boolean().optional(),
|
|
70
73
|
aspectRatio: zod_1.z.string().optional(),
|
|
74
|
+
resolution: zod_1.z.string().optional(),
|
|
71
75
|
})
|
|
72
76
|
.strict();
|
|
73
77
|
const StyleParamsSchema = zod_1.z
|
|
74
78
|
.object({
|
|
75
79
|
imageUrls: zod_1.z.array(zod_1.z.string().uuid()).length(2),
|
|
76
80
|
aspectRatio: zod_1.z.string().optional(),
|
|
81
|
+
resolution: zod_1.z.string().optional(),
|
|
77
82
|
})
|
|
78
83
|
.strict();
|
|
79
84
|
const BaseRequestSchema = zod_1.z.object({
|