@little-samo/samo-ai-sdk 0.6.9 → 0.6.11
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 +22 -22
- package/dist/dto/entities/users/user.d.ts +3 -2
- package/dist/dto/entities/users/user.js.map +1 -1
- package/dist/dto/entities/users/user.requests.d.ts +92 -5
- package/dist/dto/entities/users/user.requests.js +25 -2
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/locations/location.preset.d.ts +1 -0
- package/dist/dto/locations/location.requests.d.ts +116 -98
- package/dist/dto/locations/location.requests.js +9 -5
- package/dist/dto/locations/location.requests.js.map +1 -1
- package/dist/dto/rankings/ranking.d.ts +1 -1
- 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<{
|
|
@@ -137,7 +137,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
appearance: string;
|
|
139
139
|
name: string;
|
|
140
|
-
core: "
|
|
140
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
141
141
|
images?: {
|
|
142
142
|
description: string;
|
|
143
143
|
name?: string | undefined;
|
|
@@ -146,7 +146,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
146
146
|
}, {
|
|
147
147
|
appearance: string;
|
|
148
148
|
name: string;
|
|
149
|
-
core: "
|
|
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;
|
|
@@ -178,7 +178,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
178
178
|
gimmicks?: {
|
|
179
179
|
appearance: string;
|
|
180
180
|
name: string;
|
|
181
|
-
core: "
|
|
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;
|
|
@@ -210,7 +210,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
210
210
|
gimmicks?: {
|
|
211
211
|
appearance: string;
|
|
212
212
|
name: string;
|
|
213
|
-
core: "
|
|
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;
|
|
@@ -245,7 +245,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
245
245
|
gimmicks?: {
|
|
246
246
|
appearance: string;
|
|
247
247
|
name: string;
|
|
248
|
-
core: "
|
|
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;
|
|
@@ -280,7 +280,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
280
280
|
gimmicks?: {
|
|
281
281
|
appearance: string;
|
|
282
282
|
name: string;
|
|
283
|
-
core: "
|
|
283
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
284
284
|
images?: {
|
|
285
285
|
description: string;
|
|
286
286
|
name?: string | undefined;
|
|
@@ -406,6 +406,24 @@ export interface PublishedLocationPresetsResponseDto {
|
|
|
406
406
|
totalPages: number;
|
|
407
407
|
};
|
|
408
408
|
}
|
|
409
|
+
export declare const FollowingLocationPresetsQuerySchema: z.ZodObject<{
|
|
410
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
411
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
412
|
+
}, "strip", z.ZodTypeAny, {
|
|
413
|
+
page: number;
|
|
414
|
+
limit: number;
|
|
415
|
+
}, {
|
|
416
|
+
page?: number | undefined;
|
|
417
|
+
limit?: number | undefined;
|
|
418
|
+
}>;
|
|
419
|
+
export type FollowingLocationPresetsQueryDto = z.infer<typeof FollowingLocationPresetsQuerySchema>;
|
|
420
|
+
export interface FollowingLocationPresetsResponseDto {
|
|
421
|
+
data: LocationPresetDetailDto[];
|
|
422
|
+
meta: {
|
|
423
|
+
page: number;
|
|
424
|
+
limit: number;
|
|
425
|
+
};
|
|
426
|
+
}
|
|
409
427
|
export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
410
428
|
query: z.ZodString;
|
|
411
429
|
type: z.ZodEnum<["NOVEL"]>;
|
|
@@ -415,17 +433,17 @@ export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
415
433
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
416
434
|
}, "strip", z.ZodTypeAny, {
|
|
417
435
|
type: "NOVEL";
|
|
418
|
-
sortBy: "latest" | "popular";
|
|
419
436
|
page: number;
|
|
420
437
|
limit: number;
|
|
438
|
+
sortBy: "latest" | "popular";
|
|
421
439
|
gender: "all" | "male" | "female";
|
|
422
440
|
query: string;
|
|
423
441
|
}, {
|
|
424
442
|
type: "NOVEL";
|
|
425
443
|
query: string;
|
|
426
|
-
sortBy?: "latest" | "popular" | undefined;
|
|
427
444
|
page?: number | undefined;
|
|
428
445
|
limit?: number | undefined;
|
|
446
|
+
sortBy?: "latest" | "popular" | undefined;
|
|
429
447
|
gender?: "all" | "male" | "female" | undefined;
|
|
430
448
|
}>;
|
|
431
449
|
export type SearchLocationPresetsQueryDto = z.infer<typeof SearchLocationPresetsQuerySchema>;
|
|
@@ -515,7 +533,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
515
533
|
maxLength: number;
|
|
516
534
|
}>, "many">>;
|
|
517
535
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
518
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
536
|
+
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">[]]>;
|
|
519
537
|
name: z.ZodString;
|
|
520
538
|
appearance: z.ZodString;
|
|
521
539
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -534,7 +552,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
534
552
|
}, "strip", z.ZodTypeAny, {
|
|
535
553
|
appearance: string;
|
|
536
554
|
name: string;
|
|
537
|
-
core: "
|
|
555
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
538
556
|
images?: {
|
|
539
557
|
description: string;
|
|
540
558
|
name?: string | undefined;
|
|
@@ -543,7 +561,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
543
561
|
}, {
|
|
544
562
|
appearance: string;
|
|
545
563
|
name: string;
|
|
546
|
-
core: "
|
|
564
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
547
565
|
images?: {
|
|
548
566
|
description: string;
|
|
549
567
|
name?: string | undefined;
|
|
@@ -552,16 +570,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
552
570
|
}>, "many">>;
|
|
553
571
|
}, "strip", z.ZodTypeAny, {
|
|
554
572
|
name?: string | undefined;
|
|
555
|
-
|
|
573
|
+
thumbnail?: string | null | undefined;
|
|
574
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
556
575
|
core?: {
|
|
557
576
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
558
577
|
sequential?: boolean | undefined;
|
|
559
578
|
interval?: number | undefined;
|
|
560
579
|
maxAgentExecutions?: number | null | undefined;
|
|
561
580
|
} | undefined;
|
|
581
|
+
description?: string | undefined;
|
|
562
582
|
rules?: string[] | undefined;
|
|
563
|
-
thumbnail?: string | null | undefined;
|
|
564
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
565
583
|
canvases?: {
|
|
566
584
|
name: string;
|
|
567
585
|
description: string;
|
|
@@ -575,7 +593,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
575
593
|
gimmicks?: {
|
|
576
594
|
appearance: string;
|
|
577
595
|
name: string;
|
|
578
|
-
core: "
|
|
596
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
579
597
|
images?: {
|
|
580
598
|
description: string;
|
|
581
599
|
name?: string | undefined;
|
|
@@ -584,16 +602,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
584
602
|
}[] | undefined;
|
|
585
603
|
}, {
|
|
586
604
|
name?: string | undefined;
|
|
587
|
-
|
|
605
|
+
thumbnail?: string | null | undefined;
|
|
606
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
588
607
|
core?: {
|
|
589
608
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
590
609
|
sequential?: boolean | undefined;
|
|
591
610
|
interval?: number | undefined;
|
|
592
611
|
maxAgentExecutions?: number | null | undefined;
|
|
593
612
|
} | undefined;
|
|
613
|
+
description?: string | undefined;
|
|
594
614
|
rules?: string[] | undefined;
|
|
595
|
-
thumbnail?: string | null | undefined;
|
|
596
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
597
615
|
canvases?: {
|
|
598
616
|
name: string;
|
|
599
617
|
description: string;
|
|
@@ -607,7 +625,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
607
625
|
gimmicks?: {
|
|
608
626
|
appearance: string;
|
|
609
627
|
name: string;
|
|
610
|
-
core: "
|
|
628
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
611
629
|
images?: {
|
|
612
630
|
description: string;
|
|
613
631
|
name?: string | undefined;
|
|
@@ -728,14 +746,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
728
746
|
}>>;
|
|
729
747
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
730
748
|
}, "strip", z.ZodTypeAny, {
|
|
749
|
+
role?: string | undefined;
|
|
731
750
|
avatar?: string | undefined;
|
|
732
751
|
referenceAvatar?: string | undefined;
|
|
733
752
|
appearance?: string | undefined;
|
|
734
753
|
name?: string | undefined;
|
|
735
|
-
role?: string | undefined;
|
|
736
754
|
core?: {
|
|
737
755
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
738
756
|
} | undefined;
|
|
757
|
+
rules?: string[] | undefined;
|
|
739
758
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
740
759
|
languages?: string[] | undefined;
|
|
741
760
|
timeZone?: string | undefined;
|
|
@@ -762,16 +781,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
762
781
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
763
782
|
} | undefined;
|
|
764
783
|
} | undefined;
|
|
765
|
-
rules?: string[] | undefined;
|
|
766
784
|
}, {
|
|
785
|
+
role?: string | undefined;
|
|
767
786
|
avatar?: string | undefined;
|
|
768
787
|
referenceAvatar?: string | undefined;
|
|
769
788
|
appearance?: string | undefined;
|
|
770
789
|
name?: string | undefined;
|
|
771
|
-
role?: string | undefined;
|
|
772
790
|
core?: {
|
|
773
791
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
774
792
|
} | undefined;
|
|
793
|
+
rules?: string[] | undefined;
|
|
775
794
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
776
795
|
languages?: string[] | undefined;
|
|
777
796
|
timeZone?: string | undefined;
|
|
@@ -798,7 +817,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
798
817
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
799
818
|
} | undefined;
|
|
800
819
|
} | undefined;
|
|
801
|
-
rules?: string[] | undefined;
|
|
802
820
|
}>, "many">>;
|
|
803
821
|
}, "strip", z.ZodTypeAny, {
|
|
804
822
|
presetDescription: string;
|
|
@@ -811,16 +829,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
811
829
|
isSensitive?: boolean | undefined;
|
|
812
830
|
locationConfig?: {
|
|
813
831
|
name?: string | undefined;
|
|
814
|
-
|
|
832
|
+
thumbnail?: string | null | undefined;
|
|
833
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
815
834
|
core?: {
|
|
816
835
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
817
836
|
sequential?: boolean | undefined;
|
|
818
837
|
interval?: number | undefined;
|
|
819
838
|
maxAgentExecutions?: number | null | undefined;
|
|
820
839
|
} | undefined;
|
|
840
|
+
description?: string | undefined;
|
|
821
841
|
rules?: string[] | undefined;
|
|
822
|
-
thumbnail?: string | null | undefined;
|
|
823
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
824
842
|
canvases?: {
|
|
825
843
|
name: string;
|
|
826
844
|
description: string;
|
|
@@ -834,7 +852,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
834
852
|
gimmicks?: {
|
|
835
853
|
appearance: string;
|
|
836
854
|
name: string;
|
|
837
|
-
core: "
|
|
855
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
838
856
|
images?: {
|
|
839
857
|
description: string;
|
|
840
858
|
name?: string | undefined;
|
|
@@ -843,14 +861,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
843
861
|
}[] | undefined;
|
|
844
862
|
} | undefined;
|
|
845
863
|
agentConfigs?: {
|
|
864
|
+
role?: string | undefined;
|
|
846
865
|
avatar?: string | undefined;
|
|
847
866
|
referenceAvatar?: string | undefined;
|
|
848
867
|
appearance?: string | undefined;
|
|
849
868
|
name?: string | undefined;
|
|
850
|
-
role?: string | undefined;
|
|
851
869
|
core?: {
|
|
852
870
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
853
871
|
} | undefined;
|
|
872
|
+
rules?: string[] | undefined;
|
|
854
873
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
855
874
|
languages?: string[] | undefined;
|
|
856
875
|
timeZone?: string | undefined;
|
|
@@ -877,7 +896,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
877
896
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
878
897
|
} | undefined;
|
|
879
898
|
} | undefined;
|
|
880
|
-
rules?: string[] | undefined;
|
|
881
899
|
}[] | undefined;
|
|
882
900
|
}, {
|
|
883
901
|
presetDescription: string;
|
|
@@ -890,16 +908,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
890
908
|
isSensitive?: boolean | undefined;
|
|
891
909
|
locationConfig?: {
|
|
892
910
|
name?: string | undefined;
|
|
893
|
-
|
|
911
|
+
thumbnail?: string | null | undefined;
|
|
912
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
894
913
|
core?: {
|
|
895
914
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
896
915
|
sequential?: boolean | undefined;
|
|
897
916
|
interval?: number | undefined;
|
|
898
917
|
maxAgentExecutions?: number | null | undefined;
|
|
899
918
|
} | undefined;
|
|
919
|
+
description?: string | undefined;
|
|
900
920
|
rules?: string[] | undefined;
|
|
901
|
-
thumbnail?: string | null | undefined;
|
|
902
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
903
921
|
canvases?: {
|
|
904
922
|
name: string;
|
|
905
923
|
description: string;
|
|
@@ -913,7 +931,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
913
931
|
gimmicks?: {
|
|
914
932
|
appearance: string;
|
|
915
933
|
name: string;
|
|
916
|
-
core: "
|
|
934
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
917
935
|
images?: {
|
|
918
936
|
description: string;
|
|
919
937
|
name?: string | undefined;
|
|
@@ -922,14 +940,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
922
940
|
}[] | undefined;
|
|
923
941
|
} | undefined;
|
|
924
942
|
agentConfigs?: {
|
|
943
|
+
role?: string | undefined;
|
|
925
944
|
avatar?: string | undefined;
|
|
926
945
|
referenceAvatar?: string | undefined;
|
|
927
946
|
appearance?: string | undefined;
|
|
928
947
|
name?: string | undefined;
|
|
929
|
-
role?: string | undefined;
|
|
930
948
|
core?: {
|
|
931
949
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
932
950
|
} | undefined;
|
|
951
|
+
rules?: string[] | undefined;
|
|
933
952
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
934
953
|
languages?: string[] | undefined;
|
|
935
954
|
timeZone?: string | undefined;
|
|
@@ -956,7 +975,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
956
975
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
957
976
|
} | undefined;
|
|
958
977
|
} | undefined;
|
|
959
|
-
rules?: string[] | undefined;
|
|
960
978
|
}[] | undefined;
|
|
961
979
|
}>;
|
|
962
980
|
export type CreateLocationPresetDto = z.infer<typeof CreateLocationPresetSchema>;
|
|
@@ -1125,7 +1143,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1125
1143
|
maxLength: number;
|
|
1126
1144
|
}>, "many">>;
|
|
1127
1145
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1128
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
1146
|
+
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">[]]>;
|
|
1129
1147
|
name: z.ZodString;
|
|
1130
1148
|
appearance: z.ZodString;
|
|
1131
1149
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1144,7 +1162,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1144
1162
|
}, "strip", z.ZodTypeAny, {
|
|
1145
1163
|
appearance: string;
|
|
1146
1164
|
name: string;
|
|
1147
|
-
core: "
|
|
1165
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1148
1166
|
images?: {
|
|
1149
1167
|
description: string;
|
|
1150
1168
|
name?: string | undefined;
|
|
@@ -1153,7 +1171,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1153
1171
|
}, {
|
|
1154
1172
|
appearance: string;
|
|
1155
1173
|
name: string;
|
|
1156
|
-
core: "
|
|
1174
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1157
1175
|
images?: {
|
|
1158
1176
|
description: string;
|
|
1159
1177
|
name?: string | undefined;
|
|
@@ -1162,16 +1180,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1162
1180
|
}>, "many">>;
|
|
1163
1181
|
}, "strip", z.ZodTypeAny, {
|
|
1164
1182
|
name?: string | undefined;
|
|
1165
|
-
|
|
1183
|
+
thumbnail?: string | null | undefined;
|
|
1184
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1166
1185
|
core?: {
|
|
1167
1186
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1168
1187
|
sequential?: boolean | undefined;
|
|
1169
1188
|
interval?: number | undefined;
|
|
1170
1189
|
maxAgentExecutions?: number | null | undefined;
|
|
1171
1190
|
} | undefined;
|
|
1191
|
+
description?: string | undefined;
|
|
1172
1192
|
rules?: string[] | undefined;
|
|
1173
|
-
thumbnail?: string | null | undefined;
|
|
1174
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1175
1193
|
canvases?: {
|
|
1176
1194
|
name: string;
|
|
1177
1195
|
description: string;
|
|
@@ -1185,7 +1203,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1185
1203
|
gimmicks?: {
|
|
1186
1204
|
appearance: string;
|
|
1187
1205
|
name: string;
|
|
1188
|
-
core: "
|
|
1206
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1189
1207
|
images?: {
|
|
1190
1208
|
description: string;
|
|
1191
1209
|
name?: string | undefined;
|
|
@@ -1194,16 +1212,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1194
1212
|
}[] | undefined;
|
|
1195
1213
|
}, {
|
|
1196
1214
|
name?: string | undefined;
|
|
1197
|
-
|
|
1215
|
+
thumbnail?: string | null | undefined;
|
|
1216
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1198
1217
|
core?: {
|
|
1199
1218
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1200
1219
|
sequential?: boolean | undefined;
|
|
1201
1220
|
interval?: number | undefined;
|
|
1202
1221
|
maxAgentExecutions?: number | null | undefined;
|
|
1203
1222
|
} | undefined;
|
|
1223
|
+
description?: string | undefined;
|
|
1204
1224
|
rules?: string[] | undefined;
|
|
1205
|
-
thumbnail?: string | null | undefined;
|
|
1206
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1207
1225
|
canvases?: {
|
|
1208
1226
|
name: string;
|
|
1209
1227
|
description: string;
|
|
@@ -1217,7 +1235,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1217
1235
|
gimmicks?: {
|
|
1218
1236
|
appearance: string;
|
|
1219
1237
|
name: string;
|
|
1220
|
-
core: "
|
|
1238
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1221
1239
|
images?: {
|
|
1222
1240
|
description: string;
|
|
1223
1241
|
name?: string | undefined;
|
|
@@ -1338,14 +1356,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1338
1356
|
}>>;
|
|
1339
1357
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1340
1358
|
}, "strip", z.ZodTypeAny, {
|
|
1359
|
+
role?: string | undefined;
|
|
1341
1360
|
avatar?: string | undefined;
|
|
1342
1361
|
referenceAvatar?: string | undefined;
|
|
1343
1362
|
appearance?: string | undefined;
|
|
1344
1363
|
name?: string | undefined;
|
|
1345
|
-
role?: string | undefined;
|
|
1346
1364
|
core?: {
|
|
1347
1365
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1348
1366
|
} | undefined;
|
|
1367
|
+
rules?: string[] | undefined;
|
|
1349
1368
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1350
1369
|
languages?: string[] | undefined;
|
|
1351
1370
|
timeZone?: string | undefined;
|
|
@@ -1372,16 +1391,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1372
1391
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1373
1392
|
} | undefined;
|
|
1374
1393
|
} | undefined;
|
|
1375
|
-
rules?: string[] | undefined;
|
|
1376
1394
|
}, {
|
|
1395
|
+
role?: string | undefined;
|
|
1377
1396
|
avatar?: string | undefined;
|
|
1378
1397
|
referenceAvatar?: string | undefined;
|
|
1379
1398
|
appearance?: string | undefined;
|
|
1380
1399
|
name?: string | undefined;
|
|
1381
|
-
role?: string | undefined;
|
|
1382
1400
|
core?: {
|
|
1383
1401
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1384
1402
|
} | undefined;
|
|
1403
|
+
rules?: string[] | undefined;
|
|
1385
1404
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1386
1405
|
languages?: string[] | undefined;
|
|
1387
1406
|
timeZone?: string | undefined;
|
|
@@ -1408,7 +1427,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1408
1427
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1409
1428
|
} | undefined;
|
|
1410
1429
|
} | undefined;
|
|
1411
|
-
rules?: string[] | undefined;
|
|
1412
1430
|
}>>, "many">>;
|
|
1413
1431
|
}, "strip", z.ZodTypeAny, {
|
|
1414
1432
|
name?: string | undefined;
|
|
@@ -1425,16 +1443,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1425
1443
|
isSensitive?: boolean | undefined;
|
|
1426
1444
|
locationConfig?: {
|
|
1427
1445
|
name?: string | undefined;
|
|
1428
|
-
|
|
1446
|
+
thumbnail?: string | null | undefined;
|
|
1447
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1429
1448
|
core?: {
|
|
1430
1449
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1431
1450
|
sequential?: boolean | undefined;
|
|
1432
1451
|
interval?: number | undefined;
|
|
1433
1452
|
maxAgentExecutions?: number | null | undefined;
|
|
1434
1453
|
} | undefined;
|
|
1454
|
+
description?: string | undefined;
|
|
1435
1455
|
rules?: string[] | undefined;
|
|
1436
|
-
thumbnail?: string | null | undefined;
|
|
1437
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1438
1456
|
canvases?: {
|
|
1439
1457
|
name: string;
|
|
1440
1458
|
description: string;
|
|
@@ -1448,7 +1466,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1448
1466
|
gimmicks?: {
|
|
1449
1467
|
appearance: string;
|
|
1450
1468
|
name: string;
|
|
1451
|
-
core: "
|
|
1469
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1452
1470
|
images?: {
|
|
1453
1471
|
description: string;
|
|
1454
1472
|
name?: string | undefined;
|
|
@@ -1457,14 +1475,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1457
1475
|
}[] | undefined;
|
|
1458
1476
|
} | undefined;
|
|
1459
1477
|
agentConfigs?: ({
|
|
1478
|
+
role?: string | undefined;
|
|
1460
1479
|
avatar?: string | undefined;
|
|
1461
1480
|
referenceAvatar?: string | undefined;
|
|
1462
1481
|
appearance?: string | undefined;
|
|
1463
1482
|
name?: string | undefined;
|
|
1464
|
-
role?: string | undefined;
|
|
1465
1483
|
core?: {
|
|
1466
1484
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1467
1485
|
} | undefined;
|
|
1486
|
+
rules?: string[] | undefined;
|
|
1468
1487
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1469
1488
|
languages?: string[] | undefined;
|
|
1470
1489
|
timeZone?: string | undefined;
|
|
@@ -1491,7 +1510,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1491
1510
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1492
1511
|
} | undefined;
|
|
1493
1512
|
} | undefined;
|
|
1494
|
-
rules?: string[] | undefined;
|
|
1495
1513
|
} | null)[] | undefined;
|
|
1496
1514
|
thumbnails?: string[] | undefined;
|
|
1497
1515
|
mission?: {
|
|
@@ -1529,16 +1547,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1529
1547
|
isSensitive?: boolean | undefined;
|
|
1530
1548
|
locationConfig?: {
|
|
1531
1549
|
name?: string | undefined;
|
|
1532
|
-
|
|
1550
|
+
thumbnail?: string | null | undefined;
|
|
1551
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1533
1552
|
core?: {
|
|
1534
1553
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1535
1554
|
sequential?: boolean | undefined;
|
|
1536
1555
|
interval?: number | undefined;
|
|
1537
1556
|
maxAgentExecutions?: number | null | undefined;
|
|
1538
1557
|
} | undefined;
|
|
1558
|
+
description?: string | undefined;
|
|
1539
1559
|
rules?: string[] | undefined;
|
|
1540
|
-
thumbnail?: string | null | undefined;
|
|
1541
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1542
1560
|
canvases?: {
|
|
1543
1561
|
name: string;
|
|
1544
1562
|
description: string;
|
|
@@ -1552,7 +1570,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1552
1570
|
gimmicks?: {
|
|
1553
1571
|
appearance: string;
|
|
1554
1572
|
name: string;
|
|
1555
|
-
core: "
|
|
1573
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1556
1574
|
images?: {
|
|
1557
1575
|
description: string;
|
|
1558
1576
|
name?: string | undefined;
|
|
@@ -1561,14 +1579,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1561
1579
|
}[] | undefined;
|
|
1562
1580
|
} | undefined;
|
|
1563
1581
|
agentConfigs?: ({
|
|
1582
|
+
role?: string | undefined;
|
|
1564
1583
|
avatar?: string | undefined;
|
|
1565
1584
|
referenceAvatar?: string | undefined;
|
|
1566
1585
|
appearance?: string | undefined;
|
|
1567
1586
|
name?: string | undefined;
|
|
1568
|
-
role?: string | undefined;
|
|
1569
1587
|
core?: {
|
|
1570
1588
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1571
1589
|
} | undefined;
|
|
1590
|
+
rules?: string[] | undefined;
|
|
1572
1591
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1573
1592
|
languages?: string[] | undefined;
|
|
1574
1593
|
timeZone?: string | undefined;
|
|
@@ -1595,7 +1614,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1595
1614
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1596
1615
|
} | undefined;
|
|
1597
1616
|
} | undefined;
|
|
1598
|
-
rules?: string[] | undefined;
|
|
1599
1617
|
} | null)[] | undefined;
|
|
1600
1618
|
thumbnails?: string[] | undefined;
|
|
1601
1619
|
mission?: {
|
|
@@ -1780,13 +1798,13 @@ export declare const GetLocationPresetCommentsQuerySchema: z.ZodObject<{
|
|
|
1780
1798
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1781
1799
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1782
1800
|
}, "strip", z.ZodTypeAny, {
|
|
1783
|
-
sortBy: "latest" | "recommended";
|
|
1784
1801
|
page: number;
|
|
1785
1802
|
limit: number;
|
|
1803
|
+
sortBy: "latest" | "recommended";
|
|
1786
1804
|
}, {
|
|
1787
|
-
sortBy?: "latest" | "recommended" | undefined;
|
|
1788
1805
|
page?: number | undefined;
|
|
1789
1806
|
limit?: number | undefined;
|
|
1807
|
+
sortBy?: "latest" | "recommended" | undefined;
|
|
1790
1808
|
}>;
|
|
1791
1809
|
export type GetLocationPresetCommentsQueryDto = z.infer<typeof GetLocationPresetCommentsQuerySchema>;
|
|
1792
1810
|
export interface GetLocationPresetCommentsResponseDto {
|
|
@@ -1975,7 +1993,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1975
1993
|
maxLength: number;
|
|
1976
1994
|
}>, "many">>;
|
|
1977
1995
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1978
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
1996
|
+
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">[]]>;
|
|
1979
1997
|
name: z.ZodString;
|
|
1980
1998
|
appearance: z.ZodString;
|
|
1981
1999
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1994,7 +2012,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1994
2012
|
}, "strip", z.ZodTypeAny, {
|
|
1995
2013
|
appearance: string;
|
|
1996
2014
|
name: string;
|
|
1997
|
-
core: "
|
|
2015
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1998
2016
|
images?: {
|
|
1999
2017
|
description: string;
|
|
2000
2018
|
name?: string | undefined;
|
|
@@ -2003,7 +2021,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2003
2021
|
}, {
|
|
2004
2022
|
appearance: string;
|
|
2005
2023
|
name: string;
|
|
2006
|
-
core: "
|
|
2024
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2007
2025
|
images?: {
|
|
2008
2026
|
description: string;
|
|
2009
2027
|
name?: string | undefined;
|
|
@@ -2012,16 +2030,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2012
2030
|
}>, "many">>;
|
|
2013
2031
|
}, "strict", z.ZodTypeAny, {
|
|
2014
2032
|
name?: string | undefined;
|
|
2015
|
-
|
|
2033
|
+
thumbnail?: string | null | undefined;
|
|
2034
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2016
2035
|
core?: {
|
|
2017
2036
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2018
2037
|
sequential?: boolean | undefined;
|
|
2019
2038
|
interval?: number | undefined;
|
|
2020
2039
|
maxAgentExecutions?: number | null | undefined;
|
|
2021
2040
|
} | undefined;
|
|
2041
|
+
description?: string | undefined;
|
|
2022
2042
|
rules?: string[] | undefined;
|
|
2023
|
-
thumbnail?: string | null | undefined;
|
|
2024
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2025
2043
|
canvases?: {
|
|
2026
2044
|
name: string;
|
|
2027
2045
|
description: string;
|
|
@@ -2035,7 +2053,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2035
2053
|
gimmicks?: {
|
|
2036
2054
|
appearance: string;
|
|
2037
2055
|
name: string;
|
|
2038
|
-
core: "
|
|
2056
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2039
2057
|
images?: {
|
|
2040
2058
|
description: string;
|
|
2041
2059
|
name?: string | undefined;
|
|
@@ -2044,16 +2062,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2044
2062
|
}[] | undefined;
|
|
2045
2063
|
}, {
|
|
2046
2064
|
name?: string | undefined;
|
|
2047
|
-
|
|
2065
|
+
thumbnail?: string | null | undefined;
|
|
2066
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2048
2067
|
core?: {
|
|
2049
2068
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2050
2069
|
sequential?: boolean | undefined;
|
|
2051
2070
|
interval?: number | undefined;
|
|
2052
2071
|
maxAgentExecutions?: number | null | undefined;
|
|
2053
2072
|
} | undefined;
|
|
2073
|
+
description?: string | undefined;
|
|
2054
2074
|
rules?: string[] | undefined;
|
|
2055
|
-
thumbnail?: string | null | undefined;
|
|
2056
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2057
2075
|
canvases?: {
|
|
2058
2076
|
name: string;
|
|
2059
2077
|
description: string;
|
|
@@ -2067,7 +2085,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2067
2085
|
gimmicks?: {
|
|
2068
2086
|
appearance: string;
|
|
2069
2087
|
name: string;
|
|
2070
|
-
core: "
|
|
2088
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2071
2089
|
images?: {
|
|
2072
2090
|
description: string;
|
|
2073
2091
|
name?: string | undefined;
|
|
@@ -2082,16 +2100,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2082
2100
|
}, "strip", z.ZodTypeAny, {
|
|
2083
2101
|
config: {
|
|
2084
2102
|
name?: string | undefined;
|
|
2085
|
-
|
|
2103
|
+
thumbnail?: string | null | undefined;
|
|
2104
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2086
2105
|
core?: {
|
|
2087
2106
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2088
2107
|
sequential?: boolean | undefined;
|
|
2089
2108
|
interval?: number | undefined;
|
|
2090
2109
|
maxAgentExecutions?: number | null | undefined;
|
|
2091
2110
|
} | undefined;
|
|
2111
|
+
description?: string | undefined;
|
|
2092
2112
|
rules?: string[] | undefined;
|
|
2093
|
-
thumbnail?: string | null | undefined;
|
|
2094
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2095
2113
|
canvases?: {
|
|
2096
2114
|
name: string;
|
|
2097
2115
|
description: string;
|
|
@@ -2105,7 +2123,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2105
2123
|
gimmicks?: {
|
|
2106
2124
|
appearance: string;
|
|
2107
2125
|
name: string;
|
|
2108
|
-
core: "
|
|
2126
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2109
2127
|
images?: {
|
|
2110
2128
|
description: string;
|
|
2111
2129
|
name?: string | undefined;
|
|
@@ -2117,16 +2135,16 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2117
2135
|
}, {
|
|
2118
2136
|
config: {
|
|
2119
2137
|
name?: string | undefined;
|
|
2120
|
-
|
|
2138
|
+
thumbnail?: string | null | undefined;
|
|
2139
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2121
2140
|
core?: {
|
|
2122
2141
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2123
2142
|
sequential?: boolean | undefined;
|
|
2124
2143
|
interval?: number | undefined;
|
|
2125
2144
|
maxAgentExecutions?: number | null | undefined;
|
|
2126
2145
|
} | undefined;
|
|
2146
|
+
description?: string | undefined;
|
|
2127
2147
|
rules?: string[] | undefined;
|
|
2128
|
-
thumbnail?: string | null | undefined;
|
|
2129
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2130
2148
|
canvases?: {
|
|
2131
2149
|
name: string;
|
|
2132
2150
|
description: string;
|
|
@@ -2140,7 +2158,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2140
2158
|
gimmicks?: {
|
|
2141
2159
|
appearance: string;
|
|
2142
2160
|
name: string;
|
|
2143
|
-
core: "
|
|
2161
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2144
2162
|
images?: {
|
|
2145
2163
|
description: string;
|
|
2146
2164
|
name?: string | undefined;
|
|
@@ -2196,8 +2214,8 @@ export declare const GetAgentHelperLocationQuerySchema: z.ZodObject<{
|
|
|
2196
2214
|
readonly MINIMO: "MINIMO";
|
|
2197
2215
|
}>>>;
|
|
2198
2216
|
}, "strip", z.ZodTypeAny, {
|
|
2199
|
-
agentId: bigint;
|
|
2200
2217
|
platform: "API" | "MINIMO";
|
|
2218
|
+
agentId: bigint;
|
|
2201
2219
|
}, {
|
|
2202
2220
|
agentId: bigint;
|
|
2203
2221
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -2230,8 +2248,8 @@ export declare const GetAgentDmLocationQuerySchema: z.ZodObject<{
|
|
|
2230
2248
|
readonly MINIMO: "MINIMO";
|
|
2231
2249
|
}>>>;
|
|
2232
2250
|
}, "strip", z.ZodTypeAny, {
|
|
2233
|
-
agentId: bigint;
|
|
2234
2251
|
platform: "API" | "MINIMO";
|
|
2252
|
+
agentId: bigint;
|
|
2235
2253
|
}, {
|
|
2236
2254
|
agentId: bigint;
|
|
2237
2255
|
platform?: "API" | "MINIMO" | undefined;
|