@kl1/contracts 1.1.28-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.
@@ -491,20 +491,20 @@ export declare const businessCalendarContract: {
491
491
  timeSlots?: any;
492
492
  }>, "many">;
493
493
  holidays: z.ZodArray<z.ZodObject<{
494
- id: z.ZodString;
494
+ id: z.ZodOptional<z.ZodString>;
495
495
  name: z.ZodString;
496
496
  date: z.ZodString;
497
497
  isEnabled: z.ZodBoolean;
498
498
  }, "strip", z.ZodTypeAny, {
499
- id: string;
500
499
  name: string;
501
500
  date: string;
502
501
  isEnabled: boolean;
502
+ id?: string | undefined;
503
503
  }, {
504
- id: string;
505
504
  name: string;
506
505
  date: string;
507
506
  isEnabled: boolean;
507
+ id?: string | undefined;
508
508
  }>, "many">;
509
509
  }, "strip", z.ZodTypeAny, {
510
510
  id: string;
@@ -519,10 +519,10 @@ export declare const businessCalendarContract: {
519
519
  timeSlots?: any;
520
520
  }[];
521
521
  holidays: {
522
- id: string;
523
522
  name: string;
524
523
  date: string;
525
524
  isEnabled: boolean;
525
+ id?: string | undefined;
526
526
  }[];
527
527
  description?: string | undefined;
528
528
  }, {
@@ -538,10 +538,10 @@ export declare const businessCalendarContract: {
538
538
  timeSlots?: any;
539
539
  }[];
540
540
  holidays: {
541
- id: string;
542
541
  name: string;
543
542
  date: string;
544
543
  isEnabled: boolean;
544
+ id?: string | undefined;
545
545
  }[];
546
546
  description?: string | undefined;
547
547
  }>;
@@ -42,20 +42,20 @@ export declare const CreateHolidaySchema: z.ZodArray<z.ZodObject<{
42
42
  isEnabled: boolean;
43
43
  }>, "many">;
44
44
  export declare const UpdateHolidaySchema: z.ZodArray<z.ZodObject<{
45
- id: z.ZodString;
45
+ id: z.ZodOptional<z.ZodString>;
46
46
  name: z.ZodString;
47
47
  date: z.ZodString;
48
48
  isEnabled: z.ZodBoolean;
49
49
  }, "strip", z.ZodTypeAny, {
50
- id: string;
51
50
  name: string;
52
51
  date: string;
53
52
  isEnabled: boolean;
53
+ id?: string | undefined;
54
54
  }, {
55
- id: string;
56
55
  name: string;
57
56
  date: string;
58
57
  isEnabled: boolean;
58
+ id?: string | undefined;
59
59
  }>, "many">;
60
60
  export declare const CreateBusinessCalendarSchema: z.ZodObject<{
61
61
  name: z.ZodString;
@@ -146,20 +146,20 @@ export declare const UpdateBusinessCalendarSchema: z.ZodObject<{
146
146
  timeSlots?: any;
147
147
  }>, "many">;
148
148
  holidays: z.ZodArray<z.ZodObject<{
149
- id: z.ZodString;
149
+ id: z.ZodOptional<z.ZodString>;
150
150
  name: z.ZodString;
151
151
  date: z.ZodString;
152
152
  isEnabled: z.ZodBoolean;
153
153
  }, "strip", z.ZodTypeAny, {
154
- id: string;
155
154
  name: string;
156
155
  date: string;
157
156
  isEnabled: boolean;
157
+ id?: string | undefined;
158
158
  }, {
159
- id: string;
160
159
  name: string;
161
160
  date: string;
162
161
  isEnabled: boolean;
162
+ id?: string | undefined;
163
163
  }>, "many">;
164
164
  }, "strip", z.ZodTypeAny, {
165
165
  id: string;
@@ -174,10 +174,10 @@ export declare const UpdateBusinessCalendarSchema: z.ZodObject<{
174
174
  timeSlots?: any;
175
175
  }[];
176
176
  holidays: {
177
- id: string;
178
177
  name: string;
179
178
  date: string;
180
179
  isEnabled: boolean;
180
+ id?: string | undefined;
181
181
  }[];
182
182
  description?: string | undefined;
183
183
  }, {
@@ -193,10 +193,10 @@ export declare const UpdateBusinessCalendarSchema: z.ZodObject<{
193
193
  timeSlots?: any;
194
194
  }[];
195
195
  holidays: {
196
- id: string;
197
196
  name: string;
198
197
  date: string;
199
198
  isEnabled: boolean;
199
+ id?: string | undefined;
200
200
  }[];
201
201
  description?: string | undefined;
202
202
  }>;
@@ -201251,20 +201251,20 @@ export declare const businessCalendarContract: {
201251
201251
  timeSlots?: any;
201252
201252
  }>, "many">;
201253
201253
  holidays: import("zod").ZodArray<import("zod").ZodObject<{
201254
- id: import("zod").ZodString;
201254
+ id: import("zod").ZodOptional<import("zod").ZodString>;
201255
201255
  name: import("zod").ZodString;
201256
201256
  date: import("zod").ZodString;
201257
201257
  isEnabled: import("zod").ZodBoolean;
201258
201258
  }, "strip", import("zod").ZodTypeAny, {
201259
- id: string;
201260
201259
  name: string;
201261
201260
  date: string;
201262
201261
  isEnabled: boolean;
201262
+ id?: string | undefined;
201263
201263
  }, {
201264
- id: string;
201265
201264
  name: string;
201266
201265
  date: string;
201267
201266
  isEnabled: boolean;
201267
+ id?: string | undefined;
201268
201268
  }>, "many">;
201269
201269
  }, "strip", import("zod").ZodTypeAny, {
201270
201270
  id: string;
@@ -201279,10 +201279,10 @@ export declare const businessCalendarContract: {
201279
201279
  timeSlots?: any;
201280
201280
  }[];
201281
201281
  holidays: {
201282
- id: string;
201283
201282
  name: string;
201284
201283
  date: string;
201285
201284
  isEnabled: boolean;
201285
+ id?: string | undefined;
201286
201286
  }[];
201287
201287
  description?: string | undefined;
201288
201288
  }, {
@@ -201298,10 +201298,10 @@ export declare const businessCalendarContract: {
201298
201298
  timeSlots?: any;
201299
201299
  }[];
201300
201300
  holidays: {
201301
- id: string;
201302
201301
  name: string;
201303
201302
  date: string;
201304
201303
  isEnabled: boolean;
201304
+ id?: string | undefined;
201305
201305
  }[];
201306
201306
  description?: string | undefined;
201307
201307
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.1.28-uat",
3
+ "version": "1.1.29-uat",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",