@kl1/contracts 1.2.88-uat → 1.2.90-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/activity-log/index.d.ts +3 -3
- package/dist/api-contracts/src/activity-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/auth/index.d.ts +3 -3
- package/dist/api-contracts/src/automation-queue/index.d.ts +30 -30
- package/dist/api-contracts/src/automation-queue/schema.d.ts +6 -6
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/index.d.ts +2 -2
- package/dist/api-contracts/src/chat/index.d.ts +271 -271
- package/dist/api-contracts/src/chat/schema.d.ts +93 -93
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +86 -86
- package/dist/api-contracts/src/comment/index.d.ts +45 -45
- package/dist/api-contracts/src/comment/schema.d.ts +15 -15
- package/dist/api-contracts/src/contract.d.ts +2960 -1116
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +24 -24
- package/dist/api-contracts/src/cx-log/schema.d.ts +24 -24
- package/dist/api-contracts/src/dashboard/index.d.ts +56 -9
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/validation.d.ts +13 -0
- package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +61 -61
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +6 -6
- package/dist/api-contracts/src/instagram/index.d.ts +51 -51
- package/dist/api-contracts/src/line/index.d.ts +56 -56
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +51 -51
- package/dist/api-contracts/src/notification/index.d.ts +9 -9
- package/dist/api-contracts/src/notification/schema.d.ts +9 -9
- package/dist/api-contracts/src/notification/validation.d.ts +3 -3
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/telegram/index.d.ts +51 -51
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +6 -6
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +3 -3
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +30 -30
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts +18 -18
- package/dist/api-contracts/src/ticket/index.d.ts +36 -36
- package/dist/api-contracts/src/ticket/schema.d.ts +9 -9
- package/dist/api-contracts/src/user/index.d.ts +142 -12
- package/dist/api-contracts/src/user/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user/schema.d.ts +38 -1
- package/dist/api-contracts/src/user/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/viber/index.d.ts +51 -51
- package/dist/api-contracts/src/webchat/index.d.ts +51 -51
- package/dist/api-contracts/src/whatsapp/index.d.ts +51 -51
- package/dist/api-contracts/src/widget/index.d.ts +813 -39
- package/dist/api-contracts/src/widget/index.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/schema.d.ts +98 -4
- package/dist/api-contracts/src/widget/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/validation.d.ts +171 -12
- package/dist/api-contracts/src/widget/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +21 -21
- package/dist/index.js +88 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +88 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -2,6 +2,7 @@ import z from 'zod';
|
|
2
2
|
import { UserSchema } from './schema';
|
3
3
|
import { CreateUserSchema, UpdateUserProfileSchema, UpdateUserSchema } from './validation';
|
4
4
|
export type User = z.infer<typeof UserSchema>;
|
5
|
+
export type EssentialUserType = z.infer<typeof UserSchema>;
|
5
6
|
export type CreateUserRequest = z.infer<typeof CreateUserSchema>;
|
6
7
|
export type UpdateUserRequest = z.infer<typeof UpdateUserSchema>;
|
7
8
|
export type UpdateUserProfileRequest = z.infer<typeof UpdateUserProfileSchema>;
|
@@ -38,15 +39,15 @@ export declare const userContract: {
|
|
38
39
|
201: z.ZodObject<{
|
39
40
|
requestId: z.ZodString;
|
40
41
|
user: z.ZodObject<{
|
42
|
+
name: z.ZodString;
|
41
43
|
id: z.ZodString;
|
44
|
+
address: z.ZodNullable<z.ZodString>;
|
45
|
+
email: z.ZodString;
|
42
46
|
createdAt: z.ZodDate;
|
43
47
|
updatedAt: z.ZodDate;
|
44
48
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
45
|
-
name: z.ZodString;
|
46
|
-
email: z.ZodString;
|
47
49
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
48
50
|
password: z.ZodString;
|
49
|
-
address: z.ZodNullable<z.ZodString>;
|
50
51
|
phone: z.ZodNullable<z.ZodString>;
|
51
52
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
52
53
|
roles: z.ZodArray<z.ZodObject<{
|
@@ -400,6 +401,135 @@ export declare const userContract: {
|
|
400
401
|
'x-client-timezone'?: string | undefined;
|
401
402
|
}>>>;
|
402
403
|
};
|
404
|
+
getEssentialUsers: {
|
405
|
+
method: "GET";
|
406
|
+
query: z.ZodOptional<z.ZodObject<{
|
407
|
+
page: z.ZodOptional<z.ZodNumber>;
|
408
|
+
pageSize: z.ZodOptional<z.ZodNumber>;
|
409
|
+
keyword: z.ZodOptional<z.ZodString>;
|
410
|
+
}, "strip", z.ZodTypeAny, {
|
411
|
+
page?: number | undefined;
|
412
|
+
pageSize?: number | undefined;
|
413
|
+
keyword?: string | undefined;
|
414
|
+
}, {
|
415
|
+
page?: number | undefined;
|
416
|
+
pageSize?: number | undefined;
|
417
|
+
keyword?: string | undefined;
|
418
|
+
}>>;
|
419
|
+
responses: {
|
420
|
+
200: z.ZodObject<{
|
421
|
+
total: z.ZodNumber;
|
422
|
+
page: z.ZodDefault<z.ZodNumber>;
|
423
|
+
pageSize: z.ZodDefault<z.ZodNumber>;
|
424
|
+
lastPage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
425
|
+
data: z.ZodArray<z.ZodType<{
|
426
|
+
name: string;
|
427
|
+
id: string;
|
428
|
+
address: string | null;
|
429
|
+
email: string;
|
430
|
+
createdAt: Date;
|
431
|
+
updatedAt: Date;
|
432
|
+
deletedAt: Date | null;
|
433
|
+
emailVerifiedAt: Date | null;
|
434
|
+
password: string;
|
435
|
+
phone: string | null;
|
436
|
+
notificationCount: number | null;
|
437
|
+
}, z.ZodTypeDef, {
|
438
|
+
name: string;
|
439
|
+
id: string;
|
440
|
+
address: string | null;
|
441
|
+
email: string;
|
442
|
+
createdAt: Date;
|
443
|
+
updatedAt: Date;
|
444
|
+
deletedAt: Date | null;
|
445
|
+
emailVerifiedAt: Date | null;
|
446
|
+
password: string;
|
447
|
+
phone: string | null;
|
448
|
+
notificationCount: number | null;
|
449
|
+
}>, "many">;
|
450
|
+
}, "strip", z.ZodTypeAny, {
|
451
|
+
data: {
|
452
|
+
name: string;
|
453
|
+
id: string;
|
454
|
+
address: string | null;
|
455
|
+
email: string;
|
456
|
+
createdAt: Date;
|
457
|
+
updatedAt: Date;
|
458
|
+
deletedAt: Date | null;
|
459
|
+
emailVerifiedAt: Date | null;
|
460
|
+
password: string;
|
461
|
+
phone: string | null;
|
462
|
+
notificationCount: number | null;
|
463
|
+
}[];
|
464
|
+
total: number;
|
465
|
+
page: number;
|
466
|
+
pageSize: number;
|
467
|
+
lastPage?: number | null | undefined;
|
468
|
+
}, {
|
469
|
+
data: {
|
470
|
+
name: string;
|
471
|
+
id: string;
|
472
|
+
address: string | null;
|
473
|
+
email: string;
|
474
|
+
createdAt: Date;
|
475
|
+
updatedAt: Date;
|
476
|
+
deletedAt: Date | null;
|
477
|
+
emailVerifiedAt: Date | null;
|
478
|
+
password: string;
|
479
|
+
phone: string | null;
|
480
|
+
notificationCount: number | null;
|
481
|
+
}[];
|
482
|
+
total: number;
|
483
|
+
page?: number | undefined;
|
484
|
+
pageSize?: number | undefined;
|
485
|
+
lastPage?: number | null | undefined;
|
486
|
+
}>;
|
487
|
+
400: z.ZodObject<{
|
488
|
+
message: z.ZodString;
|
489
|
+
}, "strip", z.ZodTypeAny, {
|
490
|
+
message: string;
|
491
|
+
}, {
|
492
|
+
message: string;
|
493
|
+
}>;
|
494
|
+
401: z.ZodObject<{
|
495
|
+
message: z.ZodString;
|
496
|
+
error: z.ZodAny;
|
497
|
+
}, "strip", z.ZodTypeAny, {
|
498
|
+
message: string;
|
499
|
+
error?: any;
|
500
|
+
}, {
|
501
|
+
message: string;
|
502
|
+
error?: any;
|
503
|
+
}>;
|
504
|
+
500: z.ZodObject<{
|
505
|
+
message: z.ZodString;
|
506
|
+
error: z.ZodAny;
|
507
|
+
}, "strip", z.ZodTypeAny, {
|
508
|
+
message: string;
|
509
|
+
error?: any;
|
510
|
+
}, {
|
511
|
+
message: string;
|
512
|
+
error?: any;
|
513
|
+
}>;
|
514
|
+
};
|
515
|
+
path: "ms/user/essential";
|
516
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
517
|
+
'x-tenant': z.ZodString;
|
518
|
+
'x-service-token': z.ZodString;
|
519
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
520
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
521
|
+
}, "strip", z.ZodTypeAny, {
|
522
|
+
'x-tenant': string;
|
523
|
+
'x-service-token': string;
|
524
|
+
'x-client-timezone': string;
|
525
|
+
'x-code'?: string | undefined;
|
526
|
+
}, {
|
527
|
+
'x-tenant': string;
|
528
|
+
'x-service-token': string;
|
529
|
+
'x-code'?: string | undefined;
|
530
|
+
'x-client-timezone'?: string | undefined;
|
531
|
+
}>>>;
|
532
|
+
};
|
403
533
|
getUsers: {
|
404
534
|
summary: "Get all users";
|
405
535
|
method: "GET";
|
@@ -672,15 +802,15 @@ export declare const userContract: {
|
|
672
802
|
}>;
|
673
803
|
responses: {
|
674
804
|
200: z.ZodObject<{
|
805
|
+
name: z.ZodString;
|
675
806
|
id: z.ZodString;
|
807
|
+
address: z.ZodNullable<z.ZodString>;
|
808
|
+
email: z.ZodString;
|
676
809
|
createdAt: z.ZodDate;
|
677
810
|
updatedAt: z.ZodDate;
|
678
811
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
679
|
-
name: z.ZodString;
|
680
|
-
email: z.ZodString;
|
681
812
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
682
813
|
password: z.ZodString;
|
683
|
-
address: z.ZodNullable<z.ZodString>;
|
684
814
|
phone: z.ZodNullable<z.ZodString>;
|
685
815
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
686
816
|
roles: z.ZodArray<z.ZodObject<{
|
@@ -953,15 +1083,15 @@ export declare const userContract: {
|
|
953
1083
|
201: z.ZodObject<{
|
954
1084
|
requestId: z.ZodString;
|
955
1085
|
user: z.ZodObject<{
|
1086
|
+
name: z.ZodString;
|
956
1087
|
id: z.ZodString;
|
1088
|
+
address: z.ZodNullable<z.ZodString>;
|
1089
|
+
email: z.ZodString;
|
957
1090
|
createdAt: z.ZodDate;
|
958
1091
|
updatedAt: z.ZodDate;
|
959
1092
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
960
|
-
name: z.ZodString;
|
961
|
-
email: z.ZodString;
|
962
1093
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
963
1094
|
password: z.ZodString;
|
964
|
-
address: z.ZodNullable<z.ZodString>;
|
965
1095
|
phone: z.ZodNullable<z.ZodString>;
|
966
1096
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
967
1097
|
roles: z.ZodArray<z.ZodObject<{
|
@@ -1336,15 +1466,15 @@ export declare const userContract: {
|
|
1336
1466
|
201: z.ZodObject<{
|
1337
1467
|
requestId: z.ZodString;
|
1338
1468
|
user: z.ZodObject<{
|
1469
|
+
name: z.ZodString;
|
1339
1470
|
id: z.ZodString;
|
1471
|
+
address: z.ZodNullable<z.ZodString>;
|
1472
|
+
email: z.ZodString;
|
1340
1473
|
createdAt: z.ZodDate;
|
1341
1474
|
updatedAt: z.ZodDate;
|
1342
1475
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1343
|
-
name: z.ZodString;
|
1344
|
-
email: z.ZodString;
|
1345
1476
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
1346
1477
|
password: z.ZodString;
|
1347
|
-
address: z.ZodNullable<z.ZodString>;
|
1348
1478
|
phone: z.ZodNullable<z.ZodString>;
|
1349
1479
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1350
1480
|
roles: z.ZodArray<z.ZodObject<{
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAUpB,OAAO,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAUpB,OAAO,EAAuB,UAAU,EAAE,MAAM,UAAU,CAAC;AAC3D,OAAO,EACL,gBAAgB,EAChB,uBAAuB,EACvB,gBAAgB,EACjB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAC9C,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAC3D,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+IxB,CAAC"}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import z from 'zod';
|
2
|
-
export declare const
|
2
|
+
export declare const EssentialUserSchema: z.ZodObject<{
|
3
3
|
id: z.ZodString;
|
4
4
|
createdAt: z.ZodDate;
|
5
5
|
updatedAt: z.ZodDate;
|
@@ -11,6 +11,43 @@ export declare const UserSchema: z.ZodObject<{
|
|
11
11
|
address: z.ZodNullable<z.ZodString>;
|
12
12
|
phone: z.ZodNullable<z.ZodString>;
|
13
13
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
15
|
+
name: string;
|
16
|
+
id: string;
|
17
|
+
address: string | null;
|
18
|
+
email: string;
|
19
|
+
createdAt: Date;
|
20
|
+
updatedAt: Date;
|
21
|
+
deletedAt: Date | null;
|
22
|
+
emailVerifiedAt: Date | null;
|
23
|
+
password: string;
|
24
|
+
phone: string | null;
|
25
|
+
notificationCount: number | null;
|
26
|
+
}, {
|
27
|
+
name: string;
|
28
|
+
id: string;
|
29
|
+
address: string | null;
|
30
|
+
email: string;
|
31
|
+
createdAt: Date;
|
32
|
+
updatedAt: Date;
|
33
|
+
deletedAt: Date | null;
|
34
|
+
emailVerifiedAt: Date | null;
|
35
|
+
password: string;
|
36
|
+
phone: string | null;
|
37
|
+
notificationCount: number | null;
|
38
|
+
}>;
|
39
|
+
export declare const UserSchema: z.ZodObject<{
|
40
|
+
name: z.ZodString;
|
41
|
+
id: z.ZodString;
|
42
|
+
address: z.ZodNullable<z.ZodString>;
|
43
|
+
email: z.ZodString;
|
44
|
+
createdAt: z.ZodDate;
|
45
|
+
updatedAt: z.ZodDate;
|
46
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
47
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
48
|
+
password: z.ZodString;
|
49
|
+
phone: z.ZodNullable<z.ZodString>;
|
50
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
14
51
|
roles: z.ZodArray<z.ZodObject<{
|
15
52
|
id: z.ZodString;
|
16
53
|
createdAt: z.ZodDate;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/user/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/user/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY9B,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAerB,CAAC"}
|
@@ -5,15 +5,15 @@ export declare const UserPresenceStatusLogSchema: z.ZodObject<{
|
|
5
5
|
updatedAt: z.ZodDate;
|
6
6
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7
7
|
user: z.ZodObject<{
|
8
|
+
name: z.ZodString;
|
8
9
|
id: z.ZodString;
|
10
|
+
address: z.ZodNullable<z.ZodString>;
|
11
|
+
email: z.ZodString;
|
9
12
|
createdAt: z.ZodDate;
|
10
13
|
updatedAt: z.ZodDate;
|
11
14
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12
|
-
name: z.ZodString;
|
13
|
-
email: z.ZodString;
|
14
15
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
15
16
|
password: z.ZodString;
|
16
|
-
address: z.ZodNullable<z.ZodString>;
|
17
17
|
phone: z.ZodNullable<z.ZodString>;
|
18
18
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
19
19
|
roles: z.ZodArray<z.ZodObject<{
|