@little-samo/samo-ai-sdk 0.7.12 → 0.7.13
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/dto/entities/agents/agent.requests.d.ts +26 -26
- package/dist/dto/entities/users/user.requests.d.ts +39 -39
- package/dist/dto/entities/users/user.requests.js +1 -1
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/locations/location.requests.d.ts +155 -155
- package/package.json +1 -1
|
@@ -15,8 +15,8 @@ export declare const UserLocationsQuerySchema: z.ZodObject<{
|
|
|
15
15
|
limit: number;
|
|
16
16
|
cursor?: string | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
cursor?: string | undefined;
|
|
19
18
|
limit?: number | undefined;
|
|
19
|
+
cursor?: string | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
export type UserLocationsQueryDto = z.infer<typeof UserLocationsQuerySchema>;
|
|
22
22
|
export interface UserLocationsResponseDto {
|
|
@@ -30,11 +30,11 @@ export declare const PublishedLocationsQuerySchema: z.ZodObject<{
|
|
|
30
30
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
31
31
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
limit: number;
|
|
34
33
|
page: number;
|
|
34
|
+
limit: number;
|
|
35
35
|
}, {
|
|
36
|
-
limit?: number | undefined;
|
|
37
36
|
page?: number | undefined;
|
|
37
|
+
limit?: number | undefined;
|
|
38
38
|
}>;
|
|
39
39
|
export type PublishedLocationsQueryDto = z.infer<typeof PublishedLocationsQuerySchema>;
|
|
40
40
|
export interface PublishedLocationsResponseDto {
|
|
@@ -118,7 +118,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
118
118
|
maxLength: number;
|
|
119
119
|
}>, "many">>;
|
|
120
120
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
121
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
121
|
+
core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
|
|
122
122
|
name: z.ZodString;
|
|
123
123
|
appearance: z.ZodString;
|
|
124
124
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -135,18 +135,18 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
135
135
|
url?: string | undefined;
|
|
136
136
|
}>, "many">>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
|
-
name: string;
|
|
139
138
|
appearance: string;
|
|
140
|
-
|
|
139
|
+
name: string;
|
|
140
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
141
141
|
images?: {
|
|
142
142
|
description: string;
|
|
143
143
|
name?: string | undefined;
|
|
144
144
|
url?: string | undefined;
|
|
145
145
|
}[] | undefined;
|
|
146
146
|
}, {
|
|
147
|
-
name: string;
|
|
148
147
|
appearance: string;
|
|
149
|
-
|
|
148
|
+
name: string;
|
|
149
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
150
150
|
images?: {
|
|
151
151
|
description: string;
|
|
152
152
|
name?: string | undefined;
|
|
@@ -155,16 +155,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
155
155
|
}>, "many">>;
|
|
156
156
|
}, "strict", z.ZodTypeAny, {
|
|
157
157
|
name?: string | undefined;
|
|
158
|
-
|
|
159
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
158
|
+
description?: string | undefined;
|
|
160
159
|
core?: {
|
|
161
160
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
162
161
|
sequential?: boolean | undefined;
|
|
163
162
|
interval?: number | undefined;
|
|
164
163
|
maxAgentExecutions?: number | null | undefined;
|
|
165
164
|
} | undefined;
|
|
166
|
-
description?: string | undefined;
|
|
167
165
|
rules?: string[] | undefined;
|
|
166
|
+
thumbnail?: string | null | undefined;
|
|
167
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
168
168
|
canvases?: {
|
|
169
169
|
name: string;
|
|
170
170
|
description: string;
|
|
@@ -176,9 +176,9 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
176
176
|
maxLength: number;
|
|
177
177
|
}[] | undefined;
|
|
178
178
|
gimmicks?: {
|
|
179
|
-
name: string;
|
|
180
179
|
appearance: string;
|
|
181
|
-
|
|
180
|
+
name: string;
|
|
181
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
182
182
|
images?: {
|
|
183
183
|
description: string;
|
|
184
184
|
name?: string | undefined;
|
|
@@ -187,16 +187,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
187
187
|
}[] | undefined;
|
|
188
188
|
}, {
|
|
189
189
|
name?: string | undefined;
|
|
190
|
-
|
|
191
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
190
|
+
description?: string | undefined;
|
|
192
191
|
core?: {
|
|
193
192
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
194
193
|
sequential?: boolean | undefined;
|
|
195
194
|
interval?: number | undefined;
|
|
196
195
|
maxAgentExecutions?: number | null | undefined;
|
|
197
196
|
} | undefined;
|
|
198
|
-
description?: string | undefined;
|
|
199
197
|
rules?: string[] | undefined;
|
|
198
|
+
thumbnail?: string | null | undefined;
|
|
199
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
200
200
|
canvases?: {
|
|
201
201
|
name: string;
|
|
202
202
|
description: string;
|
|
@@ -208,9 +208,9 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
208
208
|
maxLength: number;
|
|
209
209
|
}[] | undefined;
|
|
210
210
|
gimmicks?: {
|
|
211
|
-
name: string;
|
|
212
211
|
appearance: string;
|
|
213
|
-
|
|
212
|
+
name: string;
|
|
213
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
214
214
|
images?: {
|
|
215
215
|
description: string;
|
|
216
216
|
name?: string | undefined;
|
|
@@ -222,16 +222,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
222
222
|
locationId: bigint;
|
|
223
223
|
config: {
|
|
224
224
|
name?: string | undefined;
|
|
225
|
-
|
|
226
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
225
|
+
description?: string | undefined;
|
|
227
226
|
core?: {
|
|
228
227
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
229
228
|
sequential?: boolean | undefined;
|
|
230
229
|
interval?: number | undefined;
|
|
231
230
|
maxAgentExecutions?: number | null | undefined;
|
|
232
231
|
} | undefined;
|
|
233
|
-
description?: string | undefined;
|
|
234
232
|
rules?: string[] | undefined;
|
|
233
|
+
thumbnail?: string | null | undefined;
|
|
234
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
235
235
|
canvases?: {
|
|
236
236
|
name: string;
|
|
237
237
|
description: string;
|
|
@@ -243,9 +243,9 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
243
243
|
maxLength: number;
|
|
244
244
|
}[] | undefined;
|
|
245
245
|
gimmicks?: {
|
|
246
|
-
name: string;
|
|
247
246
|
appearance: string;
|
|
248
|
-
|
|
247
|
+
name: string;
|
|
248
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
249
249
|
images?: {
|
|
250
250
|
description: string;
|
|
251
251
|
name?: string | undefined;
|
|
@@ -257,16 +257,16 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
257
257
|
locationId: bigint;
|
|
258
258
|
config: {
|
|
259
259
|
name?: string | undefined;
|
|
260
|
-
|
|
261
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
260
|
+
description?: string | undefined;
|
|
262
261
|
core?: {
|
|
263
262
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
264
263
|
sequential?: boolean | undefined;
|
|
265
264
|
interval?: number | undefined;
|
|
266
265
|
maxAgentExecutions?: number | null | undefined;
|
|
267
266
|
} | undefined;
|
|
268
|
-
description?: string | undefined;
|
|
269
267
|
rules?: string[] | undefined;
|
|
268
|
+
thumbnail?: string | null | undefined;
|
|
269
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
270
270
|
canvases?: {
|
|
271
271
|
name: string;
|
|
272
272
|
description: string;
|
|
@@ -278,9 +278,9 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
278
278
|
maxLength: number;
|
|
279
279
|
}[] | undefined;
|
|
280
280
|
gimmicks?: {
|
|
281
|
-
name: string;
|
|
282
281
|
appearance: string;
|
|
283
|
-
|
|
282
|
+
name: string;
|
|
283
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
284
284
|
images?: {
|
|
285
285
|
description: string;
|
|
286
286
|
name?: string | undefined;
|
|
@@ -356,12 +356,12 @@ export declare const LocationPresetsPaginationQuerySchema: z.ZodObject<{
|
|
|
356
356
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
357
357
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
358
358
|
}, "strip", z.ZodTypeAny, {
|
|
359
|
-
limit: number;
|
|
360
359
|
page: number;
|
|
360
|
+
limit: number;
|
|
361
361
|
visibility: "edited" | "private" | "public" | "publish";
|
|
362
362
|
}, {
|
|
363
|
-
limit?: number | undefined;
|
|
364
363
|
page?: number | undefined;
|
|
364
|
+
limit?: number | undefined;
|
|
365
365
|
visibility?: "edited" | "private" | "public" | "publish" | undefined;
|
|
366
366
|
}>;
|
|
367
367
|
export type LocationPresetsPaginationQueryDto = z.infer<typeof LocationPresetsPaginationQuerySchema>;
|
|
@@ -384,19 +384,19 @@ export declare const PublishedLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
384
384
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
385
385
|
}, "strip", z.ZodTypeAny, {
|
|
386
386
|
type: "NOVEL";
|
|
387
|
-
limit: number;
|
|
388
387
|
page: number;
|
|
388
|
+
limit: number;
|
|
389
|
+
sortBy: "latest" | "popular";
|
|
389
390
|
gender: "all" | "male" | "female";
|
|
390
|
-
sortBy: "popular" | "latest";
|
|
391
391
|
tag?: string | undefined;
|
|
392
392
|
ownerUserId?: bigint | undefined;
|
|
393
393
|
}, {
|
|
394
394
|
type: "NOVEL";
|
|
395
|
-
limit?: number | undefined;
|
|
396
395
|
page?: number | undefined;
|
|
396
|
+
limit?: number | undefined;
|
|
397
|
+
sortBy?: "latest" | "popular" | undefined;
|
|
397
398
|
gender?: "all" | "male" | "female" | undefined;
|
|
398
399
|
tag?: string | undefined;
|
|
399
|
-
sortBy?: "popular" | "latest" | undefined;
|
|
400
400
|
ownerUserId?: bigint | undefined;
|
|
401
401
|
}>;
|
|
402
402
|
export type PublishedLocationPresetsQueryDto = z.infer<typeof PublishedLocationPresetsQuerySchema>;
|
|
@@ -413,11 +413,11 @@ export declare const FollowingLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
413
413
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
414
414
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
415
415
|
}, "strip", z.ZodTypeAny, {
|
|
416
|
-
limit: number;
|
|
417
416
|
page: number;
|
|
417
|
+
limit: number;
|
|
418
418
|
}, {
|
|
419
|
-
limit?: number | undefined;
|
|
420
419
|
page?: number | undefined;
|
|
420
|
+
limit?: number | undefined;
|
|
421
421
|
}>;
|
|
422
422
|
export type FollowingLocationPresetsQueryDto = z.infer<typeof FollowingLocationPresetsQuerySchema>;
|
|
423
423
|
export interface FollowingLocationPresetsResponseDto {
|
|
@@ -436,18 +436,18 @@ export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
436
436
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
437
437
|
}, "strip", z.ZodTypeAny, {
|
|
438
438
|
type: "NOVEL";
|
|
439
|
-
limit: number;
|
|
440
439
|
page: number;
|
|
441
|
-
|
|
442
|
-
sortBy: "popular" | "latest";
|
|
440
|
+
limit: number;
|
|
443
441
|
query: string;
|
|
442
|
+
sortBy: "latest" | "popular";
|
|
443
|
+
gender: "all" | "male" | "female";
|
|
444
444
|
}, {
|
|
445
445
|
type: "NOVEL";
|
|
446
446
|
query: string;
|
|
447
|
-
limit?: number | undefined;
|
|
448
447
|
page?: number | undefined;
|
|
448
|
+
limit?: number | undefined;
|
|
449
|
+
sortBy?: "latest" | "popular" | undefined;
|
|
449
450
|
gender?: "all" | "male" | "female" | undefined;
|
|
450
|
-
sortBy?: "popular" | "latest" | undefined;
|
|
451
451
|
}>;
|
|
452
452
|
export type SearchLocationPresetsQueryDto = z.infer<typeof SearchLocationPresetsQuerySchema>;
|
|
453
453
|
export interface SearchLocationPresetsResponseDto {
|
|
@@ -536,7 +536,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
536
536
|
maxLength: number;
|
|
537
537
|
}>, "many">>;
|
|
538
538
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
539
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
539
|
+
core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
|
|
540
540
|
name: z.ZodString;
|
|
541
541
|
appearance: z.ZodString;
|
|
542
542
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -553,18 +553,18 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
553
553
|
url?: string | undefined;
|
|
554
554
|
}>, "many">>;
|
|
555
555
|
}, "strip", z.ZodTypeAny, {
|
|
556
|
-
name: string;
|
|
557
556
|
appearance: string;
|
|
558
|
-
|
|
557
|
+
name: string;
|
|
558
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
559
559
|
images?: {
|
|
560
560
|
description: string;
|
|
561
561
|
name?: string | undefined;
|
|
562
562
|
url?: string | undefined;
|
|
563
563
|
}[] | undefined;
|
|
564
564
|
}, {
|
|
565
|
-
name: string;
|
|
566
565
|
appearance: string;
|
|
567
|
-
|
|
566
|
+
name: string;
|
|
567
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
568
568
|
images?: {
|
|
569
569
|
description: string;
|
|
570
570
|
name?: string | undefined;
|
|
@@ -573,16 +573,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
573
573
|
}>, "many">>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
name?: string | undefined;
|
|
576
|
-
|
|
577
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
576
|
+
description?: string | undefined;
|
|
578
577
|
core?: {
|
|
579
578
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
580
579
|
sequential?: boolean | undefined;
|
|
581
580
|
interval?: number | undefined;
|
|
582
581
|
maxAgentExecutions?: number | null | undefined;
|
|
583
582
|
} | undefined;
|
|
584
|
-
description?: string | undefined;
|
|
585
583
|
rules?: string[] | undefined;
|
|
584
|
+
thumbnail?: string | null | undefined;
|
|
585
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
586
586
|
canvases?: {
|
|
587
587
|
name: string;
|
|
588
588
|
description: string;
|
|
@@ -594,9 +594,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
594
594
|
maxLength: number;
|
|
595
595
|
}[] | undefined;
|
|
596
596
|
gimmicks?: {
|
|
597
|
-
name: string;
|
|
598
597
|
appearance: string;
|
|
599
|
-
|
|
598
|
+
name: string;
|
|
599
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
600
600
|
images?: {
|
|
601
601
|
description: string;
|
|
602
602
|
name?: string | undefined;
|
|
@@ -605,16 +605,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
605
605
|
}[] | undefined;
|
|
606
606
|
}, {
|
|
607
607
|
name?: string | undefined;
|
|
608
|
-
|
|
609
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
608
|
+
description?: string | undefined;
|
|
610
609
|
core?: {
|
|
611
610
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
612
611
|
sequential?: boolean | undefined;
|
|
613
612
|
interval?: number | undefined;
|
|
614
613
|
maxAgentExecutions?: number | null | undefined;
|
|
615
614
|
} | undefined;
|
|
616
|
-
description?: string | undefined;
|
|
617
615
|
rules?: string[] | undefined;
|
|
616
|
+
thumbnail?: string | null | undefined;
|
|
617
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
618
618
|
canvases?: {
|
|
619
619
|
name: string;
|
|
620
620
|
description: string;
|
|
@@ -626,9 +626,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
626
626
|
maxLength: number;
|
|
627
627
|
}[] | undefined;
|
|
628
628
|
gimmicks?: {
|
|
629
|
-
name: string;
|
|
630
629
|
appearance: string;
|
|
631
|
-
|
|
630
|
+
name: string;
|
|
631
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
632
632
|
images?: {
|
|
633
633
|
description: string;
|
|
634
634
|
name?: string | undefined;
|
|
@@ -749,15 +749,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
749
749
|
}>>;
|
|
750
750
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
|
752
|
-
name?: string | undefined;
|
|
753
752
|
role?: string | undefined;
|
|
754
753
|
avatar?: string | undefined;
|
|
755
754
|
referenceAvatar?: string | undefined;
|
|
756
755
|
appearance?: string | undefined;
|
|
756
|
+
name?: string | undefined;
|
|
757
757
|
core?: {
|
|
758
758
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
759
759
|
} | undefined;
|
|
760
|
-
rules?: string[] | undefined;
|
|
761
760
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
762
761
|
languages?: string[] | undefined;
|
|
763
762
|
timeZone?: string | undefined;
|
|
@@ -784,16 +783,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
784
783
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
785
784
|
} | undefined;
|
|
786
785
|
} | undefined;
|
|
786
|
+
rules?: string[] | undefined;
|
|
787
787
|
}, {
|
|
788
|
-
name?: string | undefined;
|
|
789
788
|
role?: string | undefined;
|
|
790
789
|
avatar?: string | undefined;
|
|
791
790
|
referenceAvatar?: string | undefined;
|
|
792
791
|
appearance?: string | undefined;
|
|
792
|
+
name?: string | undefined;
|
|
793
793
|
core?: {
|
|
794
794
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
795
795
|
} | undefined;
|
|
796
|
-
rules?: string[] | undefined;
|
|
797
796
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
798
797
|
languages?: string[] | undefined;
|
|
799
798
|
timeZone?: string | undefined;
|
|
@@ -820,6 +819,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
820
819
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
821
820
|
} | undefined;
|
|
822
821
|
} | undefined;
|
|
822
|
+
rules?: string[] | undefined;
|
|
823
823
|
}>, "many">>;
|
|
824
824
|
}, "strip", z.ZodTypeAny, {
|
|
825
825
|
presetDescription: string;
|
|
@@ -832,16 +832,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
832
832
|
isSensitive?: boolean | undefined;
|
|
833
833
|
locationConfig?: {
|
|
834
834
|
name?: string | undefined;
|
|
835
|
-
|
|
836
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
835
|
+
description?: string | undefined;
|
|
837
836
|
core?: {
|
|
838
837
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
839
838
|
sequential?: boolean | undefined;
|
|
840
839
|
interval?: number | undefined;
|
|
841
840
|
maxAgentExecutions?: number | null | undefined;
|
|
842
841
|
} | undefined;
|
|
843
|
-
description?: string | undefined;
|
|
844
842
|
rules?: string[] | undefined;
|
|
843
|
+
thumbnail?: string | null | undefined;
|
|
844
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
845
845
|
canvases?: {
|
|
846
846
|
name: string;
|
|
847
847
|
description: string;
|
|
@@ -853,9 +853,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
853
853
|
maxLength: number;
|
|
854
854
|
}[] | undefined;
|
|
855
855
|
gimmicks?: {
|
|
856
|
-
name: string;
|
|
857
856
|
appearance: string;
|
|
858
|
-
|
|
857
|
+
name: string;
|
|
858
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
859
859
|
images?: {
|
|
860
860
|
description: string;
|
|
861
861
|
name?: string | undefined;
|
|
@@ -864,15 +864,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
864
864
|
}[] | undefined;
|
|
865
865
|
} | undefined;
|
|
866
866
|
agentConfigs?: {
|
|
867
|
-
name?: string | undefined;
|
|
868
867
|
role?: string | undefined;
|
|
869
868
|
avatar?: string | undefined;
|
|
870
869
|
referenceAvatar?: string | undefined;
|
|
871
870
|
appearance?: string | undefined;
|
|
871
|
+
name?: string | undefined;
|
|
872
872
|
core?: {
|
|
873
873
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
874
874
|
} | undefined;
|
|
875
|
-
rules?: string[] | undefined;
|
|
876
875
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
877
876
|
languages?: string[] | undefined;
|
|
878
877
|
timeZone?: string | undefined;
|
|
@@ -899,6 +898,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
899
898
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
900
899
|
} | undefined;
|
|
901
900
|
} | undefined;
|
|
901
|
+
rules?: string[] | undefined;
|
|
902
902
|
}[] | undefined;
|
|
903
903
|
}, {
|
|
904
904
|
presetDescription: string;
|
|
@@ -911,16 +911,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
911
911
|
isSensitive?: boolean | undefined;
|
|
912
912
|
locationConfig?: {
|
|
913
913
|
name?: string | undefined;
|
|
914
|
-
|
|
915
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
914
|
+
description?: string | undefined;
|
|
916
915
|
core?: {
|
|
917
916
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
918
917
|
sequential?: boolean | undefined;
|
|
919
918
|
interval?: number | undefined;
|
|
920
919
|
maxAgentExecutions?: number | null | undefined;
|
|
921
920
|
} | undefined;
|
|
922
|
-
description?: string | undefined;
|
|
923
921
|
rules?: string[] | undefined;
|
|
922
|
+
thumbnail?: string | null | undefined;
|
|
923
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
924
924
|
canvases?: {
|
|
925
925
|
name: string;
|
|
926
926
|
description: string;
|
|
@@ -932,9 +932,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
932
932
|
maxLength: number;
|
|
933
933
|
}[] | undefined;
|
|
934
934
|
gimmicks?: {
|
|
935
|
-
name: string;
|
|
936
935
|
appearance: string;
|
|
937
|
-
|
|
936
|
+
name: string;
|
|
937
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
938
938
|
images?: {
|
|
939
939
|
description: string;
|
|
940
940
|
name?: string | undefined;
|
|
@@ -943,15 +943,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
943
943
|
}[] | undefined;
|
|
944
944
|
} | undefined;
|
|
945
945
|
agentConfigs?: {
|
|
946
|
-
name?: string | undefined;
|
|
947
946
|
role?: string | undefined;
|
|
948
947
|
avatar?: string | undefined;
|
|
949
948
|
referenceAvatar?: string | undefined;
|
|
950
949
|
appearance?: string | undefined;
|
|
950
|
+
name?: string | undefined;
|
|
951
951
|
core?: {
|
|
952
952
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
953
953
|
} | undefined;
|
|
954
|
-
rules?: string[] | undefined;
|
|
955
954
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
956
955
|
languages?: string[] | undefined;
|
|
957
956
|
timeZone?: string | undefined;
|
|
@@ -978,6 +977,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
978
977
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
979
978
|
} | undefined;
|
|
980
979
|
} | undefined;
|
|
980
|
+
rules?: string[] | undefined;
|
|
981
981
|
}[] | undefined;
|
|
982
982
|
}>;
|
|
983
983
|
export type CreateLocationPresetDto = z.infer<typeof CreateLocationPresetSchema>;
|
|
@@ -1089,32 +1089,32 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1089
1089
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1090
1090
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1091
1091
|
}, "strip", z.ZodTypeAny, {
|
|
1092
|
-
name: string;
|
|
1093
1092
|
avatar: string;
|
|
1094
1093
|
appearance: string;
|
|
1095
|
-
|
|
1094
|
+
name: string;
|
|
1096
1095
|
role?: string | undefined;
|
|
1097
1096
|
referenceAvatar?: string | undefined;
|
|
1098
1097
|
examplePoses?: string[] | undefined;
|
|
1099
1098
|
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1099
|
+
isPublic?: boolean | undefined;
|
|
1100
|
+
id?: bigint | undefined;
|
|
1100
1101
|
usageCount?: number | undefined;
|
|
1101
1102
|
likeCount?: number | undefined;
|
|
1102
1103
|
isLiked?: boolean | undefined;
|
|
1103
|
-
isPublic?: boolean | undefined;
|
|
1104
1104
|
createdAt?: Date | undefined;
|
|
1105
1105
|
}, {
|
|
1106
|
-
name: string;
|
|
1107
1106
|
avatar: string;
|
|
1108
1107
|
appearance: string;
|
|
1109
|
-
|
|
1108
|
+
name: string;
|
|
1110
1109
|
role?: string | undefined;
|
|
1111
1110
|
referenceAvatar?: string | undefined;
|
|
1112
1111
|
examplePoses?: string[] | undefined;
|
|
1113
1112
|
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1113
|
+
isPublic?: boolean | undefined;
|
|
1114
|
+
id?: bigint | undefined;
|
|
1114
1115
|
usageCount?: number | undefined;
|
|
1115
1116
|
likeCount?: number | undefined;
|
|
1116
1117
|
isLiked?: boolean | undefined;
|
|
1117
|
-
isPublic?: boolean | undefined;
|
|
1118
1118
|
createdAt?: Date | undefined;
|
|
1119
1119
|
}>>>;
|
|
1120
1120
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1170,7 +1170,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1170
1170
|
maxLength: number;
|
|
1171
1171
|
}>, "many">>;
|
|
1172
1172
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1173
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
1173
|
+
core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
|
|
1174
1174
|
name: z.ZodString;
|
|
1175
1175
|
appearance: z.ZodString;
|
|
1176
1176
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1187,18 +1187,18 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1187
1187
|
url?: string | undefined;
|
|
1188
1188
|
}>, "many">>;
|
|
1189
1189
|
}, "strip", z.ZodTypeAny, {
|
|
1190
|
-
name: string;
|
|
1191
1190
|
appearance: string;
|
|
1192
|
-
|
|
1191
|
+
name: string;
|
|
1192
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
1193
1193
|
images?: {
|
|
1194
1194
|
description: string;
|
|
1195
1195
|
name?: string | undefined;
|
|
1196
1196
|
url?: string | undefined;
|
|
1197
1197
|
}[] | undefined;
|
|
1198
1198
|
}, {
|
|
1199
|
-
name: string;
|
|
1200
1199
|
appearance: string;
|
|
1201
|
-
|
|
1200
|
+
name: string;
|
|
1201
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
1202
1202
|
images?: {
|
|
1203
1203
|
description: string;
|
|
1204
1204
|
name?: string | undefined;
|
|
@@ -1207,16 +1207,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1207
1207
|
}>, "many">>;
|
|
1208
1208
|
}, "strip", z.ZodTypeAny, {
|
|
1209
1209
|
name?: string | undefined;
|
|
1210
|
-
|
|
1211
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1210
|
+
description?: string | undefined;
|
|
1212
1211
|
core?: {
|
|
1213
1212
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1214
1213
|
sequential?: boolean | undefined;
|
|
1215
1214
|
interval?: number | undefined;
|
|
1216
1215
|
maxAgentExecutions?: number | null | undefined;
|
|
1217
1216
|
} | undefined;
|
|
1218
|
-
description?: string | undefined;
|
|
1219
1217
|
rules?: string[] | undefined;
|
|
1218
|
+
thumbnail?: string | null | undefined;
|
|
1219
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1220
1220
|
canvases?: {
|
|
1221
1221
|
name: string;
|
|
1222
1222
|
description: string;
|
|
@@ -1228,9 +1228,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1228
1228
|
maxLength: number;
|
|
1229
1229
|
}[] | undefined;
|
|
1230
1230
|
gimmicks?: {
|
|
1231
|
-
name: string;
|
|
1232
1231
|
appearance: string;
|
|
1233
|
-
|
|
1232
|
+
name: string;
|
|
1233
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
1234
1234
|
images?: {
|
|
1235
1235
|
description: string;
|
|
1236
1236
|
name?: string | undefined;
|
|
@@ -1239,16 +1239,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1239
1239
|
}[] | undefined;
|
|
1240
1240
|
}, {
|
|
1241
1241
|
name?: string | undefined;
|
|
1242
|
-
|
|
1243
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1242
|
+
description?: string | undefined;
|
|
1244
1243
|
core?: {
|
|
1245
1244
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1246
1245
|
sequential?: boolean | undefined;
|
|
1247
1246
|
interval?: number | undefined;
|
|
1248
1247
|
maxAgentExecutions?: number | null | undefined;
|
|
1249
1248
|
} | undefined;
|
|
1250
|
-
description?: string | undefined;
|
|
1251
1249
|
rules?: string[] | undefined;
|
|
1250
|
+
thumbnail?: string | null | undefined;
|
|
1251
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1252
1252
|
canvases?: {
|
|
1253
1253
|
name: string;
|
|
1254
1254
|
description: string;
|
|
@@ -1260,9 +1260,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1260
1260
|
maxLength: number;
|
|
1261
1261
|
}[] | undefined;
|
|
1262
1262
|
gimmicks?: {
|
|
1263
|
-
name: string;
|
|
1264
1263
|
appearance: string;
|
|
1265
|
-
|
|
1264
|
+
name: string;
|
|
1265
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
1266
1266
|
images?: {
|
|
1267
1267
|
description: string;
|
|
1268
1268
|
name?: string | undefined;
|
|
@@ -1383,15 +1383,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1383
1383
|
}>>;
|
|
1384
1384
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1385
1385
|
}, "strip", z.ZodTypeAny, {
|
|
1386
|
-
name?: string | undefined;
|
|
1387
1386
|
role?: string | undefined;
|
|
1388
1387
|
avatar?: string | undefined;
|
|
1389
1388
|
referenceAvatar?: string | undefined;
|
|
1390
1389
|
appearance?: string | undefined;
|
|
1390
|
+
name?: string | undefined;
|
|
1391
1391
|
core?: {
|
|
1392
1392
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1393
1393
|
} | undefined;
|
|
1394
|
-
rules?: string[] | undefined;
|
|
1395
1394
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1396
1395
|
languages?: string[] | undefined;
|
|
1397
1396
|
timeZone?: string | undefined;
|
|
@@ -1418,16 +1417,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1418
1417
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1419
1418
|
} | undefined;
|
|
1420
1419
|
} | undefined;
|
|
1420
|
+
rules?: string[] | undefined;
|
|
1421
1421
|
}, {
|
|
1422
|
-
name?: string | undefined;
|
|
1423
1422
|
role?: string | undefined;
|
|
1424
1423
|
avatar?: string | undefined;
|
|
1425
1424
|
referenceAvatar?: string | undefined;
|
|
1426
1425
|
appearance?: string | undefined;
|
|
1426
|
+
name?: string | undefined;
|
|
1427
1427
|
core?: {
|
|
1428
1428
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1429
1429
|
} | undefined;
|
|
1430
|
-
rules?: string[] | undefined;
|
|
1431
1430
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1432
1431
|
languages?: string[] | undefined;
|
|
1433
1432
|
timeZone?: string | undefined;
|
|
@@ -1454,6 +1453,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1454
1453
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1455
1454
|
} | undefined;
|
|
1456
1455
|
} | undefined;
|
|
1456
|
+
rules?: string[] | undefined;
|
|
1457
1457
|
}>>, "many">>;
|
|
1458
1458
|
}, "strip", z.ZodTypeAny, {
|
|
1459
1459
|
name?: string | undefined;
|
|
@@ -1470,16 +1470,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1470
1470
|
isSensitive?: boolean | undefined;
|
|
1471
1471
|
locationConfig?: {
|
|
1472
1472
|
name?: string | undefined;
|
|
1473
|
-
|
|
1474
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1473
|
+
description?: string | undefined;
|
|
1475
1474
|
core?: {
|
|
1476
1475
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1477
1476
|
sequential?: boolean | undefined;
|
|
1478
1477
|
interval?: number | undefined;
|
|
1479
1478
|
maxAgentExecutions?: number | null | undefined;
|
|
1480
1479
|
} | undefined;
|
|
1481
|
-
description?: string | undefined;
|
|
1482
1480
|
rules?: string[] | undefined;
|
|
1481
|
+
thumbnail?: string | null | undefined;
|
|
1482
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1483
1483
|
canvases?: {
|
|
1484
1484
|
name: string;
|
|
1485
1485
|
description: string;
|
|
@@ -1491,9 +1491,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1491
1491
|
maxLength: number;
|
|
1492
1492
|
}[] | undefined;
|
|
1493
1493
|
gimmicks?: {
|
|
1494
|
-
name: string;
|
|
1495
1494
|
appearance: string;
|
|
1496
|
-
|
|
1495
|
+
name: string;
|
|
1496
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
1497
1497
|
images?: {
|
|
1498
1498
|
description: string;
|
|
1499
1499
|
name?: string | undefined;
|
|
@@ -1502,15 +1502,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1502
1502
|
}[] | undefined;
|
|
1503
1503
|
} | undefined;
|
|
1504
1504
|
agentConfigs?: ({
|
|
1505
|
-
name?: string | undefined;
|
|
1506
1505
|
role?: string | undefined;
|
|
1507
1506
|
avatar?: string | undefined;
|
|
1508
1507
|
referenceAvatar?: string | undefined;
|
|
1509
1508
|
appearance?: string | undefined;
|
|
1509
|
+
name?: string | undefined;
|
|
1510
1510
|
core?: {
|
|
1511
1511
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1512
1512
|
} | undefined;
|
|
1513
|
-
rules?: string[] | undefined;
|
|
1514
1513
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1515
1514
|
languages?: string[] | undefined;
|
|
1516
1515
|
timeZone?: string | undefined;
|
|
@@ -1537,6 +1536,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1537
1536
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1538
1537
|
} | undefined;
|
|
1539
1538
|
} | undefined;
|
|
1539
|
+
rules?: string[] | undefined;
|
|
1540
1540
|
} | null)[] | undefined;
|
|
1541
1541
|
thumbnails?: string[] | undefined;
|
|
1542
1542
|
mission?: {
|
|
@@ -1552,18 +1552,18 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1552
1552
|
image?: string | undefined;
|
|
1553
1553
|
}[] | undefined;
|
|
1554
1554
|
userAvatar?: {
|
|
1555
|
-
name: string;
|
|
1556
1555
|
avatar: string;
|
|
1557
1556
|
appearance: string;
|
|
1558
|
-
|
|
1557
|
+
name: string;
|
|
1559
1558
|
role?: string | undefined;
|
|
1560
1559
|
referenceAvatar?: string | undefined;
|
|
1561
1560
|
examplePoses?: string[] | undefined;
|
|
1562
1561
|
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1562
|
+
isPublic?: boolean | undefined;
|
|
1563
|
+
id?: bigint | undefined;
|
|
1563
1564
|
usageCount?: number | undefined;
|
|
1564
1565
|
likeCount?: number | undefined;
|
|
1565
1566
|
isLiked?: boolean | undefined;
|
|
1566
|
-
isPublic?: boolean | undefined;
|
|
1567
1567
|
createdAt?: Date | undefined;
|
|
1568
1568
|
} | null | undefined;
|
|
1569
1569
|
tags?: string[] | undefined;
|
|
@@ -1582,16 +1582,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1582
1582
|
isSensitive?: boolean | undefined;
|
|
1583
1583
|
locationConfig?: {
|
|
1584
1584
|
name?: string | undefined;
|
|
1585
|
-
|
|
1586
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1585
|
+
description?: string | undefined;
|
|
1587
1586
|
core?: {
|
|
1588
1587
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1589
1588
|
sequential?: boolean | undefined;
|
|
1590
1589
|
interval?: number | undefined;
|
|
1591
1590
|
maxAgentExecutions?: number | null | undefined;
|
|
1592
1591
|
} | undefined;
|
|
1593
|
-
description?: string | undefined;
|
|
1594
1592
|
rules?: string[] | undefined;
|
|
1593
|
+
thumbnail?: string | null | undefined;
|
|
1594
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1595
1595
|
canvases?: {
|
|
1596
1596
|
name: string;
|
|
1597
1597
|
description: string;
|
|
@@ -1603,9 +1603,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1603
1603
|
maxLength: number;
|
|
1604
1604
|
}[] | undefined;
|
|
1605
1605
|
gimmicks?: {
|
|
1606
|
-
name: string;
|
|
1607
1606
|
appearance: string;
|
|
1608
|
-
|
|
1607
|
+
name: string;
|
|
1608
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
1609
1609
|
images?: {
|
|
1610
1610
|
description: string;
|
|
1611
1611
|
name?: string | undefined;
|
|
@@ -1614,15 +1614,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1614
1614
|
}[] | undefined;
|
|
1615
1615
|
} | undefined;
|
|
1616
1616
|
agentConfigs?: ({
|
|
1617
|
-
name?: string | undefined;
|
|
1618
1617
|
role?: string | undefined;
|
|
1619
1618
|
avatar?: string | undefined;
|
|
1620
1619
|
referenceAvatar?: string | undefined;
|
|
1621
1620
|
appearance?: string | undefined;
|
|
1621
|
+
name?: string | undefined;
|
|
1622
1622
|
core?: {
|
|
1623
1623
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1624
1624
|
} | undefined;
|
|
1625
|
-
rules?: string[] | undefined;
|
|
1626
1625
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1627
1626
|
languages?: string[] | undefined;
|
|
1628
1627
|
timeZone?: string | undefined;
|
|
@@ -1649,6 +1648,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1649
1648
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1650
1649
|
} | undefined;
|
|
1651
1650
|
} | undefined;
|
|
1651
|
+
rules?: string[] | undefined;
|
|
1652
1652
|
} | null)[] | undefined;
|
|
1653
1653
|
thumbnails?: string[] | undefined;
|
|
1654
1654
|
mission?: {
|
|
@@ -1664,18 +1664,18 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1664
1664
|
image?: string | undefined;
|
|
1665
1665
|
}[] | undefined;
|
|
1666
1666
|
userAvatar?: {
|
|
1667
|
-
name: string;
|
|
1668
1667
|
avatar: string;
|
|
1669
1668
|
appearance: string;
|
|
1670
|
-
|
|
1669
|
+
name: string;
|
|
1671
1670
|
role?: string | undefined;
|
|
1672
1671
|
referenceAvatar?: string | undefined;
|
|
1673
1672
|
examplePoses?: string[] | undefined;
|
|
1674
1673
|
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1674
|
+
isPublic?: boolean | undefined;
|
|
1675
|
+
id?: bigint | undefined;
|
|
1675
1676
|
usageCount?: number | undefined;
|
|
1676
1677
|
likeCount?: number | undefined;
|
|
1677
1678
|
isLiked?: boolean | undefined;
|
|
1678
|
-
isPublic?: boolean | undefined;
|
|
1679
1679
|
createdAt?: Date | undefined;
|
|
1680
1680
|
} | null | undefined;
|
|
1681
1681
|
tags?: string[] | undefined;
|
|
@@ -1817,8 +1817,8 @@ export declare const GetLocationPresetLocationsParamsSchema: z.ZodObject<{
|
|
|
1817
1817
|
cursor?: string | undefined;
|
|
1818
1818
|
}, {
|
|
1819
1819
|
presetId: bigint;
|
|
1820
|
-
cursor?: string | undefined;
|
|
1821
1820
|
limit?: number | undefined;
|
|
1821
|
+
cursor?: string | undefined;
|
|
1822
1822
|
}>;
|
|
1823
1823
|
export type GetLocationPresetLocationsParamsDto = z.infer<typeof GetLocationPresetLocationsParamsSchema>;
|
|
1824
1824
|
export interface GetLocationPresetLocationsResponseDto {
|
|
@@ -1841,12 +1841,12 @@ export declare const GetLocationPresetCommentsQuerySchema: z.ZodObject<{
|
|
|
1841
1841
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1842
1842
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1843
1843
|
}, "strip", z.ZodTypeAny, {
|
|
1844
|
-
limit: number;
|
|
1845
1844
|
page: number;
|
|
1845
|
+
limit: number;
|
|
1846
1846
|
sortBy: "latest" | "recommended";
|
|
1847
1847
|
}, {
|
|
1848
|
-
limit?: number | undefined;
|
|
1849
1848
|
page?: number | undefined;
|
|
1849
|
+
limit?: number | undefined;
|
|
1850
1850
|
sortBy?: "latest" | "recommended" | undefined;
|
|
1851
1851
|
}>;
|
|
1852
1852
|
export type GetLocationPresetCommentsQueryDto = z.infer<typeof GetLocationPresetCommentsQuerySchema>;
|
|
@@ -1872,11 +1872,11 @@ export declare const GetLocationPresetCommentRepliesQuerySchema: z.ZodObject<{
|
|
|
1872
1872
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1873
1873
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1874
1874
|
}, "strip", z.ZodTypeAny, {
|
|
1875
|
-
limit: number;
|
|
1876
1875
|
page: number;
|
|
1876
|
+
limit: number;
|
|
1877
1877
|
}, {
|
|
1878
|
-
limit?: number | undefined;
|
|
1879
1878
|
page?: number | undefined;
|
|
1879
|
+
limit?: number | undefined;
|
|
1880
1880
|
}>;
|
|
1881
1881
|
export type GetLocationPresetCommentRepliesQueryDto = z.infer<typeof GetLocationPresetCommentRepliesQuerySchema>;
|
|
1882
1882
|
export interface GetLocationPresetCommentRepliesResponseDto {
|
|
@@ -1940,11 +1940,11 @@ export declare const ReportLocationPresetCommentParamsSchema: z.ZodObject<{
|
|
|
1940
1940
|
presetId: z.ZodBigInt;
|
|
1941
1941
|
commentId: z.ZodBigInt;
|
|
1942
1942
|
}, "strip", z.ZodTypeAny, {
|
|
1943
|
-
presetId: bigint;
|
|
1944
1943
|
commentId: bigint;
|
|
1945
|
-
}, {
|
|
1946
1944
|
presetId: bigint;
|
|
1945
|
+
}, {
|
|
1947
1946
|
commentId: bigint;
|
|
1947
|
+
presetId: bigint;
|
|
1948
1948
|
}>;
|
|
1949
1949
|
export type ReportLocationPresetCommentParamsDto = z.infer<typeof ReportLocationPresetCommentParamsSchema>;
|
|
1950
1950
|
export interface ReportLocationPresetCommentResponseDto {
|
|
@@ -1955,11 +1955,11 @@ export declare const DeleteLocationPresetCommentParamsSchema: z.ZodObject<{
|
|
|
1955
1955
|
presetId: z.ZodBigInt;
|
|
1956
1956
|
commentId: z.ZodBigInt;
|
|
1957
1957
|
}, "strip", z.ZodTypeAny, {
|
|
1958
|
-
presetId: bigint;
|
|
1959
1958
|
commentId: bigint;
|
|
1960
|
-
}, {
|
|
1961
1959
|
presetId: bigint;
|
|
1960
|
+
}, {
|
|
1962
1961
|
commentId: bigint;
|
|
1962
|
+
presetId: bigint;
|
|
1963
1963
|
}>;
|
|
1964
1964
|
export type DeleteLocationPresetCommentParamsDto = z.infer<typeof DeleteLocationPresetCommentParamsSchema>;
|
|
1965
1965
|
export interface DeleteLocationPresetCommentResponseDto {
|
|
@@ -2036,7 +2036,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2036
2036
|
maxLength: number;
|
|
2037
2037
|
}>, "many">>;
|
|
2038
2038
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2039
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
2039
|
+
core: z.ZodUnion<[z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">, ...z.ZodLiteral<"notion" | "web_search" | "image_generator" | "character_image_generator">[]]>;
|
|
2040
2040
|
name: z.ZodString;
|
|
2041
2041
|
appearance: z.ZodString;
|
|
2042
2042
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2053,18 +2053,18 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2053
2053
|
url?: string | undefined;
|
|
2054
2054
|
}>, "many">>;
|
|
2055
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2056
|
-
name: string;
|
|
2057
2056
|
appearance: string;
|
|
2058
|
-
|
|
2057
|
+
name: string;
|
|
2058
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
2059
2059
|
images?: {
|
|
2060
2060
|
description: string;
|
|
2061
2061
|
name?: string | undefined;
|
|
2062
2062
|
url?: string | undefined;
|
|
2063
2063
|
}[] | undefined;
|
|
2064
2064
|
}, {
|
|
2065
|
-
name: string;
|
|
2066
2065
|
appearance: string;
|
|
2067
|
-
|
|
2066
|
+
name: string;
|
|
2067
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
2068
2068
|
images?: {
|
|
2069
2069
|
description: string;
|
|
2070
2070
|
name?: string | undefined;
|
|
@@ -2073,16 +2073,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2073
2073
|
}>, "many">>;
|
|
2074
2074
|
}, "strict", z.ZodTypeAny, {
|
|
2075
2075
|
name?: string | undefined;
|
|
2076
|
-
|
|
2077
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2076
|
+
description?: string | undefined;
|
|
2078
2077
|
core?: {
|
|
2079
2078
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2080
2079
|
sequential?: boolean | undefined;
|
|
2081
2080
|
interval?: number | undefined;
|
|
2082
2081
|
maxAgentExecutions?: number | null | undefined;
|
|
2083
2082
|
} | undefined;
|
|
2084
|
-
description?: string | undefined;
|
|
2085
2083
|
rules?: string[] | undefined;
|
|
2084
|
+
thumbnail?: string | null | undefined;
|
|
2085
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2086
2086
|
canvases?: {
|
|
2087
2087
|
name: string;
|
|
2088
2088
|
description: string;
|
|
@@ -2094,9 +2094,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2094
2094
|
maxLength: number;
|
|
2095
2095
|
}[] | undefined;
|
|
2096
2096
|
gimmicks?: {
|
|
2097
|
-
name: string;
|
|
2098
2097
|
appearance: string;
|
|
2099
|
-
|
|
2098
|
+
name: string;
|
|
2099
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
2100
2100
|
images?: {
|
|
2101
2101
|
description: string;
|
|
2102
2102
|
name?: string | undefined;
|
|
@@ -2105,16 +2105,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2105
2105
|
}[] | undefined;
|
|
2106
2106
|
}, {
|
|
2107
2107
|
name?: string | undefined;
|
|
2108
|
-
|
|
2109
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2108
|
+
description?: string | undefined;
|
|
2110
2109
|
core?: {
|
|
2111
2110
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2112
2111
|
sequential?: boolean | undefined;
|
|
2113
2112
|
interval?: number | undefined;
|
|
2114
2113
|
maxAgentExecutions?: number | null | undefined;
|
|
2115
2114
|
} | undefined;
|
|
2116
|
-
description?: string | undefined;
|
|
2117
2115
|
rules?: string[] | undefined;
|
|
2116
|
+
thumbnail?: string | null | undefined;
|
|
2117
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2118
2118
|
canvases?: {
|
|
2119
2119
|
name: string;
|
|
2120
2120
|
description: string;
|
|
@@ -2126,9 +2126,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2126
2126
|
maxLength: number;
|
|
2127
2127
|
}[] | undefined;
|
|
2128
2128
|
gimmicks?: {
|
|
2129
|
-
name: string;
|
|
2130
2129
|
appearance: string;
|
|
2131
|
-
|
|
2130
|
+
name: string;
|
|
2131
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
2132
2132
|
images?: {
|
|
2133
2133
|
description: string;
|
|
2134
2134
|
name?: string | undefined;
|
|
@@ -2143,16 +2143,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2143
2143
|
}, "strip", z.ZodTypeAny, {
|
|
2144
2144
|
config: {
|
|
2145
2145
|
name?: string | undefined;
|
|
2146
|
-
|
|
2147
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2146
|
+
description?: string | undefined;
|
|
2148
2147
|
core?: {
|
|
2149
2148
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2150
2149
|
sequential?: boolean | undefined;
|
|
2151
2150
|
interval?: number | undefined;
|
|
2152
2151
|
maxAgentExecutions?: number | null | undefined;
|
|
2153
2152
|
} | undefined;
|
|
2154
|
-
description?: string | undefined;
|
|
2155
2153
|
rules?: string[] | undefined;
|
|
2154
|
+
thumbnail?: string | null | undefined;
|
|
2155
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2156
2156
|
canvases?: {
|
|
2157
2157
|
name: string;
|
|
2158
2158
|
description: string;
|
|
@@ -2164,9 +2164,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2164
2164
|
maxLength: number;
|
|
2165
2165
|
}[] | undefined;
|
|
2166
2166
|
gimmicks?: {
|
|
2167
|
-
name: string;
|
|
2168
2167
|
appearance: string;
|
|
2169
|
-
|
|
2168
|
+
name: string;
|
|
2169
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
2170
2170
|
images?: {
|
|
2171
2171
|
description: string;
|
|
2172
2172
|
name?: string | undefined;
|
|
@@ -2178,16 +2178,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2178
2178
|
}, {
|
|
2179
2179
|
config: {
|
|
2180
2180
|
name?: string | undefined;
|
|
2181
|
-
|
|
2182
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2181
|
+
description?: string | undefined;
|
|
2183
2182
|
core?: {
|
|
2184
2183
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2185
2184
|
sequential?: boolean | undefined;
|
|
2186
2185
|
interval?: number | undefined;
|
|
2187
2186
|
maxAgentExecutions?: number | null | undefined;
|
|
2188
2187
|
} | undefined;
|
|
2189
|
-
description?: string | undefined;
|
|
2190
2188
|
rules?: string[] | undefined;
|
|
2189
|
+
thumbnail?: string | null | undefined;
|
|
2190
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2191
2191
|
canvases?: {
|
|
2192
2192
|
name: string;
|
|
2193
2193
|
description: string;
|
|
@@ -2199,9 +2199,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2199
2199
|
maxLength: number;
|
|
2200
2200
|
}[] | undefined;
|
|
2201
2201
|
gimmicks?: {
|
|
2202
|
-
name: string;
|
|
2203
2202
|
appearance: string;
|
|
2204
|
-
|
|
2203
|
+
name: string;
|
|
2204
|
+
core: "notion" | "web_search" | "image_generator" | "character_image_generator";
|
|
2205
2205
|
images?: {
|
|
2206
2206
|
description: string;
|
|
2207
2207
|
name?: string | undefined;
|
|
@@ -2257,8 +2257,8 @@ export declare const GetAgentHelperLocationQuerySchema: z.ZodObject<{
|
|
|
2257
2257
|
readonly MINIMO: "MINIMO";
|
|
2258
2258
|
}>>>;
|
|
2259
2259
|
}, "strip", z.ZodTypeAny, {
|
|
2260
|
-
platform: "API" | "MINIMO";
|
|
2261
2260
|
agentId: bigint;
|
|
2261
|
+
platform: "API" | "MINIMO";
|
|
2262
2262
|
}, {
|
|
2263
2263
|
agentId: bigint;
|
|
2264
2264
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -2291,8 +2291,8 @@ export declare const GetAgentDmLocationQuerySchema: z.ZodObject<{
|
|
|
2291
2291
|
readonly MINIMO: "MINIMO";
|
|
2292
2292
|
}>>>;
|
|
2293
2293
|
}, "strip", z.ZodTypeAny, {
|
|
2294
|
-
platform: "API" | "MINIMO";
|
|
2295
2294
|
agentId: bigint;
|
|
2295
|
+
platform: "API" | "MINIMO";
|
|
2296
2296
|
}, {
|
|
2297
2297
|
agentId: bigint;
|
|
2298
2298
|
platform?: "API" | "MINIMO" | undefined;
|