@little-samo/samo-ai-sdk 0.6.10 → 0.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dto/entities/agents/agent.requests.d.ts +12 -12
- package/dist/dto/entities/users/user.requests.d.ts +107 -28
- package/dist/dto/entities/users/user.requests.js +22 -1
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/locations/location.requests.d.ts +76 -58
- package/dist/dto/locations/location.requests.js +9 -5
- package/dist/dto/locations/location.requests.js.map +1 -1
- package/dist/dto/rankings/ranking.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,11 +7,11 @@ export declare const AgentsPaginationQuerySchema: z.ZodObject<{
|
|
|
7
7
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8
8
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
limit: number;
|
|
11
10
|
page: number;
|
|
11
|
+
limit: number;
|
|
12
12
|
}, {
|
|
13
|
-
limit?: number | undefined;
|
|
14
13
|
page?: number | undefined;
|
|
14
|
+
limit?: number | undefined;
|
|
15
15
|
}>;
|
|
16
16
|
export type AgentsPaginationQueryDto = z.infer<typeof AgentsPaginationQuerySchema>;
|
|
17
17
|
export interface AgentsPaginatedResponseDto {
|
|
@@ -152,11 +152,11 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
152
152
|
}>>;
|
|
153
153
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
154
154
|
}, "strict", z.ZodTypeAny, {
|
|
155
|
-
name?: string | undefined;
|
|
156
155
|
role?: string | undefined;
|
|
157
156
|
avatar?: string | undefined;
|
|
158
157
|
referenceAvatar?: string | undefined;
|
|
159
158
|
appearance?: string | undefined;
|
|
159
|
+
name?: string | undefined;
|
|
160
160
|
core?: {
|
|
161
161
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
162
162
|
} | undefined;
|
|
@@ -188,11 +188,11 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
188
188
|
} | undefined;
|
|
189
189
|
} | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
name?: string | undefined;
|
|
192
191
|
role?: string | undefined;
|
|
193
192
|
avatar?: string | undefined;
|
|
194
193
|
referenceAvatar?: string | undefined;
|
|
195
194
|
appearance?: string | undefined;
|
|
195
|
+
name?: string | undefined;
|
|
196
196
|
core?: {
|
|
197
197
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
198
198
|
} | undefined;
|
|
@@ -226,11 +226,11 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
226
226
|
}>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
config: {
|
|
229
|
-
name?: string | undefined;
|
|
230
229
|
role?: string | undefined;
|
|
231
230
|
avatar?: string | undefined;
|
|
232
231
|
referenceAvatar?: string | undefined;
|
|
233
232
|
appearance?: string | undefined;
|
|
233
|
+
name?: string | undefined;
|
|
234
234
|
core?: {
|
|
235
235
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
236
236
|
} | undefined;
|
|
@@ -265,11 +265,11 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
265
265
|
agentId: bigint;
|
|
266
266
|
}, {
|
|
267
267
|
config: {
|
|
268
|
-
name?: string | undefined;
|
|
269
268
|
role?: string | undefined;
|
|
270
269
|
avatar?: string | undefined;
|
|
271
270
|
referenceAvatar?: string | undefined;
|
|
272
271
|
appearance?: string | undefined;
|
|
272
|
+
name?: string | undefined;
|
|
273
273
|
core?: {
|
|
274
274
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
275
275
|
} | undefined;
|
|
@@ -369,11 +369,11 @@ export declare const AgentPresetsPaginationQuerySchema: z.ZodObject<{
|
|
|
369
369
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
370
370
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
-
limit: number;
|
|
373
372
|
page: number;
|
|
373
|
+
limit: number;
|
|
374
374
|
}, {
|
|
375
|
-
limit?: number | undefined;
|
|
376
375
|
page?: number | undefined;
|
|
376
|
+
limit?: number | undefined;
|
|
377
377
|
}>;
|
|
378
378
|
export type AgentPresetsPaginationQueryDto = z.infer<typeof AgentPresetsPaginationQuerySchema>;
|
|
379
379
|
export interface AgentPresetsPaginatedResponseDto {
|
|
@@ -499,11 +499,11 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
499
499
|
}>>;
|
|
500
500
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
501
501
|
}, "strict", z.ZodTypeAny, {
|
|
502
|
-
name?: string | undefined;
|
|
503
502
|
role?: string | undefined;
|
|
504
503
|
avatar?: string | undefined;
|
|
505
504
|
referenceAvatar?: string | undefined;
|
|
506
505
|
appearance?: string | undefined;
|
|
506
|
+
name?: string | undefined;
|
|
507
507
|
core?: {
|
|
508
508
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
509
509
|
} | undefined;
|
|
@@ -535,11 +535,11 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
535
535
|
} | undefined;
|
|
536
536
|
} | undefined;
|
|
537
537
|
}, {
|
|
538
|
-
name?: string | undefined;
|
|
539
538
|
role?: string | undefined;
|
|
540
539
|
avatar?: string | undefined;
|
|
541
540
|
referenceAvatar?: string | undefined;
|
|
542
541
|
appearance?: string | undefined;
|
|
542
|
+
name?: string | undefined;
|
|
543
543
|
core?: {
|
|
544
544
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
545
545
|
} | undefined;
|
|
@@ -573,11 +573,11 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
573
573
|
}>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
config: {
|
|
576
|
-
name?: string | undefined;
|
|
577
576
|
role?: string | undefined;
|
|
578
577
|
avatar?: string | undefined;
|
|
579
578
|
referenceAvatar?: string | undefined;
|
|
580
579
|
appearance?: string | undefined;
|
|
580
|
+
name?: string | undefined;
|
|
581
581
|
core?: {
|
|
582
582
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
583
583
|
} | undefined;
|
|
@@ -611,11 +611,11 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
611
611
|
};
|
|
612
612
|
}, {
|
|
613
613
|
config: {
|
|
614
|
-
name?: string | undefined;
|
|
615
614
|
role?: string | undefined;
|
|
616
615
|
avatar?: string | undefined;
|
|
617
616
|
referenceAvatar?: string | undefined;
|
|
618
617
|
appearance?: string | undefined;
|
|
618
|
+
name?: string | undefined;
|
|
619
619
|
core?: {
|
|
620
620
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
621
621
|
} | undefined;
|
|
@@ -12,6 +12,7 @@ export declare const UpdateCurrentUserBodySchema: z.ZodObject<{
|
|
|
12
12
|
nickname: z.ZodOptional<z.ZodString>;
|
|
13
13
|
birthDate: z.ZodOptional<z.ZodDate>;
|
|
14
14
|
profilePicture: z.ZodOptional<z.ZodString>;
|
|
15
|
+
role: z.ZodOptional<z.ZodString>;
|
|
15
16
|
avatarName: z.ZodOptional<z.ZodString>;
|
|
16
17
|
avatar: z.ZodOptional<z.ZodString>;
|
|
17
18
|
referenceAvatar: z.ZodOptional<z.ZodString>;
|
|
@@ -19,25 +20,27 @@ export declare const UpdateCurrentUserBodySchema: z.ZodObject<{
|
|
|
19
20
|
bio: z.ZodOptional<z.ZodString>;
|
|
20
21
|
isAllowSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
21
22
|
}, "strip", z.ZodTypeAny, {
|
|
22
|
-
avatar?: string | undefined;
|
|
23
|
-
referenceAvatar?: string | undefined;
|
|
24
|
-
appearance?: string | undefined;
|
|
25
23
|
username?: string | undefined;
|
|
26
24
|
nickname?: string | undefined;
|
|
27
25
|
birthDate?: Date | undefined;
|
|
28
26
|
profilePicture?: string | undefined;
|
|
27
|
+
role?: string | undefined;
|
|
29
28
|
avatarName?: string | undefined;
|
|
30
|
-
bio?: string | undefined;
|
|
31
|
-
isAllowSensitive?: boolean | undefined;
|
|
32
|
-
}, {
|
|
33
29
|
avatar?: string | undefined;
|
|
34
30
|
referenceAvatar?: string | undefined;
|
|
35
31
|
appearance?: string | undefined;
|
|
32
|
+
bio?: string | undefined;
|
|
33
|
+
isAllowSensitive?: boolean | undefined;
|
|
34
|
+
}, {
|
|
36
35
|
username?: string | undefined;
|
|
37
36
|
nickname?: string | undefined;
|
|
38
37
|
birthDate?: Date | undefined;
|
|
39
38
|
profilePicture?: string | undefined;
|
|
39
|
+
role?: string | undefined;
|
|
40
40
|
avatarName?: string | undefined;
|
|
41
|
+
avatar?: string | undefined;
|
|
42
|
+
referenceAvatar?: string | undefined;
|
|
43
|
+
appearance?: string | undefined;
|
|
41
44
|
bio?: string | undefined;
|
|
42
45
|
isAllowSensitive?: boolean | undefined;
|
|
43
46
|
}>;
|
|
@@ -61,58 +64,58 @@ export declare const UpdateUserAvatarBodySchema: z.ZodEffects<z.ZodObject<{
|
|
|
61
64
|
referenceAvatar: z.ZodString;
|
|
62
65
|
appearance: z.ZodString;
|
|
63
66
|
}, "strip", z.ZodTypeAny, {
|
|
64
|
-
name: string;
|
|
65
67
|
avatar: string;
|
|
66
68
|
referenceAvatar: string;
|
|
67
69
|
appearance: string;
|
|
70
|
+
name: string;
|
|
68
71
|
role?: string | undefined;
|
|
69
72
|
}, {
|
|
70
|
-
name: string;
|
|
71
73
|
avatar: string;
|
|
72
74
|
referenceAvatar: string;
|
|
73
75
|
appearance: string;
|
|
76
|
+
name: string;
|
|
74
77
|
role?: string | undefined;
|
|
75
78
|
}>>>;
|
|
76
79
|
}, "strip", z.ZodTypeAny, {
|
|
77
80
|
avatar?: {
|
|
78
|
-
name: string;
|
|
79
81
|
avatar: string;
|
|
80
82
|
referenceAvatar: string;
|
|
81
83
|
appearance: string;
|
|
84
|
+
name: string;
|
|
82
85
|
role?: string | undefined;
|
|
83
86
|
} | null | undefined;
|
|
84
|
-
locationId?: bigint | undefined;
|
|
85
87
|
index?: number | undefined;
|
|
88
|
+
locationId?: bigint | undefined;
|
|
86
89
|
}, {
|
|
87
90
|
avatar?: {
|
|
88
|
-
name: string;
|
|
89
91
|
avatar: string;
|
|
90
92
|
referenceAvatar: string;
|
|
91
93
|
appearance: string;
|
|
94
|
+
name: string;
|
|
92
95
|
role?: string | undefined;
|
|
93
96
|
} | null | undefined;
|
|
94
|
-
locationId?: bigint | undefined;
|
|
95
97
|
index?: number | undefined;
|
|
98
|
+
locationId?: bigint | undefined;
|
|
96
99
|
}>, {
|
|
97
100
|
avatar?: {
|
|
98
|
-
name: string;
|
|
99
101
|
avatar: string;
|
|
100
102
|
referenceAvatar: string;
|
|
101
103
|
appearance: string;
|
|
104
|
+
name: string;
|
|
102
105
|
role?: string | undefined;
|
|
103
106
|
} | null | undefined;
|
|
104
|
-
locationId?: bigint | undefined;
|
|
105
107
|
index?: number | undefined;
|
|
108
|
+
locationId?: bigint | undefined;
|
|
106
109
|
}, {
|
|
107
110
|
avatar?: {
|
|
108
|
-
name: string;
|
|
109
111
|
avatar: string;
|
|
110
112
|
referenceAvatar: string;
|
|
111
113
|
appearance: string;
|
|
114
|
+
name: string;
|
|
112
115
|
role?: string | undefined;
|
|
113
116
|
} | null | undefined;
|
|
114
|
-
locationId?: bigint | undefined;
|
|
115
117
|
index?: number | undefined;
|
|
118
|
+
locationId?: bigint | undefined;
|
|
116
119
|
}>;
|
|
117
120
|
export type UpdateUserAvatarBodyDto = z.infer<typeof UpdateUserAvatarBodySchema>;
|
|
118
121
|
export interface UpdateUserAvatarResponseDto {
|
|
@@ -168,6 +171,82 @@ export type GetUsersByIdsQueryDto = z.infer<typeof GetUsersByIdsQuerySchema>;
|
|
|
168
171
|
export interface GetUserPublicsByIdsResponseDto {
|
|
169
172
|
users: UserPublicDto[];
|
|
170
173
|
}
|
|
174
|
+
export declare const FollowUserParamsSchema: z.ZodObject<{
|
|
175
|
+
userId: z.ZodBigInt;
|
|
176
|
+
}, "strip", z.ZodTypeAny, {
|
|
177
|
+
userId: bigint;
|
|
178
|
+
}, {
|
|
179
|
+
userId: bigint;
|
|
180
|
+
}>;
|
|
181
|
+
export type FollowUserParamsDto = z.infer<typeof FollowUserParamsSchema>;
|
|
182
|
+
export interface FollowUserResponseDto {
|
|
183
|
+
}
|
|
184
|
+
export declare const UnfollowUserParamsSchema: z.ZodObject<{
|
|
185
|
+
userId: z.ZodBigInt;
|
|
186
|
+
}, "strip", z.ZodTypeAny, {
|
|
187
|
+
userId: bigint;
|
|
188
|
+
}, {
|
|
189
|
+
userId: bigint;
|
|
190
|
+
}>;
|
|
191
|
+
export type UnfollowUserParamsDto = z.infer<typeof UnfollowUserParamsSchema>;
|
|
192
|
+
export interface UnfollowUserResponseDto {
|
|
193
|
+
}
|
|
194
|
+
export declare const GetUserFollowersParamsSchema: z.ZodObject<{
|
|
195
|
+
userId: z.ZodBigInt;
|
|
196
|
+
}, "strip", z.ZodTypeAny, {
|
|
197
|
+
userId: bigint;
|
|
198
|
+
}, {
|
|
199
|
+
userId: bigint;
|
|
200
|
+
}>;
|
|
201
|
+
export type GetUserFollowersParamsDto = z.infer<typeof GetUserFollowersParamsSchema>;
|
|
202
|
+
export declare const GetUserFollowersQuerySchema: z.ZodObject<{
|
|
203
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
204
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
205
|
+
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
page: number;
|
|
207
|
+
limit: number;
|
|
208
|
+
}, {
|
|
209
|
+
page?: number | undefined;
|
|
210
|
+
limit?: number | undefined;
|
|
211
|
+
}>;
|
|
212
|
+
export type GetUserFollowersQueryDto = z.infer<typeof GetUserFollowersQuerySchema>;
|
|
213
|
+
export interface GetUserFollowersResponseDto {
|
|
214
|
+
users: UserPublicDto[];
|
|
215
|
+
meta: {
|
|
216
|
+
total: number;
|
|
217
|
+
page: number;
|
|
218
|
+
limit: number;
|
|
219
|
+
totalPages: number;
|
|
220
|
+
};
|
|
221
|
+
}
|
|
222
|
+
export declare const GetUserFollowingParamsSchema: z.ZodObject<{
|
|
223
|
+
userId: z.ZodBigInt;
|
|
224
|
+
}, "strip", z.ZodTypeAny, {
|
|
225
|
+
userId: bigint;
|
|
226
|
+
}, {
|
|
227
|
+
userId: bigint;
|
|
228
|
+
}>;
|
|
229
|
+
export type GetUserFollowingParamsDto = z.infer<typeof GetUserFollowingParamsSchema>;
|
|
230
|
+
export declare const GetUserFollowingQuerySchema: z.ZodObject<{
|
|
231
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
232
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
233
|
+
}, "strip", z.ZodTypeAny, {
|
|
234
|
+
page: number;
|
|
235
|
+
limit: number;
|
|
236
|
+
}, {
|
|
237
|
+
page?: number | undefined;
|
|
238
|
+
limit?: number | undefined;
|
|
239
|
+
}>;
|
|
240
|
+
export type GetUserFollowingQueryDto = z.infer<typeof GetUserFollowingQuerySchema>;
|
|
241
|
+
export interface GetUserFollowingResponseDto {
|
|
242
|
+
users: UserPublicDto[];
|
|
243
|
+
meta: {
|
|
244
|
+
total: number;
|
|
245
|
+
page: number;
|
|
246
|
+
limit: number;
|
|
247
|
+
totalPages: number;
|
|
248
|
+
};
|
|
249
|
+
}
|
|
171
250
|
export declare const GetUserCommentsParamsSchema: z.ZodObject<{
|
|
172
251
|
userId: z.ZodBigInt;
|
|
173
252
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -181,12 +260,12 @@ export declare const GetUserCommentsQuerySchema: z.ZodObject<{
|
|
|
181
260
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
182
261
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
183
262
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
limit: number;
|
|
185
263
|
page: number;
|
|
264
|
+
limit: number;
|
|
186
265
|
sortBy: "latest" | "recommended";
|
|
187
266
|
}, {
|
|
188
|
-
limit?: number | undefined;
|
|
189
267
|
page?: number | undefined;
|
|
268
|
+
limit?: number | undefined;
|
|
190
269
|
sortBy?: "latest" | "recommended" | undefined;
|
|
191
270
|
}>;
|
|
192
271
|
export type GetUserCommentsQueryDto = z.infer<typeof GetUserCommentsQuerySchema>;
|
|
@@ -211,11 +290,11 @@ export declare const GetUserCommentRepliesQuerySchema: z.ZodObject<{
|
|
|
211
290
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
212
291
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
213
292
|
}, "strip", z.ZodTypeAny, {
|
|
214
|
-
limit: number;
|
|
215
293
|
page: number;
|
|
294
|
+
limit: number;
|
|
216
295
|
}, {
|
|
217
|
-
limit?: number | undefined;
|
|
218
296
|
page?: number | undefined;
|
|
297
|
+
limit?: number | undefined;
|
|
219
298
|
}>;
|
|
220
299
|
export type GetUserCommentRepliesQueryDto = z.infer<typeof GetUserCommentRepliesQuerySchema>;
|
|
221
300
|
export interface GetUserCommentRepliesResponseDto {
|
|
@@ -279,11 +358,11 @@ export declare const ReportUserCommentParamsSchema: z.ZodObject<{
|
|
|
279
358
|
userId: z.ZodBigInt;
|
|
280
359
|
commentId: z.ZodBigInt;
|
|
281
360
|
}, "strip", z.ZodTypeAny, {
|
|
282
|
-
commentId: bigint;
|
|
283
361
|
userId: bigint;
|
|
284
|
-
}, {
|
|
285
362
|
commentId: bigint;
|
|
363
|
+
}, {
|
|
286
364
|
userId: bigint;
|
|
365
|
+
commentId: bigint;
|
|
287
366
|
}>;
|
|
288
367
|
export type ReportUserCommentParamsDto = z.infer<typeof ReportUserCommentParamsSchema>;
|
|
289
368
|
export interface ReportUserCommentResponseDto {
|
|
@@ -294,11 +373,11 @@ export declare const DeleteUserCommentParamsSchema: z.ZodObject<{
|
|
|
294
373
|
userId: z.ZodBigInt;
|
|
295
374
|
commentId: z.ZodBigInt;
|
|
296
375
|
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
commentId: bigint;
|
|
298
376
|
userId: bigint;
|
|
299
|
-
}, {
|
|
300
377
|
commentId: bigint;
|
|
378
|
+
}, {
|
|
301
379
|
userId: bigint;
|
|
380
|
+
commentId: bigint;
|
|
302
381
|
}>;
|
|
303
382
|
export type DeleteUserCommentParamsDto = z.infer<typeof DeleteUserCommentParamsSchema>;
|
|
304
383
|
export interface DeleteUserCommentResponseDto {
|
|
@@ -330,11 +409,11 @@ export declare const GetNoticesQuerySchema: z.ZodObject<{
|
|
|
330
409
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
331
410
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
332
411
|
}, "strip", z.ZodTypeAny, {
|
|
333
|
-
limit: number;
|
|
334
412
|
page: number;
|
|
413
|
+
limit: number;
|
|
335
414
|
}, {
|
|
336
|
-
limit?: number | undefined;
|
|
337
415
|
page?: number | undefined;
|
|
416
|
+
limit?: number | undefined;
|
|
338
417
|
}>;
|
|
339
418
|
export type GetNoticesQueryDto = z.infer<typeof GetNoticesQuerySchema>;
|
|
340
419
|
export interface GetNoticesResponseDto {
|
|
@@ -369,11 +448,11 @@ export declare const GetUserNotificationsQuerySchema: z.ZodObject<{
|
|
|
369
448
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
370
449
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
371
450
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
-
limit: number;
|
|
373
451
|
page: number;
|
|
452
|
+
limit: number;
|
|
374
453
|
}, {
|
|
375
|
-
limit?: number | undefined;
|
|
376
454
|
page?: number | undefined;
|
|
455
|
+
limit?: number | undefined;
|
|
377
456
|
}>;
|
|
378
457
|
export type GetUserNotificationsQueryDto = z.infer<typeof GetUserNotificationsQuerySchema>;
|
|
379
458
|
export interface GetUserNotificationsResponseDto {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetCurrentUserSchema = exports.ReadUserNotificationParamsSchema = exports.ReadAllUserNotificationsBodySchema = exports.AcknowledgeUserNotificationsBodySchema = exports.GetUserNotificationsQuerySchema = exports.ReadNoticeParamsSchema = exports.ReadAllNoticesBodySchema = exports.AcknowledgeNoticesBodySchema = exports.GetNoticesQuerySchema = exports.SetUserReferrerBodySchema = exports.GetUserReferralQuerySchema = exports.DeleteUserCommentParamsSchema = exports.ReportUserCommentParamsSchema = exports.UpdateUserCommentReactionBodySchema = exports.UpdateUserCommentReactionParamsSchema = exports.CreateUserCommentBodySchema = exports.CreateUserCommentParamsSchema = exports.GetUserCommentRepliesQuerySchema = exports.GetUserCommentRepliesParamsSchema = exports.GetUserCommentsQuerySchema = exports.GetUserCommentsParamsSchema = exports.GetUsersByIdsQuerySchema = exports.ValidateUserFieldBodySchema = exports.CheckAttendanceBodySchema = exports.GetAttendanceQuerySchema = exports.UpdateUserAvatarBodySchema = exports.GetUserAvatarsQuerySchema = exports.UpdateCurrentUserBodySchema = exports.GetCurrentUserQuerySchema = void 0;
|
|
3
|
+
exports.GetCurrentUserSchema = exports.ReadUserNotificationParamsSchema = exports.ReadAllUserNotificationsBodySchema = exports.AcknowledgeUserNotificationsBodySchema = exports.GetUserNotificationsQuerySchema = exports.ReadNoticeParamsSchema = exports.ReadAllNoticesBodySchema = exports.AcknowledgeNoticesBodySchema = exports.GetNoticesQuerySchema = exports.SetUserReferrerBodySchema = exports.GetUserReferralQuerySchema = exports.DeleteUserCommentParamsSchema = exports.ReportUserCommentParamsSchema = exports.UpdateUserCommentReactionBodySchema = exports.UpdateUserCommentReactionParamsSchema = exports.CreateUserCommentBodySchema = exports.CreateUserCommentParamsSchema = exports.GetUserCommentRepliesQuerySchema = exports.GetUserCommentRepliesParamsSchema = exports.GetUserCommentsQuerySchema = exports.GetUserCommentsParamsSchema = exports.GetUserFollowingQuerySchema = exports.GetUserFollowingParamsSchema = exports.GetUserFollowersQuerySchema = exports.GetUserFollowersParamsSchema = exports.UnfollowUserParamsSchema = exports.FollowUserParamsSchema = exports.GetUsersByIdsQuerySchema = exports.ValidateUserFieldBodySchema = exports.CheckAttendanceBodySchema = exports.GetAttendanceQuerySchema = exports.UpdateUserAvatarBodySchema = exports.GetUserAvatarsQuerySchema = exports.UpdateCurrentUserBodySchema = exports.GetCurrentUserQuerySchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const user_1 = require("./user");
|
|
6
6
|
exports.GetCurrentUserQuerySchema = zod_1.z.object({});
|
|
@@ -14,6 +14,7 @@ exports.UpdateCurrentUserBodySchema = zod_1.z.object({
|
|
|
14
14
|
nickname: zod_1.z.string().min(4).max(32).optional(),
|
|
15
15
|
birthDate: zod_1.z.coerce.date().optional(),
|
|
16
16
|
profilePicture: zod_1.z.string().max(2048).optional(),
|
|
17
|
+
role: zod_1.z.string().max(200).optional(),
|
|
17
18
|
avatarName: zod_1.z.string().max(64).optional(),
|
|
18
19
|
avatar: zod_1.z.string().max(2048).optional(),
|
|
19
20
|
referenceAvatar: zod_1.z.string().max(2048).optional(),
|
|
@@ -51,6 +52,26 @@ exports.GetUsersByIdsQuerySchema = zod_1.z.object({
|
|
|
51
52
|
}),
|
|
52
53
|
locationId: zod_1.z.coerce.bigint().optional(),
|
|
53
54
|
});
|
|
55
|
+
exports.FollowUserParamsSchema = zod_1.z.object({
|
|
56
|
+
userId: zod_1.z.coerce.bigint(),
|
|
57
|
+
});
|
|
58
|
+
exports.UnfollowUserParamsSchema = zod_1.z.object({
|
|
59
|
+
userId: zod_1.z.coerce.bigint(),
|
|
60
|
+
});
|
|
61
|
+
exports.GetUserFollowersParamsSchema = zod_1.z.object({
|
|
62
|
+
userId: zod_1.z.coerce.bigint(),
|
|
63
|
+
});
|
|
64
|
+
exports.GetUserFollowersQuerySchema = zod_1.z.object({
|
|
65
|
+
page: zod_1.z.coerce.number().int().min(1).optional().default(1),
|
|
66
|
+
limit: zod_1.z.coerce.number().int().min(1).max(20).optional().default(20),
|
|
67
|
+
});
|
|
68
|
+
exports.GetUserFollowingParamsSchema = zod_1.z.object({
|
|
69
|
+
userId: zod_1.z.coerce.bigint(),
|
|
70
|
+
});
|
|
71
|
+
exports.GetUserFollowingQuerySchema = zod_1.z.object({
|
|
72
|
+
page: zod_1.z.coerce.number().int().min(1).optional().default(1),
|
|
73
|
+
limit: zod_1.z.coerce.number().int().min(1).max(20).optional().default(20),
|
|
74
|
+
});
|
|
54
75
|
exports.GetUserCommentsParamsSchema = zod_1.z.object({
|
|
55
76
|
userId: zod_1.z.coerce.bigint(),
|
|
56
77
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.requests.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.requests.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,iCAMgB;AASH,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AASzC,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,QAAQ,EAAE,OAAC;SACR,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,EAAE,CAAC;SACP,KAAK,CAAC,cAAc,CAAC;SACrB,QAAQ,EAAE;IACb,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC9C,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACrC,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IAC/C,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACzC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IACvC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;IAChD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IAC1C,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IAEnC,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAC;AAYU,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AASzC,QAAA,0BAA0B,GAAG,OAAC;KACxC,MAAM,CAAC;IACN,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAChD,UAAU,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,MAAM,EAAE,uBAAgB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC/C,CAAC;KACD,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,KAAK,SAAS,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,EAAE;IAC3E,OAAO,EAAE,6CAA6C;CACvD,CAAC,CAAC;AAYQ,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAmBxC,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AASzC,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,QAAQ,EAAE,OAAC;SACR,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,EAAE,CAAC;SACP,KAAK,CAAC,cAAc,CAAC;SACrB,QAAQ,EAAE;IACb,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC;AAYU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,OAAO,EAAE,OAAC;SACP,MAAM,EAAE;SACR,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;SACjE,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,IAAI,GAAG,CAAC,MAAM,IAAI,EAAE,EAAE;QACnD,OAAO,EAAE,oCAAoC;KAC9C,CAAC;IACJ,UAAU,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAC;AASU,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC1B,CAAC,CAAC;AAMU,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IACjD,MAAM,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtE,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACrE,CAAC,CAAC;AAiBU,QAAA,iCAAiC,GAAG,OAAC,CAAC,MAAM,CAAC;IACxD,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC7B,CAAC,CAAC;AAMU,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACvD,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACrE,CAAC,CAAC;AAiBU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC1B,CAAC,CAAC;AAMU,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,eAAe,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7C,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC;IACpC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAC5C,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;CAChD,CAAC,CAAC;AAWU,QAAA,qCAAqC,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5D,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC7B,CAAC,CAAC;AAMU,QAAA,mCAAmC,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1D,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC,QAAQ,EAAE;CACrD,CAAC,CAAC;AAYU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC7B,CAAC,CAAC;AAYU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC7B,CAAC,CAAC;AAYU,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAgB1C,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC;IAChD,YAAY,EAAE,OAAC;SACZ,MAAM,EAAE;SACR,MAAM,CAAC,CAAC,CAAC;SACT,KAAK,CAAC,aAAa,CAAC;CACxB,CAAC,CAAC;AASU,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACrE,CAAC,CAAC;AAgBU,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAS5C,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAOxC,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;CAC5B,CAAC,CAAC;AAOU,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,IAAI,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;CACrE,CAAC,CAAC;AAkBU,QAAA,sCAAsC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAStD,QAAA,kCAAkC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AASlD,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACvD,cAAc,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAC;AAaU,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"user.requests.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.requests.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,8 +15,8 @@ export declare const UserLocationsQuerySchema: z.ZodObject<{
|
|
|
15
15
|
limit: number;
|
|
16
16
|
cursor?: string | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
cursor?: string | undefined;
|
|
19
18
|
limit?: number | undefined;
|
|
19
|
+
cursor?: string | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
export type UserLocationsQueryDto = z.infer<typeof UserLocationsQuerySchema>;
|
|
22
22
|
export interface UserLocationsResponseDto {
|
|
@@ -30,11 +30,11 @@ export declare const PublishedLocationsQuerySchema: z.ZodObject<{
|
|
|
30
30
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
31
31
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
limit: number;
|
|
34
33
|
page: number;
|
|
34
|
+
limit: number;
|
|
35
35
|
}, {
|
|
36
|
-
limit?: number | undefined;
|
|
37
36
|
page?: number | undefined;
|
|
37
|
+
limit?: number | undefined;
|
|
38
38
|
}>;
|
|
39
39
|
export type PublishedLocationsQueryDto = z.infer<typeof PublishedLocationsQuerySchema>;
|
|
40
40
|
export interface PublishedLocationsResponseDto {
|
|
@@ -135,8 +135,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
135
135
|
url?: string | undefined;
|
|
136
136
|
}>, "many">>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
|
-
name: string;
|
|
139
138
|
appearance: string;
|
|
139
|
+
name: string;
|
|
140
140
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
141
141
|
images?: {
|
|
142
142
|
description: string;
|
|
@@ -144,8 +144,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
144
144
|
url?: string | undefined;
|
|
145
145
|
}[] | undefined;
|
|
146
146
|
}, {
|
|
147
|
-
name: string;
|
|
148
147
|
appearance: string;
|
|
148
|
+
name: string;
|
|
149
149
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
150
150
|
images?: {
|
|
151
151
|
description: string;
|
|
@@ -176,8 +176,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
176
176
|
maxLength: number;
|
|
177
177
|
}[] | undefined;
|
|
178
178
|
gimmicks?: {
|
|
179
|
-
name: string;
|
|
180
179
|
appearance: string;
|
|
180
|
+
name: string;
|
|
181
181
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
182
182
|
images?: {
|
|
183
183
|
description: string;
|
|
@@ -208,8 +208,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
208
208
|
maxLength: number;
|
|
209
209
|
}[] | undefined;
|
|
210
210
|
gimmicks?: {
|
|
211
|
-
name: string;
|
|
212
211
|
appearance: string;
|
|
212
|
+
name: string;
|
|
213
213
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
214
214
|
images?: {
|
|
215
215
|
description: string;
|
|
@@ -243,8 +243,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
243
243
|
maxLength: number;
|
|
244
244
|
}[] | undefined;
|
|
245
245
|
gimmicks?: {
|
|
246
|
-
name: string;
|
|
247
246
|
appearance: string;
|
|
247
|
+
name: string;
|
|
248
248
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
249
249
|
images?: {
|
|
250
250
|
description: string;
|
|
@@ -278,8 +278,8 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
|
|
|
278
278
|
maxLength: number;
|
|
279
279
|
}[] | undefined;
|
|
280
280
|
gimmicks?: {
|
|
281
|
-
name: string;
|
|
282
281
|
appearance: string;
|
|
282
|
+
name: string;
|
|
283
283
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
284
284
|
images?: {
|
|
285
285
|
description: string;
|
|
@@ -356,12 +356,12 @@ export declare const LocationPresetsPaginationQuerySchema: z.ZodObject<{
|
|
|
356
356
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
357
357
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
358
358
|
}, "strip", z.ZodTypeAny, {
|
|
359
|
-
limit: number;
|
|
360
359
|
page: number;
|
|
360
|
+
limit: number;
|
|
361
361
|
visibility: "edited" | "private" | "public" | "publish";
|
|
362
362
|
}, {
|
|
363
|
-
limit?: number | undefined;
|
|
364
363
|
page?: number | undefined;
|
|
364
|
+
limit?: number | undefined;
|
|
365
365
|
visibility?: "edited" | "private" | "public" | "publish" | undefined;
|
|
366
366
|
}>;
|
|
367
367
|
export type LocationPresetsPaginationQueryDto = z.infer<typeof LocationPresetsPaginationQuerySchema>;
|
|
@@ -383,15 +383,15 @@ export declare const PublishedLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
383
383
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
384
384
|
}, "strip", z.ZodTypeAny, {
|
|
385
385
|
type: "NOVEL";
|
|
386
|
-
limit: number;
|
|
387
386
|
page: number;
|
|
387
|
+
limit: number;
|
|
388
388
|
gender: "all" | "male" | "female";
|
|
389
389
|
tag?: string | undefined;
|
|
390
390
|
ownerUserId?: bigint | undefined;
|
|
391
391
|
}, {
|
|
392
392
|
type: "NOVEL";
|
|
393
|
-
limit?: number | undefined;
|
|
394
393
|
page?: number | undefined;
|
|
394
|
+
limit?: number | undefined;
|
|
395
395
|
gender?: "all" | "male" | "female" | undefined;
|
|
396
396
|
tag?: string | undefined;
|
|
397
397
|
ownerUserId?: bigint | undefined;
|
|
@@ -406,6 +406,24 @@ export interface PublishedLocationPresetsResponseDto {
|
|
|
406
406
|
totalPages: number;
|
|
407
407
|
};
|
|
408
408
|
}
|
|
409
|
+
export declare const FollowingLocationPresetsQuerySchema: z.ZodObject<{
|
|
410
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
411
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
412
|
+
}, "strip", z.ZodTypeAny, {
|
|
413
|
+
page: number;
|
|
414
|
+
limit: number;
|
|
415
|
+
}, {
|
|
416
|
+
page?: number | undefined;
|
|
417
|
+
limit?: number | undefined;
|
|
418
|
+
}>;
|
|
419
|
+
export type FollowingLocationPresetsQueryDto = z.infer<typeof FollowingLocationPresetsQuerySchema>;
|
|
420
|
+
export interface FollowingLocationPresetsResponseDto {
|
|
421
|
+
data: LocationPresetDetailDto[];
|
|
422
|
+
meta: {
|
|
423
|
+
page: number;
|
|
424
|
+
limit: number;
|
|
425
|
+
};
|
|
426
|
+
}
|
|
409
427
|
export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
410
428
|
query: z.ZodString;
|
|
411
429
|
type: z.ZodEnum<["NOVEL"]>;
|
|
@@ -415,18 +433,18 @@ export declare const SearchLocationPresetsQuerySchema: z.ZodObject<{
|
|
|
415
433
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
416
434
|
}, "strip", z.ZodTypeAny, {
|
|
417
435
|
type: "NOVEL";
|
|
418
|
-
limit: number;
|
|
419
436
|
page: number;
|
|
437
|
+
limit: number;
|
|
438
|
+
sortBy: "latest" | "popular";
|
|
420
439
|
gender: "all" | "male" | "female";
|
|
421
440
|
query: string;
|
|
422
|
-
sortBy: "popular" | "latest";
|
|
423
441
|
}, {
|
|
424
442
|
type: "NOVEL";
|
|
425
443
|
query: string;
|
|
426
|
-
limit?: number | undefined;
|
|
427
444
|
page?: number | undefined;
|
|
445
|
+
limit?: number | undefined;
|
|
446
|
+
sortBy?: "latest" | "popular" | undefined;
|
|
428
447
|
gender?: "all" | "male" | "female" | undefined;
|
|
429
|
-
sortBy?: "popular" | "latest" | undefined;
|
|
430
448
|
}>;
|
|
431
449
|
export type SearchLocationPresetsQueryDto = z.infer<typeof SearchLocationPresetsQuerySchema>;
|
|
432
450
|
export interface SearchLocationPresetsResponseDto {
|
|
@@ -532,8 +550,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
532
550
|
url?: string | undefined;
|
|
533
551
|
}>, "many">>;
|
|
534
552
|
}, "strip", z.ZodTypeAny, {
|
|
535
|
-
name: string;
|
|
536
553
|
appearance: string;
|
|
554
|
+
name: string;
|
|
537
555
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
538
556
|
images?: {
|
|
539
557
|
description: string;
|
|
@@ -541,8 +559,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
541
559
|
url?: string | undefined;
|
|
542
560
|
}[] | undefined;
|
|
543
561
|
}, {
|
|
544
|
-
name: string;
|
|
545
562
|
appearance: string;
|
|
563
|
+
name: string;
|
|
546
564
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
547
565
|
images?: {
|
|
548
566
|
description: string;
|
|
@@ -573,8 +591,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
573
591
|
maxLength: number;
|
|
574
592
|
}[] | undefined;
|
|
575
593
|
gimmicks?: {
|
|
576
|
-
name: string;
|
|
577
594
|
appearance: string;
|
|
595
|
+
name: string;
|
|
578
596
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
579
597
|
images?: {
|
|
580
598
|
description: string;
|
|
@@ -605,8 +623,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
605
623
|
maxLength: number;
|
|
606
624
|
}[] | undefined;
|
|
607
625
|
gimmicks?: {
|
|
608
|
-
name: string;
|
|
609
626
|
appearance: string;
|
|
627
|
+
name: string;
|
|
610
628
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
611
629
|
images?: {
|
|
612
630
|
description: string;
|
|
@@ -728,11 +746,11 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
728
746
|
}>>;
|
|
729
747
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
730
748
|
}, "strip", z.ZodTypeAny, {
|
|
731
|
-
name?: string | undefined;
|
|
732
749
|
role?: string | undefined;
|
|
733
750
|
avatar?: string | undefined;
|
|
734
751
|
referenceAvatar?: string | undefined;
|
|
735
752
|
appearance?: string | undefined;
|
|
753
|
+
name?: string | undefined;
|
|
736
754
|
core?: {
|
|
737
755
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
738
756
|
} | undefined;
|
|
@@ -764,11 +782,11 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
764
782
|
} | undefined;
|
|
765
783
|
} | undefined;
|
|
766
784
|
}, {
|
|
767
|
-
name?: string | undefined;
|
|
768
785
|
role?: string | undefined;
|
|
769
786
|
avatar?: string | undefined;
|
|
770
787
|
referenceAvatar?: string | undefined;
|
|
771
788
|
appearance?: string | undefined;
|
|
789
|
+
name?: string | undefined;
|
|
772
790
|
core?: {
|
|
773
791
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
774
792
|
} | undefined;
|
|
@@ -803,8 +821,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
803
821
|
}, "strip", z.ZodTypeAny, {
|
|
804
822
|
presetDescription: string;
|
|
805
823
|
presetShortDescription: string;
|
|
806
|
-
name?: string | undefined;
|
|
807
824
|
locationId?: bigint | undefined;
|
|
825
|
+
name?: string | undefined;
|
|
808
826
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
809
827
|
hashtags?: string[] | undefined;
|
|
810
828
|
isAllowImport?: boolean | undefined;
|
|
@@ -832,8 +850,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
832
850
|
maxLength: number;
|
|
833
851
|
}[] | undefined;
|
|
834
852
|
gimmicks?: {
|
|
835
|
-
name: string;
|
|
836
853
|
appearance: string;
|
|
854
|
+
name: string;
|
|
837
855
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
838
856
|
images?: {
|
|
839
857
|
description: string;
|
|
@@ -843,11 +861,11 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
843
861
|
}[] | undefined;
|
|
844
862
|
} | undefined;
|
|
845
863
|
agentConfigs?: {
|
|
846
|
-
name?: string | undefined;
|
|
847
864
|
role?: string | undefined;
|
|
848
865
|
avatar?: string | undefined;
|
|
849
866
|
referenceAvatar?: string | undefined;
|
|
850
867
|
appearance?: string | undefined;
|
|
868
|
+
name?: string | undefined;
|
|
851
869
|
core?: {
|
|
852
870
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
853
871
|
} | undefined;
|
|
@@ -882,8 +900,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
882
900
|
}, {
|
|
883
901
|
presetDescription: string;
|
|
884
902
|
presetShortDescription: string;
|
|
885
|
-
name?: string | undefined;
|
|
886
903
|
locationId?: bigint | undefined;
|
|
904
|
+
name?: string | undefined;
|
|
887
905
|
visibility?: "private" | "public" | "publish" | undefined;
|
|
888
906
|
hashtags?: string[] | undefined;
|
|
889
907
|
isAllowImport?: boolean | undefined;
|
|
@@ -911,8 +929,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
911
929
|
maxLength: number;
|
|
912
930
|
}[] | undefined;
|
|
913
931
|
gimmicks?: {
|
|
914
|
-
name: string;
|
|
915
932
|
appearance: string;
|
|
933
|
+
name: string;
|
|
916
934
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
917
935
|
images?: {
|
|
918
936
|
description: string;
|
|
@@ -922,11 +940,11 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
|
|
|
922
940
|
}[] | undefined;
|
|
923
941
|
} | undefined;
|
|
924
942
|
agentConfigs?: {
|
|
925
|
-
name?: string | undefined;
|
|
926
943
|
role?: string | undefined;
|
|
927
944
|
avatar?: string | undefined;
|
|
928
945
|
referenceAvatar?: string | undefined;
|
|
929
946
|
appearance?: string | undefined;
|
|
947
|
+
name?: string | undefined;
|
|
930
948
|
core?: {
|
|
931
949
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
932
950
|
} | undefined;
|
|
@@ -1060,16 +1078,16 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1060
1078
|
referenceAvatar: z.ZodString;
|
|
1061
1079
|
appearance: z.ZodString;
|
|
1062
1080
|
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
name: string;
|
|
1064
1081
|
avatar: string;
|
|
1065
1082
|
referenceAvatar: string;
|
|
1066
1083
|
appearance: string;
|
|
1084
|
+
name: string;
|
|
1067
1085
|
role?: string | undefined;
|
|
1068
1086
|
}, {
|
|
1069
|
-
name: string;
|
|
1070
1087
|
avatar: string;
|
|
1071
1088
|
referenceAvatar: string;
|
|
1072
1089
|
appearance: string;
|
|
1090
|
+
name: string;
|
|
1073
1091
|
role?: string | undefined;
|
|
1074
1092
|
}>>>;
|
|
1075
1093
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1142,8 +1160,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1142
1160
|
url?: string | undefined;
|
|
1143
1161
|
}>, "many">>;
|
|
1144
1162
|
}, "strip", z.ZodTypeAny, {
|
|
1145
|
-
name: string;
|
|
1146
1163
|
appearance: string;
|
|
1164
|
+
name: string;
|
|
1147
1165
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1148
1166
|
images?: {
|
|
1149
1167
|
description: string;
|
|
@@ -1151,8 +1169,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1151
1169
|
url?: string | undefined;
|
|
1152
1170
|
}[] | undefined;
|
|
1153
1171
|
}, {
|
|
1154
|
-
name: string;
|
|
1155
1172
|
appearance: string;
|
|
1173
|
+
name: string;
|
|
1156
1174
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1157
1175
|
images?: {
|
|
1158
1176
|
description: string;
|
|
@@ -1183,8 +1201,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1183
1201
|
maxLength: number;
|
|
1184
1202
|
}[] | undefined;
|
|
1185
1203
|
gimmicks?: {
|
|
1186
|
-
name: string;
|
|
1187
1204
|
appearance: string;
|
|
1205
|
+
name: string;
|
|
1188
1206
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1189
1207
|
images?: {
|
|
1190
1208
|
description: string;
|
|
@@ -1215,8 +1233,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1215
1233
|
maxLength: number;
|
|
1216
1234
|
}[] | undefined;
|
|
1217
1235
|
gimmicks?: {
|
|
1218
|
-
name: string;
|
|
1219
1236
|
appearance: string;
|
|
1237
|
+
name: string;
|
|
1220
1238
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1221
1239
|
images?: {
|
|
1222
1240
|
description: string;
|
|
@@ -1338,11 +1356,11 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1338
1356
|
}>>;
|
|
1339
1357
|
rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1340
1358
|
}, "strip", z.ZodTypeAny, {
|
|
1341
|
-
name?: string | undefined;
|
|
1342
1359
|
role?: string | undefined;
|
|
1343
1360
|
avatar?: string | undefined;
|
|
1344
1361
|
referenceAvatar?: string | undefined;
|
|
1345
1362
|
appearance?: string | undefined;
|
|
1363
|
+
name?: string | undefined;
|
|
1346
1364
|
core?: {
|
|
1347
1365
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1348
1366
|
} | undefined;
|
|
@@ -1374,11 +1392,11 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1374
1392
|
} | undefined;
|
|
1375
1393
|
} | undefined;
|
|
1376
1394
|
}, {
|
|
1377
|
-
name?: string | undefined;
|
|
1378
1395
|
role?: string | undefined;
|
|
1379
1396
|
avatar?: string | undefined;
|
|
1380
1397
|
referenceAvatar?: string | undefined;
|
|
1381
1398
|
appearance?: string | undefined;
|
|
1399
|
+
name?: string | undefined;
|
|
1382
1400
|
core?: {
|
|
1383
1401
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1384
1402
|
} | undefined;
|
|
@@ -1446,8 +1464,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1446
1464
|
maxLength: number;
|
|
1447
1465
|
}[] | undefined;
|
|
1448
1466
|
gimmicks?: {
|
|
1449
|
-
name: string;
|
|
1450
1467
|
appearance: string;
|
|
1468
|
+
name: string;
|
|
1451
1469
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1452
1470
|
images?: {
|
|
1453
1471
|
description: string;
|
|
@@ -1457,11 +1475,11 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1457
1475
|
}[] | undefined;
|
|
1458
1476
|
} | undefined;
|
|
1459
1477
|
agentConfigs?: ({
|
|
1460
|
-
name?: string | undefined;
|
|
1461
1478
|
role?: string | undefined;
|
|
1462
1479
|
avatar?: string | undefined;
|
|
1463
1480
|
referenceAvatar?: string | undefined;
|
|
1464
1481
|
appearance?: string | undefined;
|
|
1482
|
+
name?: string | undefined;
|
|
1465
1483
|
core?: {
|
|
1466
1484
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1467
1485
|
} | undefined;
|
|
@@ -1507,10 +1525,10 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1507
1525
|
image?: string | undefined;
|
|
1508
1526
|
}[] | undefined;
|
|
1509
1527
|
userAvatar?: {
|
|
1510
|
-
name: string;
|
|
1511
1528
|
avatar: string;
|
|
1512
1529
|
referenceAvatar: string;
|
|
1513
1530
|
appearance: string;
|
|
1531
|
+
name: string;
|
|
1514
1532
|
role?: string | undefined;
|
|
1515
1533
|
} | null | undefined;
|
|
1516
1534
|
tags?: string[] | undefined;
|
|
@@ -1550,8 +1568,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1550
1568
|
maxLength: number;
|
|
1551
1569
|
}[] | undefined;
|
|
1552
1570
|
gimmicks?: {
|
|
1553
|
-
name: string;
|
|
1554
1571
|
appearance: string;
|
|
1572
|
+
name: string;
|
|
1555
1573
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1556
1574
|
images?: {
|
|
1557
1575
|
description: string;
|
|
@@ -1561,11 +1579,11 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1561
1579
|
}[] | undefined;
|
|
1562
1580
|
} | undefined;
|
|
1563
1581
|
agentConfigs?: ({
|
|
1564
|
-
name?: string | undefined;
|
|
1565
1582
|
role?: string | undefined;
|
|
1566
1583
|
avatar?: string | undefined;
|
|
1567
1584
|
referenceAvatar?: string | undefined;
|
|
1568
1585
|
appearance?: string | undefined;
|
|
1586
|
+
name?: string | undefined;
|
|
1569
1587
|
core?: {
|
|
1570
1588
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
1571
1589
|
} | undefined;
|
|
@@ -1611,10 +1629,10 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
|
|
|
1611
1629
|
image?: string | undefined;
|
|
1612
1630
|
}[] | undefined;
|
|
1613
1631
|
userAvatar?: {
|
|
1614
|
-
name: string;
|
|
1615
1632
|
avatar: string;
|
|
1616
1633
|
referenceAvatar: string;
|
|
1617
1634
|
appearance: string;
|
|
1635
|
+
name: string;
|
|
1618
1636
|
role?: string | undefined;
|
|
1619
1637
|
} | null | undefined;
|
|
1620
1638
|
tags?: string[] | undefined;
|
|
@@ -1756,8 +1774,8 @@ export declare const GetLocationPresetLocationsParamsSchema: z.ZodObject<{
|
|
|
1756
1774
|
cursor?: string | undefined;
|
|
1757
1775
|
}, {
|
|
1758
1776
|
presetId: bigint;
|
|
1759
|
-
cursor?: string | undefined;
|
|
1760
1777
|
limit?: number | undefined;
|
|
1778
|
+
cursor?: string | undefined;
|
|
1761
1779
|
}>;
|
|
1762
1780
|
export type GetLocationPresetLocationsParamsDto = z.infer<typeof GetLocationPresetLocationsParamsSchema>;
|
|
1763
1781
|
export interface GetLocationPresetLocationsResponseDto {
|
|
@@ -1780,12 +1798,12 @@ export declare const GetLocationPresetCommentsQuerySchema: z.ZodObject<{
|
|
|
1780
1798
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1781
1799
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1782
1800
|
}, "strip", z.ZodTypeAny, {
|
|
1783
|
-
limit: number;
|
|
1784
1801
|
page: number;
|
|
1802
|
+
limit: number;
|
|
1785
1803
|
sortBy: "latest" | "recommended";
|
|
1786
1804
|
}, {
|
|
1787
|
-
limit?: number | undefined;
|
|
1788
1805
|
page?: number | undefined;
|
|
1806
|
+
limit?: number | undefined;
|
|
1789
1807
|
sortBy?: "latest" | "recommended" | undefined;
|
|
1790
1808
|
}>;
|
|
1791
1809
|
export type GetLocationPresetCommentsQueryDto = z.infer<typeof GetLocationPresetCommentsQuerySchema>;
|
|
@@ -1811,11 +1829,11 @@ export declare const GetLocationPresetCommentRepliesQuerySchema: z.ZodObject<{
|
|
|
1811
1829
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1812
1830
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1813
1831
|
}, "strip", z.ZodTypeAny, {
|
|
1814
|
-
limit: number;
|
|
1815
1832
|
page: number;
|
|
1833
|
+
limit: number;
|
|
1816
1834
|
}, {
|
|
1817
|
-
limit?: number | undefined;
|
|
1818
1835
|
page?: number | undefined;
|
|
1836
|
+
limit?: number | undefined;
|
|
1819
1837
|
}>;
|
|
1820
1838
|
export type GetLocationPresetCommentRepliesQueryDto = z.infer<typeof GetLocationPresetCommentRepliesQuerySchema>;
|
|
1821
1839
|
export interface GetLocationPresetCommentRepliesResponseDto {
|
|
@@ -1879,11 +1897,11 @@ export declare const ReportLocationPresetCommentParamsSchema: z.ZodObject<{
|
|
|
1879
1897
|
presetId: z.ZodBigInt;
|
|
1880
1898
|
commentId: z.ZodBigInt;
|
|
1881
1899
|
}, "strip", z.ZodTypeAny, {
|
|
1882
|
-
presetId: bigint;
|
|
1883
1900
|
commentId: bigint;
|
|
1884
|
-
}, {
|
|
1885
1901
|
presetId: bigint;
|
|
1902
|
+
}, {
|
|
1886
1903
|
commentId: bigint;
|
|
1904
|
+
presetId: bigint;
|
|
1887
1905
|
}>;
|
|
1888
1906
|
export type ReportLocationPresetCommentParamsDto = z.infer<typeof ReportLocationPresetCommentParamsSchema>;
|
|
1889
1907
|
export interface ReportLocationPresetCommentResponseDto {
|
|
@@ -1894,11 +1912,11 @@ export declare const DeleteLocationPresetCommentParamsSchema: z.ZodObject<{
|
|
|
1894
1912
|
presetId: z.ZodBigInt;
|
|
1895
1913
|
commentId: z.ZodBigInt;
|
|
1896
1914
|
}, "strip", z.ZodTypeAny, {
|
|
1897
|
-
presetId: bigint;
|
|
1898
1915
|
commentId: bigint;
|
|
1899
|
-
}, {
|
|
1900
1916
|
presetId: bigint;
|
|
1917
|
+
}, {
|
|
1901
1918
|
commentId: bigint;
|
|
1919
|
+
presetId: bigint;
|
|
1902
1920
|
}>;
|
|
1903
1921
|
export type DeleteLocationPresetCommentParamsDto = z.infer<typeof DeleteLocationPresetCommentParamsSchema>;
|
|
1904
1922
|
export interface DeleteLocationPresetCommentResponseDto {
|
|
@@ -1992,8 +2010,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
1992
2010
|
url?: string | undefined;
|
|
1993
2011
|
}>, "many">>;
|
|
1994
2012
|
}, "strip", z.ZodTypeAny, {
|
|
1995
|
-
name: string;
|
|
1996
2013
|
appearance: string;
|
|
2014
|
+
name: string;
|
|
1997
2015
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
1998
2016
|
images?: {
|
|
1999
2017
|
description: string;
|
|
@@ -2001,8 +2019,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2001
2019
|
url?: string | undefined;
|
|
2002
2020
|
}[] | undefined;
|
|
2003
2021
|
}, {
|
|
2004
|
-
name: string;
|
|
2005
2022
|
appearance: string;
|
|
2023
|
+
name: string;
|
|
2006
2024
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2007
2025
|
images?: {
|
|
2008
2026
|
description: string;
|
|
@@ -2033,8 +2051,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2033
2051
|
maxLength: number;
|
|
2034
2052
|
}[] | undefined;
|
|
2035
2053
|
gimmicks?: {
|
|
2036
|
-
name: string;
|
|
2037
2054
|
appearance: string;
|
|
2055
|
+
name: string;
|
|
2038
2056
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2039
2057
|
images?: {
|
|
2040
2058
|
description: string;
|
|
@@ -2065,8 +2083,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2065
2083
|
maxLength: number;
|
|
2066
2084
|
}[] | undefined;
|
|
2067
2085
|
gimmicks?: {
|
|
2068
|
-
name: string;
|
|
2069
2086
|
appearance: string;
|
|
2087
|
+
name: string;
|
|
2070
2088
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2071
2089
|
images?: {
|
|
2072
2090
|
description: string;
|
|
@@ -2103,8 +2121,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2103
2121
|
maxLength: number;
|
|
2104
2122
|
}[] | undefined;
|
|
2105
2123
|
gimmicks?: {
|
|
2106
|
-
name: string;
|
|
2107
2124
|
appearance: string;
|
|
2125
|
+
name: string;
|
|
2108
2126
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2109
2127
|
images?: {
|
|
2110
2128
|
description: string;
|
|
@@ -2138,8 +2156,8 @@ export declare const CreateLocationSchema: z.ZodObject<{
|
|
|
2138
2156
|
maxLength: number;
|
|
2139
2157
|
}[] | undefined;
|
|
2140
2158
|
gimmicks?: {
|
|
2141
|
-
name: string;
|
|
2142
2159
|
appearance: string;
|
|
2160
|
+
name: string;
|
|
2143
2161
|
core: "web_search" | "image_generator" | "character_image_generator" | "notion";
|
|
2144
2162
|
images?: {
|
|
2145
2163
|
description: string;
|
|
@@ -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.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;
|
|
3
|
+
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.FollowingLocationPresetsQuerySchema = 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 = exports.DeleteLocationParamsSchema = 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");
|
|
@@ -69,6 +69,10 @@ exports.PublishedLocationPresetsQuerySchema = zod_1.z.object({
|
|
|
69
69
|
page: zod_1.z.coerce.number().int().min(1).max(25).optional().default(1),
|
|
70
70
|
limit: zod_1.z.coerce.number().min(1).max(10).default(10),
|
|
71
71
|
});
|
|
72
|
+
exports.FollowingLocationPresetsQuerySchema = zod_1.z.object({
|
|
73
|
+
page: zod_1.z.coerce.number().int().min(1).max(10).optional().default(1),
|
|
74
|
+
limit: zod_1.z.coerce.number().min(1).max(10).default(10),
|
|
75
|
+
});
|
|
72
76
|
exports.SearchLocationPresetsQuerySchema = zod_1.z.object({
|
|
73
77
|
query: zod_1.z.string().min(1).max(100),
|
|
74
78
|
type: zod_1.z.enum(['NOVEL']),
|
|
@@ -88,7 +92,7 @@ exports.CreateLocationPresetSchema = zod_1.z.object({
|
|
|
88
92
|
name: zod_1.z.string().max(64).optional(),
|
|
89
93
|
presetDescription: zod_1.z.string().max(5000),
|
|
90
94
|
presetShortDescription: zod_1.z.string().max(80),
|
|
91
|
-
hashtags: zod_1.z.array(zod_1.z.string().max(
|
|
95
|
+
hashtags: zod_1.z.array(zod_1.z.string().max(21)).max(10).optional(),
|
|
92
96
|
isAllowImport: zod_1.z.boolean().optional(),
|
|
93
97
|
isSensitive: zod_1.z.boolean().optional(),
|
|
94
98
|
locationConfig: location_config_1.LocationConfigSchema.partial().optional(),
|
|
@@ -114,7 +118,7 @@ exports.UpdateLocationPresetBodySchema = zod_1.z.object({
|
|
|
114
118
|
messages: zod_1.z.array(location_preset_1.LocationPresetMessageSchema).max(10).optional(),
|
|
115
119
|
userAvatar: user_1.UserAvatarSchema.nullable().optional(),
|
|
116
120
|
tags: zod_1.z.array(zod_1.z.string().max(32)).max(8).optional(),
|
|
117
|
-
hashtags: zod_1.z.array(zod_1.z.string().max(
|
|
121
|
+
hashtags: zod_1.z.array(zod_1.z.string().max(21)).max(10).optional(),
|
|
118
122
|
isAllowImport: zod_1.z.boolean().optional(),
|
|
119
123
|
isSensitive: zod_1.z.boolean().optional(),
|
|
120
124
|
locationConfig: location_config_1.LocationConfigSchema.partial().optional(),
|
|
@@ -334,7 +338,7 @@ exports.UpdateLocationBodySchema = zod_1.z.object({
|
|
|
334
338
|
visibility: zod_1.z.enum(['private', 'public', 'publish']).optional(),
|
|
335
339
|
maxUsers: zod_1.z.number().int().min(1).max(99).optional(),
|
|
336
340
|
publishDescription: zod_1.z.string().max(500).optional(),
|
|
337
|
-
hashtags: zod_1.z.array(zod_1.z.string().max(
|
|
341
|
+
hashtags: zod_1.z.array(zod_1.z.string().max(21)).max(10).optional(),
|
|
338
342
|
useLocationCreditOnly: zod_1.z.boolean().optional(),
|
|
339
343
|
creditCostPerChat: zod_1.z.number().int().min(0).max(1000).optional(),
|
|
340
344
|
chatRequiresPaidCredit: zod_1.z.boolean().optional(),
|
|
@@ -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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"}
|