@kl1/contracts 1.2.1-uat → 1.2.2-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/business-calendar/index.d.ts +0 -21
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/business-calendar/schema.d.ts +0 -3
- package/dist/api-contracts/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/business-calendar/validation.d.ts +0 -6
- package/dist/api-contracts/src/business-calendar/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +134 -42
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +134 -0
- package/dist/api-contracts/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts +10 -0
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/index.js +37 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -214637,6 +214637,140 @@ export declare const telephonyContract: {
|
|
|
214637
214637
|
'x-client-timezone'?: string | undefined;
|
|
214638
214638
|
}>>>;
|
|
214639
214639
|
};
|
|
214640
|
+
getCallSetting: {
|
|
214641
|
+
method: "GET";
|
|
214642
|
+
responses: {
|
|
214643
|
+
200: import("zod").ZodObject<{
|
|
214644
|
+
requestId: import("zod").ZodString;
|
|
214645
|
+
callRedirectTo: import("zod").ZodString;
|
|
214646
|
+
isMultiTabUsed: import("zod").ZodString;
|
|
214647
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214648
|
+
requestId: string;
|
|
214649
|
+
callRedirectTo: string;
|
|
214650
|
+
isMultiTabUsed: string;
|
|
214651
|
+
}, {
|
|
214652
|
+
requestId: string;
|
|
214653
|
+
callRedirectTo: string;
|
|
214654
|
+
isMultiTabUsed: string;
|
|
214655
|
+
}>;
|
|
214656
|
+
400: import("zod").ZodObject<{
|
|
214657
|
+
message: import("zod").ZodString;
|
|
214658
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214659
|
+
message: string;
|
|
214660
|
+
}, {
|
|
214661
|
+
message: string;
|
|
214662
|
+
}>;
|
|
214663
|
+
401: import("zod").ZodObject<{
|
|
214664
|
+
message: import("zod").ZodString;
|
|
214665
|
+
error: import("zod").ZodAny;
|
|
214666
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214667
|
+
message: string;
|
|
214668
|
+
error?: any;
|
|
214669
|
+
}, {
|
|
214670
|
+
message: string;
|
|
214671
|
+
error?: any;
|
|
214672
|
+
}>;
|
|
214673
|
+
500: import("zod").ZodObject<{
|
|
214674
|
+
message: import("zod").ZodString;
|
|
214675
|
+
error: import("zod").ZodAny;
|
|
214676
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214677
|
+
message: string;
|
|
214678
|
+
error?: any;
|
|
214679
|
+
}, {
|
|
214680
|
+
message: string;
|
|
214681
|
+
error?: any;
|
|
214682
|
+
}>;
|
|
214683
|
+
};
|
|
214684
|
+
path: "telephony-cdr/call-setting";
|
|
214685
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
214686
|
+
'x-tenant': import("zod").ZodString;
|
|
214687
|
+
authorization: import("zod").ZodString;
|
|
214688
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
214689
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
214690
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214691
|
+
'x-tenant': string;
|
|
214692
|
+
authorization: string;
|
|
214693
|
+
'x-client-timezone': string;
|
|
214694
|
+
'x-code'?: string | undefined;
|
|
214695
|
+
}, {
|
|
214696
|
+
'x-tenant': string;
|
|
214697
|
+
authorization: string;
|
|
214698
|
+
'x-code'?: string | undefined;
|
|
214699
|
+
'x-client-timezone'?: string | undefined;
|
|
214700
|
+
}>>>;
|
|
214701
|
+
};
|
|
214702
|
+
updateCallSetting: {
|
|
214703
|
+
body: import("zod").ZodObject<{
|
|
214704
|
+
callRedirectTo: import("zod").ZodString;
|
|
214705
|
+
isMultiTabUsed: import("zod").ZodString;
|
|
214706
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214707
|
+
callRedirectTo: string;
|
|
214708
|
+
isMultiTabUsed: string;
|
|
214709
|
+
}, {
|
|
214710
|
+
callRedirectTo: string;
|
|
214711
|
+
isMultiTabUsed: string;
|
|
214712
|
+
}>;
|
|
214713
|
+
method: "PATCH";
|
|
214714
|
+
responses: {
|
|
214715
|
+
200: import("zod").ZodObject<{
|
|
214716
|
+
requestId: import("zod").ZodString;
|
|
214717
|
+
callRedirectTo: import("zod").ZodString;
|
|
214718
|
+
isMultiTabUsed: import("zod").ZodString;
|
|
214719
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214720
|
+
requestId: string;
|
|
214721
|
+
callRedirectTo: string;
|
|
214722
|
+
isMultiTabUsed: string;
|
|
214723
|
+
}, {
|
|
214724
|
+
requestId: string;
|
|
214725
|
+
callRedirectTo: string;
|
|
214726
|
+
isMultiTabUsed: string;
|
|
214727
|
+
}>;
|
|
214728
|
+
400: import("zod").ZodObject<{
|
|
214729
|
+
message: import("zod").ZodString;
|
|
214730
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214731
|
+
message: string;
|
|
214732
|
+
}, {
|
|
214733
|
+
message: string;
|
|
214734
|
+
}>;
|
|
214735
|
+
401: import("zod").ZodObject<{
|
|
214736
|
+
message: import("zod").ZodString;
|
|
214737
|
+
error: import("zod").ZodAny;
|
|
214738
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214739
|
+
message: string;
|
|
214740
|
+
error?: any;
|
|
214741
|
+
}, {
|
|
214742
|
+
message: string;
|
|
214743
|
+
error?: any;
|
|
214744
|
+
}>;
|
|
214745
|
+
500: import("zod").ZodObject<{
|
|
214746
|
+
message: import("zod").ZodString;
|
|
214747
|
+
error: import("zod").ZodAny;
|
|
214748
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214749
|
+
message: string;
|
|
214750
|
+
error?: any;
|
|
214751
|
+
}, {
|
|
214752
|
+
message: string;
|
|
214753
|
+
error?: any;
|
|
214754
|
+
}>;
|
|
214755
|
+
};
|
|
214756
|
+
path: "telephony-cdr/call-setting";
|
|
214757
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
214758
|
+
'x-tenant': import("zod").ZodString;
|
|
214759
|
+
authorization: import("zod").ZodString;
|
|
214760
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
214761
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
|
214762
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
214763
|
+
'x-tenant': string;
|
|
214764
|
+
authorization: string;
|
|
214765
|
+
'x-client-timezone': string;
|
|
214766
|
+
'x-code'?: string | undefined;
|
|
214767
|
+
}, {
|
|
214768
|
+
'x-tenant': string;
|
|
214769
|
+
authorization: string;
|
|
214770
|
+
'x-code'?: string | undefined;
|
|
214771
|
+
'x-client-timezone'?: string | undefined;
|
|
214772
|
+
}>>>;
|
|
214773
|
+
};
|
|
214640
214774
|
};
|
|
214641
214775
|
};
|
|
214642
214776
|
export declare const notificationContract: {
|
|
@@ -222688,7 +222822,6 @@ export declare const businessCalendarContract: {
|
|
|
222688
222822
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
222689
222823
|
timeZone: import("zod").ZodString;
|
|
222690
222824
|
isEnabled: import("zod").ZodBoolean;
|
|
222691
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
222692
222825
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
222693
222826
|
day: import("zod").ZodString;
|
|
222694
222827
|
isEnabled: import("zod").ZodBoolean;
|
|
@@ -222718,7 +222851,6 @@ export declare const businessCalendarContract: {
|
|
|
222718
222851
|
}, "strip", import("zod").ZodTypeAny, {
|
|
222719
222852
|
name: string;
|
|
222720
222853
|
timeZone: string;
|
|
222721
|
-
channelIds: string[];
|
|
222722
222854
|
isEnabled: boolean;
|
|
222723
222855
|
businessHours: {
|
|
222724
222856
|
day: string;
|
|
@@ -222734,7 +222866,6 @@ export declare const businessCalendarContract: {
|
|
|
222734
222866
|
}, {
|
|
222735
222867
|
name: string;
|
|
222736
222868
|
timeZone: string;
|
|
222737
|
-
channelIds: string[];
|
|
222738
222869
|
isEnabled: boolean;
|
|
222739
222870
|
businessHours: {
|
|
222740
222871
|
day: string;
|
|
@@ -222762,7 +222893,6 @@ export declare const businessCalendarContract: {
|
|
|
222762
222893
|
timeZone: import("zod").ZodString;
|
|
222763
222894
|
isEnabled: import("zod").ZodBoolean;
|
|
222764
222895
|
isDefault: import("zod").ZodBoolean;
|
|
222765
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
222766
222896
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
222767
222897
|
id: import("zod").ZodString;
|
|
222768
222898
|
createdAt: import("zod").ZodDate;
|
|
@@ -222824,7 +222954,6 @@ export declare const businessCalendarContract: {
|
|
|
222824
222954
|
updatedAt: Date;
|
|
222825
222955
|
deletedAt: Date | null;
|
|
222826
222956
|
isDefault: boolean;
|
|
222827
|
-
channelIds: string[];
|
|
222828
222957
|
isEnabled: boolean;
|
|
222829
222958
|
businessHours: {
|
|
222830
222959
|
id: string;
|
|
@@ -222854,7 +222983,6 @@ export declare const businessCalendarContract: {
|
|
|
222854
222983
|
updatedAt: Date;
|
|
222855
222984
|
deletedAt: Date | null;
|
|
222856
222985
|
isDefault: boolean;
|
|
222857
|
-
channelIds: string[];
|
|
222858
222986
|
isEnabled: boolean;
|
|
222859
222987
|
businessHours: {
|
|
222860
222988
|
id: string;
|
|
@@ -222887,7 +223015,6 @@ export declare const businessCalendarContract: {
|
|
|
222887
223015
|
updatedAt: Date;
|
|
222888
223016
|
deletedAt: Date | null;
|
|
222889
223017
|
isDefault: boolean;
|
|
222890
|
-
channelIds: string[];
|
|
222891
223018
|
isEnabled: boolean;
|
|
222892
223019
|
businessHours: {
|
|
222893
223020
|
id: string;
|
|
@@ -222920,7 +223047,6 @@ export declare const businessCalendarContract: {
|
|
|
222920
223047
|
updatedAt: Date;
|
|
222921
223048
|
deletedAt: Date | null;
|
|
222922
223049
|
isDefault: boolean;
|
|
222923
|
-
channelIds: string[];
|
|
222924
223050
|
isEnabled: boolean;
|
|
222925
223051
|
businessHours: {
|
|
222926
223052
|
id: string;
|
|
@@ -222972,7 +223098,6 @@ export declare const businessCalendarContract: {
|
|
|
222972
223098
|
timeZone: import("zod").ZodString;
|
|
222973
223099
|
isEnabled: import("zod").ZodBoolean;
|
|
222974
223100
|
isDefault: import("zod").ZodBoolean;
|
|
222975
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
222976
223101
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
222977
223102
|
id: import("zod").ZodString;
|
|
222978
223103
|
createdAt: import("zod").ZodDate;
|
|
@@ -223034,7 +223159,6 @@ export declare const businessCalendarContract: {
|
|
|
223034
223159
|
updatedAt: Date;
|
|
223035
223160
|
deletedAt: Date | null;
|
|
223036
223161
|
isDefault: boolean;
|
|
223037
|
-
channelIds: string[];
|
|
223038
223162
|
isEnabled: boolean;
|
|
223039
223163
|
businessHours: {
|
|
223040
223164
|
id: string;
|
|
@@ -223064,7 +223188,6 @@ export declare const businessCalendarContract: {
|
|
|
223064
223188
|
updatedAt: Date;
|
|
223065
223189
|
deletedAt: Date | null;
|
|
223066
223190
|
isDefault: boolean;
|
|
223067
|
-
channelIds: string[];
|
|
223068
223191
|
isEnabled: boolean;
|
|
223069
223192
|
businessHours: {
|
|
223070
223193
|
id: string;
|
|
@@ -223097,7 +223220,6 @@ export declare const businessCalendarContract: {
|
|
|
223097
223220
|
updatedAt: Date;
|
|
223098
223221
|
deletedAt: Date | null;
|
|
223099
223222
|
isDefault: boolean;
|
|
223100
|
-
channelIds: string[];
|
|
223101
223223
|
isEnabled: boolean;
|
|
223102
223224
|
businessHours: {
|
|
223103
223225
|
id: string;
|
|
@@ -223130,7 +223252,6 @@ export declare const businessCalendarContract: {
|
|
|
223130
223252
|
updatedAt: Date;
|
|
223131
223253
|
deletedAt: Date | null;
|
|
223132
223254
|
isDefault: boolean;
|
|
223133
|
-
channelIds: string[];
|
|
223134
223255
|
isEnabled: boolean;
|
|
223135
223256
|
businessHours: {
|
|
223136
223257
|
id: string;
|
|
@@ -223174,7 +223295,6 @@ export declare const businessCalendarContract: {
|
|
|
223174
223295
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
223175
223296
|
timeZone: import("zod").ZodString;
|
|
223176
223297
|
isEnabled: import("zod").ZodBoolean;
|
|
223177
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
223178
223298
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
223179
223299
|
id: import("zod").ZodString;
|
|
223180
223300
|
day: import("zod").ZodString;
|
|
@@ -223211,7 +223331,6 @@ export declare const businessCalendarContract: {
|
|
|
223211
223331
|
id: string;
|
|
223212
223332
|
name: string;
|
|
223213
223333
|
timeZone: string;
|
|
223214
|
-
channelIds: string[];
|
|
223215
223334
|
isEnabled: boolean;
|
|
223216
223335
|
businessHours: {
|
|
223217
223336
|
id: string;
|
|
@@ -223230,7 +223349,6 @@ export declare const businessCalendarContract: {
|
|
|
223230
223349
|
id: string;
|
|
223231
223350
|
name: string;
|
|
223232
223351
|
timeZone: string;
|
|
223233
|
-
channelIds: string[];
|
|
223234
223352
|
isEnabled: boolean;
|
|
223235
223353
|
businessHours: {
|
|
223236
223354
|
id: string;
|
|
@@ -223267,7 +223385,6 @@ export declare const businessCalendarContract: {
|
|
|
223267
223385
|
timeZone: import("zod").ZodString;
|
|
223268
223386
|
isEnabled: import("zod").ZodBoolean;
|
|
223269
223387
|
isDefault: import("zod").ZodBoolean;
|
|
223270
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
223271
223388
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
223272
223389
|
id: import("zod").ZodString;
|
|
223273
223390
|
createdAt: import("zod").ZodDate;
|
|
@@ -223329,7 +223446,6 @@ export declare const businessCalendarContract: {
|
|
|
223329
223446
|
updatedAt: Date;
|
|
223330
223447
|
deletedAt: Date | null;
|
|
223331
223448
|
isDefault: boolean;
|
|
223332
|
-
channelIds: string[];
|
|
223333
223449
|
isEnabled: boolean;
|
|
223334
223450
|
businessHours: {
|
|
223335
223451
|
id: string;
|
|
@@ -223359,7 +223475,6 @@ export declare const businessCalendarContract: {
|
|
|
223359
223475
|
updatedAt: Date;
|
|
223360
223476
|
deletedAt: Date | null;
|
|
223361
223477
|
isDefault: boolean;
|
|
223362
|
-
channelIds: string[];
|
|
223363
223478
|
isEnabled: boolean;
|
|
223364
223479
|
businessHours: {
|
|
223365
223480
|
id: string;
|
|
@@ -223392,7 +223507,6 @@ export declare const businessCalendarContract: {
|
|
|
223392
223507
|
updatedAt: Date;
|
|
223393
223508
|
deletedAt: Date | null;
|
|
223394
223509
|
isDefault: boolean;
|
|
223395
|
-
channelIds: string[];
|
|
223396
223510
|
isEnabled: boolean;
|
|
223397
223511
|
businessHours: {
|
|
223398
223512
|
id: string;
|
|
@@ -223425,7 +223539,6 @@ export declare const businessCalendarContract: {
|
|
|
223425
223539
|
updatedAt: Date;
|
|
223426
223540
|
deletedAt: Date | null;
|
|
223427
223541
|
isDefault: boolean;
|
|
223428
|
-
channelIds: string[];
|
|
223429
223542
|
isEnabled: boolean;
|
|
223430
223543
|
businessHours: {
|
|
223431
223544
|
id: string;
|
|
@@ -237908,7 +238021,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
237908
238021
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
237909
238022
|
timeZone: import("zod").ZodString;
|
|
237910
238023
|
isEnabled: import("zod").ZodBoolean;
|
|
237911
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
237912
238024
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
237913
238025
|
day: import("zod").ZodString;
|
|
237914
238026
|
isEnabled: import("zod").ZodBoolean;
|
|
@@ -237938,7 +238050,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
237938
238050
|
}, "strip", import("zod").ZodTypeAny, {
|
|
237939
238051
|
name: string;
|
|
237940
238052
|
timeZone: string;
|
|
237941
|
-
channelIds: string[];
|
|
237942
238053
|
isEnabled: boolean;
|
|
237943
238054
|
businessHours: {
|
|
237944
238055
|
day: string;
|
|
@@ -237954,7 +238065,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
237954
238065
|
}, {
|
|
237955
238066
|
name: string;
|
|
237956
238067
|
timeZone: string;
|
|
237957
|
-
channelIds: string[];
|
|
237958
238068
|
isEnabled: boolean;
|
|
237959
238069
|
businessHours: {
|
|
237960
238070
|
day: string;
|
|
@@ -237982,7 +238092,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
237982
238092
|
timeZone: import("zod").ZodString;
|
|
237983
238093
|
isEnabled: import("zod").ZodBoolean;
|
|
237984
238094
|
isDefault: import("zod").ZodBoolean;
|
|
237985
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
237986
238095
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
237987
238096
|
id: import("zod").ZodString;
|
|
237988
238097
|
createdAt: import("zod").ZodDate;
|
|
@@ -238044,7 +238153,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238044
238153
|
updatedAt: Date;
|
|
238045
238154
|
deletedAt: Date | null;
|
|
238046
238155
|
isDefault: boolean;
|
|
238047
|
-
channelIds: string[];
|
|
238048
238156
|
isEnabled: boolean;
|
|
238049
238157
|
businessHours: {
|
|
238050
238158
|
id: string;
|
|
@@ -238074,7 +238182,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238074
238182
|
updatedAt: Date;
|
|
238075
238183
|
deletedAt: Date | null;
|
|
238076
238184
|
isDefault: boolean;
|
|
238077
|
-
channelIds: string[];
|
|
238078
238185
|
isEnabled: boolean;
|
|
238079
238186
|
businessHours: {
|
|
238080
238187
|
id: string;
|
|
@@ -238107,7 +238214,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238107
238214
|
updatedAt: Date;
|
|
238108
238215
|
deletedAt: Date | null;
|
|
238109
238216
|
isDefault: boolean;
|
|
238110
|
-
channelIds: string[];
|
|
238111
238217
|
isEnabled: boolean;
|
|
238112
238218
|
businessHours: {
|
|
238113
238219
|
id: string;
|
|
@@ -238140,7 +238246,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238140
238246
|
updatedAt: Date;
|
|
238141
238247
|
deletedAt: Date | null;
|
|
238142
238248
|
isDefault: boolean;
|
|
238143
|
-
channelIds: string[];
|
|
238144
238249
|
isEnabled: boolean;
|
|
238145
238250
|
businessHours: {
|
|
238146
238251
|
id: string;
|
|
@@ -238192,7 +238297,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238192
238297
|
timeZone: import("zod").ZodString;
|
|
238193
238298
|
isEnabled: import("zod").ZodBoolean;
|
|
238194
238299
|
isDefault: import("zod").ZodBoolean;
|
|
238195
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
238196
238300
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
238197
238301
|
id: import("zod").ZodString;
|
|
238198
238302
|
createdAt: import("zod").ZodDate;
|
|
@@ -238254,7 +238358,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238254
238358
|
updatedAt: Date;
|
|
238255
238359
|
deletedAt: Date | null;
|
|
238256
238360
|
isDefault: boolean;
|
|
238257
|
-
channelIds: string[];
|
|
238258
238361
|
isEnabled: boolean;
|
|
238259
238362
|
businessHours: {
|
|
238260
238363
|
id: string;
|
|
@@ -238284,7 +238387,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238284
238387
|
updatedAt: Date;
|
|
238285
238388
|
deletedAt: Date | null;
|
|
238286
238389
|
isDefault: boolean;
|
|
238287
|
-
channelIds: string[];
|
|
238288
238390
|
isEnabled: boolean;
|
|
238289
238391
|
businessHours: {
|
|
238290
238392
|
id: string;
|
|
@@ -238317,7 +238419,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238317
238419
|
updatedAt: Date;
|
|
238318
238420
|
deletedAt: Date | null;
|
|
238319
238421
|
isDefault: boolean;
|
|
238320
|
-
channelIds: string[];
|
|
238321
238422
|
isEnabled: boolean;
|
|
238322
238423
|
businessHours: {
|
|
238323
238424
|
id: string;
|
|
@@ -238350,7 +238451,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238350
238451
|
updatedAt: Date;
|
|
238351
238452
|
deletedAt: Date | null;
|
|
238352
238453
|
isDefault: boolean;
|
|
238353
|
-
channelIds: string[];
|
|
238354
238454
|
isEnabled: boolean;
|
|
238355
238455
|
businessHours: {
|
|
238356
238456
|
id: string;
|
|
@@ -238394,7 +238494,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238394
238494
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
238395
238495
|
timeZone: import("zod").ZodString;
|
|
238396
238496
|
isEnabled: import("zod").ZodBoolean;
|
|
238397
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
238398
238497
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
238399
238498
|
id: import("zod").ZodString;
|
|
238400
238499
|
day: import("zod").ZodString;
|
|
@@ -238431,7 +238530,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238431
238530
|
id: string;
|
|
238432
238531
|
name: string;
|
|
238433
238532
|
timeZone: string;
|
|
238434
|
-
channelIds: string[];
|
|
238435
238533
|
isEnabled: boolean;
|
|
238436
238534
|
businessHours: {
|
|
238437
238535
|
id: string;
|
|
@@ -238450,7 +238548,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238450
238548
|
id: string;
|
|
238451
238549
|
name: string;
|
|
238452
238550
|
timeZone: string;
|
|
238453
|
-
channelIds: string[];
|
|
238454
238551
|
isEnabled: boolean;
|
|
238455
238552
|
businessHours: {
|
|
238456
238553
|
id: string;
|
|
@@ -238487,7 +238584,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238487
238584
|
timeZone: import("zod").ZodString;
|
|
238488
238585
|
isEnabled: import("zod").ZodBoolean;
|
|
238489
238586
|
isDefault: import("zod").ZodBoolean;
|
|
238490
|
-
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
238491
238587
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
|
238492
238588
|
id: import("zod").ZodString;
|
|
238493
238589
|
createdAt: import("zod").ZodDate;
|
|
@@ -238549,7 +238645,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238549
238645
|
updatedAt: Date;
|
|
238550
238646
|
deletedAt: Date | null;
|
|
238551
238647
|
isDefault: boolean;
|
|
238552
|
-
channelIds: string[];
|
|
238553
238648
|
isEnabled: boolean;
|
|
238554
238649
|
businessHours: {
|
|
238555
238650
|
id: string;
|
|
@@ -238579,7 +238674,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238579
238674
|
updatedAt: Date;
|
|
238580
238675
|
deletedAt: Date | null;
|
|
238581
238676
|
isDefault: boolean;
|
|
238582
|
-
channelIds: string[];
|
|
238583
238677
|
isEnabled: boolean;
|
|
238584
238678
|
businessHours: {
|
|
238585
238679
|
id: string;
|
|
@@ -238612,7 +238706,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238612
238706
|
updatedAt: Date;
|
|
238613
238707
|
deletedAt: Date | null;
|
|
238614
238708
|
isDefault: boolean;
|
|
238615
|
-
channelIds: string[];
|
|
238616
238709
|
isEnabled: boolean;
|
|
238617
238710
|
businessHours: {
|
|
238618
238711
|
id: string;
|
|
@@ -238645,7 +238738,6 @@ export declare const businessCalendarSettingContract: {
|
|
|
238645
238738
|
updatedAt: Date;
|
|
238646
238739
|
deletedAt: Date | null;
|
|
238647
238740
|
isDefault: boolean;
|
|
238648
|
-
channelIds: string[];
|
|
238649
238741
|
isEnabled: boolean;
|
|
238650
238742
|
businessHours: {
|
|
238651
238743
|
id: string;
|