@little-samo/samo-ai-sdk 0.4.7 → 0.5.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/dto/entities/agents/agent.requests.d.ts +60 -50
- package/dist/dto/entities/users/user.d.ts +10 -6
- package/dist/dto/entities/users/user.js +3 -2
- package/dist/dto/entities/users/user.js.map +1 -1
- package/dist/dto/entities/users/user.requests.d.ts +53 -26
- package/dist/dto/entities/users/user.requests.js +2 -4
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/locations/location.preset.d.ts +2 -2
- package/dist/dto/locations/location.requests.d.ts +186 -141
- package/dist/dto/locations/location.requests.js +11 -2
- package/dist/dto/locations/location.requests.js.map +1 -1
- package/dist/models/entities/agents/agent.config.d.ts +15 -12
- package/dist/models/entities/agents/agent.config.js +21 -5
- package/dist/models/entities/agents/agent.config.js.map +1 -1
- package/dist/models/locations/location.config.d.ts +8 -8
- package/package.json +3 -3
|
@@ -136,8 +136,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
136
136
|
}>, "many">>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
name: string;
|
|
139
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
140
139
|
appearance: string;
|
|
140
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
141
141
|
images?: {
|
|
142
142
|
description: string;
|
|
143
143
|
name?: string | undefined;
|
|
@@ -145,8 +145,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
145
145
|
}[] | undefined;
|
|
146
146
|
}, {
|
|
147
147
|
name: string;
|
|
148
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
149
148
|
appearance: string;
|
|
149
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
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" | 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" | undefined;
|
|
168
168
|
canvases?: {
|
|
169
169
|
name: string;
|
|
170
170
|
description: string;
|
|
@@ -177,8 +177,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
177
177
|
}[] | undefined;
|
|
178
178
|
gimmicks?: {
|
|
179
179
|
name: string;
|
|
180
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
181
180
|
appearance: string;
|
|
181
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
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" | 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" | undefined;
|
|
200
200
|
canvases?: {
|
|
201
201
|
name: string;
|
|
202
202
|
description: string;
|
|
@@ -209,8 +209,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
209
209
|
}[] | undefined;
|
|
210
210
|
gimmicks?: {
|
|
211
211
|
name: string;
|
|
212
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
213
212
|
appearance: string;
|
|
213
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
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" | 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" | undefined;
|
|
235
235
|
canvases?: {
|
|
236
236
|
name: string;
|
|
237
237
|
description: string;
|
|
@@ -244,8 +244,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
244
244
|
}[] | undefined;
|
|
245
245
|
gimmicks?: {
|
|
246
246
|
name: string;
|
|
247
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
248
247
|
appearance: string;
|
|
248
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
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" | 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" | undefined;
|
|
270
270
|
canvases?: {
|
|
271
271
|
name: string;
|
|
272
272
|
description: string;
|
|
@@ -279,8 +279,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
279
279
|
}[] | undefined;
|
|
280
280
|
gimmicks?: {
|
|
281
281
|
name: string;
|
|
282
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
283
282
|
appearance: string;
|
|
283
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
284
284
|
images?: {
|
|
285
285
|
description: string;
|
|
286
286
|
name?: string | undefined;
|
|
@@ -376,8 +376,8 @@ export declare const PublishedLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
376
376
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
377
377
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
378
378
|
}, "strip", z.ZodTypeAny, {
|
|
379
|
-
limit: number;
|
|
380
379
|
type: "NOVEL";
|
|
380
|
+
limit: number;
|
|
381
381
|
page: number;
|
|
382
382
|
}, {
|
|
383
383
|
type: "NOVEL";
|
|
@@ -481,8 +481,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
481
481
|
}>, "many">>;
|
|
482
482
|
}, "strip", z.ZodTypeAny, {
|
|
483
483
|
name: string;
|
|
484
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
485
484
|
appearance: string;
|
|
485
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
486
486
|
images?: {
|
|
487
487
|
description: string;
|
|
488
488
|
name?: string | undefined;
|
|
@@ -490,8 +490,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
490
490
|
}[] | undefined;
|
|
491
491
|
}, {
|
|
492
492
|
name: string;
|
|
493
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
494
493
|
appearance: string;
|
|
494
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
495
495
|
images?: {
|
|
496
496
|
description: string;
|
|
497
497
|
name?: string | undefined;
|
|
@@ -500,16 +500,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
500
500
|
}>, "many">>;
|
|
501
501
|
}, "strip", z.ZodTypeAny, {
|
|
502
502
|
name?: string | undefined;
|
|
503
|
-
|
|
504
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
503
|
+
description?: string | undefined;
|
|
505
504
|
core?: {
|
|
506
505
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
507
506
|
sequential?: boolean | undefined;
|
|
508
507
|
interval?: number | undefined;
|
|
509
508
|
maxAgentExecutions?: number | null | undefined;
|
|
510
509
|
} | undefined;
|
|
511
|
-
description?: string | undefined;
|
|
512
510
|
rules?: string[] | undefined;
|
|
511
|
+
thumbnail?: string | null | undefined;
|
|
512
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
513
513
|
canvases?: {
|
|
514
514
|
name: string;
|
|
515
515
|
description: string;
|
|
@@ -522,8 +522,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
522
522
|
}[] | undefined;
|
|
523
523
|
gimmicks?: {
|
|
524
524
|
name: string;
|
|
525
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
526
525
|
appearance: string;
|
|
526
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
527
527
|
images?: {
|
|
528
528
|
description: string;
|
|
529
529
|
name?: string | undefined;
|
|
@@ -532,16 +532,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
532
532
|
}[] | undefined;
|
|
533
533
|
}, {
|
|
534
534
|
name?: string | undefined;
|
|
535
|
-
|
|
536
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
535
|
+
description?: string | undefined;
|
|
537
536
|
core?: {
|
|
538
537
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
539
538
|
sequential?: boolean | undefined;
|
|
540
539
|
interval?: number | undefined;
|
|
541
540
|
maxAgentExecutions?: number | null | undefined;
|
|
542
541
|
} | undefined;
|
|
543
|
-
description?: string | undefined;
|
|
544
542
|
rules?: string[] | undefined;
|
|
543
|
+
thumbnail?: string | null | undefined;
|
|
544
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
545
545
|
canvases?: {
|
|
546
546
|
name: string;
|
|
547
547
|
description: string;
|
|
@@ -554,8 +554,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
554
554
|
}[] | undefined;
|
|
555
555
|
gimmicks?: {
|
|
556
556
|
name: string;
|
|
557
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
558
557
|
appearance: string;
|
|
558
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
559
559
|
images?: {
|
|
560
560
|
description: string;
|
|
561
561
|
name?: string | undefined;
|
|
@@ -565,6 +565,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
565
565
|
}>>;
|
|
566
566
|
agentConfigs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
567
567
|
name: z.ZodOptional<z.ZodString>;
|
|
568
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
568
569
|
avatar: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[], z.ZodString, z.ZodString]>>;
|
|
569
570
|
referenceAvatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
570
571
|
appearance: z.ZodOptional<z.ZodString>;
|
|
@@ -582,19 +583,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
582
583
|
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodLiteral<"todo">, z.ZodLiteral<"todo">]>, "many">>;
|
|
583
584
|
character: z.ZodOptional<z.ZodObject<{
|
|
584
585
|
background: z.ZodOptional<z.ZodObject<{
|
|
585
|
-
role: z.ZodOptional<z.ZodString>;
|
|
586
586
|
gender: z.ZodOptional<z.ZodString>;
|
|
587
587
|
age: z.ZodOptional<z.ZodString>;
|
|
588
588
|
expertise: z.ZodOptional<z.ZodString>;
|
|
589
589
|
backstory: z.ZodOptional<z.ZodString>;
|
|
590
590
|
}, "strip", z.ZodTypeAny, {
|
|
591
|
-
role?: string | undefined;
|
|
592
591
|
gender?: string | undefined;
|
|
593
592
|
age?: string | undefined;
|
|
594
593
|
expertise?: string | undefined;
|
|
595
594
|
backstory?: string | undefined;
|
|
596
595
|
}, {
|
|
597
|
-
role?: string | undefined;
|
|
598
596
|
gender?: string | undefined;
|
|
599
597
|
age?: string | undefined;
|
|
600
598
|
expertise?: string | undefined;
|
|
@@ -619,22 +617,24 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
619
617
|
values: z.ZodOptional<z.ZodString>;
|
|
620
618
|
quirks: z.ZodOptional<z.ZodString>;
|
|
621
619
|
mbti: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"INTJ">, z.ZodLiteral<"INTP">, z.ZodLiteral<"ENTJ">, z.ZodLiteral<"ENTP">, z.ZodLiteral<"INFJ">, z.ZodLiteral<"INFP">, z.ZodLiteral<"ENFJ">, z.ZodLiteral<"ENFP">, z.ZodLiteral<"ISTJ">, z.ZodLiteral<"ISFJ">, z.ZodLiteral<"ESTJ">, z.ZodLiteral<"ESFJ">, z.ZodLiteral<"ISTP">, z.ZodLiteral<"ISFP">, z.ZodLiteral<"ESTP">, z.ZodLiteral<"ESFP">]>>;
|
|
620
|
+
zodiac: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Aries">, z.ZodLiteral<"Taurus">, z.ZodLiteral<"Gemini">, z.ZodLiteral<"Cancer">, z.ZodLiteral<"Leo">, z.ZodLiteral<"Virgo">, z.ZodLiteral<"Libra">, z.ZodLiteral<"Scorpio">, z.ZodLiteral<"Sagittarius">, z.ZodLiteral<"Capricorn">, z.ZodLiteral<"Aquarius">, z.ZodLiteral<"Pisces">]>>;
|
|
622
621
|
}, "strip", z.ZodTypeAny, {
|
|
623
622
|
values?: string | undefined;
|
|
624
623
|
traits?: string | undefined;
|
|
625
624
|
interests?: string | undefined;
|
|
626
625
|
quirks?: string | undefined;
|
|
627
626
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
627
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
628
628
|
}, {
|
|
629
629
|
values?: string | undefined;
|
|
630
630
|
traits?: string | undefined;
|
|
631
631
|
interests?: string | undefined;
|
|
632
632
|
quirks?: string | undefined;
|
|
633
633
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
634
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
634
635
|
}>>;
|
|
635
636
|
}, "strip", z.ZodTypeAny, {
|
|
636
637
|
background?: {
|
|
637
|
-
role?: string | undefined;
|
|
638
638
|
gender?: string | undefined;
|
|
639
639
|
age?: string | undefined;
|
|
640
640
|
expertise?: string | undefined;
|
|
@@ -651,10 +651,10 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
651
651
|
interests?: string | undefined;
|
|
652
652
|
quirks?: string | undefined;
|
|
653
653
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
654
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
654
655
|
} | undefined;
|
|
655
656
|
}, {
|
|
656
657
|
background?: {
|
|
657
|
-
role?: string | undefined;
|
|
658
658
|
gender?: string | undefined;
|
|
659
659
|
age?: string | undefined;
|
|
660
660
|
expertise?: string | undefined;
|
|
@@ -671,18 +671,19 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
671
671
|
interests?: string | undefined;
|
|
672
672
|
quirks?: string | undefined;
|
|
673
673
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
674
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
674
675
|
} | undefined;
|
|
675
676
|
}>>;
|
|
676
677
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
677
678
|
}, "strip", z.ZodTypeAny, {
|
|
678
679
|
name?: string | undefined;
|
|
680
|
+
role?: string | undefined;
|
|
681
|
+
avatar?: string | undefined;
|
|
682
|
+
referenceAvatar?: string | undefined;
|
|
683
|
+
appearance?: string | undefined;
|
|
679
684
|
core?: {
|
|
680
685
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
681
686
|
} | undefined;
|
|
682
|
-
rules?: string[] | undefined;
|
|
683
|
-
appearance?: string | undefined;
|
|
684
|
-
avatar?: string | undefined;
|
|
685
|
-
referenceAvatar?: string | undefined;
|
|
686
687
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
687
688
|
languages?: string[] | undefined;
|
|
688
689
|
timeZone?: string | undefined;
|
|
@@ -690,7 +691,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
690
691
|
actions?: "todo"[] | undefined;
|
|
691
692
|
character?: {
|
|
692
693
|
background?: {
|
|
693
|
-
role?: string | undefined;
|
|
694
694
|
gender?: string | undefined;
|
|
695
695
|
age?: string | undefined;
|
|
696
696
|
expertise?: string | undefined;
|
|
@@ -707,17 +707,19 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
707
707
|
interests?: string | undefined;
|
|
708
708
|
quirks?: string | undefined;
|
|
709
709
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
710
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
710
711
|
} | undefined;
|
|
711
712
|
} | undefined;
|
|
713
|
+
rules?: string[] | undefined;
|
|
712
714
|
}, {
|
|
713
715
|
name?: string | undefined;
|
|
716
|
+
role?: string | undefined;
|
|
717
|
+
avatar?: string | undefined;
|
|
718
|
+
referenceAvatar?: string | undefined;
|
|
719
|
+
appearance?: string | undefined;
|
|
714
720
|
core?: {
|
|
715
721
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
716
722
|
} | undefined;
|
|
717
|
-
rules?: string[] | undefined;
|
|
718
|
-
appearance?: string | undefined;
|
|
719
|
-
avatar?: string | undefined;
|
|
720
|
-
referenceAvatar?: string | undefined;
|
|
721
723
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
722
724
|
languages?: string[] | undefined;
|
|
723
725
|
timeZone?: string | undefined;
|
|
@@ -725,7 +727,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
725
727
|
actions?: "todo"[] | undefined;
|
|
726
728
|
character?: {
|
|
727
729
|
background?: {
|
|
728
|
-
role?: string | undefined;
|
|
729
730
|
gender?: string | undefined;
|
|
730
731
|
age?: string | undefined;
|
|
731
732
|
expertise?: string | undefined;
|
|
@@ -742,30 +743,32 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
742
743
|
interests?: string | undefined;
|
|
743
744
|
quirks?: string | undefined;
|
|
744
745
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
746
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
745
747
|
} | undefined;
|
|
746
748
|
} | undefined;
|
|
749
|
+
rules?: string[] | undefined;
|
|
747
750
|
}>, "many">>;
|
|
748
751
|
}, "strip", z.ZodTypeAny, {
|
|
749
752
|
presetDescription: string;
|
|
750
753
|
presetShortDescription: string;
|
|
751
|
-
locationId?: bigint | undefined;
|
|
752
754
|
name?: string | undefined;
|
|
755
|
+
locationId?: bigint | undefined;
|
|
753
756
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
754
757
|
hashtags?: string[] | undefined;
|
|
755
758
|
isAllowImport?: boolean | undefined;
|
|
756
759
|
isSensitive?: boolean | undefined;
|
|
757
760
|
locationConfig?: {
|
|
758
761
|
name?: string | undefined;
|
|
759
|
-
|
|
760
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
762
|
+
description?: string | undefined;
|
|
761
763
|
core?: {
|
|
762
764
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
763
765
|
sequential?: boolean | undefined;
|
|
764
766
|
interval?: number | undefined;
|
|
765
767
|
maxAgentExecutions?: number | null | undefined;
|
|
766
768
|
} | undefined;
|
|
767
|
-
description?: string | undefined;
|
|
768
769
|
rules?: string[] | undefined;
|
|
770
|
+
thumbnail?: string | null | undefined;
|
|
771
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
769
772
|
canvases?: {
|
|
770
773
|
name: string;
|
|
771
774
|
description: string;
|
|
@@ -778,8 +781,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
778
781
|
}[] | undefined;
|
|
779
782
|
gimmicks?: {
|
|
780
783
|
name: string;
|
|
781
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
782
784
|
appearance: string;
|
|
785
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
783
786
|
images?: {
|
|
784
787
|
description: string;
|
|
785
788
|
name?: string | undefined;
|
|
@@ -789,13 +792,13 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
789
792
|
} | undefined;
|
|
790
793
|
agentConfigs?: {
|
|
791
794
|
name?: string | undefined;
|
|
795
|
+
role?: string | undefined;
|
|
796
|
+
avatar?: string | undefined;
|
|
797
|
+
referenceAvatar?: string | undefined;
|
|
798
|
+
appearance?: string | undefined;
|
|
792
799
|
core?: {
|
|
793
800
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
794
801
|
} | undefined;
|
|
795
|
-
rules?: string[] | undefined;
|
|
796
|
-
appearance?: string | undefined;
|
|
797
|
-
avatar?: string | undefined;
|
|
798
|
-
referenceAvatar?: string | undefined;
|
|
799
802
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
800
803
|
languages?: string[] | undefined;
|
|
801
804
|
timeZone?: string | undefined;
|
|
@@ -803,7 +806,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
803
806
|
actions?: "todo"[] | undefined;
|
|
804
807
|
character?: {
|
|
805
808
|
background?: {
|
|
806
|
-
role?: string | undefined;
|
|
807
809
|
gender?: string | undefined;
|
|
808
810
|
age?: string | undefined;
|
|
809
811
|
expertise?: string | undefined;
|
|
@@ -820,30 +822,32 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
820
822
|
interests?: string | undefined;
|
|
821
823
|
quirks?: string | undefined;
|
|
822
824
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
825
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
823
826
|
} | undefined;
|
|
824
827
|
} | undefined;
|
|
828
|
+
rules?: string[] | undefined;
|
|
825
829
|
}[] | undefined;
|
|
826
830
|
}, {
|
|
827
831
|
presetDescription: string;
|
|
828
832
|
presetShortDescription: string;
|
|
829
|
-
locationId?: bigint | undefined;
|
|
830
833
|
name?: string | undefined;
|
|
834
|
+
locationId?: bigint | undefined;
|
|
831
835
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
832
836
|
hashtags?: string[] | undefined;
|
|
833
837
|
isAllowImport?: boolean | undefined;
|
|
834
838
|
isSensitive?: boolean | undefined;
|
|
835
839
|
locationConfig?: {
|
|
836
840
|
name?: string | undefined;
|
|
837
|
-
|
|
838
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
841
|
+
description?: string | undefined;
|
|
839
842
|
core?: {
|
|
840
843
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
841
844
|
sequential?: boolean | undefined;
|
|
842
845
|
interval?: number | undefined;
|
|
843
846
|
maxAgentExecutions?: number | null | undefined;
|
|
844
847
|
} | undefined;
|
|
845
|
-
description?: string | undefined;
|
|
846
848
|
rules?: string[] | undefined;
|
|
849
|
+
thumbnail?: string | null | undefined;
|
|
850
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
847
851
|
canvases?: {
|
|
848
852
|
name: string;
|
|
849
853
|
description: string;
|
|
@@ -856,8 +860,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
856
860
|
}[] | undefined;
|
|
857
861
|
gimmicks?: {
|
|
858
862
|
name: string;
|
|
859
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
860
863
|
appearance: string;
|
|
864
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
861
865
|
images?: {
|
|
862
866
|
description: string;
|
|
863
867
|
name?: string | undefined;
|
|
@@ -867,13 +871,13 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
867
871
|
} | undefined;
|
|
868
872
|
agentConfigs?: {
|
|
869
873
|
name?: string | undefined;
|
|
874
|
+
role?: string | undefined;
|
|
875
|
+
avatar?: string | undefined;
|
|
876
|
+
referenceAvatar?: string | undefined;
|
|
877
|
+
appearance?: string | undefined;
|
|
870
878
|
core?: {
|
|
871
879
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
872
880
|
} | undefined;
|
|
873
|
-
rules?: string[] | undefined;
|
|
874
|
-
appearance?: string | undefined;
|
|
875
|
-
avatar?: string | undefined;
|
|
876
|
-
referenceAvatar?: string | undefined;
|
|
877
881
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
878
882
|
languages?: string[] | undefined;
|
|
879
883
|
timeZone?: string | undefined;
|
|
@@ -881,7 +885,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
881
885
|
actions?: "todo"[] | undefined;
|
|
882
886
|
character?: {
|
|
883
887
|
background?: {
|
|
884
|
-
role?: string | undefined;
|
|
885
888
|
gender?: string | undefined;
|
|
886
889
|
age?: string | undefined;
|
|
887
890
|
expertise?: string | undefined;
|
|
@@ -898,8 +901,10 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
898
901
|
interests?: string | undefined;
|
|
899
902
|
quirks?: string | undefined;
|
|
900
903
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
904
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
901
905
|
} | undefined;
|
|
902
906
|
} | undefined;
|
|
907
|
+
rules?: string[] | undefined;
|
|
903
908
|
}[] | undefined;
|
|
904
909
|
}>;
|
|
905
910
|
export type CreateLocationPresetDto = z.infer<typeof CreateLocationPresetSchema>;
|
|
@@ -966,31 +971,34 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
966
971
|
message: z.ZodOptional<z.ZodString>;
|
|
967
972
|
image: z.ZodOptional<z.ZodString>;
|
|
968
973
|
}, "strip", z.ZodTypeAny, {
|
|
969
|
-
entityType: "
|
|
974
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
970
975
|
entityId: bigint;
|
|
971
976
|
message?: string | undefined;
|
|
972
977
|
image?: string | undefined;
|
|
973
978
|
}, {
|
|
974
|
-
entityType: "
|
|
979
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
975
980
|
entityId: bigint;
|
|
976
981
|
message?: string | undefined;
|
|
977
982
|
image?: string | undefined;
|
|
978
983
|
}>, "many">>;
|
|
979
984
|
userAvatar: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
980
985
|
name: z.ZodString;
|
|
981
|
-
|
|
982
|
-
|
|
986
|
+
role: z.ZodOptional<z.ZodString>;
|
|
987
|
+
avatar: z.ZodString;
|
|
988
|
+
referenceAvatar: z.ZodString;
|
|
983
989
|
appearance: z.ZodString;
|
|
984
990
|
}, "strip", z.ZodTypeAny, {
|
|
985
991
|
name: string;
|
|
992
|
+
avatar: string;
|
|
993
|
+
referenceAvatar: string;
|
|
986
994
|
appearance: string;
|
|
987
|
-
|
|
988
|
-
referenceAvatar: string | null;
|
|
995
|
+
role?: string | undefined;
|
|
989
996
|
}, {
|
|
990
997
|
name: string;
|
|
998
|
+
avatar: string;
|
|
999
|
+
referenceAvatar: string;
|
|
991
1000
|
appearance: string;
|
|
992
|
-
|
|
993
|
-
referenceAvatar: string | null;
|
|
1001
|
+
role?: string | undefined;
|
|
994
1002
|
}>>>;
|
|
995
1003
|
hashtags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
996
1004
|
isAllowImport: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1062,8 +1070,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1062
1070
|
}>, "many">>;
|
|
1063
1071
|
}, "strip", z.ZodTypeAny, {
|
|
1064
1072
|
name: string;
|
|
1065
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1066
1073
|
appearance: string;
|
|
1074
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1067
1075
|
images?: {
|
|
1068
1076
|
description: string;
|
|
1069
1077
|
name?: string | undefined;
|
|
@@ -1071,8 +1079,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1071
1079
|
}[] | undefined;
|
|
1072
1080
|
}, {
|
|
1073
1081
|
name: string;
|
|
1074
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1075
1082
|
appearance: string;
|
|
1083
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1076
1084
|
images?: {
|
|
1077
1085
|
description: string;
|
|
1078
1086
|
name?: string | undefined;
|
|
@@ -1081,16 +1089,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1081
1089
|
}>, "many">>;
|
|
1082
1090
|
}, "strip", z.ZodTypeAny, {
|
|
1083
1091
|
name?: string | undefined;
|
|
1084
|
-
|
|
1085
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1092
|
+
description?: string | undefined;
|
|
1086
1093
|
core?: {
|
|
1087
1094
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1088
1095
|
sequential?: boolean | undefined;
|
|
1089
1096
|
interval?: number | undefined;
|
|
1090
1097
|
maxAgentExecutions?: number | null | undefined;
|
|
1091
1098
|
} | undefined;
|
|
1092
|
-
description?: string | undefined;
|
|
1093
1099
|
rules?: string[] | undefined;
|
|
1100
|
+
thumbnail?: string | null | undefined;
|
|
1101
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1094
1102
|
canvases?: {
|
|
1095
1103
|
name: string;
|
|
1096
1104
|
description: string;
|
|
@@ -1103,8 +1111,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1103
1111
|
}[] | undefined;
|
|
1104
1112
|
gimmicks?: {
|
|
1105
1113
|
name: string;
|
|
1106
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1107
1114
|
appearance: string;
|
|
1115
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1108
1116
|
images?: {
|
|
1109
1117
|
description: string;
|
|
1110
1118
|
name?: string | undefined;
|
|
@@ -1113,16 +1121,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1113
1121
|
}[] | undefined;
|
|
1114
1122
|
}, {
|
|
1115
1123
|
name?: string | undefined;
|
|
1116
|
-
|
|
1117
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1124
|
+
description?: string | undefined;
|
|
1118
1125
|
core?: {
|
|
1119
1126
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1120
1127
|
sequential?: boolean | undefined;
|
|
1121
1128
|
interval?: number | undefined;
|
|
1122
1129
|
maxAgentExecutions?: number | null | undefined;
|
|
1123
1130
|
} | undefined;
|
|
1124
|
-
description?: string | undefined;
|
|
1125
1131
|
rules?: string[] | undefined;
|
|
1132
|
+
thumbnail?: string | null | undefined;
|
|
1133
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1126
1134
|
canvases?: {
|
|
1127
1135
|
name: string;
|
|
1128
1136
|
description: string;
|
|
@@ -1135,8 +1143,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1135
1143
|
}[] | undefined;
|
|
1136
1144
|
gimmicks?: {
|
|
1137
1145
|
name: string;
|
|
1138
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1139
1146
|
appearance: string;
|
|
1147
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1140
1148
|
images?: {
|
|
1141
1149
|
description: string;
|
|
1142
1150
|
name?: string | undefined;
|
|
@@ -1146,6 +1154,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1146
1154
|
}>>;
|
|
1147
1155
|
agentConfigs: z.ZodOptional<z.ZodArray<z.ZodNullable<z.ZodObject<{
|
|
1148
1156
|
name: z.ZodOptional<z.ZodString>;
|
|
1157
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1149
1158
|
avatar: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<string>, z.ZodLiteral<string>, ...z.ZodLiteral<string>[], z.ZodString, z.ZodString]>>;
|
|
1150
1159
|
referenceAvatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1151
1160
|
appearance: z.ZodOptional<z.ZodString>;
|
|
@@ -1163,19 +1172,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1163
1172
|
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodLiteral<"todo">, z.ZodLiteral<"todo">]>, "many">>;
|
|
1164
1173
|
character: z.ZodOptional<z.ZodObject<{
|
|
1165
1174
|
background: z.ZodOptional<z.ZodObject<{
|
|
1166
|
-
role: z.ZodOptional<z.ZodString>;
|
|
1167
1175
|
gender: z.ZodOptional<z.ZodString>;
|
|
1168
1176
|
age: z.ZodOptional<z.ZodString>;
|
|
1169
1177
|
expertise: z.ZodOptional<z.ZodString>;
|
|
1170
1178
|
backstory: z.ZodOptional<z.ZodString>;
|
|
1171
1179
|
}, "strip", z.ZodTypeAny, {
|
|
1172
|
-
role?: string | undefined;
|
|
1173
1180
|
gender?: string | undefined;
|
|
1174
1181
|
age?: string | undefined;
|
|
1175
1182
|
expertise?: string | undefined;
|
|
1176
1183
|
backstory?: string | undefined;
|
|
1177
1184
|
}, {
|
|
1178
|
-
role?: string | undefined;
|
|
1179
1185
|
gender?: string | undefined;
|
|
1180
1186
|
age?: string | undefined;
|
|
1181
1187
|
expertise?: string | undefined;
|
|
@@ -1200,22 +1206,24 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1200
1206
|
values: z.ZodOptional<z.ZodString>;
|
|
1201
1207
|
quirks: z.ZodOptional<z.ZodString>;
|
|
1202
1208
|
mbti: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"INTJ">, z.ZodLiteral<"INTP">, z.ZodLiteral<"ENTJ">, z.ZodLiteral<"ENTP">, z.ZodLiteral<"INFJ">, z.ZodLiteral<"INFP">, z.ZodLiteral<"ENFJ">, z.ZodLiteral<"ENFP">, z.ZodLiteral<"ISTJ">, z.ZodLiteral<"ISFJ">, z.ZodLiteral<"ESTJ">, z.ZodLiteral<"ESFJ">, z.ZodLiteral<"ISTP">, z.ZodLiteral<"ISFP">, z.ZodLiteral<"ESTP">, z.ZodLiteral<"ESFP">]>>;
|
|
1209
|
+
zodiac: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Aries">, z.ZodLiteral<"Taurus">, z.ZodLiteral<"Gemini">, z.ZodLiteral<"Cancer">, z.ZodLiteral<"Leo">, z.ZodLiteral<"Virgo">, z.ZodLiteral<"Libra">, z.ZodLiteral<"Scorpio">, z.ZodLiteral<"Sagittarius">, z.ZodLiteral<"Capricorn">, z.ZodLiteral<"Aquarius">, z.ZodLiteral<"Pisces">]>>;
|
|
1203
1210
|
}, "strip", z.ZodTypeAny, {
|
|
1204
1211
|
values?: string | undefined;
|
|
1205
1212
|
traits?: string | undefined;
|
|
1206
1213
|
interests?: string | undefined;
|
|
1207
1214
|
quirks?: string | undefined;
|
|
1208
1215
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1216
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1209
1217
|
}, {
|
|
1210
1218
|
values?: string | undefined;
|
|
1211
1219
|
traits?: string | undefined;
|
|
1212
1220
|
interests?: string | undefined;
|
|
1213
1221
|
quirks?: string | undefined;
|
|
1214
1222
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1223
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1215
1224
|
}>>;
|
|
1216
1225
|
}, "strip", z.ZodTypeAny, {
|
|
1217
1226
|
background?: {
|
|
1218
|
-
role?: string | undefined;
|
|
1219
1227
|
gender?: string | undefined;
|
|
1220
1228
|
age?: string | undefined;
|
|
1221
1229
|
expertise?: string | undefined;
|
|
@@ -1232,10 +1240,10 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1232
1240
|
interests?: string | undefined;
|
|
1233
1241
|
quirks?: string | undefined;
|
|
1234
1242
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1243
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1235
1244
|
} | undefined;
|
|
1236
1245
|
}, {
|
|
1237
1246
|
background?: {
|
|
1238
|
-
role?: string | undefined;
|
|
1239
1247
|
gender?: string | undefined;
|
|
1240
1248
|
age?: string | undefined;
|
|
1241
1249
|
expertise?: string | undefined;
|
|
@@ -1252,18 +1260,19 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1252
1260
|
interests?: string | undefined;
|
|
1253
1261
|
quirks?: string | undefined;
|
|
1254
1262
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1263
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1255
1264
|
} | undefined;
|
|
1256
1265
|
}>>;
|
|
1257
1266
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1258
1267
|
}, "strip", z.ZodTypeAny, {
|
|
1259
1268
|
name?: string | undefined;
|
|
1269
|
+
role?: string | undefined;
|
|
1270
|
+
avatar?: string | undefined;
|
|
1271
|
+
referenceAvatar?: string | undefined;
|
|
1272
|
+
appearance?: string | undefined;
|
|
1260
1273
|
core?: {
|
|
1261
1274
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1262
1275
|
} | undefined;
|
|
1263
|
-
rules?: string[] | undefined;
|
|
1264
|
-
appearance?: string | undefined;
|
|
1265
|
-
avatar?: string | undefined;
|
|
1266
|
-
referenceAvatar?: string | undefined;
|
|
1267
1276
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1268
1277
|
languages?: string[] | undefined;
|
|
1269
1278
|
timeZone?: string | undefined;
|
|
@@ -1271,7 +1280,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1271
1280
|
actions?: "todo"[] | undefined;
|
|
1272
1281
|
character?: {
|
|
1273
1282
|
background?: {
|
|
1274
|
-
role?: string | undefined;
|
|
1275
1283
|
gender?: string | undefined;
|
|
1276
1284
|
age?: string | undefined;
|
|
1277
1285
|
expertise?: string | undefined;
|
|
@@ -1288,17 +1296,19 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1288
1296
|
interests?: string | undefined;
|
|
1289
1297
|
quirks?: string | undefined;
|
|
1290
1298
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1299
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1291
1300
|
} | undefined;
|
|
1292
1301
|
} | undefined;
|
|
1302
|
+
rules?: string[] | undefined;
|
|
1293
1303
|
}, {
|
|
1294
1304
|
name?: string | undefined;
|
|
1305
|
+
role?: string | undefined;
|
|
1306
|
+
avatar?: string | undefined;
|
|
1307
|
+
referenceAvatar?: string | undefined;
|
|
1308
|
+
appearance?: string | undefined;
|
|
1295
1309
|
core?: {
|
|
1296
1310
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1297
1311
|
} | undefined;
|
|
1298
|
-
rules?: string[] | undefined;
|
|
1299
|
-
appearance?: string | undefined;
|
|
1300
|
-
avatar?: string | undefined;
|
|
1301
|
-
referenceAvatar?: string | undefined;
|
|
1302
1312
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1303
1313
|
languages?: string[] | undefined;
|
|
1304
1314
|
timeZone?: string | undefined;
|
|
@@ -1306,7 +1316,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1306
1316
|
actions?: "todo"[] | undefined;
|
|
1307
1317
|
character?: {
|
|
1308
1318
|
background?: {
|
|
1309
|
-
role?: string | undefined;
|
|
1310
1319
|
gender?: string | undefined;
|
|
1311
1320
|
age?: string | undefined;
|
|
1312
1321
|
expertise?: string | undefined;
|
|
@@ -1323,8 +1332,10 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1323
1332
|
interests?: string | undefined;
|
|
1324
1333
|
quirks?: string | undefined;
|
|
1325
1334
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1335
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1326
1336
|
} | undefined;
|
|
1327
1337
|
} | undefined;
|
|
1338
|
+
rules?: string[] | undefined;
|
|
1328
1339
|
}>>, "many">>;
|
|
1329
1340
|
}, "strip", z.ZodTypeAny, {
|
|
1330
1341
|
name?: string | undefined;
|
|
@@ -1342,16 +1353,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1342
1353
|
isSensitive?: boolean | undefined;
|
|
1343
1354
|
locationConfig?: {
|
|
1344
1355
|
name?: string | undefined;
|
|
1345
|
-
|
|
1346
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1356
|
+
description?: string | undefined;
|
|
1347
1357
|
core?: {
|
|
1348
1358
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1349
1359
|
sequential?: boolean | undefined;
|
|
1350
1360
|
interval?: number | undefined;
|
|
1351
1361
|
maxAgentExecutions?: number | null | undefined;
|
|
1352
1362
|
} | undefined;
|
|
1353
|
-
description?: string | undefined;
|
|
1354
1363
|
rules?: string[] | undefined;
|
|
1364
|
+
thumbnail?: string | null | undefined;
|
|
1365
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1355
1366
|
canvases?: {
|
|
1356
1367
|
name: string;
|
|
1357
1368
|
description: string;
|
|
@@ -1364,8 +1375,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1364
1375
|
}[] | undefined;
|
|
1365
1376
|
gimmicks?: {
|
|
1366
1377
|
name: string;
|
|
1367
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1368
1378
|
appearance: string;
|
|
1379
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1369
1380
|
images?: {
|
|
1370
1381
|
description: string;
|
|
1371
1382
|
name?: string | undefined;
|
|
@@ -1375,13 +1386,13 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1375
1386
|
} | undefined;
|
|
1376
1387
|
agentConfigs?: ({
|
|
1377
1388
|
name?: string | undefined;
|
|
1389
|
+
role?: string | undefined;
|
|
1390
|
+
avatar?: string | undefined;
|
|
1391
|
+
referenceAvatar?: string | undefined;
|
|
1392
|
+
appearance?: string | undefined;
|
|
1378
1393
|
core?: {
|
|
1379
1394
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1380
1395
|
} | undefined;
|
|
1381
|
-
rules?: string[] | undefined;
|
|
1382
|
-
appearance?: string | undefined;
|
|
1383
|
-
avatar?: string | undefined;
|
|
1384
|
-
referenceAvatar?: string | undefined;
|
|
1385
1396
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1386
1397
|
languages?: string[] | undefined;
|
|
1387
1398
|
timeZone?: string | undefined;
|
|
@@ -1389,7 +1400,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1389
1400
|
actions?: "todo"[] | undefined;
|
|
1390
1401
|
character?: {
|
|
1391
1402
|
background?: {
|
|
1392
|
-
role?: string | undefined;
|
|
1393
1403
|
gender?: string | undefined;
|
|
1394
1404
|
age?: string | undefined;
|
|
1395
1405
|
expertise?: string | undefined;
|
|
@@ -1406,20 +1416,23 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1406
1416
|
interests?: string | undefined;
|
|
1407
1417
|
quirks?: string | undefined;
|
|
1408
1418
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1419
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1409
1420
|
} | undefined;
|
|
1410
1421
|
} | undefined;
|
|
1422
|
+
rules?: string[] | undefined;
|
|
1411
1423
|
} | null)[] | undefined;
|
|
1412
1424
|
messages?: {
|
|
1413
|
-
entityType: "
|
|
1425
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
1414
1426
|
entityId: bigint;
|
|
1415
1427
|
message?: string | undefined;
|
|
1416
1428
|
image?: string | undefined;
|
|
1417
1429
|
}[] | undefined;
|
|
1418
1430
|
userAvatar?: {
|
|
1419
1431
|
name: string;
|
|
1432
|
+
avatar: string;
|
|
1433
|
+
referenceAvatar: string;
|
|
1420
1434
|
appearance: string;
|
|
1421
|
-
|
|
1422
|
-
referenceAvatar: string | null;
|
|
1435
|
+
role?: string | undefined;
|
|
1423
1436
|
} | null | undefined;
|
|
1424
1437
|
}, {
|
|
1425
1438
|
name?: string | undefined;
|
|
@@ -1437,16 +1450,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1437
1450
|
isSensitive?: boolean | undefined;
|
|
1438
1451
|
locationConfig?: {
|
|
1439
1452
|
name?: string | undefined;
|
|
1440
|
-
|
|
1441
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1453
|
+
description?: string | undefined;
|
|
1442
1454
|
core?: {
|
|
1443
1455
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1444
1456
|
sequential?: boolean | undefined;
|
|
1445
1457
|
interval?: number | undefined;
|
|
1446
1458
|
maxAgentExecutions?: number | null | undefined;
|
|
1447
1459
|
} | undefined;
|
|
1448
|
-
description?: string | undefined;
|
|
1449
1460
|
rules?: string[] | undefined;
|
|
1461
|
+
thumbnail?: string | null | undefined;
|
|
1462
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1450
1463
|
canvases?: {
|
|
1451
1464
|
name: string;
|
|
1452
1465
|
description: string;
|
|
@@ -1459,8 +1472,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1459
1472
|
}[] | undefined;
|
|
1460
1473
|
gimmicks?: {
|
|
1461
1474
|
name: string;
|
|
1462
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1463
1475
|
appearance: string;
|
|
1476
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1464
1477
|
images?: {
|
|
1465
1478
|
description: string;
|
|
1466
1479
|
name?: string | undefined;
|
|
@@ -1470,13 +1483,13 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1470
1483
|
} | undefined;
|
|
1471
1484
|
agentConfigs?: ({
|
|
1472
1485
|
name?: string | undefined;
|
|
1486
|
+
role?: string | undefined;
|
|
1487
|
+
avatar?: string | undefined;
|
|
1488
|
+
referenceAvatar?: string | undefined;
|
|
1489
|
+
appearance?: string | undefined;
|
|
1473
1490
|
core?: {
|
|
1474
1491
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1475
1492
|
} | undefined;
|
|
1476
|
-
rules?: string[] | undefined;
|
|
1477
|
-
appearance?: string | undefined;
|
|
1478
|
-
avatar?: string | undefined;
|
|
1479
|
-
referenceAvatar?: string | undefined;
|
|
1480
1493
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1481
1494
|
languages?: string[] | undefined;
|
|
1482
1495
|
timeZone?: string | undefined;
|
|
@@ -1484,7 +1497,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1484
1497
|
actions?: "todo"[] | undefined;
|
|
1485
1498
|
character?: {
|
|
1486
1499
|
background?: {
|
|
1487
|
-
role?: string | undefined;
|
|
1488
1500
|
gender?: string | undefined;
|
|
1489
1501
|
age?: string | undefined;
|
|
1490
1502
|
expertise?: string | undefined;
|
|
@@ -1501,20 +1513,23 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1501
1513
|
interests?: string | undefined;
|
|
1502
1514
|
quirks?: string | undefined;
|
|
1503
1515
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1516
|
+
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1504
1517
|
} | undefined;
|
|
1505
1518
|
} | undefined;
|
|
1519
|
+
rules?: string[] | undefined;
|
|
1506
1520
|
} | null)[] | undefined;
|
|
1507
1521
|
messages?: {
|
|
1508
|
-
entityType: "
|
|
1522
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
1509
1523
|
entityId: bigint;
|
|
1510
1524
|
message?: string | undefined;
|
|
1511
1525
|
image?: string | undefined;
|
|
1512
1526
|
}[] | undefined;
|
|
1513
1527
|
userAvatar?: {
|
|
1514
1528
|
name: string;
|
|
1529
|
+
avatar: string;
|
|
1530
|
+
referenceAvatar: string;
|
|
1515
1531
|
appearance: string;
|
|
1516
|
-
|
|
1517
|
-
referenceAvatar: string | null;
|
|
1532
|
+
role?: string | undefined;
|
|
1518
1533
|
} | null | undefined;
|
|
1519
1534
|
}>;
|
|
1520
1535
|
export type UpdateLocationPresetBodyDto = z.infer<typeof UpdateLocationPresetBodySchema>;
|
|
@@ -1576,6 +1591,36 @@ export interface DeleteLocationPresetResponseDto {
|
|
|
1576
1591
|
success: boolean;
|
|
1577
1592
|
error?: string;
|
|
1578
1593
|
}
|
|
1594
|
+
export declare const DuplicateLocationPresetParamsSchema: z.ZodObject<{
|
|
1595
|
+
presetId: z.ZodBigInt;
|
|
1596
|
+
}, "strip", z.ZodTypeAny, {
|
|
1597
|
+
presetId: bigint;
|
|
1598
|
+
}, {
|
|
1599
|
+
presetId: bigint;
|
|
1600
|
+
}>;
|
|
1601
|
+
export type DuplicateLocationPresetParamsDto = z.infer<typeof DuplicateLocationPresetParamsSchema>;
|
|
1602
|
+
export interface DuplicateLocationPresetResponseDto {
|
|
1603
|
+
preset: LocationPresetDto;
|
|
1604
|
+
}
|
|
1605
|
+
export declare const TranslateLocationPresetParamsSchema: z.ZodObject<{
|
|
1606
|
+
presetId: z.ZodBigInt;
|
|
1607
|
+
}, "strip", z.ZodTypeAny, {
|
|
1608
|
+
presetId: bigint;
|
|
1609
|
+
}, {
|
|
1610
|
+
presetId: bigint;
|
|
1611
|
+
}>;
|
|
1612
|
+
export type TranslateLocationPresetParamsDto = z.infer<typeof TranslateLocationPresetParamsSchema>;
|
|
1613
|
+
export declare const TranslateLocationPresetBodySchema: z.ZodObject<{
|
|
1614
|
+
targetLanguage: z.ZodEnum<["ko", "en", "ja"]>;
|
|
1615
|
+
}, "strip", z.ZodTypeAny, {
|
|
1616
|
+
targetLanguage: "ko" | "en" | "ja";
|
|
1617
|
+
}, {
|
|
1618
|
+
targetLanguage: "ko" | "en" | "ja";
|
|
1619
|
+
}>;
|
|
1620
|
+
export type TranslateLocationPresetBodyDto = z.infer<typeof TranslateLocationPresetBodySchema>;
|
|
1621
|
+
export interface TranslateLocationPresetResponseDto {
|
|
1622
|
+
preset: LocationPresetDto;
|
|
1623
|
+
}
|
|
1579
1624
|
export declare const GetLocationPresetLocationsParamsSchema: z.ZodObject<{
|
|
1580
1625
|
presetId: z.ZodBigInt;
|
|
1581
1626
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -1817,8 +1862,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1817
1862
|
}>, "many">>;
|
|
1818
1863
|
}, "strip", z.ZodTypeAny, {
|
|
1819
1864
|
name: string;
|
|
1820
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1821
1865
|
appearance: string;
|
|
1866
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1822
1867
|
images?: {
|
|
1823
1868
|
description: string;
|
|
1824
1869
|
name?: string | undefined;
|
|
@@ -1826,8 +1871,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1826
1871
|
}[] | undefined;
|
|
1827
1872
|
}, {
|
|
1828
1873
|
name: string;
|
|
1829
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1830
1874
|
appearance: string;
|
|
1875
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1831
1876
|
images?: {
|
|
1832
1877
|
description: string;
|
|
1833
1878
|
name?: string | undefined;
|
|
@@ -1836,16 +1881,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1836
1881
|
}>, "many">>;
|
|
1837
1882
|
}, "strict", z.ZodTypeAny, {
|
|
1838
1883
|
name?: string | undefined;
|
|
1839
|
-
|
|
1840
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1884
|
+
description?: string | undefined;
|
|
1841
1885
|
core?: {
|
|
1842
1886
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1843
1887
|
sequential?: boolean | undefined;
|
|
1844
1888
|
interval?: number | undefined;
|
|
1845
1889
|
maxAgentExecutions?: number | null | undefined;
|
|
1846
1890
|
} | undefined;
|
|
1847
|
-
description?: string | undefined;
|
|
1848
1891
|
rules?: string[] | undefined;
|
|
1892
|
+
thumbnail?: string | null | undefined;
|
|
1893
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1849
1894
|
canvases?: {
|
|
1850
1895
|
name: string;
|
|
1851
1896
|
description: string;
|
|
@@ -1858,8 +1903,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1858
1903
|
}[] | undefined;
|
|
1859
1904
|
gimmicks?: {
|
|
1860
1905
|
name: string;
|
|
1861
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1862
1906
|
appearance: string;
|
|
1907
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1863
1908
|
images?: {
|
|
1864
1909
|
description: string;
|
|
1865
1910
|
name?: string | undefined;
|
|
@@ -1868,16 +1913,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1868
1913
|
}[] | undefined;
|
|
1869
1914
|
}, {
|
|
1870
1915
|
name?: string | undefined;
|
|
1871
|
-
|
|
1872
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1916
|
+
description?: string | undefined;
|
|
1873
1917
|
core?: {
|
|
1874
1918
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1875
1919
|
sequential?: boolean | undefined;
|
|
1876
1920
|
interval?: number | undefined;
|
|
1877
1921
|
maxAgentExecutions?: number | null | undefined;
|
|
1878
1922
|
} | undefined;
|
|
1879
|
-
description?: string | undefined;
|
|
1880
1923
|
rules?: string[] | undefined;
|
|
1924
|
+
thumbnail?: string | null | undefined;
|
|
1925
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1881
1926
|
canvases?: {
|
|
1882
1927
|
name: string;
|
|
1883
1928
|
description: string;
|
|
@@ -1890,8 +1935,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1890
1935
|
}[] | undefined;
|
|
1891
1936
|
gimmicks?: {
|
|
1892
1937
|
name: string;
|
|
1893
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1894
1938
|
appearance: string;
|
|
1939
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1895
1940
|
images?: {
|
|
1896
1941
|
description: string;
|
|
1897
1942
|
name?: string | undefined;
|
|
@@ -1906,16 +1951,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1906
1951
|
}, "strip", z.ZodTypeAny, {
|
|
1907
1952
|
config: {
|
|
1908
1953
|
name?: string | undefined;
|
|
1909
|
-
|
|
1910
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1954
|
+
description?: string | undefined;
|
|
1911
1955
|
core?: {
|
|
1912
1956
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1913
1957
|
sequential?: boolean | undefined;
|
|
1914
1958
|
interval?: number | undefined;
|
|
1915
1959
|
maxAgentExecutions?: number | null | undefined;
|
|
1916
1960
|
} | undefined;
|
|
1917
|
-
description?: string | undefined;
|
|
1918
1961
|
rules?: string[] | undefined;
|
|
1962
|
+
thumbnail?: string | null | undefined;
|
|
1963
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1919
1964
|
canvases?: {
|
|
1920
1965
|
name: string;
|
|
1921
1966
|
description: string;
|
|
@@ -1928,8 +1973,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1928
1973
|
}[] | undefined;
|
|
1929
1974
|
gimmicks?: {
|
|
1930
1975
|
name: string;
|
|
1931
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1932
1976
|
appearance: string;
|
|
1977
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1933
1978
|
images?: {
|
|
1934
1979
|
description: string;
|
|
1935
1980
|
name?: string | undefined;
|
|
@@ -1941,16 +1986,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1941
1986
|
}, {
|
|
1942
1987
|
config: {
|
|
1943
1988
|
name?: string | undefined;
|
|
1944
|
-
|
|
1945
|
-
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1989
|
+
description?: string | undefined;
|
|
1946
1990
|
core?: {
|
|
1947
1991
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1948
1992
|
sequential?: boolean | undefined;
|
|
1949
1993
|
interval?: number | undefined;
|
|
1950
1994
|
maxAgentExecutions?: number | null | undefined;
|
|
1951
1995
|
} | undefined;
|
|
1952
|
-
description?: string | undefined;
|
|
1953
1996
|
rules?: string[] | undefined;
|
|
1997
|
+
thumbnail?: string | null | undefined;
|
|
1998
|
+
environment?: "CHAT" | "NOVEL" | undefined;
|
|
1954
1999
|
canvases?: {
|
|
1955
2000
|
name: string;
|
|
1956
2001
|
description: string;
|
|
@@ -1963,8 +2008,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1963
2008
|
}[] | undefined;
|
|
1964
2009
|
gimmicks?: {
|
|
1965
2010
|
name: string;
|
|
1966
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1967
2011
|
appearance: string;
|
|
2012
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1968
2013
|
images?: {
|
|
1969
2014
|
description: string;
|
|
1970
2015
|
name?: string | undefined;
|
|
@@ -2613,12 +2658,12 @@ export declare const UpdateLocationImageSchema: z.ZodObject<{
|
|
|
2613
2658
|
image: z.ZodString;
|
|
2614
2659
|
index: z.ZodOptional<z.ZodNumber>;
|
|
2615
2660
|
}, "strip", z.ZodTypeAny, {
|
|
2616
|
-
locationId: bigint;
|
|
2617
2661
|
image: string;
|
|
2662
|
+
locationId: bigint;
|
|
2618
2663
|
index?: number | undefined;
|
|
2619
2664
|
}, {
|
|
2620
|
-
locationId: bigint;
|
|
2621
2665
|
image: string;
|
|
2666
|
+
locationId: bigint;
|
|
2622
2667
|
index?: number | undefined;
|
|
2623
2668
|
}>;
|
|
2624
2669
|
export type UpdateLocationImageDto = z.infer<typeof UpdateLocationImageSchema>;
|