@little-samo/samo-ai-sdk 0.7.6 → 0.7.8
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 +46 -46
- package/dist/dto/entities/users/user.d.ts +14 -5
- package/dist/dto/entities/users/user.js +5 -1
- package/dist/dto/entities/users/user.js.map +1 -1
- package/dist/dto/entities/users/user.requests.d.ts +80 -21
- package/dist/dto/entities/users/user.requests.js +22 -4
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/images/image.d.ts +1 -1
- package/dist/dto/images/image.js +1 -0
- package/dist/dto/images/image.js.map +1 -1
- package/dist/dto/images/image.requests.d.ts +9 -9
- package/dist/dto/images/image.requests.js +1 -1
- package/dist/dto/images/image.requests.js.map +1 -1
- package/dist/dto/locations/location.preset.d.ts +2 -2
- package/dist/dto/locations/location.requests.d.ts +178 -163
- package/package.json +1 -1
|
@@ -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<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
|
|
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
|
-
appearance: string;
|
|
139
138
|
name: string;
|
|
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;
|
|
144
144
|
url?: string | undefined;
|
|
145
145
|
}[] | undefined;
|
|
146
146
|
}, {
|
|
147
|
-
appearance: string;
|
|
148
147
|
name: string;
|
|
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
|
-
|
|
158
|
+
thumbnail?: string | null | undefined;
|
|
159
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
159
160
|
core?: {
|
|
160
161
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
161
162
|
sequential?: boolean | undefined;
|
|
162
163
|
interval?: number | undefined;
|
|
163
164
|
maxAgentExecutions?: number | null | undefined;
|
|
164
165
|
} | undefined;
|
|
166
|
+
description?: string | undefined;
|
|
165
167
|
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
|
-
appearance: string;
|
|
180
179
|
name: string;
|
|
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
|
-
|
|
190
|
+
thumbnail?: string | null | undefined;
|
|
191
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
191
192
|
core?: {
|
|
192
193
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
193
194
|
sequential?: boolean | undefined;
|
|
194
195
|
interval?: number | undefined;
|
|
195
196
|
maxAgentExecutions?: number | null | undefined;
|
|
196
197
|
} | undefined;
|
|
198
|
+
description?: string | undefined;
|
|
197
199
|
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
|
-
appearance: string;
|
|
212
211
|
name: string;
|
|
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
|
-
|
|
225
|
+
thumbnail?: string | null | undefined;
|
|
226
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
226
227
|
core?: {
|
|
227
228
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
228
229
|
sequential?: boolean | undefined;
|
|
229
230
|
interval?: number | undefined;
|
|
230
231
|
maxAgentExecutions?: number | null | undefined;
|
|
231
232
|
} | undefined;
|
|
233
|
+
description?: string | undefined;
|
|
232
234
|
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
|
-
appearance: string;
|
|
247
246
|
name: string;
|
|
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
|
-
|
|
260
|
+
thumbnail?: string | null | undefined;
|
|
261
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
261
262
|
core?: {
|
|
262
263
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
263
264
|
sequential?: boolean | undefined;
|
|
264
265
|
interval?: number | undefined;
|
|
265
266
|
maxAgentExecutions?: number | null | undefined;
|
|
266
267
|
} | undefined;
|
|
268
|
+
description?: string | undefined;
|
|
267
269
|
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
|
-
appearance: string;
|
|
282
281
|
name: string;
|
|
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;
|
|
@@ -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<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
|
|
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
|
-
appearance: string;
|
|
557
556
|
name: string;
|
|
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;
|
|
562
562
|
url?: string | undefined;
|
|
563
563
|
}[] | undefined;
|
|
564
564
|
}, {
|
|
565
|
-
appearance: string;
|
|
566
565
|
name: string;
|
|
567
|
-
|
|
566
|
+
appearance: string;
|
|
567
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
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
|
-
|
|
576
|
+
thumbnail?: string | null | undefined;
|
|
577
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
577
578
|
core?: {
|
|
578
579
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
579
580
|
sequential?: boolean | undefined;
|
|
580
581
|
interval?: number | undefined;
|
|
581
582
|
maxAgentExecutions?: number | null | undefined;
|
|
582
583
|
} | undefined;
|
|
584
|
+
description?: string | undefined;
|
|
583
585
|
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
|
-
appearance: string;
|
|
598
597
|
name: string;
|
|
599
|
-
|
|
598
|
+
appearance: string;
|
|
599
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
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
|
-
|
|
608
|
+
thumbnail?: string | null | undefined;
|
|
609
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
609
610
|
core?: {
|
|
610
611
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
611
612
|
sequential?: boolean | undefined;
|
|
612
613
|
interval?: number | undefined;
|
|
613
614
|
maxAgentExecutions?: number | null | undefined;
|
|
614
615
|
} | undefined;
|
|
616
|
+
description?: string | undefined;
|
|
615
617
|
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
|
-
appearance: string;
|
|
630
629
|
name: string;
|
|
631
|
-
|
|
630
|
+
appearance: string;
|
|
631
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
632
632
|
images?: {
|
|
633
633
|
description: string;
|
|
634
634
|
name?: string | undefined;
|
|
@@ -676,12 +676,12 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
676
676
|
style: z.ZodOptional<z.ZodString>;
|
|
677
677
|
formality: z.ZodOptional<z.ZodString>;
|
|
678
678
|
}, "strip", z.ZodTypeAny, {
|
|
679
|
-
tone?: string | undefined;
|
|
680
679
|
style?: string | undefined;
|
|
680
|
+
tone?: string | undefined;
|
|
681
681
|
formality?: string | undefined;
|
|
682
682
|
}, {
|
|
683
|
-
tone?: string | undefined;
|
|
684
683
|
style?: string | undefined;
|
|
684
|
+
tone?: string | undefined;
|
|
685
685
|
formality?: string | undefined;
|
|
686
686
|
}>>;
|
|
687
687
|
personality: z.ZodOptional<z.ZodObject<{
|
|
@@ -714,8 +714,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
714
714
|
backstory?: string | undefined;
|
|
715
715
|
} | undefined;
|
|
716
716
|
speech?: {
|
|
717
|
-
tone?: string | undefined;
|
|
718
717
|
style?: string | undefined;
|
|
718
|
+
tone?: string | undefined;
|
|
719
719
|
formality?: string | undefined;
|
|
720
720
|
} | undefined;
|
|
721
721
|
personality?: {
|
|
@@ -734,8 +734,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
734
734
|
backstory?: string | undefined;
|
|
735
735
|
} | undefined;
|
|
736
736
|
speech?: {
|
|
737
|
-
tone?: string | undefined;
|
|
738
737
|
style?: string | undefined;
|
|
738
|
+
tone?: string | undefined;
|
|
739
739
|
formality?: string | undefined;
|
|
740
740
|
} | undefined;
|
|
741
741
|
personality?: {
|
|
@@ -749,14 +749,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
749
749
|
}>>;
|
|
750
750
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
|
752
|
-
role?: string | undefined;
|
|
753
752
|
avatar?: string | undefined;
|
|
753
|
+
name?: string | undefined;
|
|
754
|
+
role?: string | undefined;
|
|
754
755
|
referenceAvatar?: string | undefined;
|
|
755
756
|
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;
|
|
760
761
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
761
762
|
languages?: string[] | undefined;
|
|
762
763
|
timeZone?: string | undefined;
|
|
@@ -770,8 +771,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
770
771
|
backstory?: string | undefined;
|
|
771
772
|
} | undefined;
|
|
772
773
|
speech?: {
|
|
773
|
-
tone?: string | undefined;
|
|
774
774
|
style?: string | undefined;
|
|
775
|
+
tone?: string | undefined;
|
|
775
776
|
formality?: string | undefined;
|
|
776
777
|
} | undefined;
|
|
777
778
|
personality?: {
|
|
@@ -783,16 +784,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
783
784
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
784
785
|
} | undefined;
|
|
785
786
|
} | undefined;
|
|
786
|
-
rules?: string[] | undefined;
|
|
787
787
|
}, {
|
|
788
|
-
role?: string | undefined;
|
|
789
788
|
avatar?: string | undefined;
|
|
789
|
+
name?: string | undefined;
|
|
790
|
+
role?: string | undefined;
|
|
790
791
|
referenceAvatar?: string | undefined;
|
|
791
792
|
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;
|
|
796
797
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
797
798
|
languages?: string[] | undefined;
|
|
798
799
|
timeZone?: string | undefined;
|
|
@@ -806,8 +807,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
806
807
|
backstory?: string | undefined;
|
|
807
808
|
} | undefined;
|
|
808
809
|
speech?: {
|
|
809
|
-
tone?: string | undefined;
|
|
810
810
|
style?: string | undefined;
|
|
811
|
+
tone?: string | undefined;
|
|
811
812
|
formality?: string | undefined;
|
|
812
813
|
} | undefined;
|
|
813
814
|
personality?: {
|
|
@@ -819,7 +820,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
819
820
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
820
821
|
} | undefined;
|
|
821
822
|
} | 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
|
-
|
|
835
|
+
thumbnail?: string | null | undefined;
|
|
836
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
836
837
|
core?: {
|
|
837
838
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
838
839
|
sequential?: boolean | undefined;
|
|
839
840
|
interval?: number | undefined;
|
|
840
841
|
maxAgentExecutions?: number | null | undefined;
|
|
841
842
|
} | undefined;
|
|
843
|
+
description?: string | undefined;
|
|
842
844
|
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
|
-
appearance: string;
|
|
857
856
|
name: string;
|
|
858
|
-
|
|
857
|
+
appearance: string;
|
|
858
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
859
859
|
images?: {
|
|
860
860
|
description: string;
|
|
861
861
|
name?: string | undefined;
|
|
@@ -864,14 +864,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
864
864
|
}[] | undefined;
|
|
865
865
|
} | undefined;
|
|
866
866
|
agentConfigs?: {
|
|
867
|
-
role?: string | undefined;
|
|
868
867
|
avatar?: string | undefined;
|
|
868
|
+
name?: string | undefined;
|
|
869
|
+
role?: string | undefined;
|
|
869
870
|
referenceAvatar?: string | undefined;
|
|
870
871
|
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;
|
|
875
876
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
876
877
|
languages?: string[] | undefined;
|
|
877
878
|
timeZone?: string | undefined;
|
|
@@ -885,8 +886,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
885
886
|
backstory?: string | undefined;
|
|
886
887
|
} | undefined;
|
|
887
888
|
speech?: {
|
|
888
|
-
tone?: string | undefined;
|
|
889
889
|
style?: string | undefined;
|
|
890
|
+
tone?: string | undefined;
|
|
890
891
|
formality?: string | undefined;
|
|
891
892
|
} | undefined;
|
|
892
893
|
personality?: {
|
|
@@ -898,7 +899,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
898
899
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
899
900
|
} | undefined;
|
|
900
901
|
} | 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
|
-
|
|
914
|
+
thumbnail?: string | null | undefined;
|
|
915
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
915
916
|
core?: {
|
|
916
917
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
917
918
|
sequential?: boolean | undefined;
|
|
918
919
|
interval?: number | undefined;
|
|
919
920
|
maxAgentExecutions?: number | null | undefined;
|
|
920
921
|
} | undefined;
|
|
922
|
+
description?: string | undefined;
|
|
921
923
|
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
|
-
appearance: string;
|
|
936
935
|
name: string;
|
|
937
|
-
|
|
936
|
+
appearance: string;
|
|
937
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
938
938
|
images?: {
|
|
939
939
|
description: string;
|
|
940
940
|
name?: string | undefined;
|
|
@@ -943,14 +943,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
943
943
|
}[] | undefined;
|
|
944
944
|
} | undefined;
|
|
945
945
|
agentConfigs?: {
|
|
946
|
-
role?: string | undefined;
|
|
947
946
|
avatar?: string | undefined;
|
|
947
|
+
name?: string | undefined;
|
|
948
|
+
role?: string | undefined;
|
|
948
949
|
referenceAvatar?: string | undefined;
|
|
949
950
|
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;
|
|
954
955
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
955
956
|
languages?: string[] | undefined;
|
|
956
957
|
timeZone?: string | undefined;
|
|
@@ -964,8 +965,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
964
965
|
backstory?: string | undefined;
|
|
965
966
|
} | undefined;
|
|
966
967
|
speech?: {
|
|
967
|
-
tone?: string | undefined;
|
|
968
968
|
style?: string | undefined;
|
|
969
|
+
tone?: string | undefined;
|
|
969
970
|
formality?: string | undefined;
|
|
970
971
|
} | undefined;
|
|
971
972
|
personality?: {
|
|
@@ -977,7 +978,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
977
978
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
978
979
|
} | undefined;
|
|
979
980
|
} | undefined;
|
|
980
|
-
rules?: string[] | undefined;
|
|
981
981
|
}[] | undefined;
|
|
982
982
|
}>;
|
|
983
983
|
export type CreateLocationPresetDto = z.infer<typeof CreateLocationPresetSchema>;
|
|
@@ -1066,37 +1066,46 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
1067
|
entityType: "system" | "agent" | "user" | "gimmick";
|
|
1068
1068
|
entityId: bigint;
|
|
1069
|
-
message?: string | undefined;
|
|
1070
1069
|
image?: string | undefined;
|
|
1070
|
+
message?: string | undefined;
|
|
1071
1071
|
}, {
|
|
1072
1072
|
entityType: "system" | "agent" | "user" | "gimmick";
|
|
1073
1073
|
entityId: bigint;
|
|
1074
|
-
message?: string | undefined;
|
|
1075
1074
|
image?: string | undefined;
|
|
1075
|
+
message?: string | undefined;
|
|
1076
1076
|
}>, "many">>;
|
|
1077
1077
|
userAvatar: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1078
1078
|
id: z.ZodOptional<z.ZodBigInt>;
|
|
1079
1079
|
name: z.ZodString;
|
|
1080
1080
|
role: z.ZodOptional<z.ZodString>;
|
|
1081
1081
|
avatar: z.ZodString;
|
|
1082
|
-
referenceAvatar: z.ZodString
|
|
1082
|
+
referenceAvatar: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
examplePoses: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1083
1084
|
appearance: z.ZodString;
|
|
1085
|
+
style: z.ZodOptional<z.ZodEnum<["realistic", "webtoon", "webtoon2", "illustration", "anime", "korean"]>>;
|
|
1086
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1084
1087
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1085
1088
|
}, "strip", z.ZodTypeAny, {
|
|
1086
1089
|
avatar: string;
|
|
1087
|
-
referenceAvatar: string;
|
|
1088
|
-
appearance: string;
|
|
1089
1090
|
name: string;
|
|
1090
|
-
|
|
1091
|
+
appearance: string;
|
|
1092
|
+
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1091
1093
|
id?: bigint | undefined;
|
|
1094
|
+
role?: string | undefined;
|
|
1095
|
+
referenceAvatar?: string | undefined;
|
|
1096
|
+
examplePoses?: string[] | undefined;
|
|
1097
|
+
isPublic?: boolean | undefined;
|
|
1092
1098
|
createdAt?: Date | undefined;
|
|
1093
1099
|
}, {
|
|
1094
1100
|
avatar: string;
|
|
1095
|
-
referenceAvatar: string;
|
|
1096
|
-
appearance: string;
|
|
1097
1101
|
name: string;
|
|
1098
|
-
|
|
1102
|
+
appearance: string;
|
|
1103
|
+
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1099
1104
|
id?: bigint | undefined;
|
|
1105
|
+
role?: string | undefined;
|
|
1106
|
+
referenceAvatar?: string | undefined;
|
|
1107
|
+
examplePoses?: string[] | undefined;
|
|
1108
|
+
isPublic?: boolean | undefined;
|
|
1100
1109
|
createdAt?: Date | undefined;
|
|
1101
1110
|
}>>>;
|
|
1102
1111
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1152,7 +1161,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1152
1161
|
maxLength: number;
|
|
1153
1162
|
}>, "many">>;
|
|
1154
1163
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1155
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
1164
|
+
core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
|
|
1156
1165
|
name: z.ZodString;
|
|
1157
1166
|
appearance: z.ZodString;
|
|
1158
1167
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1169,18 +1178,18 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1169
1178
|
url?: string | undefined;
|
|
1170
1179
|
}>, "many">>;
|
|
1171
1180
|
}, "strip", z.ZodTypeAny, {
|
|
1172
|
-
appearance: string;
|
|
1173
1181
|
name: string;
|
|
1174
|
-
|
|
1182
|
+
appearance: string;
|
|
1183
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1175
1184
|
images?: {
|
|
1176
1185
|
description: string;
|
|
1177
1186
|
name?: string | undefined;
|
|
1178
1187
|
url?: string | undefined;
|
|
1179
1188
|
}[] | undefined;
|
|
1180
1189
|
}, {
|
|
1181
|
-
appearance: string;
|
|
1182
1190
|
name: string;
|
|
1183
|
-
|
|
1191
|
+
appearance: string;
|
|
1192
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1184
1193
|
images?: {
|
|
1185
1194
|
description: string;
|
|
1186
1195
|
name?: string | undefined;
|
|
@@ -1189,16 +1198,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1189
1198
|
}>, "many">>;
|
|
1190
1199
|
}, "strip", z.ZodTypeAny, {
|
|
1191
1200
|
name?: string | undefined;
|
|
1192
|
-
|
|
1201
|
+
thumbnail?: string | null | undefined;
|
|
1202
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1193
1203
|
core?: {
|
|
1194
1204
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1195
1205
|
sequential?: boolean | undefined;
|
|
1196
1206
|
interval?: number | undefined;
|
|
1197
1207
|
maxAgentExecutions?: number | null | undefined;
|
|
1198
1208
|
} | undefined;
|
|
1209
|
+
description?: string | undefined;
|
|
1199
1210
|
rules?: string[] | undefined;
|
|
1200
|
-
thumbnail?: string | null | undefined;
|
|
1201
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1202
1211
|
canvases?: {
|
|
1203
1212
|
name: string;
|
|
1204
1213
|
description: string;
|
|
@@ -1210,9 +1219,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1210
1219
|
maxLength: number;
|
|
1211
1220
|
}[] | undefined;
|
|
1212
1221
|
gimmicks?: {
|
|
1213
|
-
appearance: string;
|
|
1214
1222
|
name: string;
|
|
1215
|
-
|
|
1223
|
+
appearance: string;
|
|
1224
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1216
1225
|
images?: {
|
|
1217
1226
|
description: string;
|
|
1218
1227
|
name?: string | undefined;
|
|
@@ -1221,16 +1230,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1221
1230
|
}[] | undefined;
|
|
1222
1231
|
}, {
|
|
1223
1232
|
name?: string | undefined;
|
|
1224
|
-
|
|
1233
|
+
thumbnail?: string | null | undefined;
|
|
1234
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1225
1235
|
core?: {
|
|
1226
1236
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1227
1237
|
sequential?: boolean | undefined;
|
|
1228
1238
|
interval?: number | undefined;
|
|
1229
1239
|
maxAgentExecutions?: number | null | undefined;
|
|
1230
1240
|
} | undefined;
|
|
1241
|
+
description?: string | undefined;
|
|
1231
1242
|
rules?: string[] | undefined;
|
|
1232
|
-
thumbnail?: string | null | undefined;
|
|
1233
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1234
1243
|
canvases?: {
|
|
1235
1244
|
name: string;
|
|
1236
1245
|
description: string;
|
|
@@ -1242,9 +1251,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1242
1251
|
maxLength: number;
|
|
1243
1252
|
}[] | undefined;
|
|
1244
1253
|
gimmicks?: {
|
|
1245
|
-
appearance: string;
|
|
1246
1254
|
name: string;
|
|
1247
|
-
|
|
1255
|
+
appearance: string;
|
|
1256
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1248
1257
|
images?: {
|
|
1249
1258
|
description: string;
|
|
1250
1259
|
name?: string | undefined;
|
|
@@ -1292,12 +1301,12 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1292
1301
|
style: z.ZodOptional<z.ZodString>;
|
|
1293
1302
|
formality: z.ZodOptional<z.ZodString>;
|
|
1294
1303
|
}, "strip", z.ZodTypeAny, {
|
|
1295
|
-
tone?: string | undefined;
|
|
1296
1304
|
style?: string | undefined;
|
|
1305
|
+
tone?: string | undefined;
|
|
1297
1306
|
formality?: string | undefined;
|
|
1298
1307
|
}, {
|
|
1299
|
-
tone?: string | undefined;
|
|
1300
1308
|
style?: string | undefined;
|
|
1309
|
+
tone?: string | undefined;
|
|
1301
1310
|
formality?: string | undefined;
|
|
1302
1311
|
}>>;
|
|
1303
1312
|
personality: z.ZodOptional<z.ZodObject<{
|
|
@@ -1330,8 +1339,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1330
1339
|
backstory?: string | undefined;
|
|
1331
1340
|
} | undefined;
|
|
1332
1341
|
speech?: {
|
|
1333
|
-
tone?: string | undefined;
|
|
1334
1342
|
style?: string | undefined;
|
|
1343
|
+
tone?: string | undefined;
|
|
1335
1344
|
formality?: string | undefined;
|
|
1336
1345
|
} | undefined;
|
|
1337
1346
|
personality?: {
|
|
@@ -1350,8 +1359,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1350
1359
|
backstory?: string | undefined;
|
|
1351
1360
|
} | undefined;
|
|
1352
1361
|
speech?: {
|
|
1353
|
-
tone?: string | undefined;
|
|
1354
1362
|
style?: string | undefined;
|
|
1363
|
+
tone?: string | undefined;
|
|
1355
1364
|
formality?: string | undefined;
|
|
1356
1365
|
} | undefined;
|
|
1357
1366
|
personality?: {
|
|
@@ -1365,14 +1374,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1365
1374
|
}>>;
|
|
1366
1375
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1367
1376
|
}, "strip", z.ZodTypeAny, {
|
|
1368
|
-
role?: string | undefined;
|
|
1369
1377
|
avatar?: string | undefined;
|
|
1378
|
+
name?: string | undefined;
|
|
1379
|
+
role?: string | undefined;
|
|
1370
1380
|
referenceAvatar?: string | undefined;
|
|
1371
1381
|
appearance?: string | undefined;
|
|
1372
|
-
name?: string | undefined;
|
|
1373
1382
|
core?: {
|
|
1374
1383
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1375
1384
|
} | undefined;
|
|
1385
|
+
rules?: string[] | undefined;
|
|
1376
1386
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1377
1387
|
languages?: string[] | undefined;
|
|
1378
1388
|
timeZone?: string | undefined;
|
|
@@ -1386,8 +1396,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1386
1396
|
backstory?: string | undefined;
|
|
1387
1397
|
} | undefined;
|
|
1388
1398
|
speech?: {
|
|
1389
|
-
tone?: string | undefined;
|
|
1390
1399
|
style?: string | undefined;
|
|
1400
|
+
tone?: string | undefined;
|
|
1391
1401
|
formality?: string | undefined;
|
|
1392
1402
|
} | undefined;
|
|
1393
1403
|
personality?: {
|
|
@@ -1399,16 +1409,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1399
1409
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1400
1410
|
} | undefined;
|
|
1401
1411
|
} | undefined;
|
|
1402
|
-
rules?: string[] | undefined;
|
|
1403
1412
|
}, {
|
|
1404
|
-
role?: string | undefined;
|
|
1405
1413
|
avatar?: string | undefined;
|
|
1414
|
+
name?: string | undefined;
|
|
1415
|
+
role?: string | undefined;
|
|
1406
1416
|
referenceAvatar?: string | undefined;
|
|
1407
1417
|
appearance?: string | undefined;
|
|
1408
|
-
name?: string | undefined;
|
|
1409
1418
|
core?: {
|
|
1410
1419
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1411
1420
|
} | undefined;
|
|
1421
|
+
rules?: string[] | undefined;
|
|
1412
1422
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1413
1423
|
languages?: string[] | undefined;
|
|
1414
1424
|
timeZone?: string | undefined;
|
|
@@ -1422,8 +1432,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1422
1432
|
backstory?: string | undefined;
|
|
1423
1433
|
} | undefined;
|
|
1424
1434
|
speech?: {
|
|
1425
|
-
tone?: string | undefined;
|
|
1426
1435
|
style?: string | undefined;
|
|
1436
|
+
tone?: string | undefined;
|
|
1427
1437
|
formality?: string | undefined;
|
|
1428
1438
|
} | undefined;
|
|
1429
1439
|
personality?: {
|
|
@@ -1435,7 +1445,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1435
1445
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1436
1446
|
} | undefined;
|
|
1437
1447
|
} | undefined;
|
|
1438
|
-
rules?: string[] | undefined;
|
|
1439
1448
|
}>>, "many">>;
|
|
1440
1449
|
}, "strip", z.ZodTypeAny, {
|
|
1441
1450
|
name?: string | undefined;
|
|
@@ -1452,16 +1461,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1452
1461
|
isSensitive?: boolean | undefined;
|
|
1453
1462
|
locationConfig?: {
|
|
1454
1463
|
name?: string | undefined;
|
|
1455
|
-
|
|
1464
|
+
thumbnail?: string | null | undefined;
|
|
1465
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1456
1466
|
core?: {
|
|
1457
1467
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1458
1468
|
sequential?: boolean | undefined;
|
|
1459
1469
|
interval?: number | undefined;
|
|
1460
1470
|
maxAgentExecutions?: number | null | undefined;
|
|
1461
1471
|
} | undefined;
|
|
1472
|
+
description?: string | undefined;
|
|
1462
1473
|
rules?: string[] | undefined;
|
|
1463
|
-
thumbnail?: string | null | undefined;
|
|
1464
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1465
1474
|
canvases?: {
|
|
1466
1475
|
name: string;
|
|
1467
1476
|
description: string;
|
|
@@ -1473,9 +1482,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1473
1482
|
maxLength: number;
|
|
1474
1483
|
}[] | undefined;
|
|
1475
1484
|
gimmicks?: {
|
|
1476
|
-
appearance: string;
|
|
1477
1485
|
name: string;
|
|
1478
|
-
|
|
1486
|
+
appearance: string;
|
|
1487
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1479
1488
|
images?: {
|
|
1480
1489
|
description: string;
|
|
1481
1490
|
name?: string | undefined;
|
|
@@ -1484,14 +1493,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1484
1493
|
}[] | undefined;
|
|
1485
1494
|
} | undefined;
|
|
1486
1495
|
agentConfigs?: ({
|
|
1487
|
-
role?: string | undefined;
|
|
1488
1496
|
avatar?: string | undefined;
|
|
1497
|
+
name?: string | undefined;
|
|
1498
|
+
role?: string | undefined;
|
|
1489
1499
|
referenceAvatar?: string | undefined;
|
|
1490
1500
|
appearance?: string | undefined;
|
|
1491
|
-
name?: string | undefined;
|
|
1492
1501
|
core?: {
|
|
1493
1502
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1494
1503
|
} | undefined;
|
|
1504
|
+
rules?: string[] | undefined;
|
|
1495
1505
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1496
1506
|
languages?: string[] | undefined;
|
|
1497
1507
|
timeZone?: string | undefined;
|
|
@@ -1505,8 +1515,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1505
1515
|
backstory?: string | undefined;
|
|
1506
1516
|
} | undefined;
|
|
1507
1517
|
speech?: {
|
|
1508
|
-
tone?: string | undefined;
|
|
1509
1518
|
style?: string | undefined;
|
|
1519
|
+
tone?: string | undefined;
|
|
1510
1520
|
formality?: string | undefined;
|
|
1511
1521
|
} | undefined;
|
|
1512
1522
|
personality?: {
|
|
@@ -1518,7 +1528,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1518
1528
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1519
1529
|
} | undefined;
|
|
1520
1530
|
} | undefined;
|
|
1521
|
-
rules?: string[] | undefined;
|
|
1522
1531
|
} | null)[] | undefined;
|
|
1523
1532
|
thumbnails?: string[] | undefined;
|
|
1524
1533
|
mission?: {
|
|
@@ -1530,16 +1539,19 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1530
1539
|
messages?: {
|
|
1531
1540
|
entityType: "system" | "agent" | "user" | "gimmick";
|
|
1532
1541
|
entityId: bigint;
|
|
1533
|
-
message?: string | undefined;
|
|
1534
1542
|
image?: string | undefined;
|
|
1543
|
+
message?: string | undefined;
|
|
1535
1544
|
}[] | undefined;
|
|
1536
1545
|
userAvatar?: {
|
|
1537
1546
|
avatar: string;
|
|
1538
|
-
referenceAvatar: string;
|
|
1539
|
-
appearance: string;
|
|
1540
1547
|
name: string;
|
|
1541
|
-
|
|
1548
|
+
appearance: string;
|
|
1549
|
+
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1542
1550
|
id?: bigint | undefined;
|
|
1551
|
+
role?: string | undefined;
|
|
1552
|
+
referenceAvatar?: string | undefined;
|
|
1553
|
+
examplePoses?: string[] | undefined;
|
|
1554
|
+
isPublic?: boolean | undefined;
|
|
1543
1555
|
createdAt?: Date | undefined;
|
|
1544
1556
|
} | null | undefined;
|
|
1545
1557
|
tags?: string[] | undefined;
|
|
@@ -1558,16 +1570,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1558
1570
|
isSensitive?: boolean | undefined;
|
|
1559
1571
|
locationConfig?: {
|
|
1560
1572
|
name?: string | undefined;
|
|
1561
|
-
|
|
1573
|
+
thumbnail?: string | null | undefined;
|
|
1574
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1562
1575
|
core?: {
|
|
1563
1576
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1564
1577
|
sequential?: boolean | undefined;
|
|
1565
1578
|
interval?: number | undefined;
|
|
1566
1579
|
maxAgentExecutions?: number | null | undefined;
|
|
1567
1580
|
} | undefined;
|
|
1581
|
+
description?: string | undefined;
|
|
1568
1582
|
rules?: string[] | undefined;
|
|
1569
|
-
thumbnail?: string | null | undefined;
|
|
1570
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1571
1583
|
canvases?: {
|
|
1572
1584
|
name: string;
|
|
1573
1585
|
description: string;
|
|
@@ -1579,9 +1591,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1579
1591
|
maxLength: number;
|
|
1580
1592
|
}[] | undefined;
|
|
1581
1593
|
gimmicks?: {
|
|
1582
|
-
appearance: string;
|
|
1583
1594
|
name: string;
|
|
1584
|
-
|
|
1595
|
+
appearance: string;
|
|
1596
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1585
1597
|
images?: {
|
|
1586
1598
|
description: string;
|
|
1587
1599
|
name?: string | undefined;
|
|
@@ -1590,14 +1602,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1590
1602
|
}[] | undefined;
|
|
1591
1603
|
} | undefined;
|
|
1592
1604
|
agentConfigs?: ({
|
|
1593
|
-
role?: string | undefined;
|
|
1594
1605
|
avatar?: string | undefined;
|
|
1606
|
+
name?: string | undefined;
|
|
1607
|
+
role?: string | undefined;
|
|
1595
1608
|
referenceAvatar?: string | undefined;
|
|
1596
1609
|
appearance?: string | undefined;
|
|
1597
|
-
name?: string | undefined;
|
|
1598
1610
|
core?: {
|
|
1599
1611
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1600
1612
|
} | undefined;
|
|
1613
|
+
rules?: string[] | undefined;
|
|
1601
1614
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1602
1615
|
languages?: string[] | undefined;
|
|
1603
1616
|
timeZone?: string | undefined;
|
|
@@ -1611,8 +1624,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1611
1624
|
backstory?: string | undefined;
|
|
1612
1625
|
} | undefined;
|
|
1613
1626
|
speech?: {
|
|
1614
|
-
tone?: string | undefined;
|
|
1615
1627
|
style?: string | undefined;
|
|
1628
|
+
tone?: string | undefined;
|
|
1616
1629
|
formality?: string | undefined;
|
|
1617
1630
|
} | undefined;
|
|
1618
1631
|
personality?: {
|
|
@@ -1624,7 +1637,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1624
1637
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1625
1638
|
} | undefined;
|
|
1626
1639
|
} | undefined;
|
|
1627
|
-
rules?: string[] | undefined;
|
|
1628
1640
|
} | null)[] | undefined;
|
|
1629
1641
|
thumbnails?: string[] | undefined;
|
|
1630
1642
|
mission?: {
|
|
@@ -1636,16 +1648,19 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1636
1648
|
messages?: {
|
|
1637
1649
|
entityType: "system" | "agent" | "user" | "gimmick";
|
|
1638
1650
|
entityId: bigint;
|
|
1639
|
-
message?: string | undefined;
|
|
1640
1651
|
image?: string | undefined;
|
|
1652
|
+
message?: string | undefined;
|
|
1641
1653
|
}[] | undefined;
|
|
1642
1654
|
userAvatar?: {
|
|
1643
1655
|
avatar: string;
|
|
1644
|
-
referenceAvatar: string;
|
|
1645
|
-
appearance: string;
|
|
1646
1656
|
name: string;
|
|
1647
|
-
|
|
1657
|
+
appearance: string;
|
|
1658
|
+
style?: "realistic" | "webtoon" | "webtoon2" | "illustration" | "anime" | "korean" | undefined;
|
|
1648
1659
|
id?: bigint | undefined;
|
|
1660
|
+
role?: string | undefined;
|
|
1661
|
+
referenceAvatar?: string | undefined;
|
|
1662
|
+
examplePoses?: string[] | undefined;
|
|
1663
|
+
isPublic?: boolean | undefined;
|
|
1649
1664
|
createdAt?: Date | undefined;
|
|
1650
1665
|
} | null | undefined;
|
|
1651
1666
|
tags?: string[] | undefined;
|
|
@@ -2006,7 +2021,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2006
2021
|
maxLength: number;
|
|
2007
2022
|
}>, "many">>;
|
|
2008
2023
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2009
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
2024
|
+
core: z.ZodUnion<[z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">, ...z.ZodLiteral<"web_search" | "image_generator" | "character_image_generator" | "notion">[]]>;
|
|
2010
2025
|
name: z.ZodString;
|
|
2011
2026
|
appearance: z.ZodString;
|
|
2012
2027
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2023,18 +2038,18 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2023
2038
|
url?: string | undefined;
|
|
2024
2039
|
}>, "many">>;
|
|
2025
2040
|
}, "strip", z.ZodTypeAny, {
|
|
2026
|
-
appearance: string;
|
|
2027
2041
|
name: string;
|
|
2028
|
-
|
|
2042
|
+
appearance: string;
|
|
2043
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2029
2044
|
images?: {
|
|
2030
2045
|
description: string;
|
|
2031
2046
|
name?: string | undefined;
|
|
2032
2047
|
url?: string | undefined;
|
|
2033
2048
|
}[] | undefined;
|
|
2034
2049
|
}, {
|
|
2035
|
-
appearance: string;
|
|
2036
2050
|
name: string;
|
|
2037
|
-
|
|
2051
|
+
appearance: string;
|
|
2052
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2038
2053
|
images?: {
|
|
2039
2054
|
description: string;
|
|
2040
2055
|
name?: string | undefined;
|
|
@@ -2043,16 +2058,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2043
2058
|
}>, "many">>;
|
|
2044
2059
|
}, "strict", z.ZodTypeAny, {
|
|
2045
2060
|
name?: string | undefined;
|
|
2046
|
-
|
|
2061
|
+
thumbnail?: string | null | undefined;
|
|
2062
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2047
2063
|
core?: {
|
|
2048
2064
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2049
2065
|
sequential?: boolean | undefined;
|
|
2050
2066
|
interval?: number | undefined;
|
|
2051
2067
|
maxAgentExecutions?: number | null | undefined;
|
|
2052
2068
|
} | undefined;
|
|
2069
|
+
description?: string | undefined;
|
|
2053
2070
|
rules?: string[] | undefined;
|
|
2054
|
-
thumbnail?: string | null | undefined;
|
|
2055
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2056
2071
|
canvases?: {
|
|
2057
2072
|
name: string;
|
|
2058
2073
|
description: string;
|
|
@@ -2064,9 +2079,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2064
2079
|
maxLength: number;
|
|
2065
2080
|
}[] | undefined;
|
|
2066
2081
|
gimmicks?: {
|
|
2067
|
-
appearance: string;
|
|
2068
2082
|
name: string;
|
|
2069
|
-
|
|
2083
|
+
appearance: string;
|
|
2084
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2070
2085
|
images?: {
|
|
2071
2086
|
description: string;
|
|
2072
2087
|
name?: string | undefined;
|
|
@@ -2075,16 +2090,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2075
2090
|
}[] | undefined;
|
|
2076
2091
|
}, {
|
|
2077
2092
|
name?: string | undefined;
|
|
2078
|
-
|
|
2093
|
+
thumbnail?: string | null | undefined;
|
|
2094
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2079
2095
|
core?: {
|
|
2080
2096
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2081
2097
|
sequential?: boolean | undefined;
|
|
2082
2098
|
interval?: number | undefined;
|
|
2083
2099
|
maxAgentExecutions?: number | null | undefined;
|
|
2084
2100
|
} | undefined;
|
|
2101
|
+
description?: string | undefined;
|
|
2085
2102
|
rules?: string[] | undefined;
|
|
2086
|
-
thumbnail?: string | null | undefined;
|
|
2087
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2088
2103
|
canvases?: {
|
|
2089
2104
|
name: string;
|
|
2090
2105
|
description: string;
|
|
@@ -2096,9 +2111,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2096
2111
|
maxLength: number;
|
|
2097
2112
|
}[] | undefined;
|
|
2098
2113
|
gimmicks?: {
|
|
2099
|
-
appearance: string;
|
|
2100
2114
|
name: string;
|
|
2101
|
-
|
|
2115
|
+
appearance: string;
|
|
2116
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2102
2117
|
images?: {
|
|
2103
2118
|
description: string;
|
|
2104
2119
|
name?: string | undefined;
|
|
@@ -2113,16 +2128,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2113
2128
|
}, "strip", z.ZodTypeAny, {
|
|
2114
2129
|
config: {
|
|
2115
2130
|
name?: string | undefined;
|
|
2116
|
-
|
|
2131
|
+
thumbnail?: string | null | undefined;
|
|
2132
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2117
2133
|
core?: {
|
|
2118
2134
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2119
2135
|
sequential?: boolean | undefined;
|
|
2120
2136
|
interval?: number | undefined;
|
|
2121
2137
|
maxAgentExecutions?: number | null | undefined;
|
|
2122
2138
|
} | undefined;
|
|
2139
|
+
description?: string | undefined;
|
|
2123
2140
|
rules?: string[] | undefined;
|
|
2124
|
-
thumbnail?: string | null | undefined;
|
|
2125
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2126
2141
|
canvases?: {
|
|
2127
2142
|
name: string;
|
|
2128
2143
|
description: string;
|
|
@@ -2134,9 +2149,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2134
2149
|
maxLength: number;
|
|
2135
2150
|
}[] | undefined;
|
|
2136
2151
|
gimmicks?: {
|
|
2137
|
-
appearance: string;
|
|
2138
2152
|
name: string;
|
|
2139
|
-
|
|
2153
|
+
appearance: string;
|
|
2154
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2140
2155
|
images?: {
|
|
2141
2156
|
description: string;
|
|
2142
2157
|
name?: string | undefined;
|
|
@@ -2148,16 +2163,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2148
2163
|
}, {
|
|
2149
2164
|
config: {
|
|
2150
2165
|
name?: string | undefined;
|
|
2151
|
-
|
|
2166
|
+
thumbnail?: string | null | undefined;
|
|
2167
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2152
2168
|
core?: {
|
|
2153
2169
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2154
2170
|
sequential?: boolean | undefined;
|
|
2155
2171
|
interval?: number | undefined;
|
|
2156
2172
|
maxAgentExecutions?: number | null | undefined;
|
|
2157
2173
|
} | undefined;
|
|
2174
|
+
description?: string | undefined;
|
|
2158
2175
|
rules?: string[] | undefined;
|
|
2159
|
-
thumbnail?: string | null | undefined;
|
|
2160
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2161
2176
|
canvases?: {
|
|
2162
2177
|
name: string;
|
|
2163
2178
|
description: string;
|
|
@@ -2169,9 +2184,9 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2169
2184
|
maxLength: number;
|
|
2170
2185
|
}[] | undefined;
|
|
2171
2186
|
gimmicks?: {
|
|
2172
|
-
appearance: string;
|
|
2173
2187
|
name: string;
|
|
2174
|
-
|
|
2188
|
+
appearance: string;
|
|
2189
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2175
2190
|
images?: {
|
|
2176
2191
|
description: string;
|
|
2177
2192
|
name?: string | undefined;
|
|
@@ -2227,8 +2242,8 @@ export declare const GetAgentHelperLocationQuerySchema: z.ZodObject<{
|
|
|
2227
2242
|
readonly MINIMO: "MINIMO";
|
|
2228
2243
|
}>>>;
|
|
2229
2244
|
}, "strip", z.ZodTypeAny, {
|
|
2230
|
-
agentId: bigint;
|
|
2231
2245
|
platform: "API" | "MINIMO";
|
|
2246
|
+
agentId: bigint;
|
|
2232
2247
|
}, {
|
|
2233
2248
|
agentId: bigint;
|
|
2234
2249
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -2261,8 +2276,8 @@ export declare const GetAgentDmLocationQuerySchema: z.ZodObject<{
|
|
|
2261
2276
|
readonly MINIMO: "MINIMO";
|
|
2262
2277
|
}>>>;
|
|
2263
2278
|
}, "strip", z.ZodTypeAny, {
|
|
2264
|
-
agentId: bigint;
|
|
2265
2279
|
platform: "API" | "MINIMO";
|
|
2280
|
+
agentId: bigint;
|
|
2266
2281
|
}, {
|
|
2267
2282
|
agentId: bigint;
|
|
2268
2283
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -2783,15 +2798,15 @@ export declare const SendLocationMessageSchema: z.ZodObject<{
|
|
|
2783
2798
|
paidCreditOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2784
2799
|
}, "strip", z.ZodTypeAny, {
|
|
2785
2800
|
locationId: bigint;
|
|
2786
|
-
message?: string | undefined;
|
|
2787
2801
|
image?: string | undefined;
|
|
2802
|
+
message?: string | undefined;
|
|
2788
2803
|
action?: string | undefined;
|
|
2789
2804
|
creditAmount?: number | undefined;
|
|
2790
2805
|
paidCreditOnly?: boolean | undefined;
|
|
2791
2806
|
}, {
|
|
2792
2807
|
locationId: bigint;
|
|
2793
|
-
message?: string | undefined;
|
|
2794
2808
|
image?: string | undefined;
|
|
2809
|
+
message?: string | undefined;
|
|
2795
2810
|
action?: string | undefined;
|
|
2796
2811
|
creditAmount?: number | undefined;
|
|
2797
2812
|
paidCreditOnly?: boolean | undefined;
|
|
@@ -2820,12 +2835,12 @@ export declare const UpdateLocationImageSchema: z.ZodObject<{
|
|
|
2820
2835
|
image: z.ZodString;
|
|
2821
2836
|
index: z.ZodOptional<z.ZodNumber>;
|
|
2822
2837
|
}, "strip", z.ZodTypeAny, {
|
|
2823
|
-
locationId: bigint;
|
|
2824
2838
|
image: string;
|
|
2839
|
+
locationId: bigint;
|
|
2825
2840
|
index?: number | undefined;
|
|
2826
2841
|
}, {
|
|
2827
|
-
locationId: bigint;
|
|
2828
2842
|
image: string;
|
|
2843
|
+
locationId: bigint;
|
|
2829
2844
|
index?: number | undefined;
|
|
2830
2845
|
}>;
|
|
2831
2846
|
export type UpdateLocationImageDto = z.infer<typeof UpdateLocationImageSchema>;
|