@kl1/contracts 1.2.58-uat → 1.2.59-uat
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/api-contracts/src/channel/index.d.ts +62 -5
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +962 -148
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +290 -1
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +71 -0
- package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/index.d.ts +50 -74
- package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/schema.d.ts +8 -11
- package/dist/api-contracts/src/presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/presence-status/validation.d.ts +12 -18
- package/dist/api-contracts/src/presence-status/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +439 -36
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +13 -15
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +3 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts +16 -24
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts +20 -30
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +47 -6
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/validation.d.ts +3 -3
- package/dist/index.js +1610 -1488
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1610 -1488
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
-
import {
|
|
2
|
+
import { PresenceStatusDesEnum, PresenceStatusSchema } from './schema';
|
|
3
3
|
import { CreatePresenceStatusSchema, UpdatePresenceStatusSchema } from './validation';
|
|
4
4
|
export type CreatePresenceStatusRequest = z.infer<typeof CreatePresenceStatusSchema>;
|
|
5
5
|
export type UpdatePresenceStatusRequest = z.infer<typeof UpdatePresenceStatusSchema>;
|
|
6
6
|
export type GetPresenceStatusRequest = z.infer<typeof PresenceStatusSchema>;
|
|
7
|
-
export type
|
|
7
|
+
export type PresenceStatusDesEnum = z.infer<typeof PresenceStatusDesEnum>;
|
|
8
8
|
export declare const presenceStatusContract: {
|
|
9
9
|
getAllStatus: {
|
|
10
10
|
summary: "Get all presence status list.";
|
|
@@ -17,51 +17,46 @@ export declare const presenceStatusContract: {
|
|
|
17
17
|
createdAt: z.ZodDate;
|
|
18
18
|
updatedAt: z.ZodDate;
|
|
19
19
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
20
|
-
status: z.
|
|
21
|
-
|
|
20
|
+
status: z.ZodString;
|
|
21
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
22
22
|
position: z.ZodNumber;
|
|
23
|
-
emoji: z.ZodString;
|
|
24
23
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
emoji: string;
|
|
26
24
|
id: string;
|
|
27
25
|
position: number;
|
|
28
|
-
|
|
26
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
27
|
+
status: string;
|
|
29
28
|
createdAt: Date;
|
|
30
29
|
updatedAt: Date;
|
|
31
30
|
deletedAt: Date | null;
|
|
32
|
-
statusName: string;
|
|
33
31
|
}, {
|
|
34
|
-
emoji: string;
|
|
35
32
|
id: string;
|
|
36
33
|
position: number;
|
|
37
|
-
|
|
34
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
35
|
+
status: string;
|
|
38
36
|
createdAt: Date;
|
|
39
37
|
updatedAt: Date;
|
|
40
38
|
deletedAt: Date | null;
|
|
41
|
-
statusName: string;
|
|
42
39
|
}>, "many">;
|
|
43
40
|
}, "strip", z.ZodTypeAny, {
|
|
44
41
|
data: {
|
|
45
|
-
emoji: string;
|
|
46
42
|
id: string;
|
|
47
43
|
position: number;
|
|
48
|
-
|
|
44
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
45
|
+
status: string;
|
|
49
46
|
createdAt: Date;
|
|
50
47
|
updatedAt: Date;
|
|
51
48
|
deletedAt: Date | null;
|
|
52
|
-
statusName: string;
|
|
53
49
|
}[];
|
|
54
50
|
total: number;
|
|
55
51
|
}, {
|
|
56
52
|
data: {
|
|
57
|
-
emoji: string;
|
|
58
53
|
id: string;
|
|
59
54
|
position: number;
|
|
60
|
-
|
|
55
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
56
|
+
status: string;
|
|
61
57
|
createdAt: Date;
|
|
62
58
|
updatedAt: Date;
|
|
63
59
|
deletedAt: Date | null;
|
|
64
|
-
statusName: string;
|
|
65
60
|
}[];
|
|
66
61
|
total: number;
|
|
67
62
|
}>;
|
|
@@ -113,20 +108,17 @@ export declare const presenceStatusContract: {
|
|
|
113
108
|
};
|
|
114
109
|
createPresenceStatus: {
|
|
115
110
|
body: z.ZodObject<{
|
|
116
|
-
status: z.
|
|
117
|
-
|
|
111
|
+
status: z.ZodString;
|
|
112
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
118
113
|
position: z.ZodNumber;
|
|
119
|
-
emoji: z.ZodString;
|
|
120
114
|
}, "strip", z.ZodTypeAny, {
|
|
121
|
-
emoji: string;
|
|
122
115
|
position: number;
|
|
123
|
-
|
|
124
|
-
|
|
116
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
117
|
+
status: string;
|
|
125
118
|
}, {
|
|
126
|
-
emoji: string;
|
|
127
119
|
position: number;
|
|
128
|
-
|
|
129
|
-
|
|
120
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
121
|
+
status: string;
|
|
130
122
|
}>;
|
|
131
123
|
summary: "Create a new presence status.";
|
|
132
124
|
method: "POST";
|
|
@@ -138,52 +130,47 @@ export declare const presenceStatusContract: {
|
|
|
138
130
|
createdAt: z.ZodDate;
|
|
139
131
|
updatedAt: z.ZodDate;
|
|
140
132
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
141
|
-
status: z.
|
|
142
|
-
|
|
133
|
+
status: z.ZodString;
|
|
134
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
143
135
|
position: z.ZodNumber;
|
|
144
|
-
emoji: z.ZodString;
|
|
145
136
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
-
emoji: string;
|
|
147
137
|
id: string;
|
|
148
138
|
position: number;
|
|
149
|
-
|
|
139
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
140
|
+
status: string;
|
|
150
141
|
createdAt: Date;
|
|
151
142
|
updatedAt: Date;
|
|
152
143
|
deletedAt: Date | null;
|
|
153
|
-
statusName: string;
|
|
154
144
|
}, {
|
|
155
|
-
emoji: string;
|
|
156
145
|
id: string;
|
|
157
146
|
position: number;
|
|
158
|
-
|
|
147
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
148
|
+
status: string;
|
|
159
149
|
createdAt: Date;
|
|
160
150
|
updatedAt: Date;
|
|
161
151
|
deletedAt: Date | null;
|
|
162
|
-
statusName: string;
|
|
163
152
|
}>;
|
|
164
153
|
}, "strip", z.ZodTypeAny, {
|
|
165
154
|
requestId: string;
|
|
166
155
|
presenceStatus: {
|
|
167
|
-
emoji: string;
|
|
168
156
|
id: string;
|
|
169
157
|
position: number;
|
|
170
|
-
|
|
158
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
159
|
+
status: string;
|
|
171
160
|
createdAt: Date;
|
|
172
161
|
updatedAt: Date;
|
|
173
162
|
deletedAt: Date | null;
|
|
174
|
-
statusName: string;
|
|
175
163
|
};
|
|
176
164
|
}, {
|
|
177
165
|
requestId: string;
|
|
178
166
|
presenceStatus: {
|
|
179
|
-
emoji: string;
|
|
180
167
|
id: string;
|
|
181
168
|
position: number;
|
|
182
|
-
|
|
169
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
170
|
+
status: string;
|
|
183
171
|
createdAt: Date;
|
|
184
172
|
updatedAt: Date;
|
|
185
173
|
deletedAt: Date | null;
|
|
186
|
-
statusName: string;
|
|
187
174
|
};
|
|
188
175
|
}>;
|
|
189
176
|
400: z.ZodObject<{
|
|
@@ -268,28 +255,25 @@ export declare const presenceStatusContract: {
|
|
|
268
255
|
createdAt: z.ZodDate;
|
|
269
256
|
updatedAt: z.ZodDate;
|
|
270
257
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
271
|
-
status: z.
|
|
272
|
-
|
|
258
|
+
status: z.ZodString;
|
|
259
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
273
260
|
position: z.ZodNumber;
|
|
274
|
-
emoji: z.ZodString;
|
|
275
261
|
}, "strip", z.ZodTypeAny, {
|
|
276
|
-
emoji: string;
|
|
277
262
|
id: string;
|
|
278
263
|
position: number;
|
|
279
|
-
|
|
264
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
265
|
+
status: string;
|
|
280
266
|
createdAt: Date;
|
|
281
267
|
updatedAt: Date;
|
|
282
268
|
deletedAt: Date | null;
|
|
283
|
-
statusName: string;
|
|
284
269
|
}, {
|
|
285
|
-
emoji: string;
|
|
286
270
|
id: string;
|
|
287
271
|
position: number;
|
|
288
|
-
|
|
272
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
273
|
+
status: string;
|
|
289
274
|
createdAt: Date;
|
|
290
275
|
updatedAt: Date;
|
|
291
276
|
deletedAt: Date | null;
|
|
292
|
-
statusName: string;
|
|
293
277
|
}>;
|
|
294
278
|
400: z.ZodObject<{
|
|
295
279
|
message: z.ZodString;
|
|
@@ -359,20 +343,17 @@ export declare const presenceStatusContract: {
|
|
|
359
343
|
};
|
|
360
344
|
updatePresenceStatus: {
|
|
361
345
|
body: z.ZodObject<{
|
|
362
|
-
status: z.
|
|
363
|
-
|
|
346
|
+
status: z.ZodString;
|
|
347
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
364
348
|
position: z.ZodNumber;
|
|
365
|
-
emoji: z.ZodString;
|
|
366
349
|
}, "strip", z.ZodTypeAny, {
|
|
367
|
-
emoji: string;
|
|
368
350
|
position: number;
|
|
369
|
-
|
|
370
|
-
|
|
351
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
352
|
+
status: string;
|
|
371
353
|
}, {
|
|
372
|
-
emoji: string;
|
|
373
354
|
position: number;
|
|
374
|
-
|
|
375
|
-
|
|
355
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
356
|
+
status: string;
|
|
376
357
|
}>;
|
|
377
358
|
summary: "Update a presence status.";
|
|
378
359
|
method: "PATCH";
|
|
@@ -391,52 +372,47 @@ export declare const presenceStatusContract: {
|
|
|
391
372
|
createdAt: z.ZodDate;
|
|
392
373
|
updatedAt: z.ZodDate;
|
|
393
374
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
394
|
-
status: z.
|
|
395
|
-
|
|
375
|
+
status: z.ZodString;
|
|
376
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
396
377
|
position: z.ZodNumber;
|
|
397
|
-
emoji: z.ZodString;
|
|
398
378
|
}, "strip", z.ZodTypeAny, {
|
|
399
|
-
emoji: string;
|
|
400
379
|
id: string;
|
|
401
380
|
position: number;
|
|
402
|
-
|
|
381
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
382
|
+
status: string;
|
|
403
383
|
createdAt: Date;
|
|
404
384
|
updatedAt: Date;
|
|
405
385
|
deletedAt: Date | null;
|
|
406
|
-
statusName: string;
|
|
407
386
|
}, {
|
|
408
|
-
emoji: string;
|
|
409
387
|
id: string;
|
|
410
388
|
position: number;
|
|
411
|
-
|
|
389
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
390
|
+
status: string;
|
|
412
391
|
createdAt: Date;
|
|
413
392
|
updatedAt: Date;
|
|
414
393
|
deletedAt: Date | null;
|
|
415
|
-
statusName: string;
|
|
416
394
|
}>;
|
|
417
395
|
}, "strip", z.ZodTypeAny, {
|
|
418
396
|
requestId: string;
|
|
419
397
|
presenceStatus: {
|
|
420
|
-
emoji: string;
|
|
421
398
|
id: string;
|
|
422
399
|
position: number;
|
|
423
|
-
|
|
400
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
401
|
+
status: string;
|
|
424
402
|
createdAt: Date;
|
|
425
403
|
updatedAt: Date;
|
|
426
404
|
deletedAt: Date | null;
|
|
427
|
-
statusName: string;
|
|
428
405
|
};
|
|
429
406
|
}, {
|
|
430
407
|
requestId: string;
|
|
431
408
|
presenceStatus: {
|
|
432
|
-
emoji: string;
|
|
433
409
|
id: string;
|
|
434
410
|
position: number;
|
|
435
|
-
|
|
411
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
412
|
+
status: string;
|
|
436
413
|
createdAt: Date;
|
|
437
414
|
updatedAt: Date;
|
|
438
415
|
deletedAt: Date | null;
|
|
439
|
-
statusName: string;
|
|
440
416
|
};
|
|
441
417
|
}>;
|
|
442
418
|
400: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/presence-status/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/presence-status/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AACvE,OAAO,EACL,0BAA0B,EAC1B,0BAA0B,EAC3B,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,0BAA0B,CAClC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,0BAA0B,CAClC,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAE5E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FlC,CAAC"}
|
|
@@ -1,34 +1,31 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Channel Types Enum
|
|
4
4
|
*/
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const PresenceStatusDesEnum: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
6
6
|
export declare const PresenceStatusSchema: z.ZodObject<{
|
|
7
7
|
id: z.ZodString;
|
|
8
8
|
createdAt: z.ZodDate;
|
|
9
9
|
updatedAt: z.ZodDate;
|
|
10
10
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
11
|
-
status: z.
|
|
12
|
-
|
|
11
|
+
status: z.ZodString;
|
|
12
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
13
13
|
position: z.ZodNumber;
|
|
14
|
-
emoji: z.ZodString;
|
|
15
14
|
}, "strip", z.ZodTypeAny, {
|
|
16
|
-
emoji: string;
|
|
17
15
|
id: string;
|
|
18
16
|
position: number;
|
|
19
|
-
|
|
17
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
18
|
+
status: string;
|
|
20
19
|
createdAt: Date;
|
|
21
20
|
updatedAt: Date;
|
|
22
21
|
deletedAt: Date | null;
|
|
23
|
-
statusName: string;
|
|
24
22
|
}, {
|
|
25
|
-
emoji: string;
|
|
26
23
|
id: string;
|
|
27
24
|
position: number;
|
|
28
|
-
|
|
25
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
26
|
+
status: string;
|
|
29
27
|
createdAt: Date;
|
|
30
28
|
updatedAt: Date;
|
|
31
29
|
deletedAt: Date | null;
|
|
32
|
-
statusName: string;
|
|
33
30
|
}>;
|
|
34
31
|
//# sourceMappingURL=schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/presence-status/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB;;GAEG;AACH,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/presence-status/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB;;GAEG;AACH,eAAO,MAAM,qBAAqB,iHAIhC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;EAQ/B,CAAC"}
|
|
@@ -1,34 +1,28 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const CreatePresenceStatusSchema: z.ZodObject<{
|
|
3
|
-
status: z.
|
|
4
|
-
|
|
3
|
+
status: z.ZodString;
|
|
4
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
5
5
|
position: z.ZodNumber;
|
|
6
|
-
emoji: z.ZodString;
|
|
7
6
|
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
emoji: string;
|
|
9
7
|
position: number;
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
9
|
+
status: string;
|
|
12
10
|
}, {
|
|
13
|
-
emoji: string;
|
|
14
11
|
position: number;
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
13
|
+
status: string;
|
|
17
14
|
}>;
|
|
18
15
|
export declare const UpdatePresenceStatusSchema: z.ZodObject<{
|
|
19
|
-
status: z.
|
|
20
|
-
|
|
16
|
+
status: z.ZodString;
|
|
17
|
+
description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
|
|
21
18
|
position: z.ZodNumber;
|
|
22
|
-
emoji: z.ZodString;
|
|
23
19
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
emoji: string;
|
|
25
20
|
position: number;
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
22
|
+
status: string;
|
|
28
23
|
}, {
|
|
29
|
-
emoji: string;
|
|
30
24
|
position: number;
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
|
|
26
|
+
status: string;
|
|
33
27
|
}>;
|
|
34
28
|
//# sourceMappingURL=validation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/presence-status/validation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/presence-status/validation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;EAIrC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;EAA6B,CAAC"}
|