@kl1/contracts 1.0.67 → 1.0.69

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.
@@ -0,0 +1,17 @@
1
+ import { z } from 'zod';
2
+ export declare const appContract: {
3
+ getMessage: {
4
+ method: "GET";
5
+ responses: {
6
+ 200: z.ZodObject<{
7
+ message: z.ZodString;
8
+ }, "strip", z.ZodTypeAny, {
9
+ message: string;
10
+ }, {
11
+ message: string;
12
+ }>;
13
+ };
14
+ path: "/";
15
+ };
16
+ };
17
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;CAQtB,CAAC"}
@@ -1,8 +1,9 @@
1
1
  import z from 'zod';
2
2
  import { ChannelSchema } from './schema';
3
- import { ConnectChannelSchema } from './validation';
3
+ import { ConnectChannelSchema, ConnectViberChannelSchema } from './validation';
4
4
  export type ConnectChannelRequest = z.TypeOf<typeof ConnectChannelSchema>;
5
5
  export type Channel = z.infer<typeof ChannelSchema>;
6
+ export type ConnectViberChannelRequest = z.infer<typeof ConnectViberChannelSchema>;
6
7
  export declare const channelContract: {
7
8
  getChannels: {
8
9
  summary: "Get Channels";
@@ -4496,5 +4497,562 @@ export declare const channelContract: {
4496
4497
  }>>>;
4497
4498
  };
4498
4499
  };
