@kl1/contracts 1.1.26-uat → 1.1.27-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/index.js +338 -184
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +337 -184
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +414 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +99 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +260 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +1667 -141
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +236 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +308 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +3445 -104
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +106 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +164 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +154 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +154 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +390 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +390 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +130 -0
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +106 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +154 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +154 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +154 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +294 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +58 -0
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2542,6 +2542,40 @@ export declare const instagramContract: {
|
|
2542
2542
|
}>, "many">;
|
2543
2543
|
callFrom: z.ZodNullable<z.ZodString>;
|
2544
2544
|
callTo: z.ZodNullable<z.ZodString>;
|
2545
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2546
|
+
id: z.ZodString;
|
2547
|
+
createdAt: z.ZodDate;
|
2548
|
+
updatedAt: z.ZodDate;
|
2549
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2550
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2551
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2552
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2553
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2554
|
+
entityId: z.ZodString;
|
2555
|
+
attributeId: z.ZodString;
|
2556
|
+
}, "strip", z.ZodTypeAny, {
|
2557
|
+
id: string;
|
2558
|
+
createdAt: Date;
|
2559
|
+
updatedAt: Date;
|
2560
|
+
deletedAt: Date | null;
|
2561
|
+
entityId: string;
|
2562
|
+
attributeId: string;
|
2563
|
+
textValue: string | null;
|
2564
|
+
booleanValue: boolean | null;
|
2565
|
+
numberValue: number | null;
|
2566
|
+
dateValue: Date | null;
|
2567
|
+
}, {
|
2568
|
+
id: string;
|
2569
|
+
createdAt: Date;
|
2570
|
+
updatedAt: Date;
|
2571
|
+
deletedAt: Date | null;
|
2572
|
+
entityId: string;
|
2573
|
+
attributeId: string;
|
2574
|
+
textValue: string | null;
|
2575
|
+
booleanValue: boolean | null;
|
2576
|
+
numberValue: number | null;
|
2577
|
+
dateValue: Date | null;
|
2578
|
+
}>, "many">>;
|
2545
2579
|
}, "strip", z.ZodTypeAny, {
|
2546
2580
|
type: string;
|
2547
2581
|
id: string;
|
@@ -2581,6 +2615,18 @@ export declare const instagramContract: {
|
|
2581
2615
|
callFrom: string | null;
|
2582
2616
|
callTo: string | null;
|
2583
2617
|
note: string | null;
|
2618
|
+
customFields?: {
|
2619
|
+
id: string;
|
2620
|
+
createdAt: Date;
|
2621
|
+
updatedAt: Date;
|
2622
|
+
deletedAt: Date | null;
|
2623
|
+
entityId: string;
|
2624
|
+
attributeId: string;
|
2625
|
+
textValue: string | null;
|
2626
|
+
booleanValue: boolean | null;
|
2627
|
+
numberValue: number | null;
|
2628
|
+
dateValue: Date | null;
|
2629
|
+
}[] | undefined;
|
2584
2630
|
}, {
|
2585
2631
|
type: string;
|
2586
2632
|
id: string;
|
@@ -2620,6 +2666,18 @@ export declare const instagramContract: {
|
|
2620
2666
|
callFrom: string | null;
|
2621
2667
|
callTo: string | null;
|
2622
2668
|
note: string | null;
|
2669
|
+
customFields?: {
|
2670
|
+
id: string;
|
2671
|
+
createdAt: Date;
|
2672
|
+
updatedAt: Date;
|
2673
|
+
deletedAt: Date | null;
|
2674
|
+
entityId: string;
|
2675
|
+
attributeId: string;
|
2676
|
+
textValue: string | null;
|
2677
|
+
booleanValue: boolean | null;
|
2678
|
+
numberValue: number | null;
|
2679
|
+
dateValue: Date | null;
|
2680
|
+
}[] | undefined;
|
2623
2681
|
}>>;
|
2624
2682
|
}, "strip", z.ZodTypeAny, {
|
2625
2683
|
id: string;
|
@@ -2676,6 +2734,18 @@ export declare const instagramContract: {
|
|
2676
2734
|
callFrom: string | null;
|
2677
2735
|
callTo: string | null;
|
2678
2736
|
note: string | null;
|
2737
|
+
customFields?: {
|
2738
|
+
id: string;
|
2739
|
+
createdAt: Date;
|
2740
|
+
updatedAt: Date;
|
2741
|
+
deletedAt: Date | null;
|
2742
|
+
entityId: string;
|
2743
|
+
attributeId: string;
|
2744
|
+
textValue: string | null;
|
2745
|
+
booleanValue: boolean | null;
|
2746
|
+
numberValue: number | null;
|
2747
|
+
dateValue: Date | null;
|
2748
|
+
}[] | undefined;
|
2679
2749
|
} | null;
|
2680
2750
|
}, {
|
2681
2751
|
id: string;
|
@@ -2732,6 +2802,18 @@ export declare const instagramContract: {
|
|
2732
2802
|
callFrom: string | null;
|
2733
2803
|
callTo: string | null;
|
2734
2804
|
note: string | null;
|
2805
|
+
customFields?: {
|
2806
|
+
id: string;
|
2807
|
+
createdAt: Date;
|
2808
|
+
updatedAt: Date;
|
2809
|
+
deletedAt: Date | null;
|
2810
|
+
entityId: string;
|
2811
|
+
attributeId: string;
|
2812
|
+
textValue: string | null;
|
2813
|
+
booleanValue: boolean | null;
|
2814
|
+
numberValue: number | null;
|
2815
|
+
dateValue: Date | null;
|
2816
|
+
}[] | undefined;
|
2735
2817
|
} | null;
|
2736
2818
|
}>;
|
2737
2819
|
}, "strip", z.ZodTypeAny, {
|
@@ -3069,6 +3151,18 @@ export declare const instagramContract: {
|
|
3069
3151
|
callFrom: string | null;
|
3070
3152
|
callTo: string | null;
|
3071
3153
|
note: string | null;
|
3154
|
+
customFields?: {
|
3155
|
+
id: string;
|
3156
|
+
createdAt: Date;
|
3157
|
+
updatedAt: Date;
|
3158
|
+
deletedAt: Date | null;
|
3159
|
+
entityId: string;
|
3160
|
+
attributeId: string;
|
3161
|
+
textValue: string | null;
|
3162
|
+
booleanValue: boolean | null;
|
3163
|
+
numberValue: number | null;
|
3164
|
+
dateValue: Date | null;
|
3165
|
+
}[] | undefined;
|
3072
3166
|
} | null;
|
3073
3167
|
};
|
3074
3168
|
}, {
|
@@ -3406,6 +3500,18 @@ export declare const instagramContract: {
|
|
3406
3500
|
callFrom: string | null;
|
3407
3501
|
callTo: string | null;
|
3408
3502
|
note: string | null;
|
3503
|
+
customFields?: {
|
3504
|
+
id: string;
|
3505
|
+
createdAt: Date;
|
3506
|
+
updatedAt: Date;
|
3507
|
+
deletedAt: Date | null;
|
3508
|
+
entityId: string;
|
3509
|
+
attributeId: string;
|
3510
|
+
textValue: string | null;
|
3511
|
+
booleanValue: boolean | null;
|
3512
|
+
numberValue: number | null;
|
3513
|
+
dateValue: Date | null;
|
3514
|
+
}[] | undefined;
|
3409
3515
|
} | null;
|
3410
3516
|
};
|
3411
3517
|
}>;
|
@@ -5489,6 +5595,18 @@ export declare const instagramContract: {
|
|
5489
5595
|
callFrom: string | null;
|
5490
5596
|
callTo: string | null;
|
5491
5597
|
note: string | null;
|
5598
|
+
customFields?: {
|
5599
|
+
id: string;
|
5600
|
+
createdAt: Date;
|
5601
|
+
updatedAt: Date;
|
5602
|
+
deletedAt: Date | null;
|
5603
|
+
entityId: string;
|
5604
|
+
attributeId: string;
|
5605
|
+
textValue: string | null;
|
5606
|
+
booleanValue: boolean | null;
|
5607
|
+
numberValue: number | null;
|
5608
|
+
dateValue: Date | null;
|
5609
|
+
}[] | undefined;
|
5492
5610
|
} | null;
|
5493
5611
|
};
|
5494
5612
|
};
|
@@ -6152,6 +6270,18 @@ export declare const instagramContract: {
|
|
6152
6270
|
callFrom: string | null;
|
6153
6271
|
callTo: string | null;
|
6154
6272
|
note: string | null;
|
6273
|
+
customFields?: {
|
6274
|
+
id: string;
|
6275
|
+
createdAt: Date;
|
6276
|
+
updatedAt: Date;
|
6277
|
+
deletedAt: Date | null;
|
6278
|
+
entityId: string;
|
6279
|
+
attributeId: string;
|
6280
|
+
textValue: string | null;
|
6281
|
+
booleanValue: boolean | null;
|
6282
|
+
numberValue: number | null;
|
6283
|
+
dateValue: Date | null;
|
6284
|
+
}[] | undefined;
|
6155
6285
|
} | null;
|
6156
6286
|
};
|
6157
6287
|
};
|
@@ -6817,6 +6947,18 @@ export declare const instagramContract: {
|
|
6817
6947
|
callFrom: string | null;
|
6818
6948
|
callTo: string | null;
|
6819
6949
|
note: string | null;
|
6950
|
+
customFields?: {
|
6951
|
+
id: string;
|
6952
|
+
createdAt: Date;
|
6953
|
+
updatedAt: Date;
|
6954
|
+
deletedAt: Date | null;
|
6955
|
+
entityId: string;
|
6956
|
+
attributeId: string;
|
6957
|
+
textValue: string | null;
|
6958
|
+
booleanValue: boolean | null;
|
6959
|
+
numberValue: number | null;
|
6960
|
+
dateValue: Date | null;
|
6961
|
+
}[] | undefined;
|
6820
6962
|
} | null;
|
6821
6963
|
};
|
6822
6964
|
};
|
@@ -7483,6 +7625,18 @@ export declare const instagramContract: {
|
|
7483
7625
|
callFrom: string | null;
|
7484
7626
|
callTo: string | null;
|
7485
7627
|
note: string | null;
|
7628
|
+
customFields?: {
|
7629
|
+
id: string;
|
7630
|
+
createdAt: Date;
|
7631
|
+
updatedAt: Date;
|
7632
|
+
deletedAt: Date | null;
|
7633
|
+
entityId: string;
|
7634
|
+
attributeId: string;
|
7635
|
+
textValue: string | null;
|
7636
|
+
booleanValue: boolean | null;
|
7637
|
+
numberValue: number | null;
|
7638
|
+
dateValue: Date | null;
|
7639
|
+
}[] | undefined;
|
7486
7640
|
} | null;
|
7487
7641
|
};
|
7488
7642
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EACL,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAChF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EACL,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAChF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5B,CAAC"}
|
package/dist/src/line/index.d.ts
CHANGED
@@ -3377,6 +3377,40 @@ export declare const lineContract: {
|
|
3377
3377
|
}>, "many">;
|
3378
3378
|
callFrom: z.ZodNullable<z.ZodString>;
|
3379
3379
|
callTo: z.ZodNullable<z.ZodString>;
|
3380
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3381
|
+
id: z.ZodString;
|
3382
|
+
createdAt: z.ZodDate;
|
3383
|
+
updatedAt: z.ZodDate;
|
3384
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3385
|
+
textValue: z.ZodNullable<z.ZodString>;
|
3386
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3387
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
3388
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
3389
|
+
entityId: z.ZodString;
|
3390
|
+
attributeId: z.ZodString;
|
3391
|
+
}, "strip", z.ZodTypeAny, {
|
3392
|
+
id: string;
|
3393
|
+
createdAt: Date;
|
3394
|
+
updatedAt: Date;
|
3395
|
+
deletedAt: Date | null;
|
3396
|
+
entityId: string;
|
3397
|
+
attributeId: string;
|
3398
|
+
textValue: string | null;
|
3399
|
+
booleanValue: boolean | null;
|
3400
|
+
numberValue: number | null;
|
3401
|
+
dateValue: Date | null;
|
3402
|
+
}, {
|
3403
|
+
id: string;
|
3404
|
+
createdAt: Date;
|
3405
|
+
updatedAt: Date;
|
3406
|
+
deletedAt: Date | null;
|
3407
|
+
entityId: string;
|
3408
|
+
attributeId: string;
|
3409
|
+
textValue: string | null;
|
3410
|
+
booleanValue: boolean | null;
|
3411
|
+
numberValue: number | null;
|
3412
|
+
dateValue: Date | null;
|
3413
|
+
}>, "many">>;
|
3380
3414
|
}, "strip", z.ZodTypeAny, {
|
3381
3415
|
type: string;
|
3382
3416
|
id: string;
|
@@ -3416,6 +3450,18 @@ export declare const lineContract: {
|
|
3416
3450
|
callFrom: string | null;
|
3417
3451
|
callTo: string | null;
|
3418
3452
|
note: string | null;
|
3453
|
+
customFields?: {
|
3454
|
+
id: string;
|
3455
|
+
createdAt: Date;
|
3456
|
+
updatedAt: Date;
|
3457
|
+
deletedAt: Date | null;
|
3458
|
+
entityId: string;
|
3459
|
+
attributeId: string;
|
3460
|
+
textValue: string | null;
|
3461
|
+
booleanValue: boolean | null;
|
3462
|
+
numberValue: number | null;
|
3463
|
+
dateValue: Date | null;
|
3464
|
+
}[] | undefined;
|
3419
3465
|
}, {
|
3420
3466
|
type: string;
|
3421
3467
|
id: string;
|
@@ -3455,6 +3501,18 @@ export declare const lineContract: {
|
|
3455
3501
|
callFrom: string | null;
|
3456
3502
|
callTo: string | null;
|
3457
3503
|
note: string | null;
|
3504
|
+
customFields?: {
|
3505
|
+
id: string;
|
3506
|
+
createdAt: Date;
|
3507
|
+
updatedAt: Date;
|
3508
|
+
deletedAt: Date | null;
|
3509
|
+
entityId: string;
|
3510
|
+
attributeId: string;
|
3511
|
+
textValue: string | null;
|
3512
|
+
booleanValue: boolean | null;
|
3513
|
+
numberValue: number | null;
|
3514
|
+
dateValue: Date | null;
|
3515
|
+
}[] | undefined;
|
3458
3516
|
}>>;
|
3459
3517
|
}, "strip", z.ZodTypeAny, {
|
3460
3518
|
id: string;
|
@@ -3511,6 +3569,18 @@ export declare const lineContract: {
|
|
3511
3569
|
callFrom: string | null;
|
3512
3570
|
callTo: string | null;
|
3513
3571
|
note: string | null;
|
3572
|
+
customFields?: {
|
3573
|
+
id: string;
|
3574
|
+
createdAt: Date;
|
3575
|
+
updatedAt: Date;
|
3576
|
+
deletedAt: Date | null;
|
3577
|
+
entityId: string;
|
3578
|
+
attributeId: string;
|
3579
|
+
textValue: string | null;
|
3580
|
+
booleanValue: boolean | null;
|
3581
|
+
numberValue: number | null;
|
3582
|
+
dateValue: Date | null;
|
3583
|
+
}[] | undefined;
|
3514
3584
|
} | null;
|
3515
3585
|
}, {
|
3516
3586
|
id: string;
|
@@ -3567,6 +3637,18 @@ export declare const lineContract: {
|
|
3567
3637
|
callFrom: string | null;
|
3568
3638
|
callTo: string | null;
|
3569
3639
|
note: string | null;
|
3640
|
+
customFields?: {
|
3641
|
+
id: string;
|
3642
|
+
createdAt: Date;
|
3643
|
+
updatedAt: Date;
|
3644
|
+
deletedAt: Date | null;
|
3645
|
+
entityId: string;
|
3646
|
+
attributeId: string;
|
3647
|
+
textValue: string | null;
|
3648
|
+
booleanValue: boolean | null;
|
3649
|
+
numberValue: number | null;
|
3650
|
+
dateValue: Date | null;
|
3651
|
+
}[] | undefined;
|
3570
3652
|
} | null;
|
3571
3653
|
}>;
|
3572
3654
|
}, "strip", z.ZodTypeAny, {
|
@@ -3904,6 +3986,18 @@ export declare const lineContract: {
|
|
3904
3986
|
callFrom: string | null;
|
3905
3987
|
callTo: string | null;
|
3906
3988
|
note: string | null;
|
3989
|
+
customFields?: {
|
3990
|
+
id: string;
|
3991
|
+
createdAt: Date;
|
3992
|
+
updatedAt: Date;
|
3993
|
+
deletedAt: Date | null;
|
3994
|
+
entityId: string;
|
3995
|
+
attributeId: string;
|
3996
|
+
textValue: string | null;
|
3997
|
+
booleanValue: boolean | null;
|
3998
|
+
numberValue: number | null;
|
3999
|
+
dateValue: Date | null;
|
4000
|
+
}[] | undefined;
|
3907
4001
|
} | null;
|
3908
4002
|
};
|
3909
4003
|
}, {
|
@@ -4241,6 +4335,18 @@ export declare const lineContract: {
|
|
4241
4335
|
callFrom: string | null;
|
4242
4336
|
callTo: string | null;
|
4243
4337
|
note: string | null;
|
4338
|
+
customFields?: {
|
4339
|
+
id: string;
|
4340
|
+
createdAt: Date;
|
4341
|
+
updatedAt: Date;
|
4342
|
+
deletedAt: Date | null;
|
4343
|
+
entityId: string;
|
4344
|
+
attributeId: string;
|
4345
|
+
textValue: string | null;
|
4346
|
+
booleanValue: boolean | null;
|
4347
|
+
numberValue: number | null;
|
4348
|
+
dateValue: Date | null;
|
4349
|
+
}[] | undefined;
|
4244
4350
|
} | null;
|
4245
4351
|
};
|
4246
4352
|
}>;
|
@@ -6324,6 +6430,18 @@ export declare const lineContract: {
|
|
6324
6430
|
callFrom: string | null;
|
6325
6431
|
callTo: string | null;
|
6326
6432
|
note: string | null;
|
6433
|
+
customFields?: {
|
6434
|
+
id: string;
|
6435
|
+
createdAt: Date;
|
6436
|
+
updatedAt: Date;
|
6437
|
+
deletedAt: Date | null;
|
6438
|
+
entityId: string;
|
6439
|
+
attributeId: string;
|
6440
|
+
textValue: string | null;
|
6441
|
+
booleanValue: boolean | null;
|
6442
|
+
numberValue: number | null;
|
6443
|
+
dateValue: Date | null;
|
6444
|
+
}[] | undefined;
|
6327
6445
|
} | null;
|
6328
6446
|
};
|
6329
6447
|
};
|
@@ -6987,6 +7105,18 @@ export declare const lineContract: {
|
|
6987
7105
|
callFrom: string | null;
|
6988
7106
|
callTo: string | null;
|
6989
7107
|
note: string | null;
|
7108
|
+
customFields?: {
|
7109
|
+
id: string;
|
7110
|
+
createdAt: Date;
|
7111
|
+
updatedAt: Date;
|
7112
|
+
deletedAt: Date | null;
|
7113
|
+
entityId: string;
|
7114
|
+
attributeId: string;
|
7115
|
+
textValue: string | null;
|
7116
|
+
booleanValue: boolean | null;
|
7117
|
+
numberValue: number | null;
|
7118
|
+
dateValue: Date | null;
|
7119
|
+
}[] | undefined;
|
6990
7120
|
} | null;
|
6991
7121
|
};
|
6992
7122
|
};
|
@@ -7652,6 +7782,18 @@ export declare const lineContract: {
|
|
7652
7782
|
callFrom: string | null;
|
7653
7783
|
callTo: string | null;
|
7654
7784
|
note: string | null;
|
7785
|
+
customFields?: {
|
7786
|
+
id: string;
|
7787
|
+
createdAt: Date;
|
7788
|
+
updatedAt: Date;
|
7789
|
+
deletedAt: Date | null;
|
7790
|
+
entityId: string;
|
7791
|
+
attributeId: string;
|
7792
|
+
textValue: string | null;
|
7793
|
+
booleanValue: boolean | null;
|
7794
|
+
numberValue: number | null;
|
7795
|
+
dateValue: Date | null;
|
7796
|
+
}[] | undefined;
|
7655
7797
|
} | null;
|
7656
7798
|
};
|
7657
7799
|
};
|
@@ -8318,6 +8460,18 @@ export declare const lineContract: {
|
|
8318
8460
|
callFrom: string | null;
|
8319
8461
|
callTo: string | null;
|
8320
8462
|
note: string | null;
|
8463
|
+
customFields?: {
|
8464
|
+
id: string;
|
8465
|
+
createdAt: Date;
|
8466
|
+
updatedAt: Date;
|
8467
|
+
deletedAt: Date | null;
|
8468
|
+
entityId: string;
|
8469
|
+
attributeId: string;
|
8470
|
+
textValue: string | null;
|
8471
|
+
booleanValue: boolean | null;
|
8472
|
+
numberValue: number | null;
|
8473
|
+
dateValue: Date | null;
|
8474
|
+
}[] | undefined;
|
8321
8475
|
} | null;
|
8322
8476
|
};
|
8323
8477
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EvB,CAAC"}
|