@little-samo/samo-ai-sdk 0.6.14 → 0.7.1
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 +54 -54
- package/dist/dto/entities/users/user.requests.d.ts +20 -10
- package/dist/dto/entities/users/user.requests.js +4 -1
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/locations/location.d.ts +1 -1
- package/dist/dto/locations/location.preset.d.ts +6 -6
- package/dist/dto/locations/location.requests.d.ts +198 -198
- package/dist/dto/locations/location.requests.js +1 -1
- package/dist/dto/locations/location.requests.js.map +1 -1
- package/dist/models/locations/location.config.d.ts +22 -22
- package/package.json +3 -3
|
@@ -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<{
|
|
@@ -127,35 +127,37 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
127
127
|
description: z.ZodString;
|
|
128
128
|
}, "strip", z.ZodTypeAny, {
|
|
129
129
|
description: string;
|
|
130
|
-
name?: string | undefined;
|
|
131
130
|
url?: string | undefined;
|
|
131
|
+
name?: string | undefined;
|
|
132
132
|
}, {
|
|
133
133
|
description: string;
|
|
134
|
-
name?: string | undefined;
|
|
135
134
|
url?: string | undefined;
|
|
135
|
+
name?: 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
|
-
name?: string | undefined;
|
|
144
143
|
url?: string | undefined;
|
|
144
|
+
name?: 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
|
-
name?: string | undefined;
|
|
153
152
|
url?: string | undefined;
|
|
153
|
+
name?: string | undefined;
|
|
154
154
|
}[] | undefined;
|
|
155
155
|
}>, "many">>;
|
|
156
156
|
}, "strict", z.ZodTypeAny, {
|
|
157
157
|
name?: string | undefined;
|
|
158
158
|
description?: string | undefined;
|
|
159
|
+
thumbnail?: string | null | undefined;
|
|
160
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
159
161
|
core?: {
|
|
160
162
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
161
163
|
sequential?: boolean | undefined;
|
|
@@ -163,8 +165,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
163
165
|
maxAgentExecutions?: number | null | undefined;
|
|
164
166
|
} | 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,18 +176,20 @@ 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
|
-
name?: string | undefined;
|
|
185
184
|
url?: string | undefined;
|
|
185
|
+
name?: string | undefined;
|
|
186
186
|
}[] | undefined;
|
|
187
187
|
}[] | undefined;
|
|
188
188
|
}, {
|
|
189
189
|
name?: string | undefined;
|
|
190
190
|
description?: string | undefined;
|
|
191
|
+
thumbnail?: string | null | undefined;
|
|
192
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
191
193
|
core?: {
|
|
192
194
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
193
195
|
sequential?: boolean | undefined;
|
|
@@ -195,8 +197,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
195
197
|
maxAgentExecutions?: number | null | undefined;
|
|
196
198
|
} | 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,13 +208,13 @@ 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
|
-
name?: string | undefined;
|
|
217
216
|
url?: string | undefined;
|
|
217
|
+
name?: string | undefined;
|
|
218
218
|
}[] | undefined;
|
|
219
219
|
}[] | undefined;
|
|
220
220
|
}>;
|
|
@@ -223,6 +223,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
223
223
|
config: {
|
|
224
224
|
name?: string | undefined;
|
|
225
225
|
description?: string | undefined;
|
|
226
|
+
thumbnail?: string | null | undefined;
|
|
227
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
226
228
|
core?: {
|
|
227
229
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
228
230
|
sequential?: boolean | undefined;
|
|
@@ -230,8 +232,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
230
232
|
maxAgentExecutions?: number | null | undefined;
|
|
231
233
|
} | 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,13 +243,13 @@ 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
|
-
name?: string | undefined;
|
|
252
251
|
url?: string | undefined;
|
|
252
|
+
name?: string | undefined;
|
|
253
253
|
}[] | undefined;
|
|
254
254
|
}[] | undefined;
|
|
255
255
|
};
|
|
@@ -258,6 +258,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
258
258
|
config: {
|
|
259
259
|
name?: string | undefined;
|
|
260
260
|
description?: string | undefined;
|
|
261
|
+
thumbnail?: string | null | undefined;
|
|
262
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
261
263
|
core?: {
|
|
262
264
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
263
265
|
sequential?: boolean | undefined;
|
|
@@ -265,8 +267,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
265
267
|
maxAgentExecutions?: number | null | undefined;
|
|
266
268
|
} | 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,13 +278,13 @@ 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
|
-
name?: string | undefined;
|
|
287
286
|
url?: string | undefined;
|
|
287
|
+
name?: string | undefined;
|
|
288
288
|
}[] | undefined;
|
|
289
289
|
}[] | undefined;
|
|
290
290
|
};
|
|
@@ -383,19 +383,19 @@ export declare const PublishedLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
383
383
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
384
384
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
385
385
|
}, "strip", z.ZodTypeAny, {
|
|
386
|
+
gender: "all" | "male" | "female";
|
|
386
387
|
type: "NOVEL";
|
|
387
388
|
page: number;
|
|
388
389
|
limit: number;
|
|
389
390
|
sortBy: "latest" | "popular";
|
|
390
|
-
gender: "all" | "male" | "female";
|
|
391
391
|
tag?: string | undefined;
|
|
392
392
|
ownerUserId?: bigint | undefined;
|
|
393
393
|
}, {
|
|
394
394
|
type: "NOVEL";
|
|
395
|
+
gender?: "all" | "male" | "female" | undefined;
|
|
395
396
|
page?: number | undefined;
|
|
396
397
|
limit?: number | undefined;
|
|
397
398
|
sortBy?: "latest" | "popular" | undefined;
|
|
398
|
-
gender?: "all" | "male" | "female" | undefined;
|
|
399
399
|
tag?: string | undefined;
|
|
400
400
|
ownerUserId?: bigint | undefined;
|
|
401
401
|
}>;
|
|
@@ -435,19 +435,19 @@ export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
435
435
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
436
436
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
437
437
|
}, "strip", z.ZodTypeAny, {
|
|
438
|
+
gender: "all" | "male" | "female";
|
|
438
439
|
type: "NOVEL";
|
|
439
440
|
page: number;
|
|
440
441
|
limit: number;
|
|
441
442
|
sortBy: "latest" | "popular";
|
|
442
|
-
gender: "all" | "male" | "female";
|
|
443
443
|
query: string;
|
|
444
444
|
}, {
|
|
445
445
|
type: "NOVEL";
|
|
446
446
|
query: string;
|
|
447
|
+
gender?: "all" | "male" | "female" | undefined;
|
|
447
448
|
page?: number | undefined;
|
|
448
449
|
limit?: number | undefined;
|
|
449
450
|
sortBy?: "latest" | "popular" | undefined;
|
|
450
|
-
gender?: "all" | "male" | "female" | undefined;
|
|
451
451
|
}>;
|
|
452
452
|
export type SearchLocationPresetsQueryDto = z.infer<typeof SearchLocationPresetsQuerySchema>;
|
|
453
453
|
export interface SearchLocationPresetsResponseDto {
|
|
@@ -468,8 +468,8 @@ export declare const TrendingLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
468
468
|
type: z.ZodEnum<["NOVEL"]>;
|
|
469
469
|
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["all", "male", "female"]>>>;
|
|
470
470
|
}, "strip", z.ZodTypeAny, {
|
|
471
|
-
type: "NOVEL";
|
|
472
471
|
gender: "all" | "male" | "female";
|
|
472
|
+
type: "NOVEL";
|
|
473
473
|
}, {
|
|
474
474
|
type: "NOVEL";
|
|
475
475
|
gender?: "all" | "male" | "female" | 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<{
|
|
@@ -545,35 +545,37 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
545
545
|
description: z.ZodString;
|
|
546
546
|
}, "strip", z.ZodTypeAny, {
|
|
547
547
|
description: string;
|
|
548
|
-
name?: string | undefined;
|
|
549
548
|
url?: string | undefined;
|
|
549
|
+
name?: string | undefined;
|
|
550
550
|
}, {
|
|
551
551
|
description: string;
|
|
552
|
-
name?: string | undefined;
|
|
553
552
|
url?: string | undefined;
|
|
553
|
+
name?: 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
|
-
name?: string | undefined;
|
|
562
561
|
url?: string | undefined;
|
|
562
|
+
name?: 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
|
-
name?: string | undefined;
|
|
571
570
|
url?: string | undefined;
|
|
571
|
+
name?: string | undefined;
|
|
572
572
|
}[] | undefined;
|
|
573
573
|
}>, "many">>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
name?: string | undefined;
|
|
576
576
|
description?: string | undefined;
|
|
577
|
+
thumbnail?: string | null | undefined;
|
|
578
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
577
579
|
core?: {
|
|
578
580
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
579
581
|
sequential?: boolean | undefined;
|
|
@@ -581,8 +583,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
581
583
|
maxAgentExecutions?: number | null | undefined;
|
|
582
584
|
} | 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,18 +594,20 @@ 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
|
-
name?: string | undefined;
|
|
603
602
|
url?: string | undefined;
|
|
603
|
+
name?: string | undefined;
|
|
604
604
|
}[] | undefined;
|
|
605
605
|
}[] | undefined;
|
|
606
606
|
}, {
|
|
607
607
|
name?: string | undefined;
|
|
608
608
|
description?: string | undefined;
|
|
609
|
+
thumbnail?: string | null | undefined;
|
|
610
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
609
611
|
core?: {
|
|
610
612
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
611
613
|
sequential?: boolean | undefined;
|
|
@@ -613,8 +615,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
613
615
|
maxAgentExecutions?: number | null | undefined;
|
|
614
616
|
} | 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,13 +626,13 @@ 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
|
-
name?: string | undefined;
|
|
635
634
|
url?: string | undefined;
|
|
635
|
+
name?: string | undefined;
|
|
636
636
|
}[] | undefined;
|
|
637
637
|
}[] | undefined;
|
|
638
638
|
}>>;
|
|
@@ -662,14 +662,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
662
662
|
backstory: z.ZodOptional<z.ZodString>;
|
|
663
663
|
}, "strip", z.ZodTypeAny, {
|
|
664
664
|
gender?: string | undefined;
|
|
665
|
-
age?: string | undefined;
|
|
666
665
|
expertise?: string | undefined;
|
|
667
666
|
backstory?: string | undefined;
|
|
667
|
+
age?: string | undefined;
|
|
668
668
|
}, {
|
|
669
669
|
gender?: string | undefined;
|
|
670
|
-
age?: string | undefined;
|
|
671
670
|
expertise?: string | undefined;
|
|
672
671
|
backstory?: string | undefined;
|
|
672
|
+
age?: string | undefined;
|
|
673
673
|
}>>;
|
|
674
674
|
speech: z.ZodOptional<z.ZodObject<{
|
|
675
675
|
tone: z.ZodOptional<z.ZodString>;
|
|
@@ -692,16 +692,16 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
692
692
|
mbti: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"INTJ">, z.ZodLiteral<"INTP">, z.ZodLiteral<"ENTJ">, z.ZodLiteral<"ENTP">, z.ZodLiteral<"INFJ">, z.ZodLiteral<"INFP">, z.ZodLiteral<"ENFJ">, z.ZodLiteral<"ENFP">, z.ZodLiteral<"ISTJ">, z.ZodLiteral<"ISFJ">, z.ZodLiteral<"ESTJ">, z.ZodLiteral<"ESFJ">, z.ZodLiteral<"ISTP">, z.ZodLiteral<"ISFP">, z.ZodLiteral<"ESTP">, z.ZodLiteral<"ESFP">]>>;
|
|
693
693
|
zodiac: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Aries">, z.ZodLiteral<"Taurus">, z.ZodLiteral<"Gemini">, z.ZodLiteral<"Cancer">, z.ZodLiteral<"Leo">, z.ZodLiteral<"Virgo">, z.ZodLiteral<"Libra">, z.ZodLiteral<"Scorpio">, z.ZodLiteral<"Sagittarius">, z.ZodLiteral<"Capricorn">, z.ZodLiteral<"Aquarius">, z.ZodLiteral<"Pisces">]>>;
|
|
694
694
|
}, "strip", z.ZodTypeAny, {
|
|
695
|
-
values?: string | undefined;
|
|
696
695
|
traits?: string | undefined;
|
|
697
696
|
interests?: string | undefined;
|
|
697
|
+
values?: string | undefined;
|
|
698
698
|
quirks?: string | undefined;
|
|
699
699
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
700
700
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
701
701
|
}, {
|
|
702
|
-
values?: string | undefined;
|
|
703
702
|
traits?: string | undefined;
|
|
704
703
|
interests?: string | undefined;
|
|
704
|
+
values?: string | undefined;
|
|
705
705
|
quirks?: string | undefined;
|
|
706
706
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
707
707
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -709,9 +709,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
709
709
|
}, "strip", z.ZodTypeAny, {
|
|
710
710
|
background?: {
|
|
711
711
|
gender?: string | undefined;
|
|
712
|
-
age?: string | undefined;
|
|
713
712
|
expertise?: string | undefined;
|
|
714
713
|
backstory?: string | undefined;
|
|
714
|
+
age?: string | undefined;
|
|
715
715
|
} | undefined;
|
|
716
716
|
speech?: {
|
|
717
717
|
tone?: string | undefined;
|
|
@@ -719,9 +719,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
719
719
|
formality?: string | undefined;
|
|
720
720
|
} | undefined;
|
|
721
721
|
personality?: {
|
|
722
|
-
values?: string | undefined;
|
|
723
722
|
traits?: string | undefined;
|
|
724
723
|
interests?: string | undefined;
|
|
724
|
+
values?: string | undefined;
|
|
725
725
|
quirks?: string | undefined;
|
|
726
726
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
727
727
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -729,9 +729,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
729
729
|
}, {
|
|
730
730
|
background?: {
|
|
731
731
|
gender?: string | undefined;
|
|
732
|
-
age?: string | undefined;
|
|
733
732
|
expertise?: string | undefined;
|
|
734
733
|
backstory?: string | undefined;
|
|
734
|
+
age?: string | undefined;
|
|
735
735
|
} | undefined;
|
|
736
736
|
speech?: {
|
|
737
737
|
tone?: string | undefined;
|
|
@@ -739,9 +739,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
739
739
|
formality?: string | undefined;
|
|
740
740
|
} | undefined;
|
|
741
741
|
personality?: {
|
|
742
|
-
values?: string | undefined;
|
|
743
742
|
traits?: string | undefined;
|
|
744
743
|
interests?: string | undefined;
|
|
744
|
+
values?: string | undefined;
|
|
745
745
|
quirks?: string | undefined;
|
|
746
746
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
747
747
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -750,13 +750,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
750
750
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
|
752
752
|
role?: string | undefined;
|
|
753
|
+
name?: string | undefined;
|
|
753
754
|
avatar?: 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;
|
|
@@ -765,9 +766,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
765
766
|
character?: {
|
|
766
767
|
background?: {
|
|
767
768
|
gender?: string | undefined;
|
|
768
|
-
age?: string | undefined;
|
|
769
769
|
expertise?: string | undefined;
|
|
770
770
|
backstory?: string | undefined;
|
|
771
|
+
age?: string | undefined;
|
|
771
772
|
} | undefined;
|
|
772
773
|
speech?: {
|
|
773
774
|
tone?: string | undefined;
|
|
@@ -775,24 +776,24 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
775
776
|
formality?: string | undefined;
|
|
776
777
|
} | undefined;
|
|
777
778
|
personality?: {
|
|
778
|
-
values?: string | undefined;
|
|
779
779
|
traits?: string | undefined;
|
|
780
780
|
interests?: string | undefined;
|
|
781
|
+
values?: string | undefined;
|
|
781
782
|
quirks?: string | undefined;
|
|
782
783
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
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
788
|
role?: string | undefined;
|
|
789
|
+
name?: string | undefined;
|
|
789
790
|
avatar?: 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;
|
|
@@ -801,9 +802,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
801
802
|
character?: {
|
|
802
803
|
background?: {
|
|
803
804
|
gender?: string | undefined;
|
|
804
|
-
age?: string | undefined;
|
|
805
805
|
expertise?: string | undefined;
|
|
806
806
|
backstory?: string | undefined;
|
|
807
|
+
age?: string | undefined;
|
|
807
808
|
} | undefined;
|
|
808
809
|
speech?: {
|
|
809
810
|
tone?: string | undefined;
|
|
@@ -811,21 +812,20 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
811
812
|
formality?: string | undefined;
|
|
812
813
|
} | undefined;
|
|
813
814
|
personality?: {
|
|
814
|
-
values?: string | undefined;
|
|
815
815
|
traits?: string | undefined;
|
|
816
816
|
interests?: string | undefined;
|
|
817
|
+
values?: string | undefined;
|
|
817
818
|
quirks?: string | undefined;
|
|
818
819
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
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;
|
|
826
826
|
presetShortDescription: string;
|
|
827
|
-
locationId?: bigint | undefined;
|
|
828
827
|
name?: string | undefined;
|
|
828
|
+
locationId?: bigint | undefined;
|
|
829
829
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
830
830
|
hashtags?: string[] | undefined;
|
|
831
831
|
isAllowImport?: boolean | undefined;
|
|
@@ -833,6 +833,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
833
833
|
locationConfig?: {
|
|
834
834
|
name?: string | undefined;
|
|
835
835
|
description?: string | undefined;
|
|
836
|
+
thumbnail?: string | null | undefined;
|
|
837
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
836
838
|
core?: {
|
|
837
839
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
838
840
|
sequential?: boolean | undefined;
|
|
@@ -840,8 +842,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
840
842
|
maxAgentExecutions?: number | null | undefined;
|
|
841
843
|
} | 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,25 +853,26 @@ 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
|
-
name?: string | undefined;
|
|
862
861
|
url?: string | undefined;
|
|
862
|
+
name?: string | undefined;
|
|
863
863
|
}[] | undefined;
|
|
864
864
|
}[] | undefined;
|
|
865
865
|
} | undefined;
|
|
866
866
|
agentConfigs?: {
|
|
867
867
|
role?: string | undefined;
|
|
868
|
+
name?: string | undefined;
|
|
868
869
|
avatar?: 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;
|
|
@@ -880,9 +881,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
880
881
|
character?: {
|
|
881
882
|
background?: {
|
|
882
883
|
gender?: string | undefined;
|
|
883
|
-
age?: string | undefined;
|
|
884
884
|
expertise?: string | undefined;
|
|
885
885
|
backstory?: string | undefined;
|
|
886
|
+
age?: string | undefined;
|
|
886
887
|
} | undefined;
|
|
887
888
|
speech?: {
|
|
888
889
|
tone?: string | undefined;
|
|
@@ -890,21 +891,20 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
890
891
|
formality?: string | undefined;
|
|
891
892
|
} | undefined;
|
|
892
893
|
personality?: {
|
|
893
|
-
values?: string | undefined;
|
|
894
894
|
traits?: string | undefined;
|
|
895
895
|
interests?: string | undefined;
|
|
896
|
+
values?: string | undefined;
|
|
896
897
|
quirks?: string | undefined;
|
|
897
898
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
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;
|
|
905
905
|
presetShortDescription: string;
|
|
906
|
-
locationId?: bigint | undefined;
|
|
907
906
|
name?: string | undefined;
|
|
907
|
+
locationId?: bigint | undefined;
|
|
908
908
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
909
909
|
hashtags?: string[] | undefined;
|
|
910
910
|
isAllowImport?: boolean | undefined;
|
|
@@ -912,6 +912,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
912
912
|
locationConfig?: {
|
|
913
913
|
name?: string | undefined;
|
|
914
914
|
description?: string | undefined;
|
|
915
|
+
thumbnail?: string | null | undefined;
|
|
916
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
915
917
|
core?: {
|
|
916
918
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
917
919
|
sequential?: boolean | undefined;
|
|
@@ -919,8 +921,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
919
921
|
maxAgentExecutions?: number | null | undefined;
|
|
920
922
|
} | 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,25 +932,26 @@ 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
|
-
name?: string | undefined;
|
|
941
940
|
url?: string | undefined;
|
|
941
|
+
name?: string | undefined;
|
|
942
942
|
}[] | undefined;
|
|
943
943
|
}[] | undefined;
|
|
944
944
|
} | undefined;
|
|
945
945
|
agentConfigs?: {
|
|
946
946
|
role?: string | undefined;
|
|
947
|
+
name?: string | undefined;
|
|
947
948
|
avatar?: 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;
|
|
@@ -959,9 +960,9 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
959
960
|
character?: {
|
|
960
961
|
background?: {
|
|
961
962
|
gender?: string | undefined;
|
|
962
|
-
age?: string | undefined;
|
|
963
963
|
expertise?: string | undefined;
|
|
964
964
|
backstory?: string | undefined;
|
|
965
|
+
age?: string | undefined;
|
|
965
966
|
} | undefined;
|
|
966
967
|
speech?: {
|
|
967
968
|
tone?: string | undefined;
|
|
@@ -969,15 +970,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
969
970
|
formality?: string | undefined;
|
|
970
971
|
} | undefined;
|
|
971
972
|
personality?: {
|
|
972
|
-
values?: string | undefined;
|
|
973
973
|
traits?: string | undefined;
|
|
974
974
|
interests?: string | undefined;
|
|
975
|
+
values?: string | undefined;
|
|
975
976
|
quirks?: string | undefined;
|
|
976
977
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
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>;
|
|
@@ -1025,12 +1025,12 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1025
1025
|
text: z.ZodString;
|
|
1026
1026
|
showUpdates: z.ZodOptional<z.ZodBoolean>;
|
|
1027
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1028
|
-
name: string;
|
|
1029
1028
|
text: string;
|
|
1029
|
+
name: string;
|
|
1030
1030
|
showUpdates?: boolean | undefined;
|
|
1031
1031
|
}, {
|
|
1032
|
-
name: string;
|
|
1033
1032
|
text: string;
|
|
1033
|
+
name: string;
|
|
1034
1034
|
showUpdates?: boolean | undefined;
|
|
1035
1035
|
}>, "many">>;
|
|
1036
1036
|
mission: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1064,15 +1064,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1064
1064
|
message: z.ZodOptional<z.ZodString>;
|
|
1065
1065
|
image: z.ZodOptional<z.ZodString>;
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
|
-
entityType: "
|
|
1067
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
1068
1068
|
entityId: bigint;
|
|
1069
|
-
message?: string | undefined;
|
|
1070
1069
|
image?: string | undefined;
|
|
1070
|
+
message?: string | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
-
entityType: "
|
|
1072
|
+
entityType: "user" | "system" | "agent" | "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
|
name: z.ZodString;
|
|
@@ -1081,16 +1081,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1081
1081
|
referenceAvatar: z.ZodString;
|
|
1082
1082
|
appearance: z.ZodString;
|
|
1083
1083
|
}, "strip", z.ZodTypeAny, {
|
|
1084
|
+
name: string;
|
|
1084
1085
|
avatar: string;
|
|
1085
1086
|
referenceAvatar: string;
|
|
1086
1087
|
appearance: string;
|
|
1087
|
-
name: string;
|
|
1088
1088
|
role?: string | undefined;
|
|
1089
1089
|
}, {
|
|
1090
|
+
name: string;
|
|
1090
1091
|
avatar: string;
|
|
1091
1092
|
referenceAvatar: string;
|
|
1092
1093
|
appearance: string;
|
|
1093
|
-
name: string;
|
|
1094
1094
|
role?: string | undefined;
|
|
1095
1095
|
}>>>;
|
|
1096
1096
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1146,7 +1146,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1146
1146
|
maxLength: number;
|
|
1147
1147
|
}>, "many">>;
|
|
1148
1148
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1149
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
1149
|
+
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">[]]>;
|
|
1150
1150
|
name: z.ZodString;
|
|
1151
1151
|
appearance: z.ZodString;
|
|
1152
1152
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1155,35 +1155,37 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1155
1155
|
description: z.ZodString;
|
|
1156
1156
|
}, "strip", z.ZodTypeAny, {
|
|
1157
1157
|
description: string;
|
|
1158
|
-
name?: string | undefined;
|
|
1159
1158
|
url?: string | undefined;
|
|
1159
|
+
name?: string | undefined;
|
|
1160
1160
|
}, {
|
|
1161
1161
|
description: string;
|
|
1162
|
-
name?: string | undefined;
|
|
1163
1162
|
url?: string | undefined;
|
|
1163
|
+
name?: string | undefined;
|
|
1164
1164
|
}>, "many">>;
|
|
1165
1165
|
}, "strip", z.ZodTypeAny, {
|
|
1166
|
-
appearance: string;
|
|
1167
1166
|
name: string;
|
|
1168
|
-
|
|
1167
|
+
appearance: string;
|
|
1168
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1169
1169
|
images?: {
|
|
1170
1170
|
description: string;
|
|
1171
|
-
name?: string | undefined;
|
|
1172
1171
|
url?: string | undefined;
|
|
1172
|
+
name?: string | undefined;
|
|
1173
1173
|
}[] | undefined;
|
|
1174
1174
|
}, {
|
|
1175
|
-
appearance: string;
|
|
1176
1175
|
name: string;
|
|
1177
|
-
|
|
1176
|
+
appearance: string;
|
|
1177
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1178
1178
|
images?: {
|
|
1179
1179
|
description: string;
|
|
1180
|
-
name?: string | undefined;
|
|
1181
1180
|
url?: string | undefined;
|
|
1181
|
+
name?: string | undefined;
|
|
1182
1182
|
}[] | undefined;
|
|
1183
1183
|
}>, "many">>;
|
|
1184
1184
|
}, "strip", z.ZodTypeAny, {
|
|
1185
1185
|
name?: string | undefined;
|
|
1186
1186
|
description?: string | undefined;
|
|
1187
|
+
thumbnail?: string | null | undefined;
|
|
1188
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1187
1189
|
core?: {
|
|
1188
1190
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1189
1191
|
sequential?: boolean | undefined;
|
|
@@ -1191,8 +1193,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1191
1193
|
maxAgentExecutions?: number | null | undefined;
|
|
1192
1194
|
} | undefined;
|
|
1193
1195
|
rules?: string[] | undefined;
|
|
1194
|
-
thumbnail?: string | null | undefined;
|
|
1195
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1196
1196
|
canvases?: {
|
|
1197
1197
|
name: string;
|
|
1198
1198
|
description: string;
|
|
@@ -1204,18 +1204,20 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1204
1204
|
maxLength: number;
|
|
1205
1205
|
}[] | undefined;
|
|
1206
1206
|
gimmicks?: {
|
|
1207
|
-
appearance: string;
|
|
1208
1207
|
name: string;
|
|
1209
|
-
|
|
1208
|
+
appearance: string;
|
|
1209
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1210
1210
|
images?: {
|
|
1211
1211
|
description: string;
|
|
1212
|
-
name?: string | undefined;
|
|
1213
1212
|
url?: string | undefined;
|
|
1213
|
+
name?: string | undefined;
|
|
1214
1214
|
}[] | undefined;
|
|
1215
1215
|
}[] | undefined;
|
|
1216
1216
|
}, {
|
|
1217
1217
|
name?: string | undefined;
|
|
1218
1218
|
description?: string | undefined;
|
|
1219
|
+
thumbnail?: string | null | undefined;
|
|
1220
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1219
1221
|
core?: {
|
|
1220
1222
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1221
1223
|
sequential?: boolean | undefined;
|
|
@@ -1223,8 +1225,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1223
1225
|
maxAgentExecutions?: number | null | undefined;
|
|
1224
1226
|
} | undefined;
|
|
1225
1227
|
rules?: string[] | undefined;
|
|
1226
|
-
thumbnail?: string | null | undefined;
|
|
1227
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1228
1228
|
canvases?: {
|
|
1229
1229
|
name: string;
|
|
1230
1230
|
description: string;
|
|
@@ -1236,13 +1236,13 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1236
1236
|
maxLength: number;
|
|
1237
1237
|
}[] | undefined;
|
|
1238
1238
|
gimmicks?: {
|
|
1239
|
-
appearance: string;
|
|
1240
1239
|
name: string;
|
|
1241
|
-
|
|
1240
|
+
appearance: string;
|
|
1241
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1242
1242
|
images?: {
|
|
1243
1243
|
description: string;
|
|
1244
|
-
name?: string | undefined;
|
|
1245
1244
|
url?: string | undefined;
|
|
1245
|
+
name?: string | undefined;
|
|
1246
1246
|
}[] | undefined;
|
|
1247
1247
|
}[] | undefined;
|
|
1248
1248
|
}>>;
|
|
@@ -1272,14 +1272,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1272
1272
|
backstory: z.ZodOptional<z.ZodString>;
|
|
1273
1273
|
}, "strip", z.ZodTypeAny, {
|
|
1274
1274
|
gender?: string | undefined;
|
|
1275
|
-
age?: string | undefined;
|
|
1276
1275
|
expertise?: string | undefined;
|
|
1277
1276
|
backstory?: string | undefined;
|
|
1277
|
+
age?: string | undefined;
|
|
1278
1278
|
}, {
|
|
1279
1279
|
gender?: string | undefined;
|
|
1280
|
-
age?: string | undefined;
|
|
1281
1280
|
expertise?: string | undefined;
|
|
1282
1281
|
backstory?: string | undefined;
|
|
1282
|
+
age?: string | undefined;
|
|
1283
1283
|
}>>;
|
|
1284
1284
|
speech: z.ZodOptional<z.ZodObject<{
|
|
1285
1285
|
tone: z.ZodOptional<z.ZodString>;
|
|
@@ -1302,16 +1302,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1302
1302
|
mbti: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"INTJ">, z.ZodLiteral<"INTP">, z.ZodLiteral<"ENTJ">, z.ZodLiteral<"ENTP">, z.ZodLiteral<"INFJ">, z.ZodLiteral<"INFP">, z.ZodLiteral<"ENFJ">, z.ZodLiteral<"ENFP">, z.ZodLiteral<"ISTJ">, z.ZodLiteral<"ISFJ">, z.ZodLiteral<"ESTJ">, z.ZodLiteral<"ESFJ">, z.ZodLiteral<"ISTP">, z.ZodLiteral<"ISFP">, z.ZodLiteral<"ESTP">, z.ZodLiteral<"ESFP">]>>;
|
|
1303
1303
|
zodiac: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Aries">, z.ZodLiteral<"Taurus">, z.ZodLiteral<"Gemini">, z.ZodLiteral<"Cancer">, z.ZodLiteral<"Leo">, z.ZodLiteral<"Virgo">, z.ZodLiteral<"Libra">, z.ZodLiteral<"Scorpio">, z.ZodLiteral<"Sagittarius">, z.ZodLiteral<"Capricorn">, z.ZodLiteral<"Aquarius">, z.ZodLiteral<"Pisces">]>>;
|
|
1304
1304
|
}, "strip", z.ZodTypeAny, {
|
|
1305
|
-
values?: string | undefined;
|
|
1306
1305
|
traits?: string | undefined;
|
|
1307
1306
|
interests?: string | undefined;
|
|
1307
|
+
values?: string | undefined;
|
|
1308
1308
|
quirks?: string | undefined;
|
|
1309
1309
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1310
1310
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1311
1311
|
}, {
|
|
1312
|
-
values?: string | undefined;
|
|
1313
1312
|
traits?: string | undefined;
|
|
1314
1313
|
interests?: string | undefined;
|
|
1314
|
+
values?: string | undefined;
|
|
1315
1315
|
quirks?: string | undefined;
|
|
1316
1316
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1317
1317
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -1319,9 +1319,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1319
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1320
1320
|
background?: {
|
|
1321
1321
|
gender?: string | undefined;
|
|
1322
|
-
age?: string | undefined;
|
|
1323
1322
|
expertise?: string | undefined;
|
|
1324
1323
|
backstory?: string | undefined;
|
|
1324
|
+
age?: string | undefined;
|
|
1325
1325
|
} | undefined;
|
|
1326
1326
|
speech?: {
|
|
1327
1327
|
tone?: string | undefined;
|
|
@@ -1329,9 +1329,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1329
1329
|
formality?: string | undefined;
|
|
1330
1330
|
} | undefined;
|
|
1331
1331
|
personality?: {
|
|
1332
|
-
values?: string | undefined;
|
|
1333
1332
|
traits?: string | undefined;
|
|
1334
1333
|
interests?: string | undefined;
|
|
1334
|
+
values?: string | undefined;
|
|
1335
1335
|
quirks?: string | undefined;
|
|
1336
1336
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1337
1337
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -1339,9 +1339,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1339
1339
|
}, {
|
|
1340
1340
|
background?: {
|
|
1341
1341
|
gender?: string | undefined;
|
|
1342
|
-
age?: string | undefined;
|
|
1343
1342
|
expertise?: string | undefined;
|
|
1344
1343
|
backstory?: string | undefined;
|
|
1344
|
+
age?: string | undefined;
|
|
1345
1345
|
} | undefined;
|
|
1346
1346
|
speech?: {
|
|
1347
1347
|
tone?: string | undefined;
|
|
@@ -1349,9 +1349,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1349
1349
|
formality?: string | undefined;
|
|
1350
1350
|
} | undefined;
|
|
1351
1351
|
personality?: {
|
|
1352
|
-
values?: string | undefined;
|
|
1353
1352
|
traits?: string | undefined;
|
|
1354
1353
|
interests?: string | undefined;
|
|
1354
|
+
values?: string | undefined;
|
|
1355
1355
|
quirks?: string | undefined;
|
|
1356
1356
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1357
1357
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
@@ -1360,13 +1360,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1360
1360
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1361
1361
|
}, "strip", z.ZodTypeAny, {
|
|
1362
1362
|
role?: string | undefined;
|
|
1363
|
+
name?: string | undefined;
|
|
1363
1364
|
avatar?: string | undefined;
|
|
1364
1365
|
referenceAvatar?: string | undefined;
|
|
1365
1366
|
appearance?: string | undefined;
|
|
1366
|
-
name?: string | undefined;
|
|
1367
1367
|
core?: {
|
|
1368
1368
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1369
1369
|
} | undefined;
|
|
1370
|
+
rules?: string[] | undefined;
|
|
1370
1371
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1371
1372
|
languages?: string[] | undefined;
|
|
1372
1373
|
timeZone?: string | undefined;
|
|
@@ -1375,9 +1376,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1375
1376
|
character?: {
|
|
1376
1377
|
background?: {
|
|
1377
1378
|
gender?: string | undefined;
|
|
1378
|
-
age?: string | undefined;
|
|
1379
1379
|
expertise?: string | undefined;
|
|
1380
1380
|
backstory?: string | undefined;
|
|
1381
|
+
age?: string | undefined;
|
|
1381
1382
|
} | undefined;
|
|
1382
1383
|
speech?: {
|
|
1383
1384
|
tone?: string | undefined;
|
|
@@ -1385,24 +1386,24 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1385
1386
|
formality?: string | undefined;
|
|
1386
1387
|
} | undefined;
|
|
1387
1388
|
personality?: {
|
|
1388
|
-
values?: string | undefined;
|
|
1389
1389
|
traits?: string | undefined;
|
|
1390
1390
|
interests?: string | undefined;
|
|
1391
|
+
values?: string | undefined;
|
|
1391
1392
|
quirks?: string | undefined;
|
|
1392
1393
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1393
1394
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1394
1395
|
} | undefined;
|
|
1395
1396
|
} | undefined;
|
|
1396
|
-
rules?: string[] | undefined;
|
|
1397
1397
|
}, {
|
|
1398
1398
|
role?: string | undefined;
|
|
1399
|
+
name?: string | undefined;
|
|
1399
1400
|
avatar?: string | undefined;
|
|
1400
1401
|
referenceAvatar?: string | undefined;
|
|
1401
1402
|
appearance?: string | undefined;
|
|
1402
|
-
name?: string | undefined;
|
|
1403
1403
|
core?: {
|
|
1404
1404
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1405
1405
|
} | undefined;
|
|
1406
|
+
rules?: string[] | undefined;
|
|
1406
1407
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1407
1408
|
languages?: string[] | undefined;
|
|
1408
1409
|
timeZone?: string | undefined;
|
|
@@ -1411,9 +1412,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1411
1412
|
character?: {
|
|
1412
1413
|
background?: {
|
|
1413
1414
|
gender?: string | undefined;
|
|
1414
|
-
age?: string | undefined;
|
|
1415
1415
|
expertise?: string | undefined;
|
|
1416
1416
|
backstory?: string | undefined;
|
|
1417
|
+
age?: string | undefined;
|
|
1417
1418
|
} | undefined;
|
|
1418
1419
|
speech?: {
|
|
1419
1420
|
tone?: string | undefined;
|
|
@@ -1421,22 +1422,21 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1421
1422
|
formality?: string | undefined;
|
|
1422
1423
|
} | undefined;
|
|
1423
1424
|
personality?: {
|
|
1424
|
-
values?: string | undefined;
|
|
1425
1425
|
traits?: string | undefined;
|
|
1426
1426
|
interests?: string | undefined;
|
|
1427
|
+
values?: string | undefined;
|
|
1427
1428
|
quirks?: string | undefined;
|
|
1428
1429
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1429
1430
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1430
1431
|
} | undefined;
|
|
1431
1432
|
} | undefined;
|
|
1432
|
-
rules?: string[] | undefined;
|
|
1433
1433
|
}>>, "many">>;
|
|
1434
1434
|
}, "strip", z.ZodTypeAny, {
|
|
1435
1435
|
name?: string | undefined;
|
|
1436
1436
|
thumbnail?: string | undefined;
|
|
1437
1437
|
canvases?: {
|
|
1438
|
-
name: string;
|
|
1439
1438
|
text: string;
|
|
1439
|
+
name: string;
|
|
1440
1440
|
showUpdates?: boolean | undefined;
|
|
1441
1441
|
}[] | undefined;
|
|
1442
1442
|
presetDescription?: string | undefined;
|
|
@@ -1447,6 +1447,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1447
1447
|
locationConfig?: {
|
|
1448
1448
|
name?: string | undefined;
|
|
1449
1449
|
description?: string | undefined;
|
|
1450
|
+
thumbnail?: string | null | undefined;
|
|
1451
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1450
1452
|
core?: {
|
|
1451
1453
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1452
1454
|
sequential?: boolean | undefined;
|
|
@@ -1454,8 +1456,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1454
1456
|
maxAgentExecutions?: number | null | undefined;
|
|
1455
1457
|
} | undefined;
|
|
1456
1458
|
rules?: string[] | undefined;
|
|
1457
|
-
thumbnail?: string | null | undefined;
|
|
1458
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1459
1459
|
canvases?: {
|
|
1460
1460
|
name: string;
|
|
1461
1461
|
description: string;
|
|
@@ -1467,25 +1467,26 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1467
1467
|
maxLength: number;
|
|
1468
1468
|
}[] | undefined;
|
|
1469
1469
|
gimmicks?: {
|
|
1470
|
-
appearance: string;
|
|
1471
1470
|
name: string;
|
|
1472
|
-
|
|
1471
|
+
appearance: string;
|
|
1472
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1473
1473
|
images?: {
|
|
1474
1474
|
description: string;
|
|
1475
|
-
name?: string | undefined;
|
|
1476
1475
|
url?: string | undefined;
|
|
1476
|
+
name?: string | undefined;
|
|
1477
1477
|
}[] | undefined;
|
|
1478
1478
|
}[] | undefined;
|
|
1479
1479
|
} | undefined;
|
|
1480
1480
|
agentConfigs?: ({
|
|
1481
1481
|
role?: string | undefined;
|
|
1482
|
+
name?: string | undefined;
|
|
1482
1483
|
avatar?: string | undefined;
|
|
1483
1484
|
referenceAvatar?: string | undefined;
|
|
1484
1485
|
appearance?: string | undefined;
|
|
1485
|
-
name?: string | undefined;
|
|
1486
1486
|
core?: {
|
|
1487
1487
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1488
1488
|
} | undefined;
|
|
1489
|
+
rules?: string[] | undefined;
|
|
1489
1490
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1490
1491
|
languages?: string[] | undefined;
|
|
1491
1492
|
timeZone?: string | undefined;
|
|
@@ -1494,9 +1495,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1494
1495
|
character?: {
|
|
1495
1496
|
background?: {
|
|
1496
1497
|
gender?: string | undefined;
|
|
1497
|
-
age?: string | undefined;
|
|
1498
1498
|
expertise?: string | undefined;
|
|
1499
1499
|
backstory?: string | undefined;
|
|
1500
|
+
age?: string | undefined;
|
|
1500
1501
|
} | undefined;
|
|
1501
1502
|
speech?: {
|
|
1502
1503
|
tone?: string | undefined;
|
|
@@ -1504,15 +1505,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1504
1505
|
formality?: string | undefined;
|
|
1505
1506
|
} | undefined;
|
|
1506
1507
|
personality?: {
|
|
1507
|
-
values?: string | undefined;
|
|
1508
1508
|
traits?: string | undefined;
|
|
1509
1509
|
interests?: string | undefined;
|
|
1510
|
+
values?: string | undefined;
|
|
1510
1511
|
quirks?: string | undefined;
|
|
1511
1512
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1512
1513
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1513
1514
|
} | undefined;
|
|
1514
1515
|
} | undefined;
|
|
1515
|
-
rules?: string[] | undefined;
|
|
1516
1516
|
} | null)[] | undefined;
|
|
1517
1517
|
thumbnails?: string[] | undefined;
|
|
1518
1518
|
mission?: {
|
|
@@ -1522,16 +1522,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1522
1522
|
}[];
|
|
1523
1523
|
} | null | undefined;
|
|
1524
1524
|
messages?: {
|
|
1525
|
-
entityType: "
|
|
1525
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
1526
1526
|
entityId: bigint;
|
|
1527
|
-
message?: string | undefined;
|
|
1528
1527
|
image?: string | undefined;
|
|
1528
|
+
message?: string | undefined;
|
|
1529
1529
|
}[] | undefined;
|
|
1530
1530
|
userAvatar?: {
|
|
1531
|
+
name: string;
|
|
1531
1532
|
avatar: string;
|
|
1532
1533
|
referenceAvatar: string;
|
|
1533
1534
|
appearance: string;
|
|
1534
|
-
name: string;
|
|
1535
1535
|
role?: string | undefined;
|
|
1536
1536
|
} | null | undefined;
|
|
1537
1537
|
tags?: string[] | undefined;
|
|
@@ -1539,8 +1539,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1539
1539
|
name?: string | undefined;
|
|
1540
1540
|
thumbnail?: string | undefined;
|
|
1541
1541
|
canvases?: {
|
|
1542
|
-
name: string;
|
|
1543
1542
|
text: string;
|
|
1543
|
+
name: string;
|
|
1544
1544
|
showUpdates?: boolean | undefined;
|
|
1545
1545
|
}[] | undefined;
|
|
1546
1546
|
presetDescription?: string | undefined;
|
|
@@ -1551,6 +1551,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1551
1551
|
locationConfig?: {
|
|
1552
1552
|
name?: string | undefined;
|
|
1553
1553
|
description?: string | undefined;
|
|
1554
|
+
thumbnail?: string | null | undefined;
|
|
1555
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1554
1556
|
core?: {
|
|
1555
1557
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
1556
1558
|
sequential?: boolean | undefined;
|
|
@@ -1558,8 +1560,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1558
1560
|
maxAgentExecutions?: number | null | undefined;
|
|
1559
1561
|
} | undefined;
|
|
1560
1562
|
rules?: string[] | undefined;
|
|
1561
|
-
thumbnail?: string | null | undefined;
|
|
1562
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1563
1563
|
canvases?: {
|
|
1564
1564
|
name: string;
|
|
1565
1565
|
description: string;
|
|
@@ -1571,25 +1571,26 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1571
1571
|
maxLength: number;
|
|
1572
1572
|
}[] | undefined;
|
|
1573
1573
|
gimmicks?: {
|
|
1574
|
-
appearance: string;
|
|
1575
1574
|
name: string;
|
|
1576
|
-
|
|
1575
|
+
appearance: string;
|
|
1576
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1577
1577
|
images?: {
|
|
1578
1578
|
description: string;
|
|
1579
|
-
name?: string | undefined;
|
|
1580
1579
|
url?: string | undefined;
|
|
1580
|
+
name?: string | undefined;
|
|
1581
1581
|
}[] | undefined;
|
|
1582
1582
|
}[] | undefined;
|
|
1583
1583
|
} | undefined;
|
|
1584
1584
|
agentConfigs?: ({
|
|
1585
1585
|
role?: string | undefined;
|
|
1586
|
+
name?: string | undefined;
|
|
1586
1587
|
avatar?: string | undefined;
|
|
1587
1588
|
referenceAvatar?: string | undefined;
|
|
1588
1589
|
appearance?: string | undefined;
|
|
1589
|
-
name?: string | undefined;
|
|
1590
1590
|
core?: {
|
|
1591
1591
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1592
1592
|
} | undefined;
|
|
1593
|
+
rules?: string[] | undefined;
|
|
1593
1594
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1594
1595
|
languages?: string[] | undefined;
|
|
1595
1596
|
timeZone?: string | undefined;
|
|
@@ -1598,9 +1599,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1598
1599
|
character?: {
|
|
1599
1600
|
background?: {
|
|
1600
1601
|
gender?: string | undefined;
|
|
1601
|
-
age?: string | undefined;
|
|
1602
1602
|
expertise?: string | undefined;
|
|
1603
1603
|
backstory?: string | undefined;
|
|
1604
|
+
age?: string | undefined;
|
|
1604
1605
|
} | undefined;
|
|
1605
1606
|
speech?: {
|
|
1606
1607
|
tone?: string | undefined;
|
|
@@ -1608,15 +1609,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1608
1609
|
formality?: string | undefined;
|
|
1609
1610
|
} | undefined;
|
|
1610
1611
|
personality?: {
|
|
1611
|
-
values?: string | undefined;
|
|
1612
1612
|
traits?: string | undefined;
|
|
1613
1613
|
interests?: string | undefined;
|
|
1614
|
+
values?: string | undefined;
|
|
1614
1615
|
quirks?: string | undefined;
|
|
1615
1616
|
mbti?: "INTJ" | "INTP" | "ENTJ" | "ENTP" | "INFJ" | "INFP" | "ENFJ" | "ENFP" | "ISTJ" | "ISFJ" | "ESTJ" | "ESFJ" | "ISTP" | "ISFP" | "ESTP" | "ESFP" | undefined;
|
|
1616
1617
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
1617
1618
|
} | undefined;
|
|
1618
1619
|
} | undefined;
|
|
1619
|
-
rules?: string[] | undefined;
|
|
1620
1620
|
} | null)[] | undefined;
|
|
1621
1621
|
thumbnails?: string[] | undefined;
|
|
1622
1622
|
mission?: {
|
|
@@ -1626,16 +1626,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1626
1626
|
}[];
|
|
1627
1627
|
} | null | undefined;
|
|
1628
1628
|
messages?: {
|
|
1629
|
-
entityType: "
|
|
1629
|
+
entityType: "user" | "system" | "agent" | "gimmick";
|
|
1630
1630
|
entityId: bigint;
|
|
1631
|
-
message?: string | undefined;
|
|
1632
1631
|
image?: string | undefined;
|
|
1632
|
+
message?: string | undefined;
|
|
1633
1633
|
}[] | undefined;
|
|
1634
1634
|
userAvatar?: {
|
|
1635
|
+
name: string;
|
|
1635
1636
|
avatar: string;
|
|
1636
1637
|
referenceAvatar: string;
|
|
1637
1638
|
appearance: string;
|
|
1638
|
-
name: string;
|
|
1639
1639
|
role?: string | undefined;
|
|
1640
1640
|
} | null | undefined;
|
|
1641
1641
|
tags?: string[] | undefined;
|
|
@@ -1996,7 +1996,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1996
1996
|
maxLength: number;
|
|
1997
1997
|
}>, "many">>;
|
|
1998
1998
|
gimmicks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1999
|
-
core: z.ZodUnion<[z.ZodLiteral<"
|
|
1999
|
+
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">[]]>;
|
|
2000
2000
|
name: z.ZodString;
|
|
2001
2001
|
appearance: z.ZodString;
|
|
2002
2002
|
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2005,35 +2005,37 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2005
2005
|
description: z.ZodString;
|
|
2006
2006
|
}, "strip", z.ZodTypeAny, {
|
|
2007
2007
|
description: string;
|
|
2008
|
-
name?: string | undefined;
|
|
2009
2008
|
url?: string | undefined;
|
|
2009
|
+
name?: string | undefined;
|
|
2010
2010
|
}, {
|
|
2011
2011
|
description: string;
|
|
2012
|
-
name?: string | undefined;
|
|
2013
2012
|
url?: string | undefined;
|
|
2013
|
+
name?: string | undefined;
|
|
2014
2014
|
}>, "many">>;
|
|
2015
2015
|
}, "strip", z.ZodTypeAny, {
|
|
2016
|
-
appearance: string;
|
|
2017
2016
|
name: string;
|
|
2018
|
-
|
|
2017
|
+
appearance: string;
|
|
2018
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2019
2019
|
images?: {
|
|
2020
2020
|
description: string;
|
|
2021
|
-
name?: string | undefined;
|
|
2022
2021
|
url?: string | undefined;
|
|
2022
|
+
name?: string | undefined;
|
|
2023
2023
|
}[] | undefined;
|
|
2024
2024
|
}, {
|
|
2025
|
-
appearance: string;
|
|
2026
2025
|
name: string;
|
|
2027
|
-
|
|
2026
|
+
appearance: string;
|
|
2027
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2028
2028
|
images?: {
|
|
2029
2029
|
description: string;
|
|
2030
|
-
name?: string | undefined;
|
|
2031
2030
|
url?: string | undefined;
|
|
2031
|
+
name?: string | undefined;
|
|
2032
2032
|
}[] | undefined;
|
|
2033
2033
|
}>, "many">>;
|
|
2034
2034
|
}, "strict", z.ZodTypeAny, {
|
|
2035
2035
|
name?: string | undefined;
|
|
2036
2036
|
description?: string | undefined;
|
|
2037
|
+
thumbnail?: string | null | undefined;
|
|
2038
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2037
2039
|
core?: {
|
|
2038
2040
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2039
2041
|
sequential?: boolean | undefined;
|
|
@@ -2041,8 +2043,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2041
2043
|
maxAgentExecutions?: number | null | undefined;
|
|
2042
2044
|
} | undefined;
|
|
2043
2045
|
rules?: string[] | undefined;
|
|
2044
|
-
thumbnail?: string | null | undefined;
|
|
2045
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2046
2046
|
canvases?: {
|
|
2047
2047
|
name: string;
|
|
2048
2048
|
description: string;
|
|
@@ -2054,18 +2054,20 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2054
2054
|
maxLength: number;
|
|
2055
2055
|
}[] | undefined;
|
|
2056
2056
|
gimmicks?: {
|
|
2057
|
-
appearance: string;
|
|
2058
2057
|
name: string;
|
|
2059
|
-
|
|
2058
|
+
appearance: string;
|
|
2059
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2060
2060
|
images?: {
|
|
2061
2061
|
description: string;
|
|
2062
|
-
name?: string | undefined;
|
|
2063
2062
|
url?: string | undefined;
|
|
2063
|
+
name?: string | undefined;
|
|
2064
2064
|
}[] | undefined;
|
|
2065
2065
|
}[] | undefined;
|
|
2066
2066
|
}, {
|
|
2067
2067
|
name?: string | undefined;
|
|
2068
2068
|
description?: string | undefined;
|
|
2069
|
+
thumbnail?: string | null | undefined;
|
|
2070
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2069
2071
|
core?: {
|
|
2070
2072
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2071
2073
|
sequential?: boolean | undefined;
|
|
@@ -2073,8 +2075,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2073
2075
|
maxAgentExecutions?: number | null | undefined;
|
|
2074
2076
|
} | undefined;
|
|
2075
2077
|
rules?: string[] | undefined;
|
|
2076
|
-
thumbnail?: string | null | undefined;
|
|
2077
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2078
2078
|
canvases?: {
|
|
2079
2079
|
name: string;
|
|
2080
2080
|
description: string;
|
|
@@ -2086,13 +2086,13 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2086
2086
|
maxLength: number;
|
|
2087
2087
|
}[] | undefined;
|
|
2088
2088
|
gimmicks?: {
|
|
2089
|
-
appearance: string;
|
|
2090
2089
|
name: string;
|
|
2091
|
-
|
|
2090
|
+
appearance: string;
|
|
2091
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2092
2092
|
images?: {
|
|
2093
2093
|
description: string;
|
|
2094
|
-
name?: string | undefined;
|
|
2095
2094
|
url?: string | undefined;
|
|
2095
|
+
name?: string | undefined;
|
|
2096
2096
|
}[] | undefined;
|
|
2097
2097
|
}[] | undefined;
|
|
2098
2098
|
}>;
|
|
@@ -2104,6 +2104,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2104
2104
|
config: {
|
|
2105
2105
|
name?: string | undefined;
|
|
2106
2106
|
description?: string | undefined;
|
|
2107
|
+
thumbnail?: string | null | undefined;
|
|
2108
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2107
2109
|
core?: {
|
|
2108
2110
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2109
2111
|
sequential?: boolean | undefined;
|
|
@@ -2111,8 +2113,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2111
2113
|
maxAgentExecutions?: number | null | undefined;
|
|
2112
2114
|
} | undefined;
|
|
2113
2115
|
rules?: string[] | undefined;
|
|
2114
|
-
thumbnail?: string | null | undefined;
|
|
2115
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2116
2116
|
canvases?: {
|
|
2117
2117
|
name: string;
|
|
2118
2118
|
description: string;
|
|
@@ -2124,13 +2124,13 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2124
2124
|
maxLength: number;
|
|
2125
2125
|
}[] | undefined;
|
|
2126
2126
|
gimmicks?: {
|
|
2127
|
-
appearance: string;
|
|
2128
2127
|
name: string;
|
|
2129
|
-
|
|
2128
|
+
appearance: string;
|
|
2129
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2130
2130
|
images?: {
|
|
2131
2131
|
description: string;
|
|
2132
|
-
name?: string | undefined;
|
|
2133
2132
|
url?: string | undefined;
|
|
2133
|
+
name?: string | undefined;
|
|
2134
2134
|
}[] | undefined;
|
|
2135
2135
|
}[] | undefined;
|
|
2136
2136
|
};
|
|
@@ -2139,6 +2139,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2139
2139
|
config: {
|
|
2140
2140
|
name?: string | undefined;
|
|
2141
2141
|
description?: string | undefined;
|
|
2142
|
+
thumbnail?: string | null | undefined;
|
|
2143
|
+
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2142
2144
|
core?: {
|
|
2143
2145
|
name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
|
|
2144
2146
|
sequential?: boolean | undefined;
|
|
@@ -2146,8 +2148,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2146
2148
|
maxAgentExecutions?: number | null | undefined;
|
|
2147
2149
|
} | undefined;
|
|
2148
2150
|
rules?: string[] | undefined;
|
|
2149
|
-
thumbnail?: string | null | undefined;
|
|
2150
|
-
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2151
2151
|
canvases?: {
|
|
2152
2152
|
name: string;
|
|
2153
2153
|
description: string;
|
|
@@ -2159,13 +2159,13 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2159
2159
|
maxLength: number;
|
|
2160
2160
|
}[] | undefined;
|
|
2161
2161
|
gimmicks?: {
|
|
2162
|
-
appearance: string;
|
|
2163
2162
|
name: string;
|
|
2164
|
-
|
|
2163
|
+
appearance: string;
|
|
2164
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2165
2165
|
images?: {
|
|
2166
2166
|
description: string;
|
|
2167
|
-
name?: string | undefined;
|
|
2168
2167
|
url?: string | undefined;
|
|
2168
|
+
name?: string | undefined;
|
|
2169
2169
|
}[] | undefined;
|
|
2170
2170
|
}[] | undefined;
|
|
2171
2171
|
};
|
|
@@ -2217,8 +2217,8 @@ export declare const GetAgentHelperLocationQuerySchema: z.ZodObject<{
|
|
|
2217
2217
|
readonly MINIMO: "MINIMO";
|
|
2218
2218
|
}>>>;
|
|
2219
2219
|
}, "strip", z.ZodTypeAny, {
|
|
2220
|
-
agentId: bigint;
|
|
2221
2220
|
platform: "API" | "MINIMO";
|
|
2221
|
+
agentId: bigint;
|
|
2222
2222
|
}, {
|
|
2223
2223
|
agentId: bigint;
|
|
2224
2224
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -2251,8 +2251,8 @@ export declare const GetAgentDmLocationQuerySchema: z.ZodObject<{
|
|
|
2251
2251
|
readonly MINIMO: "MINIMO";
|
|
2252
2252
|
}>>>;
|
|
2253
2253
|
}, "strip", z.ZodTypeAny, {
|
|
2254
|
-
agentId: bigint;
|
|
2255
2254
|
platform: "API" | "MINIMO";
|
|
2255
|
+
agentId: bigint;
|
|
2256
2256
|
}, {
|
|
2257
2257
|
agentId: bigint;
|
|
2258
2258
|
platform?: "API" | "MINIMO" | undefined;
|
|
@@ -2497,7 +2497,7 @@ export declare const UpdateLocationParamsSchema: z.ZodObject<{
|
|
|
2497
2497
|
}>;
|
|
2498
2498
|
export type UpdateLocationParamsDto = z.infer<typeof UpdateLocationParamsSchema>;
|
|
2499
2499
|
export declare const UpdateLocationBodySchema: z.ZodObject<{
|
|
2500
|
-
overrideAgentLlmLevel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FREE", "
|
|
2500
|
+
overrideAgentLlmLevel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FREE", "BASE", "PRO", "ULTRA"]>>>;
|
|
2501
2501
|
visibility: z.ZodOptional<z.ZodEnum<["private", "public", "publish"]>>;
|
|
2502
2502
|
maxUsers: z.ZodOptional<z.ZodNumber>;
|
|
2503
2503
|
publishDescription: z.ZodOptional<z.ZodString>;
|
|
@@ -2511,7 +2511,7 @@ export declare const UpdateLocationBodySchema: z.ZodObject<{
|
|
|
2511
2511
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
2512
2512
|
hashtags?: string[] | undefined;
|
|
2513
2513
|
isSensitive?: boolean | undefined;
|
|
2514
|
-
overrideAgentLlmLevel?: "FREE" | "
|
|
2514
|
+
overrideAgentLlmLevel?: "FREE" | "BASE" | "PRO" | "ULTRA" | null | undefined;
|
|
2515
2515
|
maxUsers?: number | undefined;
|
|
2516
2516
|
publishDescription?: string | undefined;
|
|
2517
2517
|
useLocationCreditOnly?: boolean | undefined;
|
|
@@ -2522,7 +2522,7 @@ export declare const UpdateLocationBodySchema: z.ZodObject<{
|
|
|
2522
2522
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
2523
2523
|
hashtags?: string[] | undefined;
|
|
2524
2524
|
isSensitive?: boolean | undefined;
|
|
2525
|
-
overrideAgentLlmLevel?: "FREE" | "
|
|
2525
|
+
overrideAgentLlmLevel?: "FREE" | "BASE" | "PRO" | "ULTRA" | null | undefined;
|
|
2526
2526
|
maxUsers?: number | undefined;
|
|
2527
2527
|
publishDescription?: string | undefined;
|
|
2528
2528
|
useLocationCreditOnly?: boolean | undefined;
|
|
@@ -2547,11 +2547,11 @@ export declare const UpdateLocationCanvasBodySchema: z.ZodObject<{
|
|
|
2547
2547
|
name: z.ZodString;
|
|
2548
2548
|
text: z.ZodString;
|
|
2549
2549
|
}, "strip", z.ZodTypeAny, {
|
|
2550
|
-
name: string;
|
|
2551
2550
|
text: string;
|
|
2552
|
-
}, {
|
|
2553
2551
|
name: string;
|
|
2552
|
+
}, {
|
|
2554
2553
|
text: string;
|
|
2554
|
+
name: string;
|
|
2555
2555
|
}>;
|
|
2556
2556
|
export type UpdateLocationCanvasBodyDto = z.infer<typeof UpdateLocationCanvasBodySchema>;
|
|
2557
2557
|
export interface UpdateLocationCanvasResponseDto {
|
|
@@ -2773,15 +2773,15 @@ export declare const SendLocationMessageSchema: z.ZodObject<{
|
|
|
2773
2773
|
paidCreditOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2774
2774
|
}, "strip", z.ZodTypeAny, {
|
|
2775
2775
|
locationId: bigint;
|
|
2776
|
-
message?: string | undefined;
|
|
2777
2776
|
image?: string | undefined;
|
|
2777
|
+
message?: string | undefined;
|
|
2778
2778
|
action?: string | undefined;
|
|
2779
2779
|
creditAmount?: number | undefined;
|
|
2780
2780
|
paidCreditOnly?: boolean | undefined;
|
|
2781
2781
|
}, {
|
|
2782
2782
|
locationId: bigint;
|
|
2783
|
-
message?: string | undefined;
|
|
2784
2783
|
image?: string | undefined;
|
|
2784
|
+
message?: string | undefined;
|
|
2785
2785
|
action?: string | undefined;
|
|
2786
2786
|
creditAmount?: number | undefined;
|
|
2787
2787
|
paidCreditOnly?: boolean | undefined;
|
|
@@ -2810,12 +2810,12 @@ export declare const UpdateLocationImageSchema: z.ZodObject<{
|
|
|
2810
2810
|
image: z.ZodString;
|
|
2811
2811
|
index: z.ZodOptional<z.ZodNumber>;
|
|
2812
2812
|
}, "strip", z.ZodTypeAny, {
|
|
2813
|
-
locationId: bigint;
|
|
2814
2813
|
image: string;
|
|
2814
|
+
locationId: bigint;
|
|
2815
2815
|
index?: number | undefined;
|
|
2816
2816
|
}, {
|
|
2817
|
-
locationId: bigint;
|
|
2818
2817
|
image: string;
|
|
2818
|
+
locationId: bigint;
|
|
2819
2819
|
index?: number | undefined;
|
|
2820
2820
|
}>;
|
|
2821
2821
|
export type UpdateLocationImageDto = z.infer<typeof UpdateLocationImageSchema>;
|