@kl1/contracts 1.0.64 → 1.0.66
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 +21 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -4
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +81 -2
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +8 -0
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +5 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +110 -5
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +16 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +143 -3
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6364 -269
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +17 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +9 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/cx-log/validation.d.ts +3 -0
- package/dist/src/cx-log/validation.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +56 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +5789 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/schema.d.ts +6 -0
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +77 -15
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1,6 +1,8 @@
|
|
1
1
|
import z from 'zod';
|
2
|
+
import { ChannelSchema } from './schema';
|
2
3
|
import { ConnectChannelSchema } from './validation';
|
3
4
|
export type ConnectChannelRequest = z.TypeOf<typeof ConnectChannelSchema>;
|
5
|
+
export type Channel = z.infer<typeof ChannelSchema>;
|
4
6
|
export declare const channelContract: {
|
5
7
|
getChannels: {
|
6
8
|
summary: "Get Channels";
|
@@ -19,16 +21,19 @@ export declare const channelContract: {
|
|
19
21
|
id: z.ZodString;
|
20
22
|
name: z.ZodString;
|
21
23
|
accessToken: z.ZodString;
|
24
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
22
25
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
23
26
|
}, "strip", z.ZodTypeAny, {
|
24
27
|
id: string;
|
25
28
|
name: string;
|
26
29
|
accessToken: string;
|
30
|
+
channelSecret?: string | undefined;
|
27
31
|
additionalCredentials?: any;
|
28
32
|
}, {
|
29
33
|
id: string;
|
30
34
|
name: string;
|
31
35
|
accessToken: string;
|
36
|
+
channelSecret?: string | undefined;
|
32
37
|
additionalCredentials?: any;
|
33
38
|
}>>;
|
34
39
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -252,6 +257,7 @@ export declare const channelContract: {
|
|
252
257
|
id: string;
|
253
258
|
name: string;
|
254
259
|
accessToken: string;
|
260
|
+
channelSecret?: string | undefined;
|
255
261
|
additionalCredentials?: any;
|
256
262
|
} | undefined;
|
257
263
|
brandName?: string | undefined;
|
@@ -315,6 +321,7 @@ export declare const channelContract: {
|
|
315
321
|
id: string;
|
316
322
|
name: string;
|
317
323
|
accessToken: string;
|
324
|
+
channelSecret?: string | undefined;
|
318
325
|
additionalCredentials?: any;
|
319
326
|
} | undefined;
|
320
327
|
brandName?: string | undefined;
|
@@ -380,6 +387,7 @@ export declare const channelContract: {
|
|
380
387
|
id: string;
|
381
388
|
name: string;
|
382
389
|
accessToken: string;
|
390
|
+
channelSecret?: string | undefined;
|
383
391
|
additionalCredentials?: any;
|
384
392
|
} | undefined;
|
385
393
|
brandName?: string | undefined;
|
@@ -446,6 +454,7 @@ export declare const channelContract: {
|
|
446
454
|
id: string;
|
447
455
|
name: string;
|
448
456
|
accessToken: string;
|
457
|
+
channelSecret?: string | undefined;
|
449
458
|
additionalCredentials?: any;
|
450
459
|
} | undefined;
|
451
460
|
brandName?: string | undefined;
|
@@ -545,16 +554,19 @@ export declare const channelContract: {
|
|
545
554
|
id: z.ZodString;
|
546
555
|
name: z.ZodString;
|
547
556
|
accessToken: z.ZodString;
|
557
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
548
558
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
549
559
|
}, "strip", z.ZodTypeAny, {
|
550
560
|
id: string;
|
551
561
|
name: string;
|
552
562
|
accessToken: string;
|
563
|
+
channelSecret?: string | undefined;
|
553
564
|
additionalCredentials?: any;
|
554
565
|
}, {
|
555
566
|
id: string;
|
556
567
|
name: string;
|
557
568
|
accessToken: string;
|
569
|
+
channelSecret?: string | undefined;
|
558
570
|
additionalCredentials?: any;
|
559
571
|
}>>;
|
560
572
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -778,6 +790,7 @@ export declare const channelContract: {
|
|
778
790
|
id: string;
|
779
791
|
name: string;
|
780
792
|
accessToken: string;
|
793
|
+
channelSecret?: string | undefined;
|
781
794
|
additionalCredentials?: any;
|
782
795
|
} | undefined;
|
783
796
|
brandName?: string | undefined;
|
@@ -841,6 +854,7 @@ export declare const channelContract: {
|
|
841
854
|
id: string;
|
842
855
|
name: string;
|
843
856
|
accessToken: string;
|
857
|
+
channelSecret?: string | undefined;
|
844
858
|
additionalCredentials?: any;
|
845
859
|
} | undefined;
|
846
860
|
brandName?: string | undefined;
|
@@ -907,6 +921,7 @@ export declare const channelContract: {
|
|
907
921
|
id: string;
|
908
922
|
name: string;
|
909
923
|
accessToken: string;
|
924
|
+
channelSecret?: string | undefined;
|
910
925
|
additionalCredentials?: any;
|
911
926
|
} | undefined;
|
912
927
|
brandName?: string | undefined;
|
@@ -973,6 +988,7 @@ export declare const channelContract: {
|
|
973
988
|
id: string;
|
974
989
|
name: string;
|
975
990
|
accessToken: string;
|
991
|
+
channelSecret?: string | undefined;
|
976
992
|
additionalCredentials?: any;
|
977
993
|
} | undefined;
|
978
994
|
brandName?: string | undefined;
|
@@ -1081,16 +1097,19 @@ export declare const channelContract: {
|
|
1081
1097
|
id: z.ZodString;
|
1082
1098
|
name: z.ZodString;
|
1083
1099
|
accessToken: z.ZodString;
|
1100
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
1084
1101
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1085
1102
|
}, "strip", z.ZodTypeAny, {
|
1086
1103
|
id: string;
|
1087
1104
|
name: string;
|
1088
1105
|
accessToken: string;
|
1106
|
+
channelSecret?: string | undefined;
|
1089
1107
|
additionalCredentials?: any;
|
1090
1108
|
}, {
|
1091
1109
|
id: string;
|
1092
1110
|
name: string;
|
1093
1111
|
accessToken: string;
|
1112
|
+
channelSecret?: string | undefined;
|
1094
1113
|
additionalCredentials?: any;
|
1095
1114
|
}>>;
|
1096
1115
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -1314,6 +1333,7 @@ export declare const channelContract: {
|
|
1314
1333
|
id: string;
|
1315
1334
|
name: string;
|
1316
1335
|
accessToken: string;
|
1336
|
+
channelSecret?: string | undefined;
|
1317
1337
|
additionalCredentials?: any;
|
1318
1338
|
} | undefined;
|
1319
1339
|
brandName?: string | undefined;
|
@@ -1377,6 +1397,7 @@ export declare const channelContract: {
|
|
1377
1397
|
id: string;
|
1378
1398
|
name: string;
|
1379
1399
|
accessToken: string;
|
1400
|
+
channelSecret?: string | undefined;
|
1380
1401
|
additionalCredentials?: any;
|
1381
1402
|
} | undefined;
|
1382
1403
|
brandName?: string | undefined;
|
@@ -1443,6 +1464,7 @@ export declare const channelContract: {
|
|
1443
1464
|
id: string;
|
1444
1465
|
name: string;
|
1445
1466
|
accessToken: string;
|
1467
|
+
channelSecret?: string | undefined;
|
1446
1468
|
additionalCredentials?: any;
|
1447
1469
|
} | undefined;
|
1448
1470
|
brandName?: string | undefined;
|
@@ -1509,6 +1531,7 @@ export declare const channelContract: {
|
|
1509
1531
|
id: string;
|
1510
1532
|
name: string;
|
1511
1533
|
accessToken: string;
|
1534
|
+
channelSecret?: string | undefined;
|
1512
1535
|
additionalCredentials?: any;
|
1513
1536
|
} | undefined;
|
1514
1537
|
brandName?: string | undefined;
|
@@ -1574,7 +1597,7 @@ export declare const channelContract: {
|
|
1574
1597
|
error?: any;
|
1575
1598
|
}>;
|
1576
1599
|
};
|
1577
|
-
path: "channel/:channelId";
|
1600
|
+
path: "channel/delete/:channelId";
|
1578
1601
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1579
1602
|
'x-tenant': z.ZodString;
|
1580
1603
|
authorization: z.ZodString;
|
@@ -1623,16 +1646,19 @@ export declare const channelContract: {
|
|
1623
1646
|
id: z.ZodString;
|
1624
1647
|
name: z.ZodString;
|
1625
1648
|
accessToken: z.ZodString;
|
1649
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
1626
1650
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1627
1651
|
}, "strip", z.ZodTypeAny, {
|
1628
1652
|
id: string;
|
1629
1653
|
name: string;
|
1630
1654
|
accessToken: string;
|
1655
|
+
channelSecret?: string | undefined;
|
1631
1656
|
additionalCredentials?: any;
|
1632
1657
|
}, {
|
1633
1658
|
id: string;
|
1634
1659
|
name: string;
|
1635
1660
|
accessToken: string;
|
1661
|
+
channelSecret?: string | undefined;
|
1636
1662
|
additionalCredentials?: any;
|
1637
1663
|
}>>;
|
1638
1664
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -1856,6 +1882,7 @@ export declare const channelContract: {
|
|
1856
1882
|
id: string;
|
1857
1883
|
name: string;
|
1858
1884
|
accessToken: string;
|
1885
|
+
channelSecret?: string | undefined;
|
1859
1886
|
additionalCredentials?: any;
|
1860
1887
|
} | undefined;
|
1861
1888
|
brandName?: string | undefined;
|
@@ -1919,6 +1946,7 @@ export declare const channelContract: {
|
|
1919
1946
|
id: string;
|
1920
1947
|
name: string;
|
1921
1948
|
accessToken: string;
|
1949
|
+
channelSecret?: string | undefined;
|
1922
1950
|
additionalCredentials?: any;
|
1923
1951
|
} | undefined;
|
1924
1952
|
brandName?: string | undefined;
|
@@ -1985,6 +2013,7 @@ export declare const channelContract: {
|
|
1985
2013
|
id: string;
|
1986
2014
|
name: string;
|
1987
2015
|
accessToken: string;
|
2016
|
+
channelSecret?: string | undefined;
|
1988
2017
|
additionalCredentials?: any;
|
1989
2018
|
} | undefined;
|
1990
2019
|
brandName?: string | undefined;
|
@@ -2051,6 +2080,7 @@ export declare const channelContract: {
|
|
2051
2080
|
id: string;
|
2052
2081
|
name: string;
|
2053
2082
|
accessToken: string;
|
2083
|
+
channelSecret?: string | undefined;
|
2054
2084
|
additionalCredentials?: any;
|
2055
2085
|
} | undefined;
|
2056
2086
|
brandName?: string | undefined;
|
@@ -2116,7 +2146,7 @@ export declare const channelContract: {
|
|
2116
2146
|
error?: any;
|
2117
2147
|
}>;
|
2118
2148
|
};
|
2119
|
-
path: "channel/:channelId";
|
2149
|
+
path: "channel/rename/:channelId";
|
2120
2150
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2121
2151
|
'x-tenant': z.ZodString;
|
2122
2152
|
authorization: z.ZodString;
|
@@ -2327,16 +2357,19 @@ export declare const channelContract: {
|
|
2327
2357
|
id: z.ZodString;
|
2328
2358
|
name: z.ZodString;
|
2329
2359
|
accessToken: z.ZodString;
|
2360
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
2330
2361
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2331
2362
|
}, "strip", z.ZodTypeAny, {
|
2332
2363
|
id: string;
|
2333
2364
|
name: string;
|
2334
2365
|
accessToken: string;
|
2366
|
+
channelSecret?: string | undefined;
|
2335
2367
|
additionalCredentials?: any;
|
2336
2368
|
}, {
|
2337
2369
|
id: string;
|
2338
2370
|
name: string;
|
2339
2371
|
accessToken: string;
|
2372
|
+
channelSecret?: string | undefined;
|
2340
2373
|
additionalCredentials?: any;
|
2341
2374
|
}>;
|
2342
2375
|
platformId: z.ZodString;
|
@@ -2348,6 +2381,7 @@ export declare const channelContract: {
|
|
2348
2381
|
id: string;
|
2349
2382
|
name: string;
|
2350
2383
|
accessToken: string;
|
2384
|
+
channelSecret?: string | undefined;
|
2351
2385
|
additionalCredentials?: any;
|
2352
2386
|
};
|
2353
2387
|
platformId: string;
|
@@ -2359,6 +2393,7 @@ export declare const channelContract: {
|
|
2359
2393
|
id: string;
|
2360
2394
|
name: string;
|
2361
2395
|
accessToken: string;
|
2396
|
+
channelSecret?: string | undefined;
|
2362
2397
|
additionalCredentials?: any;
|
2363
2398
|
};
|
2364
2399
|
platformId: string;
|
@@ -2380,16 +2415,19 @@ export declare const channelContract: {
|
|
2380
2415
|
id: z.ZodString;
|
2381
2416
|
name: z.ZodString;
|
2382
2417
|
accessToken: z.ZodString;
|
2418
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
2383
2419
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2384
2420
|
}, "strip", z.ZodTypeAny, {
|
2385
2421
|
id: string;
|
2386
2422
|
name: string;
|
2387
2423
|
accessToken: string;
|
2424
|
+
channelSecret?: string | undefined;
|
2388
2425
|
additionalCredentials?: any;
|
2389
2426
|
}, {
|
2390
2427
|
id: string;
|
2391
2428
|
name: string;
|
2392
2429
|
accessToken: string;
|
2430
|
+
channelSecret?: string | undefined;
|
2393
2431
|
additionalCredentials?: any;
|
2394
2432
|
}>>;
|
2395
2433
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -2613,6 +2651,7 @@ export declare const channelContract: {
|
|
2613
2651
|
id: string;
|
2614
2652
|
name: string;
|
2615
2653
|
accessToken: string;
|
2654
|
+
channelSecret?: string | undefined;
|
2616
2655
|
additionalCredentials?: any;
|
2617
2656
|
} | undefined;
|
2618
2657
|
brandName?: string | undefined;
|
@@ -2676,6 +2715,7 @@ export declare const channelContract: {
|
|
2676
2715
|
id: string;
|
2677
2716
|
name: string;
|
2678
2717
|
accessToken: string;
|
2718
|
+
channelSecret?: string | undefined;
|
2679
2719
|
additionalCredentials?: any;
|
2680
2720
|
} | undefined;
|
2681
2721
|
brandName?: string | undefined;
|
@@ -2742,6 +2782,7 @@ export declare const channelContract: {
|
|
2742
2782
|
id: string;
|
2743
2783
|
name: string;
|
2744
2784
|
accessToken: string;
|
2785
|
+
channelSecret?: string | undefined;
|
2745
2786
|
additionalCredentials?: any;
|
2746
2787
|
} | undefined;
|
2747
2788
|
brandName?: string | undefined;
|
@@ -2808,6 +2849,7 @@ export declare const channelContract: {
|
|
2808
2849
|
id: string;
|
2809
2850
|
name: string;
|
2810
2851
|
accessToken: string;
|
2852
|
+
channelSecret?: string | undefined;
|
2811
2853
|
additionalCredentials?: any;
|
2812
2854
|
} | undefined;
|
2813
2855
|
brandName?: string | undefined;
|
@@ -2899,16 +2941,19 @@ export declare const channelContract: {
|
|
2899
2941
|
id: z.ZodString;
|
2900
2942
|
name: z.ZodString;
|
2901
2943
|
accessToken: z.ZodString;
|
2944
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
2902
2945
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2903
2946
|
}, "strip", z.ZodTypeAny, {
|
2904
2947
|
id: string;
|
2905
2948
|
name: string;
|
2906
2949
|
accessToken: string;
|
2950
|
+
channelSecret?: string | undefined;
|
2907
2951
|
additionalCredentials?: any;
|
2908
2952
|
}, {
|
2909
2953
|
id: string;
|
2910
2954
|
name: string;
|
2911
2955
|
accessToken: string;
|
2956
|
+
channelSecret?: string | undefined;
|
2912
2957
|
additionalCredentials?: any;
|
2913
2958
|
}>;
|
2914
2959
|
platformId: z.ZodString;
|
@@ -2920,6 +2965,7 @@ export declare const channelContract: {
|
|
2920
2965
|
id: string;
|
2921
2966
|
name: string;
|
2922
2967
|
accessToken: string;
|
2968
|
+
channelSecret?: string | undefined;
|
2923
2969
|
additionalCredentials?: any;
|
2924
2970
|
};
|
2925
2971
|
platformId: string;
|
@@ -2931,6 +2977,7 @@ export declare const channelContract: {
|
|
2931
2977
|
id: string;
|
2932
2978
|
name: string;
|
2933
2979
|
accessToken: string;
|
2980
|
+
channelSecret?: string | undefined;
|
2934
2981
|
additionalCredentials?: any;
|
2935
2982
|
};
|
2936
2983
|
platformId: string;
|
@@ -2952,16 +2999,19 @@ export declare const channelContract: {
|
|
2952
2999
|
id: z.ZodString;
|
2953
3000
|
name: z.ZodString;
|
2954
3001
|
accessToken: z.ZodString;
|
3002
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
2955
3003
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2956
3004
|
}, "strip", z.ZodTypeAny, {
|
2957
3005
|
id: string;
|
2958
3006
|
name: string;
|
2959
3007
|
accessToken: string;
|
3008
|
+
channelSecret?: string | undefined;
|
2960
3009
|
additionalCredentials?: any;
|
2961
3010
|
}, {
|
2962
3011
|
id: string;
|
2963
3012
|
name: string;
|
2964
3013
|
accessToken: string;
|
3014
|
+
channelSecret?: string | undefined;
|
2965
3015
|
additionalCredentials?: any;
|
2966
3016
|
}>>;
|
2967
3017
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -3185,6 +3235,7 @@ export declare const channelContract: {
|
|
3185
3235
|
id: string;
|
3186
3236
|
name: string;
|
3187
3237
|
accessToken: string;
|
3238
|
+
channelSecret?: string | undefined;
|
3188
3239
|
additionalCredentials?: any;
|
3189
3240
|
} | undefined;
|
3190
3241
|
brandName?: string | undefined;
|
@@ -3248,6 +3299,7 @@ export declare const channelContract: {
|
|
3248
3299
|
id: string;
|
3249
3300
|
name: string;
|
3250
3301
|
accessToken: string;
|
3302
|
+
channelSecret?: string | undefined;
|
3251
3303
|
additionalCredentials?: any;
|
3252
3304
|
} | undefined;
|
3253
3305
|
brandName?: string | undefined;
|
@@ -3314,6 +3366,7 @@ export declare const channelContract: {
|
|
3314
3366
|
id: string;
|
3315
3367
|
name: string;
|
3316
3368
|
accessToken: string;
|
3369
|
+
channelSecret?: string | undefined;
|
3317
3370
|
additionalCredentials?: any;
|
3318
3371
|
} | undefined;
|
3319
3372
|
brandName?: string | undefined;
|
@@ -3380,6 +3433,7 @@ export declare const channelContract: {
|
|
3380
3433
|
id: string;
|
3381
3434
|
name: string;
|
3382
3435
|
accessToken: string;
|
3436
|
+
channelSecret?: string | undefined;
|
3383
3437
|
additionalCredentials?: any;
|
3384
3438
|
} | undefined;
|
3385
3439
|
brandName?: string | undefined;
|
@@ -3470,6 +3524,8 @@ export declare const channelContract: {
|
|
3470
3524
|
lineId: z.ZodOptional<z.ZodString>;
|
3471
3525
|
accessToken: z.ZodOptional<z.ZodString>;
|
3472
3526
|
lineSecret: z.ZodOptional<z.ZodString>;
|
3527
|
+
brandName: z.ZodOptional<z.ZodString>;
|
3528
|
+
name: z.ZodOptional<z.ZodString>;
|
3473
3529
|
actor: z.ZodObject<{
|
3474
3530
|
id: z.ZodString;
|
3475
3531
|
createdAt: z.ZodDate;
|
@@ -3722,6 +3778,8 @@ export declare const channelContract: {
|
|
3722
3778
|
lineId?: string | undefined;
|
3723
3779
|
accessToken?: string | undefined;
|
3724
3780
|
lineSecret?: string | undefined;
|
3781
|
+
brandName?: string | undefined;
|
3782
|
+
name?: string | undefined;
|
3725
3783
|
}, {
|
3726
3784
|
actor: {
|
3727
3785
|
id: string;
|
@@ -3770,6 +3828,8 @@ export declare const channelContract: {
|
|
3770
3828
|
lineId?: string | undefined;
|
3771
3829
|
accessToken?: string | undefined;
|
3772
3830
|
lineSecret?: string | undefined;
|
3831
|
+
brandName?: string | undefined;
|
3832
|
+
name?: string | undefined;
|
3773
3833
|
}>;
|
3774
3834
|
summary: "Connect line channel";
|
3775
3835
|
method: "POST";
|
@@ -3787,16 +3847,19 @@ export declare const channelContract: {
|
|
3787
3847
|
id: z.ZodString;
|
3788
3848
|
name: z.ZodString;
|
3789
3849
|
accessToken: z.ZodString;
|
3850
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
3790
3851
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
3791
3852
|
}, "strip", z.ZodTypeAny, {
|
3792
3853
|
id: string;
|
3793
3854
|
name: string;
|
3794
3855
|
accessToken: string;
|
3856
|
+
channelSecret?: string | undefined;
|
3795
3857
|
additionalCredentials?: any;
|
3796
3858
|
}, {
|
3797
3859
|
id: string;
|
3798
3860
|
name: string;
|
3799
3861
|
accessToken: string;
|
3862
|
+
channelSecret?: string | undefined;
|
3800
3863
|
additionalCredentials?: any;
|
3801
3864
|
}>>;
|
3802
3865
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -4020,6 +4083,7 @@ export declare const channelContract: {
|
|
4020
4083
|
id: string;
|
4021
4084
|
name: string;
|
4022
4085
|
accessToken: string;
|
4086
|
+
channelSecret?: string | undefined;
|
4023
4087
|
additionalCredentials?: any;
|
4024
4088
|
} | undefined;
|
4025
4089
|
brandName?: string | undefined;
|
@@ -4083,6 +4147,7 @@ export declare const channelContract: {
|
|
4083
4147
|
id: string;
|
4084
4148
|
name: string;
|
4085
4149
|
accessToken: string;
|
4150
|
+
channelSecret?: string | undefined;
|
4086
4151
|
additionalCredentials?: any;
|
4087
4152
|
} | undefined;
|
4088
4153
|
brandName?: string | undefined;
|
@@ -4149,6 +4214,7 @@ export declare const channelContract: {
|
|
4149
4214
|
id: string;
|
4150
4215
|
name: string;
|
4151
4216
|
accessToken: string;
|
4217
|
+
channelSecret?: string | undefined;
|
4152
4218
|
additionalCredentials?: any;
|
4153
4219
|
} | undefined;
|
4154
4220
|
brandName?: string | undefined;
|
@@ -4215,6 +4281,7 @@ export declare const channelContract: {
|
|
4215
4281
|
id: string;
|
4216
4282
|
name: string;
|
4217
4283
|
accessToken: string;
|
4284
|
+
channelSecret?: string | undefined;
|
4218
4285
|
additionalCredentials?: any;
|
4219
4286
|
} | undefined;
|
4220
4287
|
brandName?: string | undefined;
|
@@ -4492,16 +4559,19 @@ export declare const channelContract: {
|
|
4492
4559
|
id: z.ZodString;
|
4493
4560
|
name: z.ZodString;
|
4494
4561
|
accessToken: z.ZodString;
|
4562
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
4495
4563
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
4496
4564
|
}, "strip", z.ZodTypeAny, {
|
4497
4565
|
id: string;
|
4498
4566
|
name: string;
|
4499
4567
|
accessToken: string;
|
4568
|
+
channelSecret?: string | undefined;
|
4500
4569
|
additionalCredentials?: any;
|
4501
4570
|
}, {
|
4502
4571
|
id: string;
|
4503
4572
|
name: string;
|
4504
4573
|
accessToken: string;
|
4574
|
+
channelSecret?: string | undefined;
|
4505
4575
|
additionalCredentials?: any;
|
4506
4576
|
}>;
|
4507
4577
|
platformId: z.ZodString;
|
@@ -4513,6 +4583,7 @@ export declare const channelContract: {
|
|
4513
4583
|
id: string;
|
4514
4584
|
name: string;
|
4515
4585
|
accessToken: string;
|
4586
|
+
channelSecret?: string | undefined;
|
4516
4587
|
additionalCredentials?: any;
|
4517
4588
|
};
|
4518
4589
|
platformId: string;
|
@@ -4524,6 +4595,7 @@ export declare const channelContract: {
|
|
4524
4595
|
id: string;
|
4525
4596
|
name: string;
|
4526
4597
|
accessToken: string;
|
4598
|
+
channelSecret?: string | undefined;
|
4527
4599
|
additionalCredentials?: any;
|
4528
4600
|
};
|
4529
4601
|
platformId: string;
|
@@ -4545,16 +4617,19 @@ export declare const channelContract: {
|
|
4545
4617
|
id: z.ZodString;
|
4546
4618
|
name: z.ZodString;
|
4547
4619
|
accessToken: z.ZodString;
|
4620
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
4548
4621
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
4549
4622
|
}, "strip", z.ZodTypeAny, {
|
4550
4623
|
id: string;
|
4551
4624
|
name: string;
|
4552
4625
|
accessToken: string;
|
4626
|
+
channelSecret?: string | undefined;
|
4553
4627
|
additionalCredentials?: any;
|
4554
4628
|
}, {
|
4555
4629
|
id: string;
|
4556
4630
|
name: string;
|
4557
4631
|
accessToken: string;
|
4632
|
+
channelSecret?: string | undefined;
|
4558
4633
|
additionalCredentials?: any;
|
4559
4634
|
}>>;
|
4560
4635
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -4778,6 +4853,7 @@ export declare const channelContract: {
|
|
4778
4853
|
id: string;
|
4779
4854
|
name: string;
|
4780
4855
|
accessToken: string;
|
4856
|
+
channelSecret?: string | undefined;
|
4781
4857
|
additionalCredentials?: any;
|
4782
4858
|
} | undefined;
|
4783
4859
|
brandName?: string | undefined;
|
@@ -4841,6 +4917,7 @@ export declare const channelContract: {
|
|
4841
4917
|
id: string;
|
4842
4918
|
name: string;
|
4843
4919
|
accessToken: string;
|
4920
|
+
channelSecret?: string | undefined;
|
4844
4921
|
additionalCredentials?: any;
|
4845
4922
|
} | undefined;
|
4846
4923
|
brandName?: string | undefined;
|
@@ -4907,6 +4984,7 @@ export declare const channelContract: {
|
|
4907
4984
|
id: string;
|
4908
4985
|
name: string;
|
4909
4986
|
accessToken: string;
|
4987
|
+
channelSecret?: string | undefined;
|
4910
4988
|
additionalCredentials?: any;
|
4911
4989
|
} | undefined;
|
4912
4990
|
brandName?: string | undefined;
|
@@ -4973,6 +5051,7 @@ export declare const channelContract: {
|
|
4973
5051
|
id: string;
|
4974
5052
|
name: string;
|
4975
5053
|
accessToken: string;
|
5054
|
+
channelSecret?: string | undefined;
|
4976
5055
|
additionalCredentials?: any;
|
4977
5056
|
} | undefined;
|
4978
5057
|
brandName?: string | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/channel/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/channel/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAUpB,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAGpD,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAC1E,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAmGpD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmE3B,CAAC"}
|
@@ -14,16 +14,19 @@ export declare const ChannelMetadataSchema: z.ZodObject<{
|
|
14
14
|
id: z.ZodString;
|
15
15
|
name: z.ZodString;
|
16
16
|
accessToken: z.ZodString;
|
17
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
17
18
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18
19
|
}, "strip", z.ZodTypeAny, {
|
19
20
|
id: string;
|
20
21
|
name: string;
|
21
22
|
accessToken: string;
|
23
|
+
channelSecret?: string | undefined;
|
22
24
|
additionalCredentials?: any;
|
23
25
|
}, {
|
24
26
|
id: string;
|
25
27
|
name: string;
|
26
28
|
accessToken: string;
|
29
|
+
channelSecret?: string | undefined;
|
27
30
|
additionalCredentials?: any;
|
28
31
|
}>;
|
29
32
|
/**
|
@@ -40,16 +43,19 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
40
43
|
id: z.ZodString;
|
41
44
|
name: z.ZodString;
|
42
45
|
accessToken: z.ZodString;
|
46
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
43
47
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
44
48
|
}, "strip", z.ZodTypeAny, {
|
45
49
|
id: string;
|
46
50
|
name: string;
|
47
51
|
accessToken: string;
|
52
|
+
channelSecret?: string | undefined;
|
48
53
|
additionalCredentials?: any;
|
49
54
|
}, {
|
50
55
|
id: string;
|
51
56
|
name: string;
|
52
57
|
accessToken: string;
|
58
|
+
channelSecret?: string | undefined;
|
53
59
|
additionalCredentials?: any;
|
54
60
|
}>>;
|
55
61
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -273,6 +279,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
273
279
|
id: string;
|
274
280
|
name: string;
|
275
281
|
accessToken: string;
|
282
|
+
channelSecret?: string | undefined;
|
276
283
|
additionalCredentials?: any;
|
277
284
|
} | undefined;
|
278
285
|
brandName?: string | undefined;
|
@@ -336,6 +343,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
336
343
|
id: string;
|
337
344
|
name: string;
|
338
345
|
accessToken: string;
|
346
|
+
channelSecret?: string | undefined;
|
339
347
|
additionalCredentials?: any;
|
340
348
|
} | undefined;
|
341
349
|
brandName?: string | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/channel/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,6GAU5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,uDAGlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/channel/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,6GAU5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,uDAGlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiEb,CAAC"}
|