@kl1/contracts 1.1.27-uat → 1.1.29-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 +23 -37
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -37
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +438 -68
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +111 -41
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/business-calendar/validation.d.ts +62 -112
- package/dist/src/business-calendar/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +438 -68
- package/dist/src/contract.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -200770,77 +200770,64 @@ export declare const businessCalendarContract: {
|
|
200770
200770
|
name: import("zod").ZodString;
|
200771
200771
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
200772
200772
|
timeZone: import("zod").ZodString;
|
200773
|
+
isEnabled: import("zod").ZodBoolean;
|
200773
200774
|
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
200774
200775
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
200775
|
-
day: import("zod").
|
200776
|
+
day: import("zod").ZodString;
|
200776
200777
|
isEnabled: import("zod").ZodBoolean;
|
200777
|
-
timeSlots: import("zod").
|
200778
|
-
startTime: import("zod").ZodString;
|
200779
|
-
endTime: import("zod").ZodString;
|
200780
|
-
}, "strip", import("zod").ZodTypeAny, {
|
200781
|
-
endTime: string;
|
200782
|
-
startTime: string;
|
200783
|
-
}, {
|
200784
|
-
endTime: string;
|
200785
|
-
startTime: string;
|
200786
|
-
}>, "many">;
|
200778
|
+
timeSlots: import("zod").ZodAny;
|
200787
200779
|
}, "strip", import("zod").ZodTypeAny, {
|
200788
|
-
day:
|
200780
|
+
day: string;
|
200789
200781
|
isEnabled: boolean;
|
200790
|
-
timeSlots
|
200791
|
-
endTime: string;
|
200792
|
-
startTime: string;
|
200793
|
-
}[];
|
200782
|
+
timeSlots?: any;
|
200794
200783
|
}, {
|
200795
|
-
day:
|
200784
|
+
day: string;
|
200796
200785
|
isEnabled: boolean;
|
200797
|
-
timeSlots
|
200798
|
-
endTime: string;
|
200799
|
-
startTime: string;
|
200800
|
-
}[];
|
200786
|
+
timeSlots?: any;
|
200801
200787
|
}>, "many">;
|
200802
200788
|
holidays: import("zod").ZodArray<import("zod").ZodObject<{
|
200803
200789
|
name: import("zod").ZodString;
|
200804
200790
|
date: import("zod").ZodString;
|
200791
|
+
isEnabled: import("zod").ZodBoolean;
|
200805
200792
|
}, "strip", import("zod").ZodTypeAny, {
|
200806
200793
|
name: string;
|
200807
200794
|
date: string;
|
200795
|
+
isEnabled: boolean;
|
200808
200796
|
}, {
|
200809
200797
|
name: string;
|
200810
200798
|
date: string;
|
200799
|
+
isEnabled: boolean;
|
200811
200800
|
}>, "many">;
|
200812
200801
|
}, "strip", import("zod").ZodTypeAny, {
|
200813
200802
|
name: string;
|
200814
200803
|
timeZone: string;
|
200815
200804
|
channelIds: string[];
|
200805
|
+
isEnabled: boolean;
|
200816
200806
|
businessHours: {
|
200817
|
-
day:
|
200807
|
+
day: string;
|
200818
200808
|
isEnabled: boolean;
|
200819
|
-
timeSlots
|
200820
|
-
endTime: string;
|
200821
|
-
startTime: string;
|
200822
|
-
}[];
|
200809
|
+
timeSlots?: any;
|
200823
200810
|
}[];
|
200824
200811
|
holidays: {
|
200825
200812
|
name: string;
|
200826
200813
|
date: string;
|
200814
|
+
isEnabled: boolean;
|
200827
200815
|
}[];
|
200828
200816
|
description?: string | undefined;
|
200829
200817
|
}, {
|
200830
200818
|
name: string;
|
200831
200819
|
timeZone: string;
|
200832
200820
|
channelIds: string[];
|
200821
|
+
isEnabled: boolean;
|
200833
200822
|
businessHours: {
|
200834
|
-
day:
|
200823
|
+
day: string;
|
200835
200824
|
isEnabled: boolean;
|
200836
|
-
timeSlots
|
200837
|
-
endTime: string;
|
200838
|
-
startTime: string;
|
200839
|
-
}[];
|
200825
|
+
timeSlots?: any;
|
200840
200826
|
}[];
|
200841
200827
|
holidays: {
|
200842
200828
|
name: string;
|
200843
200829
|
date: string;
|
200830
|
+
isEnabled: boolean;
|
200844
200831
|
}[];
|
200845
200832
|
description?: string | undefined;
|
200846
200833
|
}>;
|
@@ -200856,6 +200843,58 @@ export declare const businessCalendarContract: {
|
|
200856
200843
|
name: import("zod").ZodString;
|
200857
200844
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
200858
200845
|
timeZone: import("zod").ZodString;
|
200846
|
+
isEnabled: import("zod").ZodBoolean;
|
200847
|
+
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
200848
|
+
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
200849
|
+
id: import("zod").ZodString;
|
200850
|
+
createdAt: import("zod").ZodDate;
|
200851
|
+
updatedAt: import("zod").ZodDate;
|
200852
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
200853
|
+
day: import("zod").ZodString;
|
200854
|
+
isEnabled: import("zod").ZodBoolean;
|
200855
|
+
timeSlots: import("zod").ZodAny;
|
200856
|
+
}, "strip", import("zod").ZodTypeAny, {
|
200857
|
+
id: string;
|
200858
|
+
day: string;
|
200859
|
+
createdAt: Date;
|
200860
|
+
updatedAt: Date;
|
200861
|
+
deletedAt: Date | null;
|
200862
|
+
isEnabled: boolean;
|
200863
|
+
timeSlots?: any;
|
200864
|
+
}, {
|
200865
|
+
id: string;
|
200866
|
+
day: string;
|
200867
|
+
createdAt: Date;
|
200868
|
+
updatedAt: Date;
|
200869
|
+
deletedAt: Date | null;
|
200870
|
+
isEnabled: boolean;
|
200871
|
+
timeSlots?: any;
|
200872
|
+
}>, "many">;
|
200873
|
+
holidays: import("zod").ZodArray<import("zod").ZodObject<{
|
200874
|
+
id: import("zod").ZodString;
|
200875
|
+
createdAt: import("zod").ZodDate;
|
200876
|
+
updatedAt: import("zod").ZodDate;
|
200877
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
200878
|
+
name: import("zod").ZodString;
|
200879
|
+
date: import("zod").ZodString;
|
200880
|
+
isEnabled: import("zod").ZodBoolean;
|
200881
|
+
}, "strip", import("zod").ZodTypeAny, {
|
200882
|
+
id: string;
|
200883
|
+
name: string;
|
200884
|
+
date: string;
|
200885
|
+
createdAt: Date;
|
200886
|
+
updatedAt: Date;
|
200887
|
+
deletedAt: Date | null;
|
200888
|
+
isEnabled: boolean;
|
200889
|
+
}, {
|
200890
|
+
id: string;
|
200891
|
+
name: string;
|
200892
|
+
date: string;
|
200893
|
+
createdAt: Date;
|
200894
|
+
updatedAt: Date;
|
200895
|
+
deletedAt: Date | null;
|
200896
|
+
isEnabled: boolean;
|
200897
|
+
}>, "many">;
|
200859
200898
|
}, "strip", import("zod").ZodTypeAny, {
|
200860
200899
|
id: string;
|
200861
200900
|
name: string;
|
@@ -200863,6 +200902,26 @@ export declare const businessCalendarContract: {
|
|
200863
200902
|
createdAt: Date;
|
200864
200903
|
updatedAt: Date;
|
200865
200904
|
deletedAt: Date | null;
|
200905
|
+
channelIds: string[];
|
200906
|
+
isEnabled: boolean;
|
200907
|
+
businessHours: {
|
200908
|
+
id: string;
|
200909
|
+
day: string;
|
200910
|
+
createdAt: Date;
|
200911
|
+
updatedAt: Date;
|
200912
|
+
deletedAt: Date | null;
|
200913
|
+
isEnabled: boolean;
|
200914
|
+
timeSlots?: any;
|
200915
|
+
}[];
|
200916
|
+
holidays: {
|
200917
|
+
id: string;
|
200918
|
+
name: string;
|
200919
|
+
date: string;
|
200920
|
+
createdAt: Date;
|
200921
|
+
updatedAt: Date;
|
200922
|
+
deletedAt: Date | null;
|
200923
|
+
isEnabled: boolean;
|
200924
|
+
}[];
|
200866
200925
|
description?: string | undefined;
|
200867
200926
|
}, {
|
200868
200927
|
id: string;
|
@@ -200871,6 +200930,26 @@ export declare const businessCalendarContract: {
|
|
200871
200930
|
createdAt: Date;
|
200872
200931
|
updatedAt: Date;
|
200873
200932
|
deletedAt: Date | null;
|
200933
|
+
channelIds: string[];
|
200934
|
+
isEnabled: boolean;
|
200935
|
+
businessHours: {
|
200936
|
+
id: string;
|
200937
|
+
day: string;
|
200938
|
+
createdAt: Date;
|
200939
|
+
updatedAt: Date;
|
200940
|
+
deletedAt: Date | null;
|
200941
|
+
isEnabled: boolean;
|
200942
|
+
timeSlots?: any;
|
200943
|
+
}[];
|
200944
|
+
holidays: {
|
200945
|
+
id: string;
|
200946
|
+
name: string;
|
200947
|
+
date: string;
|
200948
|
+
createdAt: Date;
|
200949
|
+
updatedAt: Date;
|
200950
|
+
deletedAt: Date | null;
|
200951
|
+
isEnabled: boolean;
|
200952
|
+
}[];
|
200874
200953
|
description?: string | undefined;
|
200875
200954
|
}>;
|
200876
200955
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -200882,6 +200961,26 @@ export declare const businessCalendarContract: {
|
|
200882
200961
|
createdAt: Date;
|
200883
200962
|
updatedAt: Date;
|
200884
200963
|
deletedAt: Date | null;
|
200964
|
+
channelIds: string[];
|
200965
|
+
isEnabled: boolean;
|
200966
|
+
businessHours: {
|
200967
|
+
id: string;
|
200968
|
+
day: string;
|
200969
|
+
createdAt: Date;
|
200970
|
+
updatedAt: Date;
|
200971
|
+
deletedAt: Date | null;
|
200972
|
+
isEnabled: boolean;
|
200973
|
+
timeSlots?: any;
|
200974
|
+
}[];
|
200975
|
+
holidays: {
|
200976
|
+
id: string;
|
200977
|
+
name: string;
|
200978
|
+
date: string;
|
200979
|
+
createdAt: Date;
|
200980
|
+
updatedAt: Date;
|
200981
|
+
deletedAt: Date | null;
|
200982
|
+
isEnabled: boolean;
|
200983
|
+
}[];
|
200885
200984
|
description?: string | undefined;
|
200886
200985
|
};
|
200887
200986
|
}, {
|
@@ -200893,6 +200992,26 @@ export declare const businessCalendarContract: {
|
|
200893
200992
|
createdAt: Date;
|
200894
200993
|
updatedAt: Date;
|
200895
200994
|
deletedAt: Date | null;
|
200995
|
+
channelIds: string[];
|
200996
|
+
isEnabled: boolean;
|
200997
|
+
businessHours: {
|
200998
|
+
id: string;
|
200999
|
+
day: string;
|
201000
|
+
createdAt: Date;
|
201001
|
+
updatedAt: Date;
|
201002
|
+
deletedAt: Date | null;
|
201003
|
+
isEnabled: boolean;
|
201004
|
+
timeSlots?: any;
|
201005
|
+
}[];
|
201006
|
+
holidays: {
|
201007
|
+
id: string;
|
201008
|
+
name: string;
|
201009
|
+
date: string;
|
201010
|
+
createdAt: Date;
|
201011
|
+
updatedAt: Date;
|
201012
|
+
deletedAt: Date | null;
|
201013
|
+
isEnabled: boolean;
|
201014
|
+
}[];
|
200896
201015
|
description?: string | undefined;
|
200897
201016
|
};
|
200898
201017
|
}>;
|
@@ -200912,7 +201031,7 @@ export declare const businessCalendarContract: {
|
|
200912
201031
|
getAllBusinessCalendar: {
|
200913
201032
|
method: "GET";
|
200914
201033
|
responses: {
|
200915
|
-
|
201034
|
+
200: import("zod").ZodObject<{
|
200916
201035
|
requestId: import("zod").ZodString;
|
200917
201036
|
businessCalendars: import("zod").ZodArray<import("zod").ZodObject<{
|
200918
201037
|
id: import("zod").ZodString;
|
@@ -200922,6 +201041,58 @@ export declare const businessCalendarContract: {
|
|
200922
201041
|
name: import("zod").ZodString;
|
200923
201042
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
200924
201043
|
timeZone: import("zod").ZodString;
|
201044
|
+
isEnabled: import("zod").ZodBoolean;
|
201045
|
+
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
201046
|
+
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
201047
|
+
id: import("zod").ZodString;
|
201048
|
+
createdAt: import("zod").ZodDate;
|
201049
|
+
updatedAt: import("zod").ZodDate;
|
201050
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
201051
|
+
day: import("zod").ZodString;
|
201052
|
+
isEnabled: import("zod").ZodBoolean;
|
201053
|
+
timeSlots: import("zod").ZodAny;
|
201054
|
+
}, "strip", import("zod").ZodTypeAny, {
|
201055
|
+
id: string;
|
201056
|
+
day: string;
|
201057
|
+
createdAt: Date;
|
201058
|
+
updatedAt: Date;
|
201059
|
+
deletedAt: Date | null;
|
201060
|
+
isEnabled: boolean;
|
201061
|
+
timeSlots?: any;
|
201062
|
+
}, {
|
201063
|
+
id: string;
|
201064
|
+
day: string;
|
201065
|
+
createdAt: Date;
|
201066
|
+
updatedAt: Date;
|
201067
|
+
deletedAt: Date | null;
|
201068
|
+
isEnabled: boolean;
|
201069
|
+
timeSlots?: any;
|
201070
|
+
}>, "many">;
|
201071
|
+
holidays: import("zod").ZodArray<import("zod").ZodObject<{
|
201072
|
+
id: import("zod").ZodString;
|
201073
|
+
createdAt: import("zod").ZodDate;
|
201074
|
+
updatedAt: import("zod").ZodDate;
|
201075
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
201076
|
+
name: import("zod").ZodString;
|
201077
|
+
date: import("zod").ZodString;
|
201078
|
+
isEnabled: import("zod").ZodBoolean;
|
201079
|
+
}, "strip", import("zod").ZodTypeAny, {
|
201080
|
+
id: string;
|
201081
|
+
name: string;
|
201082
|
+
date: string;
|
201083
|
+
createdAt: Date;
|
201084
|
+
updatedAt: Date;
|
201085
|
+
deletedAt: Date | null;
|
201086
|
+
isEnabled: boolean;
|
201087
|
+
}, {
|
201088
|
+
id: string;
|
201089
|
+
name: string;
|
201090
|
+
date: string;
|
201091
|
+
createdAt: Date;
|
201092
|
+
updatedAt: Date;
|
201093
|
+
deletedAt: Date | null;
|
201094
|
+
isEnabled: boolean;
|
201095
|
+
}>, "many">;
|
200925
201096
|
}, "strip", import("zod").ZodTypeAny, {
|
200926
201097
|
id: string;
|
200927
201098
|
name: string;
|
@@ -200929,6 +201100,26 @@ export declare const businessCalendarContract: {
|
|
200929
201100
|
createdAt: Date;
|
200930
201101
|
updatedAt: Date;
|
200931
201102
|
deletedAt: Date | null;
|
201103
|
+
channelIds: string[];
|
201104
|
+
isEnabled: boolean;
|
201105
|
+
businessHours: {
|
201106
|
+
id: string;
|
201107
|
+
day: string;
|
201108
|
+
createdAt: Date;
|
201109
|
+
updatedAt: Date;
|
201110
|
+
deletedAt: Date | null;
|
201111
|
+
isEnabled: boolean;
|
201112
|
+
timeSlots?: any;
|
201113
|
+
}[];
|
201114
|
+
holidays: {
|
201115
|
+
id: string;
|
201116
|
+
name: string;
|
201117
|
+
date: string;
|
201118
|
+
createdAt: Date;
|
201119
|
+
updatedAt: Date;
|
201120
|
+
deletedAt: Date | null;
|
201121
|
+
isEnabled: boolean;
|
201122
|
+
}[];
|
200932
201123
|
description?: string | undefined;
|
200933
201124
|
}, {
|
200934
201125
|
id: string;
|
@@ -200937,6 +201128,26 @@ export declare const businessCalendarContract: {
|
|
200937
201128
|
createdAt: Date;
|
200938
201129
|
updatedAt: Date;
|
200939
201130
|
deletedAt: Date | null;
|
201131
|
+
channelIds: string[];
|
201132
|
+
isEnabled: boolean;
|
201133
|
+
businessHours: {
|
201134
|
+
id: string;
|
201135
|
+
day: string;
|
201136
|
+
createdAt: Date;
|
201137
|
+
updatedAt: Date;
|
201138
|
+
deletedAt: Date | null;
|
201139
|
+
isEnabled: boolean;
|
201140
|
+
timeSlots?: any;
|
201141
|
+
}[];
|
201142
|
+
holidays: {
|
201143
|
+
id: string;
|
201144
|
+
name: string;
|
201145
|
+
date: string;
|
201146
|
+
createdAt: Date;
|
201147
|
+
updatedAt: Date;
|
201148
|
+
deletedAt: Date | null;
|
201149
|
+
isEnabled: boolean;
|
201150
|
+
}[];
|
200940
201151
|
description?: string | undefined;
|
200941
201152
|
}>, "many">;
|
200942
201153
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -200948,6 +201159,26 @@ export declare const businessCalendarContract: {
|
|
200948
201159
|
createdAt: Date;
|
200949
201160
|
updatedAt: Date;
|
200950
201161
|
deletedAt: Date | null;
|
201162
|
+
channelIds: string[];
|
201163
|
+
isEnabled: boolean;
|
201164
|
+
businessHours: {
|
201165
|
+
id: string;
|
201166
|
+
day: string;
|
201167
|
+
createdAt: Date;
|
201168
|
+
updatedAt: Date;
|
201169
|
+
deletedAt: Date | null;
|
201170
|
+
isEnabled: boolean;
|
201171
|
+
timeSlots?: any;
|
201172
|
+
}[];
|
201173
|
+
holidays: {
|
201174
|
+
id: string;
|
201175
|
+
name: string;
|
201176
|
+
date: string;
|
201177
|
+
createdAt: Date;
|
201178
|
+
updatedAt: Date;
|
201179
|
+
deletedAt: Date | null;
|
201180
|
+
isEnabled: boolean;
|
201181
|
+
}[];
|
200951
201182
|
description?: string | undefined;
|
200952
201183
|
}[];
|
200953
201184
|
}, {
|
@@ -200959,6 +201190,26 @@ export declare const businessCalendarContract: {
|
|
200959
201190
|
createdAt: Date;
|
200960
201191
|
updatedAt: Date;
|
200961
201192
|
deletedAt: Date | null;
|
201193
|
+
channelIds: string[];
|
201194
|
+
isEnabled: boolean;
|
201195
|
+
businessHours: {
|
201196
|
+
id: string;
|
201197
|
+
day: string;
|
201198
|
+
createdAt: Date;
|
201199
|
+
updatedAt: Date;
|
201200
|
+
deletedAt: Date | null;
|
201201
|
+
isEnabled: boolean;
|
201202
|
+
timeSlots?: any;
|
201203
|
+
}[];
|
201204
|
+
holidays: {
|
201205
|
+
id: string;
|
201206
|
+
name: string;
|
201207
|
+
date: string;
|
201208
|
+
createdAt: Date;
|
201209
|
+
updatedAt: Date;
|
201210
|
+
deletedAt: Date | null;
|
201211
|
+
isEnabled: boolean;
|
201212
|
+
}[];
|
200962
201213
|
description?: string | undefined;
|
200963
201214
|
}[];
|
200964
201215
|
}>;
|
@@ -200981,69 +201232,57 @@ export declare const businessCalendarContract: {
|
|
200981
201232
|
name: import("zod").ZodString;
|
200982
201233
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
200983
201234
|
timeZone: import("zod").ZodString;
|
201235
|
+
isEnabled: import("zod").ZodBoolean;
|
200984
201236
|
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
200985
201237
|
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
200986
201238
|
id: import("zod").ZodString;
|
200987
|
-
day: import("zod").
|
201239
|
+
day: import("zod").ZodString;
|
200988
201240
|
isEnabled: import("zod").ZodBoolean;
|
200989
|
-
timeSlots: import("zod").
|
200990
|
-
startTime: import("zod").ZodString;
|
200991
|
-
endTime: import("zod").ZodString;
|
200992
|
-
}, "strip", import("zod").ZodTypeAny, {
|
200993
|
-
endTime: string;
|
200994
|
-
startTime: string;
|
200995
|
-
}, {
|
200996
|
-
endTime: string;
|
200997
|
-
startTime: string;
|
200998
|
-
}>, "many">;
|
201241
|
+
timeSlots: import("zod").ZodAny;
|
200999
201242
|
}, "strip", import("zod").ZodTypeAny, {
|
201000
201243
|
id: string;
|
201001
|
-
day:
|
201244
|
+
day: string;
|
201002
201245
|
isEnabled: boolean;
|
201003
|
-
timeSlots
|
201004
|
-
endTime: string;
|
201005
|
-
startTime: string;
|
201006
|
-
}[];
|
201246
|
+
timeSlots?: any;
|
201007
201247
|
}, {
|
201008
201248
|
id: string;
|
201009
|
-
day:
|
201249
|
+
day: string;
|
201010
201250
|
isEnabled: boolean;
|
201011
|
-
timeSlots
|
201012
|
-
endTime: string;
|
201013
|
-
startTime: string;
|
201014
|
-
}[];
|
201251
|
+
timeSlots?: any;
|
201015
201252
|
}>, "many">;
|
201016
201253
|
holidays: import("zod").ZodArray<import("zod").ZodObject<{
|
201017
|
-
id: import("zod").ZodString
|
201254
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
201018
201255
|
name: import("zod").ZodString;
|
201019
201256
|
date: import("zod").ZodString;
|
201257
|
+
isEnabled: import("zod").ZodBoolean;
|
201020
201258
|
}, "strip", import("zod").ZodTypeAny, {
|
201021
|
-
id: string;
|
201022
201259
|
name: string;
|
201023
201260
|
date: string;
|
201261
|
+
isEnabled: boolean;
|
201262
|
+
id?: string | undefined;
|
201024
201263
|
}, {
|
201025
|
-
id: string;
|
201026
201264
|
name: string;
|
201027
201265
|
date: string;
|
201266
|
+
isEnabled: boolean;
|
201267
|
+
id?: string | undefined;
|
201028
201268
|
}>, "many">;
|
201029
201269
|
}, "strip", import("zod").ZodTypeAny, {
|
201030
201270
|
id: string;
|
201031
201271
|
name: string;
|
201032
201272
|
timeZone: string;
|
201033
201273
|
channelIds: string[];
|
201274
|
+
isEnabled: boolean;
|
201034
201275
|
businessHours: {
|
201035
201276
|
id: string;
|
201036
|
-
day:
|
201277
|
+
day: string;
|
201037
201278
|
isEnabled: boolean;
|
201038
|
-
timeSlots
|
201039
|
-
endTime: string;
|
201040
|
-
startTime: string;
|
201041
|
-
}[];
|
201279
|
+
timeSlots?: any;
|
201042
201280
|
}[];
|
201043
201281
|
holidays: {
|
201044
|
-
id: string;
|
201045
201282
|
name: string;
|
201046
201283
|
date: string;
|
201284
|
+
isEnabled: boolean;
|
201285
|
+
id?: string | undefined;
|
201047
201286
|
}[];
|
201048
201287
|
description?: string | undefined;
|
201049
201288
|
}, {
|
@@ -201051,19 +201290,18 @@ export declare const businessCalendarContract: {
|
|
201051
201290
|
name: string;
|
201052
201291
|
timeZone: string;
|
201053
201292
|
channelIds: string[];
|
201293
|
+
isEnabled: boolean;
|
201054
201294
|
businessHours: {
|
201055
201295
|
id: string;
|
201056
|
-
day:
|
201296
|
+
day: string;
|
201057
201297
|
isEnabled: boolean;
|
201058
|
-
timeSlots
|
201059
|
-
endTime: string;
|
201060
|
-
startTime: string;
|
201061
|
-
}[];
|
201298
|
+
timeSlots?: any;
|
201062
201299
|
}[];
|
201063
201300
|
holidays: {
|
201064
|
-
id: string;
|
201065
201301
|
name: string;
|
201066
201302
|
date: string;
|
201303
|
+
isEnabled: boolean;
|
201304
|
+
id?: string | undefined;
|
201067
201305
|
}[];
|
201068
201306
|
description?: string | undefined;
|
201069
201307
|
}>;
|
@@ -201086,6 +201324,58 @@ export declare const businessCalendarContract: {
|
|
201086
201324
|
name: import("zod").ZodString;
|
201087
201325
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
201088
201326
|
timeZone: import("zod").ZodString;
|
201327
|
+
isEnabled: import("zod").ZodBoolean;
|
201328
|
+
channelIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
201329
|
+
businessHours: import("zod").ZodArray<import("zod").ZodObject<{
|
201330
|
+
id: import("zod").ZodString;
|
201331
|
+
createdAt: import("zod").ZodDate;
|
201332
|
+
updatedAt: import("zod").ZodDate;
|
201333
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
201334
|
+
day: import("zod").ZodString;
|
201335
|
+
isEnabled: import("zod").ZodBoolean;
|
201336
|
+
timeSlots: import("zod").ZodAny;
|
201337
|
+
}, "strip", import("zod").ZodTypeAny, {
|
201338
|
+
id: string;
|
201339
|
+
day: string;
|
201340
|
+
createdAt: Date;
|
201341
|
+
updatedAt: Date;
|
201342
|
+
deletedAt: Date | null;
|
201343
|
+
isEnabled: boolean;
|
201344
|
+
timeSlots?: any;
|
201345
|
+
}, {
|
201346
|
+
id: string;
|
201347
|
+
day: string;
|
201348
|
+
createdAt: Date;
|
201349
|
+
updatedAt: Date;
|
201350
|
+
deletedAt: Date | null;
|
201351
|
+
isEnabled: boolean;
|
201352
|
+
timeSlots?: any;
|
201353
|
+
}>, "many">;
|
201354
|
+
holidays: import("zod").ZodArray<import("zod").ZodObject<{
|
201355
|
+
id: import("zod").ZodString;
|
201356
|
+
createdAt: import("zod").ZodDate;
|
201357
|
+
updatedAt: import("zod").ZodDate;
|
201358
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
201359
|
+
name: import("zod").ZodString;
|
201360
|
+
date: import("zod").ZodString;
|
201361
|
+
isEnabled: import("zod").ZodBoolean;
|
201362
|
+
}, "strip", import("zod").ZodTypeAny, {
|
201363
|
+
id: string;
|
201364
|
+
name: string;
|
201365
|
+
date: string;
|
201366
|
+
createdAt: Date;
|
201367
|
+
updatedAt: Date;
|
201368
|
+
deletedAt: Date | null;
|
201369
|
+
isEnabled: boolean;
|
201370
|
+
}, {
|
201371
|
+
id: string;
|
201372
|
+
name: string;
|
201373
|
+
date: string;
|
201374
|
+
createdAt: Date;
|
201375
|
+
updatedAt: Date;
|
201376
|
+
deletedAt: Date | null;
|
201377
|
+
isEnabled: boolean;
|
201378
|
+
}>, "many">;
|
201089
201379
|
}, "strip", import("zod").ZodTypeAny, {
|
201090
201380
|
id: string;
|
201091
201381
|
name: string;
|
@@ -201093,6 +201383,26 @@ export declare const businessCalendarContract: {
|
|
201093
201383
|
createdAt: Date;
|
201094
201384
|
updatedAt: Date;
|
201095
201385
|
deletedAt: Date | null;
|
201386
|
+
channelIds: string[];
|
201387
|
+
isEnabled: boolean;
|
201388
|
+
businessHours: {
|
201389
|
+
id: string;
|
201390
|
+
day: string;
|
201391
|
+
createdAt: Date;
|
201392
|
+
updatedAt: Date;
|
201393
|
+
deletedAt: Date | null;
|
201394
|
+
isEnabled: boolean;
|
201395
|
+
timeSlots?: any;
|
201396
|
+
}[];
|
201397
|
+
holidays: {
|
201398
|
+
id: string;
|
201399
|
+
name: string;
|
201400
|
+
date: string;
|
201401
|
+
createdAt: Date;
|
201402
|
+
updatedAt: Date;
|
201403
|
+
deletedAt: Date | null;
|
201404
|
+
isEnabled: boolean;
|
201405
|
+
}[];
|
201096
201406
|
description?: string | undefined;
|
201097
201407
|
}, {
|
201098
201408
|
id: string;
|
@@ -201101,6 +201411,26 @@ export declare const businessCalendarContract: {
|
|
201101
201411
|
createdAt: Date;
|
201102
201412
|
updatedAt: Date;
|
201103
201413
|
deletedAt: Date | null;
|
201414
|
+
channelIds: string[];
|
201415
|
+
isEnabled: boolean;
|
201416
|
+
businessHours: {
|
201417
|
+
id: string;
|
201418
|
+
day: string;
|
201419
|
+
createdAt: Date;
|
201420
|
+
updatedAt: Date;
|
201421
|
+
deletedAt: Date | null;
|
201422
|
+
isEnabled: boolean;
|
201423
|
+
timeSlots?: any;
|
201424
|
+
}[];
|
201425
|
+
holidays: {
|
201426
|
+
id: string;
|
201427
|
+
name: string;
|
201428
|
+
date: string;
|
201429
|
+
createdAt: Date;
|
201430
|
+
updatedAt: Date;
|
201431
|
+
deletedAt: Date | null;
|
201432
|
+
isEnabled: boolean;
|
201433
|
+
}[];
|
201104
201434
|
description?: string | undefined;
|
201105
201435
|
}>;
|
201106
201436
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -201112,6 +201442,26 @@ export declare const businessCalendarContract: {
|
|
201112
201442
|
createdAt: Date;
|
201113
201443
|
updatedAt: Date;
|
201114
201444
|
deletedAt: Date | null;
|
201445
|
+
channelIds: string[];
|
201446
|
+
isEnabled: boolean;
|
201447
|
+
businessHours: {
|
201448
|
+
id: string;
|
201449
|
+
day: string;
|
201450
|
+
createdAt: Date;
|
201451
|
+
updatedAt: Date;
|
201452
|
+
deletedAt: Date | null;
|
201453
|
+
isEnabled: boolean;
|
201454
|
+
timeSlots?: any;
|
201455
|
+
}[];
|
201456
|
+
holidays: {
|
201457
|
+
id: string;
|
201458
|
+
name: string;
|
201459
|
+
date: string;
|
201460
|
+
createdAt: Date;
|
201461
|
+
updatedAt: Date;
|
201462
|
+
deletedAt: Date | null;
|
201463
|
+
isEnabled: boolean;
|
201464
|
+
}[];
|
201115
201465
|
description?: string | undefined;
|
201116
201466
|
};
|
201117
201467
|
}, {
|
@@ -201123,6 +201473,26 @@ export declare const businessCalendarContract: {
|
|
201123
201473
|
createdAt: Date;
|
201124
201474
|
updatedAt: Date;
|
201125
201475
|
deletedAt: Date | null;
|
201476
|
+
channelIds: string[];
|
201477
|
+
isEnabled: boolean;
|
201478
|
+
businessHours: {
|
201479
|
+
id: string;
|
201480
|
+
day: string;
|
201481
|
+
createdAt: Date;
|
201482
|
+
updatedAt: Date;
|
201483
|
+
deletedAt: Date | null;
|
201484
|
+
isEnabled: boolean;
|
201485
|
+
timeSlots?: any;
|
201486
|
+
}[];
|
201487
|
+
holidays: {
|
201488
|
+
id: string;
|
201489
|
+
name: string;
|
201490
|
+
date: string;
|
201491
|
+
createdAt: Date;
|
201492
|
+
updatedAt: Date;
|
201493
|
+
deletedAt: Date | null;
|
201494
|
+
isEnabled: boolean;
|
201495
|
+
}[];
|
201126
201496
|
description?: string | undefined;
|
201127
201497
|
};
|
201128
201498
|
}>;
|