@kl1/contracts 1.1.2-uat → 1.1.3
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/index.js +63 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +63 -24
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +54 -165
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +8 -24
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +7 -76
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +88 -460
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +5 -1
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/validation.d.ts +10 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +7 -73
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +7 -73
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +7 -73
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +3 -3
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +7 -73
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -17,7 +17,6 @@ export declare const messengerContract: {
|
|
17
17
|
createdAt: z.ZodString;
|
18
18
|
updatedAt: z.ZodString;
|
19
19
|
platformContact: z.ZodObject<{
|
20
|
-
id: z.ZodString;
|
21
20
|
channelId: z.ZodString;
|
22
21
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
23
22
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -61,7 +60,6 @@ export declare const messengerContract: {
|
|
61
60
|
}>;
|
62
61
|
}, "strip", z.ZodTypeAny, {
|
63
62
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
64
|
-
id: string;
|
65
63
|
metadata: {
|
66
64
|
id: string;
|
67
65
|
name: string;
|
@@ -80,7 +78,6 @@ export declare const messengerContract: {
|
|
80
78
|
socialPlatformId: string | null;
|
81
79
|
}, {
|
82
80
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
83
|
-
id: string;
|
84
81
|
metadata: {
|
85
82
|
id: string;
|
86
83
|
name: string;
|
@@ -99,37 +96,21 @@ export declare const messengerContract: {
|
|
99
96
|
socialPlatformId: string | null;
|
100
97
|
}>;
|
101
98
|
actor: z.ZodNullable<z.ZodObject<{
|
102
|
-
id: z.ZodString;
|
103
99
|
name: z.ZodString;
|
104
100
|
email: z.ZodString;
|
105
101
|
address: z.ZodNullable<z.ZodString>;
|
106
102
|
phone: z.ZodNullable<z.ZodString>;
|
107
103
|
}, "strip", z.ZodTypeAny, {
|
108
|
-
id: string;
|
109
104
|
address: string | null;
|
110
105
|
name: string;
|
111
106
|
email: string;
|
112
107
|
phone: string | null;
|
113
108
|
}, {
|
114
|
-
id: string;
|
115
109
|
address: string | null;
|
116
110
|
name: string;
|
117
111
|
email: string;
|
118
112
|
phone: string | null;
|
119
113
|
}>>;
|
120
|
-
assignee: z.ZodNullable<z.ZodObject<{
|
121
|
-
id: z.ZodString;
|
122
|
-
name: z.ZodString;
|
123
|
-
email: z.ZodString;
|
124
|
-
}, "strip", z.ZodTypeAny, {
|
125
|
-
id: string;
|
126
|
-
name: string;
|
127
|
-
email: string;
|
128
|
-
}, {
|
129
|
-
id: string;
|
130
|
-
name: string;
|
131
|
-
email: string;
|
132
|
-
}>>;
|
133
114
|
channel: z.ZodObject<{
|
134
115
|
id: z.ZodString;
|
135
116
|
name: z.ZodString;
|
@@ -224,7 +205,6 @@ export declare const messengerContract: {
|
|
224
205
|
phone: string | null;
|
225
206
|
} | undefined;
|
226
207
|
}>;
|
227
|
-
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
228
208
|
}, "strip", z.ZodTypeAny, {
|
229
209
|
id: string;
|
230
210
|
channel: {
|
@@ -255,7 +235,6 @@ export declare const messengerContract: {
|
|
255
235
|
createdAt: string;
|
256
236
|
updatedAt: string;
|
257
237
|
actor: {
|
258
|
-
id: string;
|
259
238
|
address: string | null;
|
260
239
|
name: string;
|
261
240
|
email: string;
|
@@ -264,7 +243,6 @@ export declare const messengerContract: {
|
|
264
243
|
isLatest: boolean;
|
265
244
|
platformContact: {
|
266
245
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
267
|
-
id: string;
|
268
246
|
metadata: {
|
269
247
|
id: string;
|
270
248
|
name: string;
|
@@ -282,14 +260,8 @@ export declare const messengerContract: {
|
|
282
260
|
channelId: string;
|
283
261
|
socialPlatformId: string | null;
|
284
262
|
};
|
285
|
-
assignee: {
|
286
|
-
id: string;
|
287
|
-
name: string;
|
288
|
-
email: string;
|
289
|
-
} | null;
|
290
263
|
lastMessage?: string | undefined;
|
291
264
|
handleTime?: number | undefined;
|
292
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
293
265
|
}, {
|
294
266
|
id: string;
|
295
267
|
channel: {
|
@@ -320,7 +292,6 @@ export declare const messengerContract: {
|
|
320
292
|
createdAt: string;
|
321
293
|
updatedAt: string;
|
322
294
|
actor: {
|
323
|
-
id: string;
|
324
295
|
address: string | null;
|
325
296
|
name: string;
|
326
297
|
email: string;
|
@@ -329,7 +300,6 @@ export declare const messengerContract: {
|
|
329
300
|
isLatest: boolean;
|
330
301
|
platformContact: {
|
331
302
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
332
|
-
id: string;
|
333
303
|
metadata: {
|
334
304
|
id: string;
|
335
305
|
name: string;
|
@@ -347,14 +317,8 @@ export declare const messengerContract: {
|
|
347
317
|
channelId: string;
|
348
318
|
socialPlatformId: string | null;
|
349
319
|
};
|
350
|
-
assignee: {
|
351
|
-
id: string;
|
352
|
-
name: string;
|
353
|
-
email: string;
|
354
|
-
} | null;
|
355
320
|
lastMessage?: string | undefined;
|
356
321
|
handleTime?: number | undefined;
|
357
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
358
322
|
}>;
|
359
323
|
message: z.ZodObject<{
|
360
324
|
message: z.ZodOptional<z.ZodString>;
|
@@ -519,7 +483,6 @@ export declare const messengerContract: {
|
|
519
483
|
createdAt: string;
|
520
484
|
updatedAt: string;
|
521
485
|
actor: {
|
522
|
-
id: string;
|
523
486
|
address: string | null;
|
524
487
|
name: string;
|
525
488
|
email: string;
|
@@ -528,7 +491,6 @@ export declare const messengerContract: {
|
|
528
491
|
isLatest: boolean;
|
529
492
|
platformContact: {
|
530
493
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
531
|
-
id: string;
|
532
494
|
metadata: {
|
533
495
|
id: string;
|
534
496
|
name: string;
|
@@ -546,14 +508,8 @@ export declare const messengerContract: {
|
|
546
508
|
channelId: string;
|
547
509
|
socialPlatformId: string | null;
|
548
510
|
};
|
549
|
-
assignee: {
|
550
|
-
id: string;
|
551
|
-
name: string;
|
552
|
-
email: string;
|
553
|
-
} | null;
|
554
511
|
lastMessage?: string | undefined;
|
555
512
|
handleTime?: number | undefined;
|
556
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
557
513
|
};
|
558
514
|
}, {
|
559
515
|
message: {
|
@@ -614,7 +570,6 @@ export declare const messengerContract: {
|
|
614
570
|
createdAt: string;
|
615
571
|
updatedAt: string;
|
616
572
|
actor: {
|
617
|
-
id: string;
|
618
573
|
address: string | null;
|
619
574
|
name: string;
|
620
575
|
email: string;
|
@@ -623,7 +578,6 @@ export declare const messengerContract: {
|
|
623
578
|
isLatest: boolean;
|
624
579
|
platformContact: {
|
625
580
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
626
|
-
id: string;
|
627
581
|
metadata: {
|
628
582
|
id: string;
|
629
583
|
name: string;
|
@@ -641,14 +595,8 @@ export declare const messengerContract: {
|
|
641
595
|
channelId: string;
|
642
596
|
socialPlatformId: string | null;
|
643
597
|
};
|
644
|
-
assignee: {
|
645
|
-
id: string;
|
646
|
-
name: string;
|
647
|
-
email: string;
|
648
|
-
} | null;
|
649
598
|
lastMessage?: string | undefined;
|
650
599
|
handleTime?: number | undefined;
|
651
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
652
600
|
};
|
653
601
|
}>;
|
654
602
|
method: "POST";
|
@@ -680,9 +628,7 @@ export declare const messengerContract: {
|
|
680
628
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
681
629
|
lastMessage: z.ZodString;
|
682
630
|
handleTime: z.ZodNumber;
|
683
|
-
|
684
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
685
|
-
status: z.ZodNumber;
|
631
|
+
closeAt: z.ZodDate;
|
686
632
|
unreadCount: z.ZodNumber;
|
687
633
|
firstResponseAt: z.ZodDate;
|
688
634
|
firstResponseTime: z.ZodNumber;
|
@@ -2607,7 +2553,6 @@ export declare const messengerContract: {
|
|
2607
2553
|
connectedUserId: string;
|
2608
2554
|
};
|
2609
2555
|
direction: "incoming" | "outgoing" | "system";
|
2610
|
-
status: number;
|
2611
2556
|
createdAt: Date;
|
2612
2557
|
updatedAt: Date;
|
2613
2558
|
deletedAt: Date | null;
|
@@ -2658,6 +2603,7 @@ export declare const messengerContract: {
|
|
2658
2603
|
firstResponseTime: number;
|
2659
2604
|
lastMessage: string;
|
2660
2605
|
handleTime: number;
|
2606
|
+
closeAt: Date;
|
2661
2607
|
unreadCount: number;
|
2662
2608
|
firstResponseAt: Date;
|
2663
2609
|
isLatest: boolean;
|
@@ -2817,8 +2763,6 @@ export declare const messengerContract: {
|
|
2817
2763
|
telephonySignature: string | null;
|
2818
2764
|
};
|
2819
2765
|
};
|
2820
|
-
closedAt: Date;
|
2821
|
-
lastMessageAt: Date | null;
|
2822
2766
|
cxlog: {
|
2823
2767
|
id: string;
|
2824
2768
|
channel: string | null;
|
@@ -2921,7 +2865,6 @@ export declare const messengerContract: {
|
|
2921
2865
|
connectedUserId: string;
|
2922
2866
|
};
|
2923
2867
|
direction: "incoming" | "outgoing" | "system";
|
2924
|
-
status: number;
|
2925
2868
|
createdAt: Date;
|
2926
2869
|
updatedAt: Date;
|
2927
2870
|
deletedAt: Date | null;
|
@@ -2972,6 +2915,7 @@ export declare const messengerContract: {
|
|
2972
2915
|
firstResponseTime: number;
|
2973
2916
|
lastMessage: string;
|
2974
2917
|
handleTime: number;
|
2918
|
+
closeAt: Date;
|
2975
2919
|
unreadCount: number;
|
2976
2920
|
firstResponseAt: Date;
|
2977
2921
|
isLatest: boolean;
|
@@ -3131,8 +3075,6 @@ export declare const messengerContract: {
|
|
3131
3075
|
telephonySignature: string | null;
|
3132
3076
|
};
|
3133
3077
|
};
|
3134
|
-
closedAt: Date;
|
3135
|
-
lastMessageAt: Date | null;
|
3136
3078
|
cxlog: {
|
3137
3079
|
id: string;
|
3138
3080
|
channel: string | null;
|
@@ -4981,7 +4923,6 @@ export declare const messengerContract: {
|
|
4981
4923
|
connectedUserId: string;
|
4982
4924
|
};
|
4983
4925
|
direction: "incoming" | "outgoing" | "system";
|
4984
|
-
status: number;
|
4985
4926
|
createdAt: Date;
|
4986
4927
|
updatedAt: Date;
|
4987
4928
|
deletedAt: Date | null;
|
@@ -5032,6 +4973,7 @@ export declare const messengerContract: {
|
|
5032
4973
|
firstResponseTime: number;
|
5033
4974
|
lastMessage: string;
|
5034
4975
|
handleTime: number;
|
4976
|
+
closeAt: Date;
|
5035
4977
|
unreadCount: number;
|
5036
4978
|
firstResponseAt: Date;
|
5037
4979
|
isLatest: boolean;
|
@@ -5191,8 +5133,6 @@ export declare const messengerContract: {
|
|
5191
5133
|
telephonySignature: string | null;
|
5192
5134
|
};
|
5193
5135
|
};
|
5194
|
-
closedAt: Date;
|
5195
|
-
lastMessageAt: Date | null;
|
5196
5136
|
cxlog: {
|
5197
5137
|
id: string;
|
5198
5138
|
channel: string | null;
|
@@ -5621,7 +5561,6 @@ export declare const messengerContract: {
|
|
5621
5561
|
connectedUserId: string;
|
5622
5562
|
};
|
5623
5563
|
direction: "incoming" | "outgoing" | "system";
|
5624
|
-
status: number;
|
5625
5564
|
createdAt: Date;
|
5626
5565
|
updatedAt: Date;
|
5627
5566
|
deletedAt: Date | null;
|
@@ -5672,6 +5611,7 @@ export declare const messengerContract: {
|
|
5672
5611
|
firstResponseTime: number;
|
5673
5612
|
lastMessage: string;
|
5674
5613
|
handleTime: number;
|
5614
|
+
closeAt: Date;
|
5675
5615
|
unreadCount: number;
|
5676
5616
|
firstResponseAt: Date;
|
5677
5617
|
isLatest: boolean;
|
@@ -5831,8 +5771,6 @@ export declare const messengerContract: {
|
|
5831
5771
|
telephonySignature: string | null;
|
5832
5772
|
};
|
5833
5773
|
};
|
5834
|
-
closedAt: Date;
|
5835
|
-
lastMessageAt: Date | null;
|
5836
5774
|
cxlog: {
|
5837
5775
|
id: string;
|
5838
5776
|
channel: string | null;
|
@@ -6263,7 +6201,6 @@ export declare const messengerContract: {
|
|
6263
6201
|
connectedUserId: string;
|
6264
6202
|
};
|
6265
6203
|
direction: "incoming" | "outgoing" | "system";
|
6266
|
-
status: number;
|
6267
6204
|
createdAt: Date;
|
6268
6205
|
updatedAt: Date;
|
6269
6206
|
deletedAt: Date | null;
|
@@ -6314,6 +6251,7 @@ export declare const messengerContract: {
|
|
6314
6251
|
firstResponseTime: number;
|
6315
6252
|
lastMessage: string;
|
6316
6253
|
handleTime: number;
|
6254
|
+
closeAt: Date;
|
6317
6255
|
unreadCount: number;
|
6318
6256
|
firstResponseAt: Date;
|
6319
6257
|
isLatest: boolean;
|
@@ -6473,8 +6411,6 @@ export declare const messengerContract: {
|
|
6473
6411
|
telephonySignature: string | null;
|
6474
6412
|
};
|
6475
6413
|
};
|
6476
|
-
closedAt: Date;
|
6477
|
-
lastMessageAt: Date | null;
|
6478
6414
|
cxlog: {
|
6479
6415
|
id: string;
|
6480
6416
|
channel: string | null;
|
@@ -6906,7 +6842,6 @@ export declare const messengerContract: {
|
|
6906
6842
|
connectedUserId: string;
|
6907
6843
|
};
|
6908
6844
|
direction: "incoming" | "outgoing" | "system";
|
6909
|
-
status: number;
|
6910
6845
|
createdAt: Date;
|
6911
6846
|
updatedAt: Date;
|
6912
6847
|
deletedAt: Date | null;
|
@@ -6957,6 +6892,7 @@ export declare const messengerContract: {
|
|
6957
6892
|
firstResponseTime: number;
|
6958
6893
|
lastMessage: string;
|
6959
6894
|
handleTime: number;
|
6895
|
+
closeAt: Date;
|
6960
6896
|
unreadCount: number;
|
6961
6897
|
firstResponseAt: Date;
|
6962
6898
|
isLatest: boolean;
|
@@ -7116,8 +7052,6 @@ export declare const messengerContract: {
|
|
7116
7052
|
telephonySignature: string | null;
|
7117
7053
|
};
|
7118
7054
|
};
|
7119
|
-
closedAt: Date;
|
7120
|
-
lastMessageAt: Date | null;
|
7121
7055
|
cxlog: {
|
7122
7056
|
id: string;
|
7123
7057
|
channel: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5B,CAAC"}
|
package/dist/src/user/index.d.ts
CHANGED
@@ -946,7 +946,7 @@ export declare const userContract: {
|
|
946
946
|
responses: {
|
947
947
|
201: z.ZodObject<{
|
948
948
|
requestId: z.ZodString;
|
949
|
-
|
949
|
+
user: z.ZodObject<{
|
950
950
|
id: z.ZodString;
|
951
951
|
createdAt: z.ZodDate;
|
952
952
|
updatedAt: z.ZodDate;
|
@@ -1151,7 +1151,7 @@ export declare const userContract: {
|
|
1151
1151
|
};
|
1152
1152
|
}>;
|
1153
1153
|
}, "strip", z.ZodTypeAny, {
|
1154
|
-
|
1154
|
+
user: {
|
1155
1155
|
id: string;
|
1156
1156
|
address: string | null;
|
1157
1157
|
name: string;
|
@@ -1197,7 +1197,7 @@ export declare const userContract: {
|
|
1197
1197
|
};
|
1198
1198
|
requestId: string;
|
1199
1199
|
}, {
|
1200
|
-
|
1200
|
+
user: {
|
1201
1201
|
id: string;
|
1202
1202
|
address: string | null;
|
1203
1203
|
name: string;
|
@@ -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,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,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,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAUpB,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,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,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqHxB,CAAC"}
|