4500
+ viber: {
4501
+ connect: {
4502
+ body: z.ZodObject<{
4503
+ name: z.ZodString;
4504
+ accessToken: z.ZodString;
4505
+ }, "strip", z.ZodTypeAny, {
4506
+ name: string;
4507
+ accessToken: string;
4508
+ }, {
4509
+ name: string;
4510
+ accessToken: string;
4511
+ }>;
4512
+ summary: "Connect line channel";
4513
+ method: "POST";
4514
+ responses: {
4515
+ 200: z.ZodObject<{
4516
+ requestId: z.ZodString;
4517
+ channel: z.ZodOptional<z.ZodObject<{
4518
+ id: z.ZodOptional<z.ZodString>;
4519
+ createdAt: z.ZodOptional<z.ZodDate>;
4520
+ updatedAt: z.ZodOptional<z.ZodDate>;
4521
+ deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
4522
+ name: z.ZodOptional<z.ZodString>;
4523
+ type: z.ZodOptional<z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>>;
4524
+ metadata: z.ZodOptional<z.ZodObject<{
4525
+ id: z.ZodString;
4526
+ name: z.ZodString;
4527
+ accessToken: z.ZodString;
4528
+ channelSecret: z.ZodOptional<z.ZodString>;
4529
+ additionalCredentials: z.ZodOptional<z.ZodAny>;
4530
+ }, "strip", z.ZodTypeAny, {
4531
+ id: string;
4532
+ name: string;
4533
+ accessToken: string;
4534
+ channelSecret?: string | undefined;
4535
+ additionalCredentials?: any;
4536
+ }, {
4537
+ id: string;
4538
+ name: string;
4539
+ accessToken: string;
4540
+ channelSecret?: string | undefined;
4541
+ additionalCredentials?: any;
4542
+ }>>;
4543
+ brandName: z.ZodOptional<z.ZodString>;
4544
+ platformId: z.ZodOptional<z.ZodString>;
4545
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
4546
+ isReloginRequired: z.ZodOptional<z.ZodBoolean>;
4547
+ connectedUserName: z.ZodOptional<z.ZodString>;
4548
+ connectedUserId: z.ZodOptional<z.ZodString>;
4549
+ actor: z.ZodOptional<z.ZodObject<{
4550
+ id: z.ZodString;
4551
+ createdAt: z.ZodDate;
4552
+ updatedAt: z.ZodDate;
4553
+ deletedAt: z.ZodNullable<z.ZodDate>;
4554
+ name: z.ZodString;
4555
+ email: z.ZodString;
4556
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
4557
+ password: z.ZodString;
4558
+ address: z.ZodNullable<z.ZodString>;
4559
+ phone: z.ZodNullable<z.ZodString>;
4560
+ notificationCount: z.ZodNullable<z.ZodNumber>;
4561
+ roles: z.ZodArray<z.ZodObject<{
4562
+ id: z.ZodString;
4563
+ createdAt: z.ZodDate;
4564
+ updatedAt: z.ZodDate;
4565
+ deletedAt: z.ZodNullable<z.ZodDate>;
4566
+ systemName: z.ZodString;
4567
+ displayName: z.ZodString;
4568
+ description: z.ZodNullable<z.ZodString>;
4569
+ permissions: z.ZodArray<z.ZodObject<{
4570
+ id: z.ZodString;
4571
+ createdAt: z.ZodDate;
4572
+ updatedAt: z.ZodDate;
4573
+ deletedAt: z.ZodNullable<z.ZodDate>;
4574
+ systemName: z.ZodString;
4575
+ displayName: z.ZodString;
4576
+ description: z.ZodNullable<z.ZodString>;
4577
+ }, "strip", z.ZodTypeAny, {
4578
+ id: string;
4579
+ description: string | null;
4580
+ createdAt: Date;
4581
+ updatedAt: Date;
4582
+ deletedAt: Date | null;
4583
+ systemName: string;
4584
+ displayName: string;
4585
+ }, {
4586
+ id: string;
4587
+ description: string | null;
4588
+ createdAt: Date;
4589
+ updatedAt: Date;
4590
+ deletedAt: Date | null;
4591
+ systemName: string;
4592
+ displayName: string;
4593
+ }>, "many">;
4594
+ }, "strip", z.ZodTypeAny, {
4595
+ id: string;
4596
+ description: string | null;
4597
+ createdAt: Date;
4598
+ updatedAt: Date;
4599
+ deletedAt: Date | null;
4600
+ systemName: string;
4601
+ displayName: string;
4602
+ permissions: {
4603
+ id: string;
4604
+ description: string | null;
4605
+ createdAt: Date;
4606
+ updatedAt: Date;
4607
+ deletedAt: Date | null;
4608
+ systemName: string;
4609
+ displayName: string;
4610
+ }[];
4611
+ }, {
4612
+ id: string;
4613
+ description: string | null;
4614
+ createdAt: Date;
4615
+ updatedAt: Date;
4616
+ deletedAt: Date | null;
4617
+ systemName: string;
4618
+ displayName: string;
4619
+ permissions: {
4620
+ id: string;
4621
+ description: string | null;
4622
+ createdAt: Date;
4623
+ updatedAt: Date;
4624
+ deletedAt: Date | null;
4625
+ systemName: string;
4626
+ displayName: string;
4627
+ }[];
4628
+ }>, "many">;
4629
+ extension: z.ZodObject<{
4630
+ id: z.ZodString;
4631
+ createdAt: z.ZodDate;
4632
+ updatedAt: z.ZodDate;
4633
+ deletedAt: z.ZodNullable<z.ZodDate>;
4634
+ userId: z.ZodNullable<z.ZodString>;
4635
+ sipServerUrl: z.ZodString;
4636
+ sipUserName: z.ZodString;
4637
+ webphoneLoginUser: z.ZodString;
4638
+ extensionId: z.ZodNullable<z.ZodString>;
4639
+ extensionName: z.ZodString;
4640
+ telephonySignature: z.ZodNullable<z.ZodString>;
4641
+ }, "strip", z.ZodTypeAny, {
4642
+ id: string;
4643
+ createdAt: Date;
4644
+ updatedAt: Date;
4645
+ deletedAt: Date | null;
4646
+ userId: string | null;
4647
+ sipServerUrl: string;
4648
+ sipUserName: string;
4649
+ webphoneLoginUser: string;
4650
+ extensionId: string | null;
4651
+ extensionName: string;
4652
+ telephonySignature: string | null;
4653
+ }, {
4654
+ id: string;
4655
+ createdAt: Date;
4656
+ updatedAt: Date;
4657
+ deletedAt: Date | null;
4658
+ userId: string | null;
4659
+ sipServerUrl: string;
4660
+ sipUserName: string;
4661
+ webphoneLoginUser: string;
4662
+ extensionId: string | null;
4663
+ extensionName: string;
4664
+ telephonySignature: string | null;
4665
+ }>;
4666
+ }, "strip", z.ZodTypeAny, {
4667
+ id: string;
4668
+ address: string | null;
4669
+ name: string;
4670
+ email: string;
4671
+ createdAt: Date;
4672
+ updatedAt: Date;
4673
+ deletedAt: Date | null;
4674
+ emailVerifiedAt: Date | null;
4675
+ password: string;
4676
+ phone: string | null;
4677
+ notificationCount: number | null;
4678
+ roles: {
4679
+ id: string;
4680
+ description: string | null;
4681
+ createdAt: Date;
4682
+ updatedAt: Date;
4683
+ deletedAt: Date | null;
4684
+ systemName: string;
4685
+ displayName: string;
4686
+ permissions: {
4687
+ id: string;
4688
+ description: string | null;
4689
+ createdAt: Date;
4690
+ updatedAt: Date;
4691
+ deletedAt: Date | null;
4692
+ systemName: string;
4693
+ displayName: string;
4694
+ }[];
4695
+ }[];
4696
+ extension: {
4697
+ id: string;
4698
+ createdAt: Date;
4699
+ updatedAt: Date;
4700
+ deletedAt: Date | null;
4701
+ userId: string | null;
4702
+ sipServerUrl: string;
4703
+ sipUserName: string;
4704
+ webphoneLoginUser: string;
4705
+ extensionId: string | null;
4706
+ extensionName: string;
4707
+ telephonySignature: string | null;
4708
+ };
4709
+ }, {
4710
+ id: string;
4711
+ address: string | null;
4712
+ name: string;
4713
+ email: string;
4714
+ createdAt: Date;
4715
+ updatedAt: Date;
4716
+ deletedAt: Date | null;
4717
+ emailVerifiedAt: Date | null;
4718
+ password: string;
4719
+ phone: string | null;
4720
+ notificationCount: number | null;
4721
+ roles: {
4722
+ id: string;
4723
+ description: string | null;
4724
+ createdAt: Date;
4725
+ updatedAt: Date;
4726
+ deletedAt: Date | null;
4727
+ systemName: string;
4728
+ displayName: string;
4729
+ permissions: {
4730
+ id: string;
4731
+ description: string | null;
4732
+ createdAt: Date;
4733
+ updatedAt: Date;
4734
+ deletedAt: Date | null;
4735
+ systemName: string;
4736
+ displayName: string;
4737
+ }[];
4738
+ }[];
4739
+ extension: {
4740
+ id: string;
4741
+ createdAt: Date;
4742
+ updatedAt: Date;
4743
+ deletedAt: Date | null;
4744
+ userId: string | null;
4745
+ sipServerUrl: string;
4746
+ sipUserName: string;
4747
+ webphoneLoginUser: string;
4748
+ extensionId: string | null;
4749
+ extensionName: string;
4750
+ telephonySignature: string | null;
4751
+ };
4752
+ }>>;
4753
+ }, "strip", z.ZodTypeAny, {
4754
+ id?: string | undefined;
4755
+ createdAt?: Date | undefined;
4756
+ updatedAt?: Date | undefined;
4757
+ deletedAt?: Date | null | undefined;
4758
+ name?: string | undefined;
4759
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
4760
+ metadata?: {
4761
+ id: string;
4762
+ name: string;
4763
+ accessToken: string;
4764
+ channelSecret?: string | undefined;
4765
+ additionalCredentials?: any;
4766
+ } | undefined;
4767
+ brandName?: string | undefined;
4768
+ platformId?: string | undefined;
4769
+ status?: boolean | undefined;
4770
+ isReloginRequired?: boolean | undefined;
4771
+ connectedUserName?: string | undefined;
4772
+ connectedUserId?: string | undefined;
4773
+ actor?: {
4774
+ id: string;
4775
+ address: string | null;
4776
+ name: string;
4777
+ email: string;
4778
+ createdAt: Date;
4779
+ updatedAt: Date;
4780
+ deletedAt: Date | null;
4781
+ emailVerifiedAt: Date | null;
4782
+ password: string;
4783
+ phone: string | null;
4784
+ notificationCount: number | null;
4785
+ roles: {
4786
+ id: string;
4787
+ description: string | null;
4788
+ createdAt: Date;
4789
+ updatedAt: Date;
4790
+ deletedAt: Date | null;
4791
+ systemName: string;
4792
+ displayName: string;
4793
+ permissions: {
4794
+ id: string;
4795
+ description: string | null;
4796
+ createdAt: Date;
4797
+ updatedAt: Date;
4798
+ deletedAt: Date | null;
4799
+ systemName: string;
4800
+ displayName: string;
4801
+ }[];
4802
+ }[];
4803
+ extension: {
4804
+ id: string;
4805
+ createdAt: Date;
4806
+ updatedAt: Date;
4807
+ deletedAt: Date | null;
4808
+ userId: string | null;
4809
+ sipServerUrl: string;
4810
+ sipUserName: string;
4811
+ webphoneLoginUser: string;
4812
+ extensionId: string | null;
4813
+ extensionName: string;
4814
+ telephonySignature: string | null;
4815
+ };
4816
+ } | undefined;
4817
+ }, {
4818
+ id?: string | undefined;
4819
+ createdAt?: Date | undefined;
4820
+ updatedAt?: Date | undefined;
4821
+ deletedAt?: Date | null | undefined;
4822
+ name?: string | undefined;
4823
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
4824
+ metadata?: {
4825
+ id: string;
4826
+ name: string;
4827
+ accessToken: string;
4828
+ channelSecret?: string | undefined;
4829
+ additionalCredentials?: any;
4830
+ } | undefined;
4831
+ brandName?: string | undefined;
4832
+ platformId?: string | undefined;
4833
+ status?: boolean | undefined;
4834
+ isReloginRequired?: boolean | undefined;
4835
+ connectedUserName?: string | undefined;
4836
+ connectedUserId?: string | undefined;
4837
+ actor?: {
4838
+ id: string;
4839
+ address: string | null;
4840
+ name: string;
4841
+ email: string;
4842
+ createdAt: Date;
4843
+ updatedAt: Date;
4844
+ deletedAt: Date | null;
4845
+ emailVerifiedAt: Date | null;
4846
+ password: string;
4847
+ phone: string | null;
4848
+ notificationCount: number | null;
4849
+ roles: {
4850
+ id: string;
4851
+ description: string | null;
4852
+ createdAt: Date;
4853
+ updatedAt: Date;
4854
+ deletedAt: Date | null;
4855
+ systemName: string;
4856
+ displayName: string;
4857
+ permissions: {
4858
+ id: string;
4859
+ description: string | null;
4860
+ createdAt: Date;
4861
+ updatedAt: Date;
4862
+ deletedAt: Date | null;
4863
+ systemName: string;
4864
+ displayName: string;
4865
+ }[];
4866
+ }[];
4867
+ extension: {
4868
+ id: string;
4869
+ createdAt: Date;
4870
+ updatedAt: Date;
4871
+ deletedAt: Date | null;
4872
+ userId: string | null;
4873
+ sipServerUrl: string;
4874
+ sipUserName: string;
4875
+ webphoneLoginUser: string;
4876
+ extensionId: string | null;
4877
+ extensionName: string;
4878
+ telephonySignature: string | null;
4879
+ };
4880
+ } | undefined;
4881
+ }>>;
4882
+ }, "strip", z.ZodTypeAny, {
4883
+ requestId: string;
4884
+ channel?: {
4885
+ id?: string | undefined;
4886
+ createdAt?: Date | undefined;
4887
+ updatedAt?: Date | undefined;
4888
+ deletedAt?: Date | null | undefined;
4889
+ name?: string | undefined;
4890
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
4891
+ metadata?: {
4892
+ id: string;
4893
+ name: string;
4894
+ accessToken: string;
4895
+ channelSecret?: string | undefined;
4896
+ additionalCredentials?: any;
4897
+ } | undefined;
4898
+ brandName?: string | undefined;
4899
+ platformId?: string | undefined;
4900
+ status?: boolean | undefined;
4901
+ isReloginRequired?: boolean | undefined;
4902
+ connectedUserName?: string | undefined;
4903
+ connectedUserId?: string | undefined;
4904
+ actor?: {
4905
+ id: string;
4906
+ address: string | null;
4907
+ name: string;
4908
+ email: string;
4909
+ createdAt: Date;
4910
+ updatedAt: Date;
4911
+ deletedAt: Date | null;
4912
+ emailVerifiedAt: Date | null;
4913
+ password: string;
4914
+ phone: string | null;
4915
+ notificationCount: number | null;
4916
+ roles: {
4917
+ id: string;
4918
+ description: string | null;
4919
+ createdAt: Date;
4920
+ updatedAt: Date;
4921
+ deletedAt: Date | null;
4922
+ systemName: string;
4923
+ displayName: string;
4924
+ permissions: {
4925
+ id: string;
4926
+ description: string | null;
4927
+ createdAt: Date;
4928
+ updatedAt: Date;
4929
+ deletedAt: Date | null;
4930
+ systemName: string;
4931
+ displayName: string;
4932
+ }[];
4933
+ }[];
4934
+ extension: {
4935
+ id: string;
4936
+ createdAt: Date;
4937
+ updatedAt: Date;
4938
+ deletedAt: Date | null;
4939
+ userId: string | null;
4940
+ sipServerUrl: string;
4941
+ sipUserName: string;
4942
+ webphoneLoginUser: string;
4943
+ extensionId: string | null;
4944
+ extensionName: string;
4945
+ telephonySignature: string | null;
4946
+ };
4947
+ } | undefined;
4948
+ } | undefined;
4949
+ }, {
4950
+ requestId: string;
4951
+ channel?: {
4952
+ id?: string | undefined;
4953
+ createdAt?: Date | undefined;
4954
+ updatedAt?: Date | undefined;
4955
+ deletedAt?: Date | null | undefined;
4956
+ name?: string | undefined;
4957
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
4958
+ metadata?: {
4959
+ id: string;
4960
+ name: string;
4961
+ accessToken: string;
4962
+ channelSecret?: string | undefined;
4963
+ additionalCredentials?: any;
4964
+ } | undefined;
4965
+ brandName?: string | undefined;
4966
+ platformId?: string | undefined;
4967
+ status?: boolean | undefined;
4968
+ isReloginRequired?: boolean | undefined;
4969
+ connectedUserName?: string | undefined;
4970
+ connectedUserId?: string | undefined;
4971
+ actor?: {
4972
+ id: string;
4973
+ address: string | null;
4974
+ name: string;
4975
+ email: string;
4976
+ createdAt: Date;
4977
+ updatedAt: Date;
4978
+ deletedAt: Date | null;
4979
+ emailVerifiedAt: Date | null;
4980
+ password: string;
4981
+ phone: string | null;
4982
+ notificationCount: number | null;
4983
+ roles: {
4984
+ id: string;
4985
+ description: string | null;
4986
+ createdAt: Date;
4987
+ updatedAt: Date;
4988
+ deletedAt: Date | null;
4989
+ systemName: string;
4990
+ displayName: string;
4991
+ permissions: {
4992
+ id: string;
4993
+ description: string | null;
4994
+ createdAt: Date;
4995
+ updatedAt: Date;
4996
+ deletedAt: Date | null;
4997
+ systemName: string;
4998
+ displayName: string;
4999
+ }[];
5000
+ }[];
5001
+ extension: {
5002
+ id: string;
5003
+ createdAt: Date;
5004
+ updatedAt: Date;
5005
+ deletedAt: Date | null;
5006
+ userId: string | null;
5007
+ sipServerUrl: string;
5008
+ sipUserName: string;
5009
+ webphoneLoginUser: string;
5010
+ extensionId: string | null;
5011
+ extensionName: string;
5012
+ telephonySignature: string | null;
5013
+ };
5014
+ } | undefined;
5015
+ } | undefined;
5016
+ }>;
5017
+ 408: z.ZodObject<{
5018
+ message: z.ZodString;
5019
+ error: z.ZodAny;
5020
+ }, "strip", z.ZodTypeAny, {
5021
+ message: string;
5022
+ error?: any;
5023
+ }, {
5024
+ message: string;
5025
+ error?: any;
5026
+ }>;
5027
+ 400: z.ZodObject<{
5028
+ message: z.ZodString;
5029
+ error: z.ZodAny;
5030
+ }, "strip", z.ZodTypeAny, {
5031
+ message: string;
5032
+ error?: any;
5033
+ }, {
5034
+ message: string;
5035
+ error?: any;
5036
+ }>;
5037
+ };
5038
+ path: "channel/viber/connect";
5039
+ headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
5040
+ 'x-tenant': z.ZodString;
5041
+ authorization: z.ZodString;
5042
+ 'x-code': z.ZodOptional<z.ZodString>;
5043
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
5044
+ }, "strip", z.ZodTypeAny, {
5045
+ 'x-tenant': string;
5046
+ authorization: string;
5047
+ 'x-client-timezone': string;
5048
+ 'x-code'?: string | undefined;
5049
+ }, {
5050
+ 'x-tenant': string;
5051
+ authorization: string;
5052
+ 'x-code'?: string | undefined;
5053
+ 'x-client-timezone'?: string | undefined;
5054
+ }>>>;
5055
+ };
5056
+ };
4499
5057
  };
4500
5058
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
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;AAEzC,OAAO,EAAE,oBAAoB,EAA4B,MAAM,cAAc,CAAC;AAE9E,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"}
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;AAGzC,OAAO,EACL,oBAAoB,EAEpB,yBAAyB,EAC1B,MAAM,cAAc,CAAC;AAEtB,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;AACpD,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AAwHF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoE3B,CAAC"}
@@ -67,4 +67,14 @@ export declare const ConnectLineChannelSchema: z.ZodObject<{
67
67
  lineSecret?: string | undefined;
68
68
  brandName?: string | undefined;
69
69
  }>;
70
+ export declare const ConnectViberChannelSchema: z.ZodObject<{
71
+ name: z.ZodString;
72
+ accessToken: z.ZodString;
73
+ }, "strip", z.ZodTypeAny, {
74
+ name: string;
75
+ accessToken: string;
76
+ }, {
77
+ name: string;
78
+ accessToken: string;
79
+ }>;
70
80
  //# sourceMappingURL=validation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/channel/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;EAMnC,CAAA"}
1
+ {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/channel/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;EAMnC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;EAGpC,CAAC"}