@little-samo/samo-ai-sdk 0.6.2 → 0.6.4
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 +32 -32
- package/dist/dto/entities/users/user.d.ts +7 -4
- package/dist/dto/entities/users/user.js.map +1 -1
- package/dist/dto/entities/users/user.requests.d.ts +16 -16
- package/dist/dto/locations/location.requests.d.ts +157 -78
- package/dist/dto/locations/location.requests.js +16 -3
- package/dist/dto/locations/location.requests.js.map +1 -1
- package/package.json +1 -1
|
@@ -153,14 +153,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
153
153
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
154
154
|
}, "strict", z.ZodTypeAny, {
|
|
155
155
|
name?: string | undefined;
|
|
156
|
+
role?: string | undefined;
|
|
157
|
+
avatar?: string | undefined;
|
|
158
|
+
referenceAvatar?: string | undefined;
|
|
159
|
+
appearance?: string | undefined;
|
|
156
160
|
core?: {
|
|
157
161
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
158
162
|
} | undefined;
|
|
159
|
-
appearance?: string | undefined;
|
|
160
163
|
rules?: string[] | undefined;
|
|
161
|
-
role?: string | undefined;
|
|
162
|
-
avatar?: string | undefined;
|
|
163
|
-
referenceAvatar?: string | undefined;
|
|
164
164
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
165
165
|
languages?: string[] | undefined;
|
|
166
166
|
timeZone?: string | undefined;
|
|
@@ -189,14 +189,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
}, {
|
|
191
191
|
name?: string | undefined;
|
|
192
|
+
role?: string | undefined;
|
|
193
|
+
avatar?: string | undefined;
|
|
194
|
+
referenceAvatar?: string | undefined;
|
|
195
|
+
appearance?: string | undefined;
|
|
192
196
|
core?: {
|
|
193
197
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
194
198
|
} | undefined;
|
|
195
|
-
appearance?: string | undefined;
|
|
196
199
|
rules?: string[] | undefined;
|
|
197
|
-
role?: string | undefined;
|
|
198
|
-
avatar?: string | undefined;
|
|
199
|
-
referenceAvatar?: string | undefined;
|
|
200
200
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
201
201
|
languages?: string[] | undefined;
|
|
202
202
|
timeZone?: string | undefined;
|
|
@@ -227,14 +227,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
config: {
|
|
229
229
|
name?: string | undefined;
|
|
230
|
+
role?: string | undefined;
|
|
231
|
+
avatar?: string | undefined;
|
|
232
|
+
referenceAvatar?: string | undefined;
|
|
233
|
+
appearance?: string | undefined;
|
|
230
234
|
core?: {
|
|
231
235
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
232
236
|
} | undefined;
|
|
233
|
-
appearance?: string | undefined;
|
|
234
237
|
rules?: string[] | undefined;
|
|
235
|
-
role?: string | undefined;
|
|
236
|
-
avatar?: string | undefined;
|
|
237
|
-
referenceAvatar?: string | undefined;
|
|
238
238
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
239
239
|
languages?: string[] | undefined;
|
|
240
240
|
timeZone?: string | undefined;
|
|
@@ -266,14 +266,14 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
266
266
|
}, {
|
|
267
267
|
config: {
|
|
268
268
|
name?: string | undefined;
|
|
269
|
+
role?: string | undefined;
|
|
270
|
+
avatar?: string | undefined;
|
|
271
|
+
referenceAvatar?: string | undefined;
|
|
272
|
+
appearance?: string | undefined;
|
|
269
273
|
core?: {
|
|
270
274
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
271
275
|
} | undefined;
|
|
272
|
-
appearance?: string | undefined;
|
|
273
276
|
rules?: string[] | undefined;
|
|
274
|
-
role?: string | undefined;
|
|
275
|
-
avatar?: string | undefined;
|
|
276
|
-
referenceAvatar?: string | undefined;
|
|
277
277
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
278
278
|
languages?: string[] | undefined;
|
|
279
279
|
timeZone?: string | undefined;
|
|
@@ -500,14 +500,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
500
500
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
501
501
|
}, "strict", z.ZodTypeAny, {
|
|
502
502
|
name?: string | undefined;
|
|
503
|
+
role?: string | undefined;
|
|
504
|
+
avatar?: string | undefined;
|
|
505
|
+
referenceAvatar?: string | undefined;
|
|
506
|
+
appearance?: string | undefined;
|
|
503
507
|
core?: {
|
|
504
508
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
505
509
|
} | undefined;
|
|
506
|
-
appearance?: string | undefined;
|
|
507
510
|
rules?: string[] | undefined;
|
|
508
|
-
role?: string | undefined;
|
|
509
|
-
avatar?: string | undefined;
|
|
510
|
-
referenceAvatar?: string | undefined;
|
|
511
511
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
512
512
|
languages?: string[] | undefined;
|
|
513
513
|
timeZone?: string | undefined;
|
|
@@ -536,14 +536,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
536
536
|
} | undefined;
|
|
537
537
|
}, {
|
|
538
538
|
name?: string | undefined;
|
|
539
|
+
role?: string | undefined;
|
|
540
|
+
avatar?: string | undefined;
|
|
541
|
+
referenceAvatar?: string | undefined;
|
|
542
|
+
appearance?: string | undefined;
|
|
539
543
|
core?: {
|
|
540
544
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
541
545
|
} | undefined;
|
|
542
|
-
appearance?: string | undefined;
|
|
543
546
|
rules?: string[] | undefined;
|
|
544
|
-
role?: string | undefined;
|
|
545
|
-
avatar?: string | undefined;
|
|
546
|
-
referenceAvatar?: string | undefined;
|
|
547
547
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
548
548
|
languages?: string[] | undefined;
|
|
549
549
|
timeZone?: string | undefined;
|
|
@@ -574,14 +574,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
config: {
|
|
576
576
|
name?: string | undefined;
|
|
577
|
+
role?: string | undefined;
|
|
578
|
+
avatar?: string | undefined;
|
|
579
|
+
referenceAvatar?: string | undefined;
|
|
580
|
+
appearance?: string | undefined;
|
|
577
581
|
core?: {
|
|
578
582
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
579
583
|
} | undefined;
|
|
580
|
-
appearance?: string | undefined;
|
|
581
584
|
rules?: string[] | undefined;
|
|
582
|
-
role?: string | undefined;
|
|
583
|
-
avatar?: string | undefined;
|
|
584
|
-
referenceAvatar?: string | undefined;
|
|
585
585
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
586
586
|
languages?: string[] | undefined;
|
|
587
587
|
timeZone?: string | undefined;
|
|
@@ -612,14 +612,14 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
612
612
|
}, {
|
|
613
613
|
config: {
|
|
614
614
|
name?: string | undefined;
|
|
615
|
+
role?: string | undefined;
|
|
616
|
+
avatar?: string | undefined;
|
|
617
|
+
referenceAvatar?: string | undefined;
|
|
618
|
+
appearance?: string | undefined;
|
|
615
619
|
core?: {
|
|
616
620
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
617
621
|
} | undefined;
|
|
618
|
-
appearance?: string | undefined;
|
|
619
622
|
rules?: string[] | undefined;
|
|
620
|
-
role?: string | undefined;
|
|
621
|
-
avatar?: string | undefined;
|
|
622
|
-
referenceAvatar?: string | undefined;
|
|
623
623
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
624
624
|
languages?: string[] | undefined;
|
|
625
625
|
timeZone?: string | undefined;
|
|
@@ -12,6 +12,7 @@ export interface UserPublicDto {
|
|
|
12
12
|
avatar: string | null;
|
|
13
13
|
referenceAvatar: string | null;
|
|
14
14
|
appearance: string | null;
|
|
15
|
+
level: number;
|
|
15
16
|
}
|
|
16
17
|
export interface UserPrivateDto extends UserPublicDto {
|
|
17
18
|
locale: string;
|
|
@@ -25,6 +26,8 @@ export interface UserPrivateDto extends UserPublicDto {
|
|
|
25
26
|
maxLocationAgentsHardLimit: number;
|
|
26
27
|
maxAgentLocations: number;
|
|
27
28
|
isAllowSensitive: boolean;
|
|
29
|
+
exp: number;
|
|
30
|
+
nextExp: number;
|
|
28
31
|
}
|
|
29
32
|
export declare const UserAvatarSchema: z.ZodObject<{
|
|
30
33
|
name: z.ZodString;
|
|
@@ -33,16 +36,16 @@ export declare const UserAvatarSchema: z.ZodObject<{
|
|
|
33
36
|
referenceAvatar: z.ZodString;
|
|
34
37
|
appearance: z.ZodString;
|
|
35
38
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
avatar: string;
|
|
37
39
|
name: string;
|
|
38
|
-
|
|
40
|
+
avatar: string;
|
|
39
41
|
referenceAvatar: string;
|
|
42
|
+
appearance: string;
|
|
40
43
|
role?: string | undefined;
|
|
41
44
|
}, {
|
|
42
|
-
avatar: string;
|
|
43
45
|
name: string;
|
|
44
|
-
|
|
46
|
+
avatar: string;
|
|
45
47
|
referenceAvatar: string;
|
|
48
|
+
appearance: string;
|
|
46
49
|
role?: string | undefined;
|
|
47
50
|
}>;
|
|
48
51
|
export type UserAvatarDto = z.infer<typeof UserAvatarSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.ts"],"names":[],"mappings":";;;;;;AACA,8CAAoB;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.ts"],"names":[],"mappings":";;;;;;AACA,8CAAoB;AAsCP,QAAA,gBAAgB,GAAG,aAAC,CAAC,MAAM,CAAC;IACvC,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;IACxB,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACpC,MAAM,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;IAC5B,eAAe,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;IACrC,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC;CAChC,CAAC,CAAC"}
|
|
@@ -16,22 +16,22 @@ export declare const UpdateCurrentUserBodySchema: z.ZodObject<{
|
|
|
16
16
|
appearance: z.ZodOptional<z.ZodString>;
|
|
17
17
|
isAllowSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
|
-
birthDate?: Date | undefined;
|
|
20
19
|
avatar?: string | undefined;
|
|
21
|
-
appearance?: string | undefined;
|
|
22
20
|
referenceAvatar?: string | undefined;
|
|
21
|
+
appearance?: string | undefined;
|
|
23
22
|
username?: string | undefined;
|
|
24
23
|
nickname?: string | undefined;
|
|
24
|
+
birthDate?: Date | undefined;
|
|
25
25
|
profilePicture?: string | undefined;
|
|
26
26
|
avatarName?: string | undefined;
|
|
27
27
|
isAllowSensitive?: boolean | undefined;
|
|
28
28
|
}, {
|
|
29
|
-
birthDate?: Date | undefined;
|
|
30
29
|
avatar?: string | undefined;
|
|
31
|
-
appearance?: string | undefined;
|
|
32
30
|
referenceAvatar?: string | undefined;
|
|
31
|
+
appearance?: string | undefined;
|
|
33
32
|
username?: string | undefined;
|
|
34
33
|
nickname?: string | undefined;
|
|
34
|
+
birthDate?: Date | undefined;
|
|
35
35
|
profilePicture?: string | undefined;
|
|
36
36
|
avatarName?: string | undefined;
|
|
37
37
|
isAllowSensitive?: boolean | undefined;
|
|
@@ -56,54 +56,54 @@ export declare const UpdateUserAvatarBodySchema: z.ZodEffects<z.ZodObject<{
|
|
|
56
56
|
referenceAvatar: z.ZodString;
|
|
57
57
|
appearance: z.ZodString;
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
|
-
avatar: string;
|
|
60
59
|
name: string;
|
|
61
|
-
|
|
60
|
+
avatar: string;
|
|
62
61
|
referenceAvatar: string;
|
|
62
|
+
appearance: string;
|
|
63
63
|
role?: string | undefined;
|
|
64
64
|
}, {
|
|
65
|
-
avatar: string;
|
|
66
65
|
name: string;
|
|
67
|
-
|
|
66
|
+
avatar: string;
|
|
68
67
|
referenceAvatar: string;
|
|
68
|
+
appearance: string;
|
|
69
69
|
role?: string | undefined;
|
|
70
70
|
}>>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
72
|
avatar?: {
|
|
73
|
-
avatar: string;
|
|
74
73
|
name: string;
|
|
75
|
-
|
|
74
|
+
avatar: string;
|
|
76
75
|
referenceAvatar: string;
|
|
76
|
+
appearance: string;
|
|
77
77
|
role?: string | undefined;
|
|
78
78
|
} | null | undefined;
|
|
79
79
|
locationId?: bigint | undefined;
|
|
80
80
|
index?: number | undefined;
|
|
81
81
|
}, {
|
|
82
82
|
avatar?: {
|
|
83
|
-
avatar: string;
|
|
84
83
|
name: string;
|
|
85
|
-
|
|
84
|
+
avatar: string;
|
|
86
85
|
referenceAvatar: string;
|
|
86
|
+
appearance: string;
|
|
87
87
|
role?: string | undefined;
|
|
88
88
|
} | null | undefined;
|
|
89
89
|
locationId?: bigint | undefined;
|
|
90
90
|
index?: number | undefined;
|
|
91
91
|
}>, {
|
|
92
92
|
avatar?: {
|
|
93
|
-
avatar: string;
|
|
94
93
|
name: string;
|
|
95
|
-
|
|
94
|
+
avatar: string;
|
|
96
95
|
referenceAvatar: string;
|
|
96
|
+
appearance: string;
|
|
97
97
|
role?: string | undefined;
|
|
98
98
|
} | null | undefined;
|
|
99
99
|
locationId?: bigint | undefined;
|
|
100
100
|
index?: number | undefined;
|
|
101
101
|
}, {
|
|
102
102
|
avatar?: {
|
|
103
|
-
avatar: string;
|
|
104
103
|
name: string;
|
|
105
|
-
|
|
104
|
+
avatar: string;
|
|
106
105
|
referenceAvatar: string;
|
|
106
|
+
appearance: string;
|
|
107
107
|
role?: string | undefined;
|
|
108
108
|
} | null | undefined;
|
|
109
109
|
locationId?: bigint | undefined;
|
|
@@ -136,8 +136,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
136
136
|
}>, "many">>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
name: string;
|
|
139
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
140
139
|
appearance: string;
|
|
140
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
141
141
|
images?: {
|
|
142
142
|
description: string;
|
|
143
143
|
name?: string | undefined;
|
|
@@ -145,8 +145,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
145
145
|
}[] | undefined;
|
|
146
146
|
}, {
|
|
147
147
|
name: string;
|
|
148
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
149
148
|
appearance: string;
|
|
149
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
150
150
|
images?: {
|
|
151
151
|
description: string;
|
|
152
152
|
name?: string | undefined;
|
|
@@ -155,7 +155,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
155
155
|
}>, "many">>;
|
|
156
156
|
}, "strict", z.ZodTypeAny, {
|
|
157
157
|
name?: string | undefined;
|
|
158
|
-
description?: string | undefined;
|
|
159
158
|
thumbnail?: string | null | undefined;
|
|
160
159
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
161
160
|
core?: {
|
|
@@ -164,6 +163,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
164
163
|
interval?: number | undefined;
|
|
165
164
|
maxAgentExecutions?: number | null | undefined;
|
|
166
165
|
} | undefined;
|
|
166
|
+
description?: string | undefined;
|
|
167
167
|
rules?: string[] | undefined;
|
|
168
168
|
canvases?: {
|
|
169
169
|
name: string;
|
|
@@ -177,8 +177,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
177
177
|
}[] | undefined;
|
|
178
178
|
gimmicks?: {
|
|
179
179
|
name: string;
|
|
180
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
181
180
|
appearance: string;
|
|
181
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
182
182
|
images?: {
|
|
183
183
|
description: string;
|
|
184
184
|
name?: string | undefined;
|
|
@@ -187,7 +187,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
187
187
|
}[] | undefined;
|
|
188
188
|
}, {
|
|
189
189
|
name?: string | undefined;
|
|
190
|
-
description?: string | undefined;
|
|
191
190
|
thumbnail?: string | null | undefined;
|
|
192
191
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
193
192
|
core?: {
|
|
@@ -196,6 +195,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
196
195
|
interval?: number | undefined;
|
|
197
196
|
maxAgentExecutions?: number | null | undefined;
|
|
198
197
|
} | undefined;
|
|
198
|
+
description?: string | undefined;
|
|
199
199
|
rules?: string[] | undefined;
|
|
200
200
|
canvases?: {
|
|
201
201
|
name: string;
|
|
@@ -209,8 +209,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
209
209
|
}[] | undefined;
|
|
210
210
|
gimmicks?: {
|
|
211
211
|
name: string;
|
|
212
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
213
212
|
appearance: string;
|
|
213
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
214
214
|
images?: {
|
|
215
215
|
description: string;
|
|
216
216
|
name?: string | undefined;
|
|
@@ -222,7 +222,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
222
222
|
locationId: bigint;
|
|
223
223
|
config: {
|
|
224
224
|
name?: string | undefined;
|
|
225
|
-
description?: string | undefined;
|
|
226
225
|
thumbnail?: string | null | undefined;
|
|
227
226
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
228
227
|
core?: {
|
|
@@ -231,6 +230,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
231
230
|
interval?: number | undefined;
|
|
232
231
|
maxAgentExecutions?: number | null | undefined;
|
|
233
232
|
} | undefined;
|
|
233
|
+
description?: string | undefined;
|
|
234
234
|
rules?: string[] | undefined;
|
|
235
235
|
canvases?: {
|
|
236
236
|
name: string;
|
|
@@ -244,8 +244,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
244
244
|
}[] | undefined;
|
|
245
245
|
gimmicks?: {
|
|
246
246
|
name: string;
|
|
247
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
248
247
|
appearance: string;
|
|
248
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
249
249
|
images?: {
|
|
250
250
|
description: string;
|
|
251
251
|
name?: string | undefined;
|
|
@@ -257,7 +257,6 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
257
257
|
locationId: bigint;
|
|
258
258
|
config: {
|
|
259
259
|
name?: string | undefined;
|
|
260
|
-
description?: string | undefined;
|
|
261
260
|
thumbnail?: string | null | undefined;
|
|
262
261
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
263
262
|
core?: {
|
|
@@ -266,6 +265,7 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
266
265
|
interval?: number | undefined;
|
|
267
266
|
maxAgentExecutions?: number | null | undefined;
|
|
268
267
|
} | undefined;
|
|
268
|
+
description?: string | undefined;
|
|
269
269
|
rules?: string[] | undefined;
|
|
270
270
|
canvases?: {
|
|
271
271
|
name: string;
|
|
@@ -279,8 +279,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
279
279
|
}[] | undefined;
|
|
280
280
|
gimmicks?: {
|
|
281
281
|
name: string;
|
|
282
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
283
282
|
appearance: string;
|
|
283
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
284
284
|
images?: {
|
|
285
285
|
description: string;
|
|
286
286
|
name?: string | undefined;
|
|
@@ -403,6 +403,43 @@ export interface PublishedLocationPresetsResponseDto {
|
|
|
403
403
|
totalPages: number;
|
|
404
404
|
};
|
|
405
405
|
}
|
|
406
|
+
export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
407
|
+
query: z.ZodString;
|
|
408
|
+
type: z.ZodEnum<["NOVEL"]>;
|
|
409
|
+
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["all", "male", "female"]>>>;
|
|
410
|
+
sortBy: z.ZodDefault<z.ZodOptional<z.ZodEnum<["popular", "latest"]>>>;
|
|
411
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
412
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
413
|
+
}, "strip", z.ZodTypeAny, {
|
|
414
|
+
type: "NOVEL";
|
|
415
|
+
limit: number;
|
|
416
|
+
page: number;
|
|
417
|
+
gender: "all" | "male" | "female";
|
|
418
|
+
query: string;
|
|
419
|
+
sortBy: "popular" | "latest";
|
|
420
|
+
}, {
|
|
421
|
+
type: "NOVEL";
|
|
422
|
+
query: string;
|
|
423
|
+
limit?: number | undefined;
|
|
424
|
+
page?: number | undefined;
|
|
425
|
+
gender?: "all" | "male" | "female" | undefined;
|
|
426
|
+
sortBy?: "popular" | "latest" | undefined;
|
|
427
|
+
}>;
|
|
428
|
+
export type SearchLocationPresetsQueryDto = z.infer<typeof SearchLocationPresetsQuerySchema>;
|
|
429
|
+
export interface SearchLocationPresetsResponseDto {
|
|
430
|
+
data: LocationPresetDetailDto[];
|
|
431
|
+
meta: {
|
|
432
|
+
total: number;
|
|
433
|
+
page: number;
|
|
434
|
+
limit: number;
|
|
435
|
+
totalPages: number;
|
|
436
|
+
};
|
|
437
|
+
}
|
|
438
|
+
export declare const SearchQueryRankingsQuerySchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
439
|
+
export type SearchQueryRankingsQueryDto = z.infer<typeof SearchQueryRankingsQuerySchema>;
|
|
440
|
+
export interface SearchQueryRankingsResponseDto {
|
|
441
|
+
queries: string[];
|
|
442
|
+
}
|
|
406
443
|
export declare const TrendingLocationPresetsQuerySchema: z.ZodObject<{
|
|
407
444
|
type: z.ZodEnum<["NOVEL"]>;
|
|
408
445
|
gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["all", "male", "female"]>>>;
|
|
@@ -493,8 +530,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
493
530
|
}>, "many">>;
|
|
494
531
|
}, "strip", z.ZodTypeAny, {
|
|
495
532
|
name: string;
|
|
496
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
497
533
|
appearance: string;
|
|
534
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
498
535
|
images?: {
|
|
499
536
|
description: string;
|
|
500
537
|
name?: string | undefined;
|
|
@@ -502,8 +539,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
502
539
|
}[] | undefined;
|
|
503
540
|
}, {
|
|
504
541
|
name: string;
|
|
505
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
506
542
|
appearance: string;
|
|
543
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
507
544
|
images?: {
|
|
508
545
|
description: string;
|
|
509
546
|
name?: string | undefined;
|
|
@@ -512,7 +549,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
512
549
|
}>, "many">>;
|
|
513
550
|
}, "strip", z.ZodTypeAny, {
|
|
514
551
|
name?: string | undefined;
|
|
515
|
-
description?: string | undefined;
|
|
516
552
|
thumbnail?: string | null | undefined;
|
|
517
553
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
518
554
|
core?: {
|
|
@@ -521,6 +557,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
521
557
|
interval?: number | undefined;
|
|
522
558
|
maxAgentExecutions?: number | null | undefined;
|
|
523
559
|
} | undefined;
|
|
560
|
+
description?: string | undefined;
|
|
524
561
|
rules?: string[] | undefined;
|
|
525
562
|
canvases?: {
|
|
526
563
|
name: string;
|
|
@@ -534,8 +571,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
534
571
|
}[] | undefined;
|
|
535
572
|
gimmicks?: {
|
|
536
573
|
name: string;
|
|
537
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
538
574
|
appearance: string;
|
|
575
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
539
576
|
images?: {
|
|
540
577
|
description: string;
|
|
541
578
|
name?: string | undefined;
|
|
@@ -544,7 +581,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
544
581
|
}[] | undefined;
|
|
545
582
|
}, {
|
|
546
583
|
name?: string | undefined;
|
|
547
|
-
description?: string | undefined;
|
|
548
584
|
thumbnail?: string | null | undefined;
|
|
549
585
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
550
586
|
core?: {
|
|
@@ -553,6 +589,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
553
589
|
interval?: number | undefined;
|
|
554
590
|
maxAgentExecutions?: number | null | undefined;
|
|
555
591
|
} | undefined;
|
|
592
|
+
description?: string | undefined;
|
|
556
593
|
rules?: string[] | undefined;
|
|
557
594
|
canvases?: {
|
|
558
595
|
name: string;
|
|
@@ -566,8 +603,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
566
603
|
}[] | undefined;
|
|
567
604
|
gimmicks?: {
|
|
568
605
|
name: string;
|
|
569
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
570
606
|
appearance: string;
|
|
607
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
571
608
|
images?: {
|
|
572
609
|
description: string;
|
|
573
610
|
name?: string | undefined;
|
|
@@ -689,14 +726,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
689
726
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
690
727
|
}, "strip", z.ZodTypeAny, {
|
|
691
728
|
name?: string | undefined;
|
|
729
|
+
role?: string | undefined;
|
|
730
|
+
avatar?: string | undefined;
|
|
731
|
+
referenceAvatar?: string | undefined;
|
|
732
|
+
appearance?: string | undefined;
|
|
692
733
|
core?: {
|
|
693
734
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
694
735
|
} | undefined;
|
|
695
736
|
rules?: string[] | undefined;
|
|
696
|
-
appearance?: string | undefined;
|
|
697
|
-
role?: string | undefined;
|
|
698
|
-
avatar?: string | undefined;
|
|
699
|
-
referenceAvatar?: string | undefined;
|
|
700
737
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
701
738
|
languages?: string[] | undefined;
|
|
702
739
|
timeZone?: string | undefined;
|
|
@@ -725,14 +762,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
725
762
|
} | undefined;
|
|
726
763
|
}, {
|
|
727
764
|
name?: string | undefined;
|
|
765
|
+
role?: string | undefined;
|
|
766
|
+
avatar?: string | undefined;
|
|
767
|
+
referenceAvatar?: string | undefined;
|
|
768
|
+
appearance?: string | undefined;
|
|
728
769
|
core?: {
|
|
729
770
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
730
771
|
} | undefined;
|
|
731
772
|
rules?: string[] | undefined;
|
|
732
|
-
appearance?: string | undefined;
|
|
733
|
-
role?: string | undefined;
|
|
734
|
-
avatar?: string | undefined;
|
|
735
|
-
referenceAvatar?: string | undefined;
|
|
736
773
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
737
774
|
languages?: string[] | undefined;
|
|
738
775
|
timeZone?: string | undefined;
|
|
@@ -771,7 +808,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
771
808
|
isSensitive?: boolean | undefined;
|
|
772
809
|
locationConfig?: {
|
|
773
810
|
name?: string | undefined;
|
|
774
|
-
description?: string | undefined;
|
|
775
811
|
thumbnail?: string | null | undefined;
|
|
776
812
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
777
813
|
core?: {
|
|
@@ -780,6 +816,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
780
816
|
interval?: number | undefined;
|
|
781
817
|
maxAgentExecutions?: number | null | undefined;
|
|
782
818
|
} | undefined;
|
|
819
|
+
description?: string | undefined;
|
|
783
820
|
rules?: string[] | undefined;
|
|
784
821
|
canvases?: {
|
|
785
822
|
name: string;
|
|
@@ -793,8 +830,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
793
830
|
}[] | undefined;
|
|
794
831
|
gimmicks?: {
|
|
795
832
|
name: string;
|
|
796
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
797
833
|
appearance: string;
|
|
834
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
798
835
|
images?: {
|
|
799
836
|
description: string;
|
|
800
837
|
name?: string | undefined;
|
|
@@ -804,14 +841,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
804
841
|
} | undefined;
|
|
805
842
|
agentConfigs?: {
|
|
806
843
|
name?: string | undefined;
|
|
844
|
+
role?: string | undefined;
|
|
845
|
+
avatar?: string | undefined;
|
|
846
|
+
referenceAvatar?: string | undefined;
|
|
847
|
+
appearance?: string | undefined;
|
|
807
848
|
core?: {
|
|
808
849
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
809
850
|
} | undefined;
|
|
810
851
|
rules?: string[] | undefined;
|
|
811
|
-
appearance?: string | undefined;
|
|
812
|
-
role?: string | undefined;
|
|
813
|
-
avatar?: string | undefined;
|
|
814
|
-
referenceAvatar?: string | undefined;
|
|
815
852
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
816
853
|
languages?: string[] | undefined;
|
|
817
854
|
timeZone?: string | undefined;
|
|
@@ -850,7 +887,6 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
850
887
|
isSensitive?: boolean | undefined;
|
|
851
888
|
locationConfig?: {
|
|
852
889
|
name?: string | undefined;
|
|
853
|
-
description?: string | undefined;
|
|
854
890
|
thumbnail?: string | null | undefined;
|
|
855
891
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
856
892
|
core?: {
|
|
@@ -859,6 +895,7 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
859
895
|
interval?: number | undefined;
|
|
860
896
|
maxAgentExecutions?: number | null | undefined;
|
|
861
897
|
} | undefined;
|
|
898
|
+
description?: string | undefined;
|
|
862
899
|
rules?: string[] | undefined;
|
|
863
900
|
canvases?: {
|
|
864
901
|
name: string;
|
|
@@ -872,8 +909,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
872
909
|
}[] | undefined;
|
|
873
910
|
gimmicks?: {
|
|
874
911
|
name: string;
|
|
875
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
876
912
|
appearance: string;
|
|
913
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
877
914
|
images?: {
|
|
878
915
|
description: string;
|
|
879
916
|
name?: string | undefined;
|
|
@@ -883,14 +920,14 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
883
920
|
} | undefined;
|
|
884
921
|
agentConfigs?: {
|
|
885
922
|
name?: string | undefined;
|
|
923
|
+
role?: string | undefined;
|
|
924
|
+
avatar?: string | undefined;
|
|
925
|
+
referenceAvatar?: string | undefined;
|
|
926
|
+
appearance?: string | undefined;
|
|
886
927
|
core?: {
|
|
887
928
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
888
929
|
} | undefined;
|
|
889
930
|
rules?: string[] | undefined;
|
|
890
|
-
appearance?: string | undefined;
|
|
891
|
-
role?: string | undefined;
|
|
892
|
-
avatar?: string | undefined;
|
|
893
|
-
referenceAvatar?: string | undefined;
|
|
894
931
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
895
932
|
languages?: string[] | undefined;
|
|
896
933
|
timeZone?: string | undefined;
|
|
@@ -1021,15 +1058,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1021
1058
|
appearance: z.ZodString;
|
|
1022
1059
|
}, "strip", z.ZodTypeAny, {
|
|
1023
1060
|
name: string;
|
|
1024
|
-
appearance: string;
|
|
1025
1061
|
avatar: string;
|
|
1026
1062
|
referenceAvatar: string;
|
|
1063
|
+
appearance: string;
|
|
1027
1064
|
role?: string | undefined;
|
|
1028
1065
|
}, {
|
|
1029
1066
|
name: string;
|
|
1030
|
-
appearance: string;
|
|
1031
1067
|
avatar: string;
|
|
1032
1068
|
referenceAvatar: string;
|
|
1069
|
+
appearance: string;
|
|
1033
1070
|
role?: string | undefined;
|
|
1034
1071
|
}>>>;
|
|
1035
1072
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1103,8 +1140,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1103
1140
|
}>, "many">>;
|
|
1104
1141
|
}, "strip", z.ZodTypeAny, {
|
|
1105
1142
|
name: string;
|
|
1106
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1107
1143
|
appearance: string;
|
|
1144
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1108
1145
|
images?: {
|
|
1109
1146
|
description: string;
|
|
1110
1147
|
name?: string | undefined;
|
|
@@ -1112,8 +1149,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1112
1149
|
}[] | undefined;
|
|
1113
1150
|
}, {
|
|
1114
1151
|
name: string;
|
|
1115
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1116
1152
|
appearance: string;
|
|
1153
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1117
1154
|
images?: {
|
|
1118
1155
|
description: string;
|
|
1119
1156
|
name?: string | undefined;
|
|
@@ -1122,7 +1159,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1122
1159
|
}>, "many">>;
|
|
1123
1160
|
}, "strip", z.ZodTypeAny, {
|
|
1124
1161
|
name?: string | undefined;
|
|
1125
|
-
description?: string | undefined;
|
|
1126
1162
|
thumbnail?: string | null | undefined;
|
|
1127
1163
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1128
1164
|
core?: {
|
|
@@ -1131,6 +1167,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1131
1167
|
interval?: number | undefined;
|
|
1132
1168
|
maxAgentExecutions?: number | null | undefined;
|
|
1133
1169
|
} | undefined;
|
|
1170
|
+
description?: string | undefined;
|
|
1134
1171
|
rules?: string[] | undefined;
|
|
1135
1172
|
canvases?: {
|
|
1136
1173
|
name: string;
|
|
@@ -1144,8 +1181,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1144
1181
|
}[] | undefined;
|
|
1145
1182
|
gimmicks?: {
|
|
1146
1183
|
name: string;
|
|
1147
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1148
1184
|
appearance: string;
|
|
1185
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1149
1186
|
images?: {
|
|
1150
1187
|
description: string;
|
|
1151
1188
|
name?: string | undefined;
|
|
@@ -1154,7 +1191,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1154
1191
|
}[] | undefined;
|
|
1155
1192
|
}, {
|
|
1156
1193
|
name?: string | undefined;
|
|
1157
|
-
description?: string | undefined;
|
|
1158
1194
|
thumbnail?: string | null | undefined;
|
|
1159
1195
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1160
1196
|
core?: {
|
|
@@ -1163,6 +1199,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1163
1199
|
interval?: number | undefined;
|
|
1164
1200
|
maxAgentExecutions?: number | null | undefined;
|
|
1165
1201
|
} | undefined;
|
|
1202
|
+
description?: string | undefined;
|
|
1166
1203
|
rules?: string[] | undefined;
|
|
1167
1204
|
canvases?: {
|
|
1168
1205
|
name: string;
|
|
@@ -1176,8 +1213,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1176
1213
|
}[] | undefined;
|
|
1177
1214
|
gimmicks?: {
|
|
1178
1215
|
name: string;
|
|
1179
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1180
1216
|
appearance: string;
|
|
1217
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1181
1218
|
images?: {
|
|
1182
1219
|
description: string;
|
|
1183
1220
|
name?: string | undefined;
|
|
@@ -1299,14 +1336,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1299
1336
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1300
1337
|
}, "strip", z.ZodTypeAny, {
|
|
1301
1338
|
name?: string | undefined;
|
|
1339
|
+
role?: string | undefined;
|
|
1340
|
+
avatar?: string | undefined;
|
|
1341
|
+
referenceAvatar?: string | undefined;
|
|
1342
|
+
appearance?: string | undefined;
|
|
1302
1343
|
core?: {
|
|
1303
1344
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1304
1345
|
} | undefined;
|
|
1305
1346
|
rules?: string[] | undefined;
|
|
1306
|
-
appearance?: string | undefined;
|
|
1307
|
-
role?: string | undefined;
|
|
1308
|
-
avatar?: string | undefined;
|
|
1309
|
-
referenceAvatar?: string | undefined;
|
|
1310
1347
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1311
1348
|
languages?: string[] | undefined;
|
|
1312
1349
|
timeZone?: string | undefined;
|
|
@@ -1335,14 +1372,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1335
1372
|
} | undefined;
|
|
1336
1373
|
}, {
|
|
1337
1374
|
name?: string | undefined;
|
|
1375
|
+
role?: string | undefined;
|
|
1376
|
+
avatar?: string | undefined;
|
|
1377
|
+
referenceAvatar?: string | undefined;
|
|
1378
|
+
appearance?: string | undefined;
|
|
1338
1379
|
core?: {
|
|
1339
1380
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1340
1381
|
} | undefined;
|
|
1341
1382
|
rules?: string[] | undefined;
|
|
1342
|
-
appearance?: string | undefined;
|
|
1343
|
-
role?: string | undefined;
|
|
1344
|
-
avatar?: string | undefined;
|
|
1345
|
-
referenceAvatar?: string | undefined;
|
|
1346
1383
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1347
1384
|
languages?: string[] | undefined;
|
|
1348
1385
|
timeZone?: string | undefined;
|
|
@@ -1385,7 +1422,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1385
1422
|
isSensitive?: boolean | undefined;
|
|
1386
1423
|
locationConfig?: {
|
|
1387
1424
|
name?: string | undefined;
|
|
1388
|
-
description?: string | undefined;
|
|
1389
1425
|
thumbnail?: string | null | undefined;
|
|
1390
1426
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1391
1427
|
core?: {
|
|
@@ -1394,6 +1430,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1394
1430
|
interval?: number | undefined;
|
|
1395
1431
|
maxAgentExecutions?: number | null | undefined;
|
|
1396
1432
|
} | undefined;
|
|
1433
|
+
description?: string | undefined;
|
|
1397
1434
|
rules?: string[] | undefined;
|
|
1398
1435
|
canvases?: {
|
|
1399
1436
|
name: string;
|
|
@@ -1407,8 +1444,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1407
1444
|
}[] | undefined;
|
|
1408
1445
|
gimmicks?: {
|
|
1409
1446
|
name: string;
|
|
1410
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1411
1447
|
appearance: string;
|
|
1448
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1412
1449
|
images?: {
|
|
1413
1450
|
description: string;
|
|
1414
1451
|
name?: string | undefined;
|
|
@@ -1418,14 +1455,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1418
1455
|
} | undefined;
|
|
1419
1456
|
agentConfigs?: ({
|
|
1420
1457
|
name?: string | undefined;
|
|
1458
|
+
role?: string | undefined;
|
|
1459
|
+
avatar?: string | undefined;
|
|
1460
|
+
referenceAvatar?: string | undefined;
|
|
1461
|
+
appearance?: string | undefined;
|
|
1421
1462
|
core?: {
|
|
1422
1463
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1423
1464
|
} | undefined;
|
|
1424
1465
|
rules?: string[] | undefined;
|
|
1425
|
-
appearance?: string | undefined;
|
|
1426
|
-
role?: string | undefined;
|
|
1427
|
-
avatar?: string | undefined;
|
|
1428
|
-
referenceAvatar?: string | undefined;
|
|
1429
1466
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1430
1467
|
languages?: string[] | undefined;
|
|
1431
1468
|
timeZone?: string | undefined;
|
|
@@ -1468,9 +1505,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1468
1505
|
}[] | undefined;
|
|
1469
1506
|
userAvatar?: {
|
|
1470
1507
|
name: string;
|
|
1471
|
-
appearance: string;
|
|
1472
1508
|
avatar: string;
|
|
1473
1509
|
referenceAvatar: string;
|
|
1510
|
+
appearance: string;
|
|
1474
1511
|
role?: string | undefined;
|
|
1475
1512
|
} | null | undefined;
|
|
1476
1513
|
tags?: string[] | undefined;
|
|
@@ -1489,7 +1526,6 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1489
1526
|
isSensitive?: boolean | undefined;
|
|
1490
1527
|
locationConfig?: {
|
|
1491
1528
|
name?: string | undefined;
|
|
1492
|
-
description?: string | undefined;
|
|
1493
1529
|
thumbnail?: string | null | undefined;
|
|
1494
1530
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1495
1531
|
core?: {
|
|
@@ -1498,6 +1534,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1498
1534
|
interval?: number | undefined;
|
|
1499
1535
|
maxAgentExecutions?: number | null | undefined;
|
|
1500
1536
|
} | undefined;
|
|
1537
|
+
description?: string | undefined;
|
|
1501
1538
|
rules?: string[] | undefined;
|
|
1502
1539
|
canvases?: {
|
|
1503
1540
|
name: string;
|
|
@@ -1511,8 +1548,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1511
1548
|
}[] | undefined;
|
|
1512
1549
|
gimmicks?: {
|
|
1513
1550
|
name: string;
|
|
1514
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1515
1551
|
appearance: string;
|
|
1552
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1516
1553
|
images?: {
|
|
1517
1554
|
description: string;
|
|
1518
1555
|
name?: string | undefined;
|
|
@@ -1522,14 +1559,14 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1522
1559
|
} | undefined;
|
|
1523
1560
|
agentConfigs?: ({
|
|
1524
1561
|
name?: string | undefined;
|
|
1562
|
+
role?: string | undefined;
|
|
1563
|
+
avatar?: string | undefined;
|
|
1564
|
+
referenceAvatar?: string | undefined;
|
|
1565
|
+
appearance?: string | undefined;
|
|
1525
1566
|
core?: {
|
|
1526
1567
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1527
1568
|
} | undefined;
|
|
1528
1569
|
rules?: string[] | undefined;
|
|
1529
|
-
appearance?: string | undefined;
|
|
1530
|
-
role?: string | undefined;
|
|
1531
|
-
avatar?: string | undefined;
|
|
1532
|
-
referenceAvatar?: string | undefined;
|
|
1533
1570
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
1534
1571
|
languages?: string[] | undefined;
|
|
1535
1572
|
timeZone?: string | undefined;
|
|
@@ -1572,9 +1609,9 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1572
1609
|
}[] | undefined;
|
|
1573
1610
|
userAvatar?: {
|
|
1574
1611
|
name: string;
|
|
1575
|
-
appearance: string;
|
|
1576
1612
|
avatar: string;
|
|
1577
1613
|
referenceAvatar: string;
|
|
1614
|
+
appearance: string;
|
|
1578
1615
|
role?: string | undefined;
|
|
1579
1616
|
} | null | undefined;
|
|
1580
1617
|
tags?: string[] | undefined;
|
|
@@ -1947,8 +1984,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1947
1984
|
}>, "many">>;
|
|
1948
1985
|
}, "strip", z.ZodTypeAny, {
|
|
1949
1986
|
name: string;
|
|
1950
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1951
1987
|
appearance: string;
|
|
1988
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1952
1989
|
images?: {
|
|
1953
1990
|
description: string;
|
|
1954
1991
|
name?: string | undefined;
|
|
@@ -1956,8 +1993,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1956
1993
|
}[] | undefined;
|
|
1957
1994
|
}, {
|
|
1958
1995
|
name: string;
|
|
1959
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1960
1996
|
appearance: string;
|
|
1997
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1961
1998
|
images?: {
|
|
1962
1999
|
description: string;
|
|
1963
2000
|
name?: string | undefined;
|
|
@@ -1966,7 +2003,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1966
2003
|
}>, "many">>;
|
|
1967
2004
|
}, "strict", z.ZodTypeAny, {
|
|
1968
2005
|
name?: string | undefined;
|
|
1969
|
-
description?: string | undefined;
|
|
1970
2006
|
thumbnail?: string | null | undefined;
|
|
1971
2007
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
1972
2008
|
core?: {
|
|
@@ -1975,6 +2011,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1975
2011
|
interval?: number | undefined;
|
|
1976
2012
|
maxAgentExecutions?: number | null | undefined;
|
|
1977
2013
|
} | undefined;
|
|
2014
|
+
description?: string | undefined;
|
|
1978
2015
|
rules?: string[] | undefined;
|
|
1979
2016
|
canvases?: {
|
|
1980
2017
|
name: string;
|
|
@@ -1988,8 +2025,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1988
2025
|
}[] | undefined;
|
|
1989
2026
|
gimmicks?: {
|
|
1990
2027
|
name: string;
|
|
1991
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1992
2028
|
appearance: string;
|
|
2029
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1993
2030
|
images?: {
|
|
1994
2031
|
description: string;
|
|
1995
2032
|
name?: string | undefined;
|
|
@@ -1998,7 +2035,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1998
2035
|
}[] | undefined;
|
|
1999
2036
|
}, {
|
|
2000
2037
|
name?: string | undefined;
|
|
2001
|
-
description?: string | undefined;
|
|
2002
2038
|
thumbnail?: string | null | undefined;
|
|
2003
2039
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2004
2040
|
core?: {
|
|
@@ -2007,6 +2043,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2007
2043
|
interval?: number | undefined;
|
|
2008
2044
|
maxAgentExecutions?: number | null | undefined;
|
|
2009
2045
|
} | undefined;
|
|
2046
|
+
description?: string | undefined;
|
|
2010
2047
|
rules?: string[] | undefined;
|
|
2011
2048
|
canvases?: {
|
|
2012
2049
|
name: string;
|
|
@@ -2020,8 +2057,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2020
2057
|
}[] | undefined;
|
|
2021
2058
|
gimmicks?: {
|
|
2022
2059
|
name: string;
|
|
2023
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2024
2060
|
appearance: string;
|
|
2061
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2025
2062
|
images?: {
|
|
2026
2063
|
description: string;
|
|
2027
2064
|
name?: string | undefined;
|
|
@@ -2036,7 +2073,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2036
2073
|
}, "strip", z.ZodTypeAny, {
|
|
2037
2074
|
config: {
|
|
2038
2075
|
name?: string | undefined;
|
|
2039
|
-
description?: string | undefined;
|
|
2040
2076
|
thumbnail?: string | null | undefined;
|
|
2041
2077
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2042
2078
|
core?: {
|
|
@@ -2045,6 +2081,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2045
2081
|
interval?: number | undefined;
|
|
2046
2082
|
maxAgentExecutions?: number | null | undefined;
|
|
2047
2083
|
} | undefined;
|
|
2084
|
+
description?: string | undefined;
|
|
2048
2085
|
rules?: string[] | undefined;
|
|
2049
2086
|
canvases?: {
|
|
2050
2087
|
name: string;
|
|
@@ -2058,8 +2095,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2058
2095
|
}[] | undefined;
|
|
2059
2096
|
gimmicks?: {
|
|
2060
2097
|
name: string;
|
|
2061
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2062
2098
|
appearance: string;
|
|
2099
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2063
2100
|
images?: {
|
|
2064
2101
|
description: string;
|
|
2065
2102
|
name?: string | undefined;
|
|
@@ -2071,7 +2108,6 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2071
2108
|
}, {
|
|
2072
2109
|
config: {
|
|
2073
2110
|
name?: string | undefined;
|
|
2074
|
-
description?: string | undefined;
|
|
2075
2111
|
thumbnail?: string | null | undefined;
|
|
2076
2112
|
environment?: "CHAT" | "NOVEL" | "BROWSER" | undefined;
|
|
2077
2113
|
core?: {
|
|
@@ -2080,6 +2116,7 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2080
2116
|
interval?: number | undefined;
|
|
2081
2117
|
maxAgentExecutions?: number | null | undefined;
|
|
2082
2118
|
} | undefined;
|
|
2119
|
+
description?: string | undefined;
|
|
2083
2120
|
rules?: string[] | undefined;
|
|
2084
2121
|
canvases?: {
|
|
2085
2122
|
name: string;
|
|
@@ -2093,8 +2130,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2093
2130
|
}[] | undefined;
|
|
2094
2131
|
gimmicks?: {
|
|
2095
2132
|
name: string;
|
|
2096
|
-
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2097
2133
|
appearance: string;
|
|
2134
|
+
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2098
2135
|
images?: {
|
|
2099
2136
|
description: string;
|
|
2100
2137
|
name?: string | undefined;
|
|
@@ -2743,12 +2780,12 @@ export declare const UpdateLocationImageSchema: z.ZodObject<{
|
|
|
2743
2780
|
image: z.ZodString;
|
|
2744
2781
|
index: z.ZodOptional<z.ZodNumber>;
|
|
2745
2782
|
}, "strip", z.ZodTypeAny, {
|
|
2746
|
-
image: string;
|
|
2747
2783
|
locationId: bigint;
|
|
2784
|
+
image: string;
|
|
2748
2785
|
index?: number | undefined;
|
|
2749
2786
|
}, {
|
|
2750
|
-
image: string;
|
|
2751
2787
|
locationId: bigint;
|
|
2788
|
+
image: string;
|
|
2752
2789
|
index?: number | undefined;
|
|
2753
2790
|
}>;
|
|
2754
2791
|
export type UpdateLocationImageDto = z.infer<typeof UpdateLocationImageSchema>;
|
|
@@ -2768,6 +2805,48 @@ export declare const UpdateLocationRenderingSchema: z.ZodObject<{
|
|
|
2768
2805
|
export type UpdateLocationRenderingDto = z.infer<typeof UpdateLocationRenderingSchema>;
|
|
2769
2806
|
export interface UpdateLocationRenderingResponseDto {
|
|
2770
2807
|
}
|
|
2808
|
+
export declare const UpdateLocationMissionSchema: z.ZodObject<{
|
|
2809
|
+
locationId: z.ZodBigInt;
|
|
2810
|
+
mission: z.ZodNullable<z.ZodObject<{
|
|
2811
|
+
mainMission: z.ZodString;
|
|
2812
|
+
objectives: z.ZodArray<z.ZodObject<{
|
|
2813
|
+
description: z.ZodString;
|
|
2814
|
+
}, "strip", z.ZodTypeAny, {
|
|
2815
|
+
description: string;
|
|
2816
|
+
}, {
|
|
2817
|
+
description: string;
|
|
2818
|
+
}>, "many">;
|
|
2819
|
+
}, "strip", z.ZodTypeAny, {
|
|
2820
|
+
mainMission: string;
|
|
2821
|
+
objectives: {
|
|
2822
|
+
description: string;
|
|
2823
|
+
}[];
|
|
2824
|
+
}, {
|
|
2825
|
+
mainMission: string;
|
|
2826
|
+
objectives: {
|
|
2827
|
+
description: string;
|
|
2828
|
+
}[];
|
|
2829
|
+
}>>;
|
|
2830
|
+
}, "strip", z.ZodTypeAny, {
|
|
2831
|
+
locationId: bigint;
|
|
2832
|
+
mission: {
|
|
2833
|
+
mainMission: string;
|
|
2834
|
+
objectives: {
|
|
2835
|
+
description: string;
|
|
2836
|
+
}[];
|
|
2837
|
+
} | null;
|
|
2838
|
+
}, {
|
|
2839
|
+
locationId: bigint;
|
|
2840
|
+
mission: {
|
|
2841
|
+
mainMission: string;
|
|
2842
|
+
objectives: {
|
|
2843
|
+
description: string;
|
|
2844
|
+
}[];
|
|
2845
|
+
} | null;
|
|
2846
|
+
}>;
|
|
2847
|
+
export type UpdateLocationMissionDto = z.infer<typeof UpdateLocationMissionSchema>;
|
|
2848
|
+
export interface UpdateLocationMissionResponseDto {
|
|
2849
|
+
}
|
|
2771
2850
|
export declare const GenerateLocationSuggestedResponsesSchema: z.ZodObject<{
|
|
2772
2851
|
locationId: z.ZodBigInt;
|
|
2773
2852
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.ResumeLocationUpdateSchema = exports.PauseLocationUpdateSchema = exports.UpdateLocationAgentIsActiveSchema = exports.GenerateLocationSuggestedResponsesSchema = exports.UpdateLocationRenderingSchema = exports.UpdateLocationImageSchema = exports.SendSystemMessageSchema = exports.SendLocationMessageSchema = exports.GetLocationMessagesSchema = exports.BanUserFromLocationSchema = exports.UnsubscribeLocationSchema = exports.SubscribeLocationSchema = exports.LeaveLocationSchema = exports.JoinLocationSchema = exports.DeleteLocationScheduledMessageToolSchema = exports.DeleteLocationScheduledMessageParamsSchema = exports.UpdateLocationScheduledMessageToolSchema = exports.UpdateLocationScheduledMessageBodySchema = exports.UpdateLocationScheduledMessageParamsSchema = exports.CreateLocationScheduledMessageToolSchema = exports.CreateLocationScheduledMessageBodySchema = exports.CreateLocationScheduledMessageParamsSchema = exports.GetLocationScheduledMessagesParamsSchema = exports.UpdateLocationCanvasBodySchema = exports.UpdateLocationCanvasParamsSchema = exports.UpdateLocationBodySchema = exports.UpdateLocationParamsSchema = exports.RemoveAgentFromLocationToolSchema = exports.RemoveAgentFromLocationBodySchema = exports.RemoveAgentFromLocationParamsSchema = exports.JoinAgentToLocationToolSchema = exports.JoinAgentToLocationBodySchema = exports.JoinAgentToLocationParamsSchema = exports.LocationUnreadCountParamsSchema = exports.MarkLocationAsReadParamsSchema = exports.GetLocationSnapshotParamsSchema = exports.CreateLocationSnapshotBodySchema = exports.CreateLocationSnapshotParamsSchema = exports.WithdrawCreditsBodySchema = exports.WithdrawCreditsParamsSchema = exports.DepositCreditsBodySchema = exports.DepositCreditsParamsSchema = exports.GetLocationContentParamsSchema = exports.ResetLocationBodySchema = exports.ResetLocationParamsSchema = void 0;
|
|
3
|
+
exports.DeleteLocationParamsSchema = exports.GetLocationParamsSchema = exports.GetAgentDmLocationQuerySchema = exports.GetLocationHelperLocationQuerySchema = exports.GetAgentHelperLocationQuerySchema = exports.GetHelperLocationQuerySchema = exports.CreateLocationFromPresetSchema = exports.CreateLocationSchema = exports.PinLocationPresetCommentBodySchema = exports.PinLocationPresetCommentParamsSchema = exports.DeleteLocationPresetCommentParamsSchema = exports.ReportLocationPresetCommentParamsSchema = exports.UpdateLocationPresetCommentReactionBodySchema = exports.UpdateLocationPresetCommentReactionParamsSchema = exports.CreateLocationPresetCommentBodySchema = exports.CreateLocationPresetCommentParamsSchema = exports.GetLocationPresetCommentRepliesQuerySchema = exports.GetLocationPresetCommentRepliesParamsSchema = exports.GetLocationPresetCommentsQuerySchema = exports.GetLocationPresetCommentsParamsSchema = exports.GetLocationPresetLocationsParamsSchema = exports.TranslateLocationPresetBodySchema = exports.TranslateLocationPresetParamsSchema = exports.DuplicateLocationPresetParamsSchema = exports.DeleteLocationPresetParamsSchema = exports.ReportLocationPresetParamsSchema = exports.UpdateLocationPresetRatingBodySchema = exports.UpdateLocationPresetRatingParamsSchema = exports.SyncLocationPresetVersionParamsSchema = exports.PublishLocationPresetBodySchema = exports.PublishLocationPresetParamsSchema = exports.SaveLocationPresetBodySchema = exports.SaveLocationPresetParamsSchema = exports.UpdateLocationPresetBodySchema = exports.UpdateLocationPresetParamsSchema = exports.GetLocationPresetPrivateParamsSchema = exports.GetLocationPresetParamsSchema = exports.CreateLocationPresetSchema = exports.TrendingLocationPresetsQuerySchema = exports.SearchQueryRankingsQuerySchema = exports.SearchLocationPresetsQuerySchema = exports.PublishedLocationPresetsQuerySchema = exports.LocationPresetsPaginationQuerySchema = exports.LocationDeleteCredentialSchema = exports.LocationUpdateCredentialSchema = exports.LocationUpdateConfigSchema = exports.LocationsUnreadCountQuerySchema = exports.TrendingLocationsQuerySchema = exports.PublishedLocationsQuerySchema = exports.UserLocationsQuerySchema = void 0;
|
|
4
|
+
exports.ResumeLocationUpdateSchema = exports.PauseLocationUpdateSchema = exports.UpdateLocationAgentIsActiveSchema = exports.GenerateLocationSuggestedResponsesSchema = exports.UpdateLocationMissionSchema = exports.UpdateLocationRenderingSchema = exports.UpdateLocationImageSchema = exports.SendSystemMessageSchema = exports.SendLocationMessageSchema = exports.GetLocationMessagesSchema = exports.BanUserFromLocationSchema = exports.UnsubscribeLocationSchema = exports.SubscribeLocationSchema = exports.LeaveLocationSchema = exports.JoinLocationSchema = exports.DeleteLocationScheduledMessageToolSchema = exports.DeleteLocationScheduledMessageParamsSchema = exports.UpdateLocationScheduledMessageToolSchema = exports.UpdateLocationScheduledMessageBodySchema = exports.UpdateLocationScheduledMessageParamsSchema = exports.CreateLocationScheduledMessageToolSchema = exports.CreateLocationScheduledMessageBodySchema = exports.CreateLocationScheduledMessageParamsSchema = exports.GetLocationScheduledMessagesParamsSchema = exports.UpdateLocationCanvasBodySchema = exports.UpdateLocationCanvasParamsSchema = exports.UpdateLocationBodySchema = exports.UpdateLocationParamsSchema = exports.RemoveAgentFromLocationToolSchema = exports.RemoveAgentFromLocationBodySchema = exports.RemoveAgentFromLocationParamsSchema = exports.JoinAgentToLocationToolSchema = exports.JoinAgentToLocationBodySchema = exports.JoinAgentToLocationParamsSchema = exports.LocationUnreadCountParamsSchema = exports.MarkLocationAsReadParamsSchema = exports.GetLocationSnapshotParamsSchema = exports.CreateLocationSnapshotBodySchema = exports.CreateLocationSnapshotParamsSchema = exports.WithdrawCreditsBodySchema = exports.WithdrawCreditsParamsSchema = exports.DepositCreditsBodySchema = exports.DepositCreditsParamsSchema = exports.GetLocationContentParamsSchema = exports.ResetLocationBodySchema = exports.ResetLocationParamsSchema = exports.GetLocationCostParamsSchema = exports.GetLocationPrivateParamsSchema = void 0;
|
|
5
5
|
const common_1 = require("@little-samo/samo-ai/common");
|
|
6
6
|
const models_1 = require("@little-samo/samo-ai-sdk/models");
|
|
7
7
|
const zod_1 = require("zod");
|
|
@@ -18,7 +18,7 @@ exports.UserLocationsQuerySchema = zod_1.z.object({
|
|
|
18
18
|
.describe('Number of locations to return'),
|
|
19
19
|
});
|
|
20
20
|
exports.PublishedLocationsQuerySchema = zod_1.z.object({
|
|
21
|
-
page: zod_1.z.coerce.number().int().min(1).
|
|
21
|
+
page: zod_1.z.coerce.number().int().min(1).optional().default(1),
|
|
22
22
|
limit: zod_1.z.coerce.number().min(1).max(10).default(10),
|
|
23
23
|
});
|
|
24
24
|
exports.TrendingLocationsQuerySchema = zod_1.z.object({});
|
|
@@ -68,6 +68,15 @@ exports.PublishedLocationPresetsQuerySchema = zod_1.z.object({
|
|
|
68
68
|
page: zod_1.z.coerce.number().int().min(1).max(25).optional().default(1),
|
|
69
69
|
limit: zod_1.z.coerce.number().min(1).max(10).default(10),
|
|
70
70
|
});
|
|
71
|
+
exports.SearchLocationPresetsQuerySchema = zod_1.z.object({
|
|
72
|
+
query: zod_1.z.string().min(1).max(100),
|
|
73
|
+
type: zod_1.z.enum(['NOVEL']),
|
|
74
|
+
gender: zod_1.z.enum(['all', 'male', 'female']).optional().default('all'),
|
|
75
|
+
sortBy: zod_1.z.enum(['popular', 'latest']).optional().default('popular'),
|
|
76
|
+
page: zod_1.z.coerce.number().int().min(1).max(10).optional().default(1),
|
|
77
|
+
limit: zod_1.z.coerce.number().min(1).max(10).default(10),
|
|
78
|
+
});
|
|
79
|
+
exports.SearchQueryRankingsQuerySchema = zod_1.z.object({});
|
|
71
80
|
exports.TrendingLocationPresetsQuerySchema = zod_1.z.object({
|
|
72
81
|
type: zod_1.z.enum(['NOVEL']),
|
|
73
82
|
gender: zod_1.z.enum(['all', 'male', 'female']).optional().default('all'),
|
|
@@ -430,6 +439,10 @@ exports.UpdateLocationRenderingSchema = zod_1.z.object({
|
|
|
430
439
|
locationId: zod_1.z.coerce.bigint(),
|
|
431
440
|
rendering: zod_1.z.string().max(5000).nullable(),
|
|
432
441
|
});
|
|
442
|
+
exports.UpdateLocationMissionSchema = zod_1.z.object({
|
|
443
|
+
locationId: zod_1.z.coerce.bigint(),
|
|
444
|
+
mission: location_preset_1.LocationPresetMissionSchema.nullable(),
|
|
445
|
+
});
|
|
433
446
|
exports.GenerateLocationSuggestedResponsesSchema = zod_1.z.object({
|
|
434
447
|
locationId: zod_1.z.coerce.bigint(),
|
|
435
448
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.requests.js","sourceRoot":"","sources":["../../../src/dto/locations/location.requests.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"location.requests.js","sourceRoot":"","sources":["../../../src/dto/locations/location.requests.ts"],"names":[],"mappings":"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"}
|