@little-samo/samo-ai-sdk 0.7.2 → 0.7.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 +26 -26
- package/dist/dto/entities/users/user.d.ts +6 -0
- package/dist/dto/entities/users/user.js +2 -0
- package/dist/dto/entities/users/user.js.map +1 -1
- package/dist/dto/entities/users/user.requests.d.ts +75 -90
- package/dist/dto/entities/users/user.requests.js +20 -11
- package/dist/dto/entities/users/user.requests.js.map +1 -1
- package/dist/dto/images/image.d.ts +3 -0
- package/dist/dto/images/image.js +12 -0
- package/dist/dto/images/image.js.map +1 -0
- package/dist/dto/images/image.requests.d.ts +14 -0
- package/dist/dto/images/image.requests.js +9 -9
- package/dist/dto/images/image.requests.js.map +1 -1
- package/dist/dto/images/index.d.ts +1 -0
- package/dist/dto/images/index.js +1 -0
- package/dist/dto/images/index.js.map +1 -1
- package/dist/dto/locations/location.requests.d.ts +158 -148
- 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
|
-
page: number;
|
|
11
10
|
limit: number;
|
|
11
|
+
page: number;
|
|
12
12
|
}, {
|
|
13
|
-
page?: number | undefined;
|
|
14
13
|
limit?: number | undefined;
|
|
14
|
+
page?: number | undefined;
|
|
15
15
|
}>;
|
|
16
16
|
export type AgentsPaginationQueryDto = z.infer<typeof AgentsPaginationQuerySchema>;
|
|
17
17
|
export interface AgentsPaginatedResponseDto {
|
|
@@ -152,14 +152,15 @@ 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;
|
|
155
156
|
role?: string | undefined;
|
|
156
157
|
avatar?: string | undefined;
|
|
157
158
|
referenceAvatar?: string | undefined;
|
|
158
159
|
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;
|
|
163
|
+
rules?: string[] | undefined;
|
|
163
164
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
164
165
|
languages?: string[] | undefined;
|
|
165
166
|
timeZone?: string | undefined;
|
|
@@ -186,16 +187,16 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
186
187
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
187
188
|
} | undefined;
|
|
188
189
|
} | undefined;
|
|
189
|
-
rules?: string[] | undefined;
|
|
190
190
|
}, {
|
|
191
|
+
name?: string | undefined;
|
|
191
192
|
role?: string | undefined;
|
|
192
193
|
avatar?: string | undefined;
|
|
193
194
|
referenceAvatar?: string | undefined;
|
|
194
195
|
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;
|
|
199
|
+
rules?: string[] | undefined;
|
|
199
200
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
200
201
|
languages?: string[] | undefined;
|
|
201
202
|
timeZone?: string | undefined;
|
|
@@ -222,19 +223,18 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
222
223
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
223
224
|
} | undefined;
|
|
224
225
|
} | undefined;
|
|
225
|
-
rules?: string[] | undefined;
|
|
226
226
|
}>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
|
-
agentId: bigint;
|
|
229
228
|
config: {
|
|
229
|
+
name?: string | undefined;
|
|
230
230
|
role?: string | undefined;
|
|
231
231
|
avatar?: string | undefined;
|
|
232
232
|
referenceAvatar?: string | undefined;
|
|
233
233
|
appearance?: string | undefined;
|
|
234
|
-
name?: string | undefined;
|
|
235
234
|
core?: {
|
|
236
235
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
237
236
|
} | undefined;
|
|
237
|
+
rules?: 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;
|
|
@@ -261,19 +261,19 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
261
261
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
262
262
|
} | undefined;
|
|
263
263
|
} | undefined;
|
|
264
|
-
rules?: string[] | undefined;
|
|
265
264
|
};
|
|
266
|
-
}, {
|
|
267
265
|
agentId: bigint;
|
|
266
|
+
}, {
|
|
268
267
|
config: {
|
|
268
|
+
name?: string | undefined;
|
|
269
269
|
role?: string | undefined;
|
|
270
270
|
avatar?: string | undefined;
|
|
271
271
|
referenceAvatar?: string | undefined;
|
|
272
272
|
appearance?: string | undefined;
|
|
273
|
-
name?: string | undefined;
|
|
274
273
|
core?: {
|
|
275
274
|
name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
|
|
276
275
|
} | undefined;
|
|
276
|
+
rules?: 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;
|
|
@@ -300,8 +300,8 @@ export declare const AgentUpdateConfigSchema: z.ZodObject<{
|
|
|
300
300
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
301
301
|
} | undefined;
|
|
302
302
|
} | undefined;
|
|
303
|
-
rules?: string[] | undefined;
|
|
304
303
|
};
|
|
304
|
+
agentId: bigint;
|
|
305
305
|
}>;
|
|
306
306
|
export type AgentUpdateConfigDto = z.infer<typeof AgentUpdateConfigSchema>;
|
|
307
307
|
export type AgentUpdateConfigResponseDto = Partial<AgentConfig>;
|
|
@@ -327,7 +327,6 @@ export declare const AgentUpdateCredentialSchema: z.ZodObject<{
|
|
|
327
327
|
token: string;
|
|
328
328
|
}>]>;
|
|
329
329
|
}, "strip", z.ZodTypeAny, {
|
|
330
|
-
agentId: bigint;
|
|
331
330
|
credential: {
|
|
332
331
|
type: "notion";
|
|
333
332
|
token: string;
|
|
@@ -335,8 +334,8 @@ export declare const AgentUpdateCredentialSchema: z.ZodObject<{
|
|
|
335
334
|
type: "notion";
|
|
336
335
|
token: string;
|
|
337
336
|
};
|
|
338
|
-
}, {
|
|
339
337
|
agentId: bigint;
|
|
338
|
+
}, {
|
|
340
339
|
credential: {
|
|
341
340
|
type: "notion";
|
|
342
341
|
token: string;
|
|
@@ -344,6 +343,7 @@ export declare const AgentUpdateCredentialSchema: z.ZodObject<{
|
|
|
344
343
|
type: "notion";
|
|
345
344
|
token: string;
|
|
346
345
|
};
|
|
346
|
+
agentId: bigint;
|
|
347
347
|
}>;
|
|
348
348
|
export type AgentUpdateCredentialDto = z.infer<typeof AgentUpdateCredentialSchema>;
|
|
349
349
|
export interface AgentUpdateCredentialResponseDto {
|
|
@@ -354,11 +354,11 @@ export declare const AgentDeleteCredentialSchema: z.ZodObject<{
|
|
|
354
354
|
agentId: z.ZodBigInt;
|
|
355
355
|
credentialType: z.ZodString;
|
|
356
356
|
}, "strip", z.ZodTypeAny, {
|
|
357
|
-
agentId: bigint;
|
|
358
357
|
credentialType: string;
|
|
359
|
-
}, {
|
|
360
358
|
agentId: bigint;
|
|
359
|
+
}, {
|
|
361
360
|
credentialType: string;
|
|
361
|
+
agentId: bigint;
|
|
362
362
|
}>;
|
|
363
363
|
export type AgentDeleteCredentialDto = z.infer<typeof AgentDeleteCredentialSchema>;
|
|
364
364
|
export interface AgentDeleteCredentialResponseDto {
|
|
@@ -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
|
-
page: number;
|
|
373
372
|
limit: number;
|
|
373
|
+
page: number;
|
|
374
374
|
}, {
|
|
375
|
-
page?: number | undefined;
|
|
376
375
|
limit?: number | undefined;
|
|
376
|
+
page?: number | undefined;
|
|
377
377
|
}>;
|
|
378
378
|
export type AgentPresetsPaginationQueryDto = z.infer<typeof AgentPresetsPaginationQuerySchema>;
|
|
379
379
|
export interface AgentPresetsPaginatedResponseDto {
|
|
@@ -499,14 +499,15 @@ 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;
|
|
502
503
|
role?: string | undefined;
|
|
503
504
|
avatar?: string | undefined;
|
|
504
505
|
referenceAvatar?: string | undefined;
|
|
505
506
|
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;
|
|
510
|
+
rules?: string[] | undefined;
|
|
510
511
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
511
512
|
languages?: string[] | undefined;
|
|
512
513
|
timeZone?: string | undefined;
|
|
@@ -533,16 +534,16 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
533
534
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
534
535
|
} | undefined;
|
|
535
536
|
} | undefined;
|
|
536
|
-
rules?: string[] | undefined;
|
|
537
537
|
}, {
|
|
538
|
+
name?: string | undefined;
|
|
538
539
|
role?: string | undefined;
|
|
539
540
|
avatar?: string | undefined;
|
|
540
541
|
referenceAvatar?: string | undefined;
|
|
541
542
|
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;
|
|
546
|
+
rules?: string[] | undefined;
|
|
546
547
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
547
548
|
languages?: string[] | undefined;
|
|
548
549
|
timeZone?: string | undefined;
|
|
@@ -569,18 +570,18 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
569
570
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
570
571
|
} | undefined;
|
|
571
572
|
} | undefined;
|
|
572
|
-
rules?: string[] | undefined;
|
|
573
573
|
}>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
config: {
|
|
576
|
+
name?: string | undefined;
|
|
576
577
|
role?: string | undefined;
|
|
577
578
|
avatar?: string | undefined;
|
|
578
579
|
referenceAvatar?: string | undefined;
|
|
579
580
|
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;
|
|
584
|
+
rules?: string[] | undefined;
|
|
584
585
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
585
586
|
languages?: string[] | undefined;
|
|
586
587
|
timeZone?: string | undefined;
|
|
@@ -607,18 +608,18 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
607
608
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
608
609
|
} | undefined;
|
|
609
610
|
} | undefined;
|
|
610
|
-
rules?: string[] | undefined;
|
|
611
611
|
};
|
|
612
612
|
}, {
|
|
613
613
|
config: {
|
|
614
|
+
name?: string | undefined;
|
|
614
615
|
role?: string | undefined;
|
|
615
616
|
avatar?: string | undefined;
|
|
616
617
|
referenceAvatar?: string | undefined;
|
|
617
618
|
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;
|
|
622
|
+
rules?: string[] | undefined;
|
|
622
623
|
llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
|
|
623
624
|
languages?: string[] | undefined;
|
|
624
625
|
timeZone?: string | undefined;
|
|
@@ -645,7 +646,6 @@ export declare const CreateAgentSchema: z.ZodObject<{
|
|
|
645
646
|
zodiac?: "Aries" | "Taurus" | "Gemini" | "Cancer" | "Leo" | "Virgo" | "Libra" | "Scorpio" | "Sagittarius" | "Capricorn" | "Aquarius" | "Pisces" | undefined;
|
|
646
647
|
} | undefined;
|
|
647
648
|
} | undefined;
|
|
648
|
-
rules?: string[] | undefined;
|
|
649
649
|
};
|
|
650
650
|
}>;
|
|
651
651
|
export type CreateAgentDto = z.infer<typeof CreateAgentSchema>;
|
|
@@ -41,23 +41,29 @@ export interface UserPrivateDto extends UserPublicDto {
|
|
|
41
41
|
createdAt: Date;
|
|
42
42
|
}
|
|
43
43
|
export declare const UserAvatarSchema: z.ZodObject<{
|
|
44
|
+
id: z.ZodOptional<z.ZodBigInt>;
|
|
44
45
|
name: z.ZodString;
|
|
45
46
|
role: z.ZodOptional<z.ZodString>;
|
|
46
47
|
avatar: z.ZodString;
|
|
47
48
|
referenceAvatar: z.ZodString;
|
|
48
49
|
appearance: z.ZodString;
|
|
50
|
+
createdAt: z.ZodOptional<z.ZodDate>;
|
|
49
51
|
}, "strip", z.ZodTypeAny, {
|
|
50
52
|
name: string;
|
|
51
53
|
avatar: string;
|
|
52
54
|
referenceAvatar: string;
|
|
53
55
|
appearance: string;
|
|
56
|
+
id?: bigint | undefined;
|
|
54
57
|
role?: string | undefined;
|
|
58
|
+
createdAt?: Date | undefined;
|
|
55
59
|
}, {
|
|
56
60
|
name: string;
|
|
57
61
|
avatar: string;
|
|
58
62
|
referenceAvatar: string;
|
|
59
63
|
appearance: string;
|
|
64
|
+
id?: bigint | undefined;
|
|
60
65
|
role?: string | undefined;
|
|
66
|
+
createdAt?: Date | undefined;
|
|
61
67
|
}>;
|
|
62
68
|
export type UserAvatarDto = z.infer<typeof UserAvatarSchema>;
|
|
63
69
|
export interface UserCommentDto {
|
|
@@ -6,10 +6,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.UserAvatarSchema = void 0;
|
|
7
7
|
const zod_1 = __importDefault(require("zod"));
|
|
8
8
|
exports.UserAvatarSchema = zod_1.default.object({
|
|
9
|
+
id: zod_1.default.coerce.bigint().optional(),
|
|
9
10
|
name: zod_1.default.string().max(64),
|
|
10
11
|
role: zod_1.default.string().max(200).optional(),
|
|
11
12
|
avatar: zod_1.default.string().max(2048),
|
|
12
13
|
referenceAvatar: zod_1.default.string().max(2048),
|
|
13
14
|
appearance: zod_1.default.string().max(500),
|
|
15
|
+
createdAt: zod_1.default.coerce.date().optional(),
|
|
14
16
|
});
|
|
15
17
|
//# sourceMappingURL=user.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.ts"],"names":[],"mappings":";;;;;;AACA,8CAAoB;AAmDP,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;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.ts"],"names":[],"mappings":";;;;;;AACA,8CAAoB;AAmDP,QAAA,gBAAgB,GAAG,aAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,aAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,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;IAC/B,SAAS,EAAE,aAAC,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC"}
|
|
@@ -21,27 +21,27 @@ export declare const UpdateCurrentUserBodySchema: z.ZodObject<{
|
|
|
21
21
|
bio: z.ZodOptional<z.ZodString>;
|
|
22
22
|
isAllowSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
role?: string | undefined;
|
|
25
|
+
avatar?: string | undefined;
|
|
26
|
+
referenceAvatar?: string | undefined;
|
|
27
|
+
appearance?: string | undefined;
|
|
24
28
|
username?: string | undefined;
|
|
25
29
|
nickname?: string | undefined;
|
|
26
30
|
birthDate?: Date | undefined;
|
|
27
31
|
profilePicture?: string | undefined;
|
|
28
|
-
role?: string | undefined;
|
|
29
32
|
avatarName?: string | undefined;
|
|
30
|
-
avatar?: string | undefined;
|
|
31
|
-
referenceAvatar?: string | undefined;
|
|
32
|
-
appearance?: string | undefined;
|
|
33
33
|
bio?: string | undefined;
|
|
34
34
|
isAllowSensitive?: boolean | undefined;
|
|
35
35
|
}, {
|
|
36
|
+
role?: string | undefined;
|
|
37
|
+
avatar?: string | undefined;
|
|
38
|
+
referenceAvatar?: string | undefined;
|
|
39
|
+
appearance?: string | undefined;
|
|
36
40
|
username?: string | undefined;
|
|
37
41
|
nickname?: string | undefined;
|
|
38
42
|
birthDate?: Date | undefined;
|
|
39
43
|
profilePicture?: string | undefined;
|
|
40
|
-
role?: string | undefined;
|
|
41
44
|
avatarName?: string | undefined;
|
|
42
|
-
avatar?: string | undefined;
|
|
43
|
-
referenceAvatar?: string | undefined;
|
|
44
|
-
appearance?: string | undefined;
|
|
45
45
|
bio?: string | undefined;
|
|
46
46
|
isAllowSensitive?: boolean | undefined;
|
|
47
47
|
}>;
|
|
@@ -60,78 +60,52 @@ export declare const DeleteCurrentUserBodySchema: z.ZodObject<{
|
|
|
60
60
|
export type DeleteCurrentUserBodyDto = z.infer<typeof DeleteCurrentUserBodySchema>;
|
|
61
61
|
export interface DeleteCurrentUserResponseDto {
|
|
62
62
|
}
|
|
63
|
-
export declare const GetUserAvatarsQuerySchema: z.ZodObject<{
|
|
63
|
+
export declare const GetUserAvatarsQuerySchema: z.ZodObject<{
|
|
64
|
+
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
65
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
66
|
+
}, "strip", z.ZodTypeAny, {
|
|
67
|
+
limit: number;
|
|
68
|
+
page: number;
|
|
69
|
+
}, {
|
|
70
|
+
limit?: number | undefined;
|
|
71
|
+
page?: number | undefined;
|
|
72
|
+
}>;
|
|
64
73
|
export type GetUserAvatarsQueryDto = z.infer<typeof GetUserAvatarsQuerySchema>;
|
|
65
74
|
export interface GetUserAvatarsResponseDto {
|
|
66
|
-
|
|
75
|
+
data: UserAvatarDto[];
|
|
76
|
+
meta: {
|
|
77
|
+
total: number;
|
|
78
|
+
page: number;
|
|
79
|
+
limit: number;
|
|
80
|
+
totalPages: number;
|
|
81
|
+
};
|
|
67
82
|
}
|
|
68
|
-
export declare const
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
avatar: z.
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
avatar: z.ZodString;
|
|
75
|
-
referenceAvatar: z.ZodString;
|
|
76
|
-
appearance: z.ZodString;
|
|
77
|
-
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
avatar: string;
|
|
79
|
-
referenceAvatar: string;
|
|
80
|
-
appearance: string;
|
|
81
|
-
name: string;
|
|
82
|
-
role?: string | undefined;
|
|
83
|
-
}, {
|
|
84
|
-
avatar: string;
|
|
85
|
-
referenceAvatar: string;
|
|
86
|
-
appearance: string;
|
|
87
|
-
name: string;
|
|
88
|
-
role?: string | undefined;
|
|
89
|
-
}>>>;
|
|
83
|
+
export declare const CreateUserAvatarBodySchema: z.ZodObject<{
|
|
84
|
+
name: z.ZodString;
|
|
85
|
+
role: z.ZodOptional<z.ZodString>;
|
|
86
|
+
avatar: z.ZodString;
|
|
87
|
+
referenceAvatar: z.ZodString;
|
|
88
|
+
appearance: z.ZodString;
|
|
90
89
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
role?: string | undefined;
|
|
97
|
-
} | null | undefined;
|
|
98
|
-
index?: number | undefined;
|
|
99
|
-
locationId?: bigint | undefined;
|
|
100
|
-
}, {
|
|
101
|
-
avatar?: {
|
|
102
|
-
avatar: string;
|
|
103
|
-
referenceAvatar: string;
|
|
104
|
-
appearance: string;
|
|
105
|
-
name: string;
|
|
106
|
-
role?: string | undefined;
|
|
107
|
-
} | null | undefined;
|
|
108
|
-
index?: number | undefined;
|
|
109
|
-
locationId?: bigint | undefined;
|
|
110
|
-
}>, {
|
|
111
|
-
avatar?: {
|
|
112
|
-
avatar: string;
|
|
113
|
-
referenceAvatar: string;
|
|
114
|
-
appearance: string;
|
|
115
|
-
name: string;
|
|
116
|
-
role?: string | undefined;
|
|
117
|
-
} | null | undefined;
|
|
118
|
-
index?: number | undefined;
|
|
119
|
-
locationId?: bigint | undefined;
|
|
90
|
+
name: string;
|
|
91
|
+
avatar: string;
|
|
92
|
+
referenceAvatar: string;
|
|
93
|
+
appearance: string;
|
|
94
|
+
role?: string | undefined;
|
|
120
95
|
}, {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
role?: string | undefined;
|
|
127
|
-
} | null | undefined;
|
|
128
|
-
index?: number | undefined;
|
|
129
|
-
locationId?: bigint | undefined;
|
|
96
|
+
name: string;
|
|
97
|
+
avatar: string;
|
|
98
|
+
referenceAvatar: string;
|
|
99
|
+
appearance: string;
|
|
100
|
+
role?: string | undefined;
|
|
130
101
|
}>;
|
|
131
|
-
export type
|
|
132
|
-
export interface
|
|
133
|
-
|
|
134
|
-
|
|
102
|
+
export type CreateUserAvatarBodyDto = z.infer<typeof CreateUserAvatarBodySchema>;
|
|
103
|
+
export interface CreateUserAvatarResponseDto {
|
|
104
|
+
avatar: UserAvatarDto;
|
|
105
|
+
}
|
|
106
|
+
export declare const DeleteUserAvatarBodySchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
107
|
+
export type DeleteUserAvatarBodyDto = z.infer<typeof DeleteUserAvatarBodySchema>;
|
|
108
|
+
export interface DeleteUserAvatarResponseDto {
|
|
135
109
|
}
|
|
136
110
|
export declare const GetAttendanceQuerySchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
137
111
|
export type GetAttendanceQueryDto = z.infer<typeof GetAttendanceQuerySchema>;
|
|
@@ -214,11 +188,11 @@ export declare const GetUserFollowersQuerySchema: z.ZodObject<{
|
|
|
214
188
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
215
189
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
216
190
|
}, "strip", z.ZodTypeAny, {
|
|
217
|
-
page: number;
|
|
218
191
|
limit: number;
|
|
192
|
+
page: number;
|
|
219
193
|
}, {
|
|
220
|
-
page?: number | undefined;
|
|
221
194
|
limit?: number | undefined;
|
|
195
|
+
page?: number | undefined;
|
|
222
196
|
}>;
|
|
223
197
|
export type GetUserFollowersQueryDto = z.infer<typeof GetUserFollowersQuerySchema>;
|
|
224
198
|
export interface GetUserFollowersResponseDto {
|
|
@@ -242,11 +216,11 @@ export declare const GetUserFollowingQuerySchema: z.ZodObject<{
|
|
|
242
216
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
243
217
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
244
218
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
page: number;
|
|
246
219
|
limit: number;
|
|
220
|
+
page: number;
|
|
247
221
|
}, {
|
|
248
|
-
page?: number | undefined;
|
|
249
222
|
limit?: number | undefined;
|
|
223
|
+
page?: number | undefined;
|
|
250
224
|
}>;
|
|
251
225
|
export type GetUserFollowingQueryDto = z.infer<typeof GetUserFollowingQuerySchema>;
|
|
252
226
|
export interface GetUserFollowingResponseDto {
|
|
@@ -271,12 +245,12 @@ export declare const GetUserCommentsQuerySchema: z.ZodObject<{
|
|
|
271
245
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
272
246
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
273
247
|
}, "strip", z.ZodTypeAny, {
|
|
274
|
-
page: number;
|
|
275
248
|
limit: number;
|
|
249
|
+
page: number;
|
|
276
250
|
sortBy: "latest" | "recommended";
|
|
277
251
|
}, {
|
|
278
|
-
page?: number | undefined;
|
|
279
252
|
limit?: number | undefined;
|
|
253
|
+
page?: number | undefined;
|
|
280
254
|
sortBy?: "latest" | "recommended" | undefined;
|
|
281
255
|
}>;
|
|
282
256
|
export type GetUserCommentsQueryDto = z.infer<typeof GetUserCommentsQuerySchema>;
|
|
@@ -301,11 +275,11 @@ export declare const GetUserCommentRepliesQuerySchema: z.ZodObject<{
|
|
|
301
275
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
302
276
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
303
277
|
}, "strip", z.ZodTypeAny, {
|
|
304
|
-
page: number;
|
|
305
278
|
limit: number;
|
|
279
|
+
page: number;
|
|
306
280
|
}, {
|
|
307
|
-
page?: number | undefined;
|
|
308
281
|
limit?: number | undefined;
|
|
282
|
+
page?: number | undefined;
|
|
309
283
|
}>;
|
|
310
284
|
export type GetUserCommentRepliesQueryDto = z.infer<typeof GetUserCommentRepliesQuerySchema>;
|
|
311
285
|
export interface GetUserCommentRepliesResponseDto {
|
|
@@ -369,11 +343,11 @@ export declare const ReportUserCommentParamsSchema: z.ZodObject<{
|
|
|
369
343
|
userId: z.ZodBigInt;
|
|
370
344
|
commentId: z.ZodBigInt;
|
|
371
345
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
-
userId: bigint;
|
|
373
346
|
commentId: bigint;
|
|
374
|
-
}, {
|
|
375
347
|
userId: bigint;
|
|
348
|
+
}, {
|
|
376
349
|
commentId: bigint;
|
|
350
|
+
userId: bigint;
|
|
377
351
|
}>;
|
|
378
352
|
export type ReportUserCommentParamsDto = z.infer<typeof ReportUserCommentParamsSchema>;
|
|
379
353
|
export interface ReportUserCommentResponseDto {
|
|
@@ -384,11 +358,11 @@ export declare const DeleteUserCommentParamsSchema: z.ZodObject<{
|
|
|
384
358
|
userId: z.ZodBigInt;
|
|
385
359
|
commentId: z.ZodBigInt;
|
|
386
360
|
}, "strip", z.ZodTypeAny, {
|
|
387
|
-
userId: bigint;
|
|
388
361
|
commentId: bigint;
|
|
389
|
-
}, {
|
|
390
362
|
userId: bigint;
|
|
363
|
+
}, {
|
|
391
364
|
commentId: bigint;
|
|
365
|
+
userId: bigint;
|
|
392
366
|
}>;
|
|
393
367
|
export type DeleteUserCommentParamsDto = z.infer<typeof DeleteUserCommentParamsSchema>;
|
|
394
368
|
export interface DeleteUserCommentResponseDto {
|
|
@@ -420,11 +394,11 @@ export declare const GetNoticesQuerySchema: z.ZodObject<{
|
|
|
420
394
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
421
395
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
422
396
|
}, "strip", z.ZodTypeAny, {
|
|
423
|
-
page: number;
|
|
424
397
|
limit: number;
|
|
398
|
+
page: number;
|
|
425
399
|
}, {
|
|
426
|
-
page?: number | undefined;
|
|
427
400
|
limit?: number | undefined;
|
|
401
|
+
page?: number | undefined;
|
|
428
402
|
}>;
|
|
429
403
|
export type GetNoticesQueryDto = z.infer<typeof GetNoticesQuerySchema>;
|
|
430
404
|
export interface GetNoticesResponseDto {
|
|
@@ -459,11 +433,11 @@ export declare const GetUserNotificationsQuerySchema: z.ZodObject<{
|
|
|
459
433
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
460
434
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
461
435
|
}, "strip", z.ZodTypeAny, {
|
|
462
|
-
page: number;
|
|
463
436
|
limit: number;
|
|
437
|
+
page: number;
|
|
464
438
|
}, {
|
|
465
|
-
page?: number | undefined;
|
|
466
439
|
limit?: number | undefined;
|
|
440
|
+
page?: number | undefined;
|
|
467
441
|
}>;
|
|
468
442
|
export type GetUserNotificationsQueryDto = z.infer<typeof GetUserNotificationsQuerySchema>;
|
|
469
443
|
export interface GetUserNotificationsResponseDto {
|
|
@@ -494,6 +468,17 @@ export declare const ReadUserNotificationParamsSchema: z.ZodObject<{
|
|
|
494
468
|
export type ReadUserNotificationParamsDto = z.infer<typeof ReadUserNotificationParamsSchema>;
|
|
495
469
|
export interface ReadUserNotificationResponseDto {
|
|
496
470
|
}
|
|
471
|
+
export declare const GetUserSettingsQuerySchema: z.ZodObject<{
|
|
472
|
+
keys: z.ZodEffects<z.ZodEffects<z.ZodString, string[], string>, string[], string>;
|
|
473
|
+
}, "strip", z.ZodTypeAny, {
|
|
474
|
+
keys: string[];
|
|
475
|
+
}, {
|
|
476
|
+
keys: string;
|
|
477
|
+
}>;
|
|
478
|
+
export type GetUserSettingsQueryDto = z.infer<typeof GetUserSettingsQuerySchema>;
|
|
479
|
+
export interface GetUserSettingsResponseDto {
|
|
480
|
+
settings: Record<string, string | number | boolean | object | null>;
|
|
481
|
+
}
|
|
497
482
|
export declare const GetCurrentUserSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
498
483
|
export type GetCurrentUserDto = z.infer<typeof GetCurrentUserSchema>;
|
|
499
484
|
export interface GetCurrentUserResponseDto {
|
|
@@ -1,8 +1,7 @@
|
|
|
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.GetUserFollowingQuerySchema = exports.GetUserFollowingParamsSchema = exports.GetUserFollowersQuerySchema = exports.GetUserFollowersParamsSchema = exports.UnfollowUserParamsSchema = exports.FollowUserParamsSchema = exports.GetUsersByIdsQuerySchema = exports.ValidateUserFieldBodySchema = exports.CheckAttendanceBodySchema = exports.GetAttendanceQuerySchema = exports.
|
|
3
|
+
exports.GetCurrentUserSchema = exports.GetUserSettingsQuerySchema = 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.DeleteUserAvatarBodySchema = exports.CreateUserAvatarBodySchema = exports.GetUserAvatarsQuerySchema = exports.DeleteCurrentUserBodySchema = exports.UpdateCurrentUserBodySchema = exports.GetCurrentUserQuerySchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
-
const user_1 = require("./user");
|
|
6
5
|
exports.GetCurrentUserQuerySchema = zod_1.z.object({});
|
|
7
6
|
exports.UpdateCurrentUserBodySchema = zod_1.z.object({
|
|
8
7
|
username: zod_1.z
|
|
@@ -25,16 +24,18 @@ exports.UpdateCurrentUserBodySchema = zod_1.z.object({
|
|
|
25
24
|
exports.DeleteCurrentUserBodySchema = zod_1.z.object({
|
|
26
25
|
reason: zod_1.z.string().min(1).max(500),
|
|
27
26
|
});
|
|
28
|
-
exports.GetUserAvatarsQuerySchema = zod_1.z.object({
|
|
29
|
-
|
|
30
|
-
.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
.
|
|
36
|
-
|
|
27
|
+
exports.GetUserAvatarsQuerySchema = zod_1.z.object({
|
|
28
|
+
page: zod_1.z.coerce.number().int().min(1).optional().default(1),
|
|
29
|
+
limit: zod_1.z.coerce.number().int().min(1).max(20).optional().default(20),
|
|
30
|
+
});
|
|
31
|
+
exports.CreateUserAvatarBodySchema = zod_1.z.object({
|
|
32
|
+
name: zod_1.z.string().max(64),
|
|
33
|
+
role: zod_1.z.string().max(200).optional(),
|
|
34
|
+
avatar: zod_1.z.string().max(2048),
|
|
35
|
+
referenceAvatar: zod_1.z.string().max(2048),
|
|
36
|
+
appearance: zod_1.z.string().max(500),
|
|
37
37
|
});
|
|
38
|
+
exports.DeleteUserAvatarBodySchema = zod_1.z.object({});
|
|
38
39
|
exports.GetAttendanceQuerySchema = zod_1.z.object({});
|
|
39
40
|
exports.CheckAttendanceBodySchema = zod_1.z.object({});
|
|
40
41
|
exports.ValidateUserFieldBodySchema = zod_1.z.object({
|
|
@@ -138,5 +139,13 @@ exports.ReadAllUserNotificationsBodySchema = zod_1.z.object({});
|
|
|
138
139
|
exports.ReadUserNotificationParamsSchema = zod_1.z.object({
|
|
139
140
|
notificationId: zod_1.z.coerce.bigint().optional(),
|
|
140
141
|
});
|
|
142
|
+
exports.GetUserSettingsQuerySchema = zod_1.z.object({
|
|
143
|
+
keys: zod_1.z
|
|
144
|
+
.string()
|
|
145
|
+
.transform((val) => val.split(',').map((key) => key.trim()))
|
|
146
|
+
.refine((arr) => arr.length > 0, {
|
|
147
|
+
message: 'At least one key must be provided',
|
|
148
|
+
}),
|
|
149
|
+
});
|
|
141
150
|
exports.GetCurrentUserSchema = zod_1.z.object({});
|
|
142
151
|
//# sourceMappingURL=user.requests.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.requests.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.requests.ts"],"names":[],"mappings":";;;AACA,6BAAwB;
|
|
1
|
+
{"version":3,"file":"user.requests.js","sourceRoot":"","sources":["../../../../src/dto/entities/users/user.requests.ts"],"names":[],"mappings":"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"}
|