@blackcode_sa/metaestetics-api 1.4.9 → 1.4.10
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.d.mts +15 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +6 -3
- package/dist/index.mjs +6 -3
- package/package.json +1 -1
- package/src/types/clinic/index.ts +3 -0
- package/src/validations/clinic.schema.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -1070,6 +1070,7 @@ interface ClinicGroup {
|
|
|
1070
1070
|
subscriptionModel: SubscriptionModel;
|
|
1071
1071
|
calendarSyncEnabled?: boolean;
|
|
1072
1072
|
autoConfirmAppointments?: boolean;
|
|
1073
|
+
businessIdentificationNumber?: string | null;
|
|
1073
1074
|
}
|
|
1074
1075
|
/**
|
|
1075
1076
|
* Interface for creating a clinic group
|
|
@@ -1088,6 +1089,7 @@ interface CreateClinicGroupData {
|
|
|
1088
1089
|
subscriptionModel?: SubscriptionModel;
|
|
1089
1090
|
calendarSyncEnabled?: boolean;
|
|
1090
1091
|
autoConfirmAppointments?: boolean;
|
|
1092
|
+
businessIdentificationNumber?: string | null;
|
|
1091
1093
|
}
|
|
1092
1094
|
/**
|
|
1093
1095
|
* Interface for updating a clinic group
|
|
@@ -1255,6 +1257,7 @@ interface ClinicGroupSetupData {
|
|
|
1255
1257
|
logo: string;
|
|
1256
1258
|
calendarSyncEnabled: boolean;
|
|
1257
1259
|
autoConfirmAppointments: boolean;
|
|
1260
|
+
businessIdentificationNumber: string | null;
|
|
1258
1261
|
}
|
|
1259
1262
|
/**
|
|
1260
1263
|
* Interface for clinic branch setup data
|
|
@@ -8313,6 +8316,7 @@ declare const clinicGroupSchema: z.ZodObject<{
|
|
|
8313
8316
|
subscriptionModel: z.ZodNativeEnum<typeof SubscriptionModel>;
|
|
8314
8317
|
calendarSyncEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8315
8318
|
autoConfirmAppointments: z.ZodOptional<z.ZodBoolean>;
|
|
8319
|
+
businessIdentificationNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8316
8320
|
}, "strip", z.ZodTypeAny, {
|
|
8317
8321
|
id: string;
|
|
8318
8322
|
isActive: boolean;
|
|
@@ -8385,6 +8389,7 @@ declare const clinicGroupSchema: z.ZodObject<{
|
|
|
8385
8389
|
languages?: Language[] | undefined;
|
|
8386
8390
|
calendarSyncEnabled?: boolean | undefined;
|
|
8387
8391
|
autoConfirmAppointments?: boolean | undefined;
|
|
8392
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
8388
8393
|
}, {
|
|
8389
8394
|
id: string;
|
|
8390
8395
|
isActive: boolean;
|
|
@@ -8457,6 +8462,7 @@ declare const clinicGroupSchema: z.ZodObject<{
|
|
|
8457
8462
|
languages?: Language[] | undefined;
|
|
8458
8463
|
calendarSyncEnabled?: boolean | undefined;
|
|
8459
8464
|
autoConfirmAppointments?: boolean | undefined;
|
|
8465
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
8460
8466
|
}>;
|
|
8461
8467
|
/**
|
|
8462
8468
|
* Validaciona šema za recenziju klinike
|
|
@@ -9380,6 +9386,7 @@ declare const createClinicGroupSchema: z.ZodObject<{
|
|
|
9380
9386
|
subscriptionModel: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof SubscriptionModel>>>;
|
|
9381
9387
|
calendarSyncEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9382
9388
|
autoConfirmAppointments: z.ZodOptional<z.ZodBoolean>;
|
|
9389
|
+
businessIdentificationNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9383
9390
|
}, "strip", z.ZodTypeAny, {
|
|
9384
9391
|
isActive: boolean;
|
|
9385
9392
|
name: string;
|
|
@@ -9413,6 +9420,7 @@ declare const createClinicGroupSchema: z.ZodObject<{
|
|
|
9413
9420
|
languages?: Language[] | undefined;
|
|
9414
9421
|
calendarSyncEnabled?: boolean | undefined;
|
|
9415
9422
|
autoConfirmAppointments?: boolean | undefined;
|
|
9423
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
9416
9424
|
}, {
|
|
9417
9425
|
isActive: boolean;
|
|
9418
9426
|
name: string;
|
|
@@ -9446,6 +9454,7 @@ declare const createClinicGroupSchema: z.ZodObject<{
|
|
|
9446
9454
|
subscriptionModel?: SubscriptionModel | undefined;
|
|
9447
9455
|
calendarSyncEnabled?: boolean | undefined;
|
|
9448
9456
|
autoConfirmAppointments?: boolean | undefined;
|
|
9457
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
9449
9458
|
}>;
|
|
9450
9459
|
/**
|
|
9451
9460
|
* Validaciona šema za kreiranje klinike
|
|
@@ -10304,6 +10313,7 @@ declare const clinicGroupSetupSchema: z.ZodObject<{
|
|
|
10304
10313
|
logo: z.ZodString;
|
|
10305
10314
|
calendarSyncEnabled: z.ZodBoolean;
|
|
10306
10315
|
autoConfirmAppointments: z.ZodBoolean;
|
|
10316
|
+
businessIdentificationNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10307
10317
|
}, "strip", z.ZodTypeAny, {
|
|
10308
10318
|
description: string;
|
|
10309
10319
|
logo: string;
|
|
@@ -10311,6 +10321,7 @@ declare const clinicGroupSetupSchema: z.ZodObject<{
|
|
|
10311
10321
|
languages: Language[];
|
|
10312
10322
|
calendarSyncEnabled: boolean;
|
|
10313
10323
|
autoConfirmAppointments: boolean;
|
|
10324
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
10314
10325
|
}, {
|
|
10315
10326
|
description: string;
|
|
10316
10327
|
logo: string;
|
|
@@ -10318,6 +10329,7 @@ declare const clinicGroupSetupSchema: z.ZodObject<{
|
|
|
10318
10329
|
languages: Language[];
|
|
10319
10330
|
calendarSyncEnabled: boolean;
|
|
10320
10331
|
autoConfirmAppointments: boolean;
|
|
10332
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
10321
10333
|
}>;
|
|
10322
10334
|
/**
|
|
10323
10335
|
* Validaciona šema za kreiranje klinike
|
|
@@ -10993,6 +11005,7 @@ declare const updateClinicGroupSchema: z.ZodObject<{
|
|
|
10993
11005
|
subscriptionModel: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof SubscriptionModel>>>>;
|
|
10994
11006
|
calendarSyncEnabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10995
11007
|
autoConfirmAppointments: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11008
|
+
businessIdentificationNumber: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
10996
11009
|
}, "strip", z.ZodTypeAny, {
|
|
10997
11010
|
description?: string | undefined;
|
|
10998
11011
|
isActive?: boolean | undefined;
|
|
@@ -11026,6 +11039,7 @@ declare const updateClinicGroupSchema: z.ZodObject<{
|
|
|
11026
11039
|
subscriptionModel?: SubscriptionModel | undefined;
|
|
11027
11040
|
calendarSyncEnabled?: boolean | undefined;
|
|
11028
11041
|
autoConfirmAppointments?: boolean | undefined;
|
|
11042
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
11029
11043
|
}, {
|
|
11030
11044
|
description?: string | undefined;
|
|
11031
11045
|
isActive?: boolean | undefined;
|
|
@@ -11059,6 +11073,7 @@ declare const updateClinicGroupSchema: z.ZodObject<{
|
|
|
11059
11073
|
subscriptionModel?: SubscriptionModel | undefined;
|
|
11060
11074
|
calendarSyncEnabled?: boolean | undefined;
|
|
11061
11075
|
autoConfirmAppointments?: boolean | undefined;
|
|
11076
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
11062
11077
|
}>;
|
|
11063
11078
|
/**
|
|
11064
11079
|
* Validaciona šema za updating clinic
|
package/dist/index.d.ts
CHANGED
|
@@ -1070,6 +1070,7 @@ interface ClinicGroup {
|
|
|
1070
1070
|
subscriptionModel: SubscriptionModel;
|
|
1071
1071
|
calendarSyncEnabled?: boolean;
|
|
1072
1072
|
autoConfirmAppointments?: boolean;
|
|
1073
|
+
businessIdentificationNumber?: string | null;
|
|
1073
1074
|
}
|
|
1074
1075
|
/**
|
|
1075
1076
|
* Interface for creating a clinic group
|
|
@@ -1088,6 +1089,7 @@ interface CreateClinicGroupData {
|
|
|
1088
1089
|
subscriptionModel?: SubscriptionModel;
|
|
1089
1090
|
calendarSyncEnabled?: boolean;
|
|
1090
1091
|
autoConfirmAppointments?: boolean;
|
|
1092
|
+
businessIdentificationNumber?: string | null;
|
|
1091
1093
|
}
|
|
1092
1094
|
/**
|
|
1093
1095
|
* Interface for updating a clinic group
|
|
@@ -1255,6 +1257,7 @@ interface ClinicGroupSetupData {
|
|
|
1255
1257
|
logo: string;
|
|
1256
1258
|
calendarSyncEnabled: boolean;
|
|
1257
1259
|
autoConfirmAppointments: boolean;
|
|
1260
|
+
businessIdentificationNumber: string | null;
|
|
1258
1261
|
}
|
|
1259
1262
|
/**
|
|
1260
1263
|
* Interface for clinic branch setup data
|
|
@@ -8313,6 +8316,7 @@ declare const clinicGroupSchema: z.ZodObject<{
|
|
|
8313
8316
|
subscriptionModel: z.ZodNativeEnum<typeof SubscriptionModel>;
|
|
8314
8317
|
calendarSyncEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8315
8318
|
autoConfirmAppointments: z.ZodOptional<z.ZodBoolean>;
|
|
8319
|
+
businessIdentificationNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8316
8320
|
}, "strip", z.ZodTypeAny, {
|
|
8317
8321
|
id: string;
|
|
8318
8322
|
isActive: boolean;
|
|
@@ -8385,6 +8389,7 @@ declare const clinicGroupSchema: z.ZodObject<{
|
|
|
8385
8389
|
languages?: Language[] | undefined;
|
|
8386
8390
|
calendarSyncEnabled?: boolean | undefined;
|
|
8387
8391
|
autoConfirmAppointments?: boolean | undefined;
|
|
8392
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
8388
8393
|
}, {
|
|
8389
8394
|
id: string;
|
|
8390
8395
|
isActive: boolean;
|
|
@@ -8457,6 +8462,7 @@ declare const clinicGroupSchema: z.ZodObject<{
|
|
|
8457
8462
|
languages?: Language[] | undefined;
|
|
8458
8463
|
calendarSyncEnabled?: boolean | undefined;
|
|
8459
8464
|
autoConfirmAppointments?: boolean | undefined;
|
|
8465
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
8460
8466
|
}>;
|
|
8461
8467
|
/**
|
|
8462
8468
|
* Validaciona šema za recenziju klinike
|
|
@@ -9380,6 +9386,7 @@ declare const createClinicGroupSchema: z.ZodObject<{
|
|
|
9380
9386
|
subscriptionModel: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof SubscriptionModel>>>;
|
|
9381
9387
|
calendarSyncEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9382
9388
|
autoConfirmAppointments: z.ZodOptional<z.ZodBoolean>;
|
|
9389
|
+
businessIdentificationNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9383
9390
|
}, "strip", z.ZodTypeAny, {
|
|
9384
9391
|
isActive: boolean;
|
|
9385
9392
|
name: string;
|
|
@@ -9413,6 +9420,7 @@ declare const createClinicGroupSchema: z.ZodObject<{
|
|
|
9413
9420
|
languages?: Language[] | undefined;
|
|
9414
9421
|
calendarSyncEnabled?: boolean | undefined;
|
|
9415
9422
|
autoConfirmAppointments?: boolean | undefined;
|
|
9423
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
9416
9424
|
}, {
|
|
9417
9425
|
isActive: boolean;
|
|
9418
9426
|
name: string;
|
|
@@ -9446,6 +9454,7 @@ declare const createClinicGroupSchema: z.ZodObject<{
|
|
|
9446
9454
|
subscriptionModel?: SubscriptionModel | undefined;
|
|
9447
9455
|
calendarSyncEnabled?: boolean | undefined;
|
|
9448
9456
|
autoConfirmAppointments?: boolean | undefined;
|
|
9457
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
9449
9458
|
}>;
|
|
9450
9459
|
/**
|
|
9451
9460
|
* Validaciona šema za kreiranje klinike
|
|
@@ -10304,6 +10313,7 @@ declare const clinicGroupSetupSchema: z.ZodObject<{
|
|
|
10304
10313
|
logo: z.ZodString;
|
|
10305
10314
|
calendarSyncEnabled: z.ZodBoolean;
|
|
10306
10315
|
autoConfirmAppointments: z.ZodBoolean;
|
|
10316
|
+
businessIdentificationNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10307
10317
|
}, "strip", z.ZodTypeAny, {
|
|
10308
10318
|
description: string;
|
|
10309
10319
|
logo: string;
|
|
@@ -10311,6 +10321,7 @@ declare const clinicGroupSetupSchema: z.ZodObject<{
|
|
|
10311
10321
|
languages: Language[];
|
|
10312
10322
|
calendarSyncEnabled: boolean;
|
|
10313
10323
|
autoConfirmAppointments: boolean;
|
|
10324
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
10314
10325
|
}, {
|
|
10315
10326
|
description: string;
|
|
10316
10327
|
logo: string;
|
|
@@ -10318,6 +10329,7 @@ declare const clinicGroupSetupSchema: z.ZodObject<{
|
|
|
10318
10329
|
languages: Language[];
|
|
10319
10330
|
calendarSyncEnabled: boolean;
|
|
10320
10331
|
autoConfirmAppointments: boolean;
|
|
10332
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
10321
10333
|
}>;
|
|
10322
10334
|
/**
|
|
10323
10335
|
* Validaciona šema za kreiranje klinike
|
|
@@ -10993,6 +11005,7 @@ declare const updateClinicGroupSchema: z.ZodObject<{
|
|
|
10993
11005
|
subscriptionModel: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof SubscriptionModel>>>>;
|
|
10994
11006
|
calendarSyncEnabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
10995
11007
|
autoConfirmAppointments: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
11008
|
+
businessIdentificationNumber: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
10996
11009
|
}, "strip", z.ZodTypeAny, {
|
|
10997
11010
|
description?: string | undefined;
|
|
10998
11011
|
isActive?: boolean | undefined;
|
|
@@ -11026,6 +11039,7 @@ declare const updateClinicGroupSchema: z.ZodObject<{
|
|
|
11026
11039
|
subscriptionModel?: SubscriptionModel | undefined;
|
|
11027
11040
|
calendarSyncEnabled?: boolean | undefined;
|
|
11028
11041
|
autoConfirmAppointments?: boolean | undefined;
|
|
11042
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
11029
11043
|
}, {
|
|
11030
11044
|
description?: string | undefined;
|
|
11031
11045
|
isActive?: boolean | undefined;
|
|
@@ -11059,6 +11073,7 @@ declare const updateClinicGroupSchema: z.ZodObject<{
|
|
|
11059
11073
|
subscriptionModel?: SubscriptionModel | undefined;
|
|
11060
11074
|
calendarSyncEnabled?: boolean | undefined;
|
|
11061
11075
|
autoConfirmAppointments?: boolean | undefined;
|
|
11076
|
+
businessIdentificationNumber?: string | null | undefined;
|
|
11062
11077
|
}>;
|
|
11063
11078
|
/**
|
|
11064
11079
|
* Validaciona šema za updating clinic
|
package/dist/index.js
CHANGED
|
@@ -2458,7 +2458,8 @@ var clinicGroupSchema = import_zod9.z.object({
|
|
|
2458
2458
|
languages: import_zod9.z.array(import_zod9.z.nativeEnum(Language)).optional(),
|
|
2459
2459
|
subscriptionModel: import_zod9.z.nativeEnum(SubscriptionModel),
|
|
2460
2460
|
calendarSyncEnabled: import_zod9.z.boolean().optional(),
|
|
2461
|
-
autoConfirmAppointments: import_zod9.z.boolean().optional()
|
|
2461
|
+
autoConfirmAppointments: import_zod9.z.boolean().optional(),
|
|
2462
|
+
businessIdentificationNumber: import_zod9.z.string().optional().nullable()
|
|
2462
2463
|
});
|
|
2463
2464
|
var clinicReviewSchema = import_zod9.z.object({
|
|
2464
2465
|
id: import_zod9.z.string(),
|
|
@@ -2530,7 +2531,8 @@ var createClinicGroupSchema = import_zod9.z.object({
|
|
|
2530
2531
|
languages: import_zod9.z.array(import_zod9.z.nativeEnum(Language)).optional(),
|
|
2531
2532
|
subscriptionModel: import_zod9.z.nativeEnum(SubscriptionModel).optional().default("no_subscription" /* NO_SUBSCRIPTION */),
|
|
2532
2533
|
calendarSyncEnabled: import_zod9.z.boolean().optional(),
|
|
2533
|
-
autoConfirmAppointments: import_zod9.z.boolean().optional()
|
|
2534
|
+
autoConfirmAppointments: import_zod9.z.boolean().optional(),
|
|
2535
|
+
businessIdentificationNumber: import_zod9.z.string().optional().nullable()
|
|
2534
2536
|
});
|
|
2535
2537
|
var createClinicSchema = import_zod9.z.object({
|
|
2536
2538
|
clinicGroupId: import_zod9.z.string(),
|
|
@@ -2590,7 +2592,8 @@ var clinicGroupSetupSchema = import_zod9.z.object({
|
|
|
2590
2592
|
description: import_zod9.z.string(),
|
|
2591
2593
|
logo: import_zod9.z.string(),
|
|
2592
2594
|
calendarSyncEnabled: import_zod9.z.boolean(),
|
|
2593
|
-
autoConfirmAppointments: import_zod9.z.boolean()
|
|
2595
|
+
autoConfirmAppointments: import_zod9.z.boolean(),
|
|
2596
|
+
businessIdentificationNumber: import_zod9.z.string().optional().nullable()
|
|
2594
2597
|
});
|
|
2595
2598
|
var clinicBranchSetupSchema = import_zod9.z.object({
|
|
2596
2599
|
name: import_zod9.z.string(),
|
package/dist/index.mjs
CHANGED
|
@@ -2386,7 +2386,8 @@ var clinicGroupSchema = z9.object({
|
|
|
2386
2386
|
languages: z9.array(z9.nativeEnum(Language)).optional(),
|
|
2387
2387
|
subscriptionModel: z9.nativeEnum(SubscriptionModel),
|
|
2388
2388
|
calendarSyncEnabled: z9.boolean().optional(),
|
|
2389
|
-
autoConfirmAppointments: z9.boolean().optional()
|
|
2389
|
+
autoConfirmAppointments: z9.boolean().optional(),
|
|
2390
|
+
businessIdentificationNumber: z9.string().optional().nullable()
|
|
2390
2391
|
});
|
|
2391
2392
|
var clinicReviewSchema = z9.object({
|
|
2392
2393
|
id: z9.string(),
|
|
@@ -2458,7 +2459,8 @@ var createClinicGroupSchema = z9.object({
|
|
|
2458
2459
|
languages: z9.array(z9.nativeEnum(Language)).optional(),
|
|
2459
2460
|
subscriptionModel: z9.nativeEnum(SubscriptionModel).optional().default("no_subscription" /* NO_SUBSCRIPTION */),
|
|
2460
2461
|
calendarSyncEnabled: z9.boolean().optional(),
|
|
2461
|
-
autoConfirmAppointments: z9.boolean().optional()
|
|
2462
|
+
autoConfirmAppointments: z9.boolean().optional(),
|
|
2463
|
+
businessIdentificationNumber: z9.string().optional().nullable()
|
|
2462
2464
|
});
|
|
2463
2465
|
var createClinicSchema = z9.object({
|
|
2464
2466
|
clinicGroupId: z9.string(),
|
|
@@ -2518,7 +2520,8 @@ var clinicGroupSetupSchema = z9.object({
|
|
|
2518
2520
|
description: z9.string(),
|
|
2519
2521
|
logo: z9.string(),
|
|
2520
2522
|
calendarSyncEnabled: z9.boolean(),
|
|
2521
|
-
autoConfirmAppointments: z9.boolean()
|
|
2523
|
+
autoConfirmAppointments: z9.boolean(),
|
|
2524
|
+
businessIdentificationNumber: z9.string().optional().nullable()
|
|
2522
2525
|
});
|
|
2523
2526
|
var clinicBranchSetupSchema = z9.object({
|
|
2524
2527
|
name: z9.string(),
|
package/package.json
CHANGED
|
@@ -205,6 +205,7 @@ export interface ClinicGroup {
|
|
|
205
205
|
subscriptionModel: SubscriptionModel;
|
|
206
206
|
calendarSyncEnabled?: boolean;
|
|
207
207
|
autoConfirmAppointments?: boolean;
|
|
208
|
+
businessIdentificationNumber?: string | null;
|
|
208
209
|
}
|
|
209
210
|
|
|
210
211
|
/**
|
|
@@ -224,6 +225,7 @@ export interface CreateClinicGroupData {
|
|
|
224
225
|
subscriptionModel?: SubscriptionModel;
|
|
225
226
|
calendarSyncEnabled?: boolean;
|
|
226
227
|
autoConfirmAppointments?: boolean;
|
|
228
|
+
businessIdentificationNumber?: string | null;
|
|
227
229
|
}
|
|
228
230
|
|
|
229
231
|
/**
|
|
@@ -397,6 +399,7 @@ export interface ClinicGroupSetupData {
|
|
|
397
399
|
logo: string;
|
|
398
400
|
calendarSyncEnabled: boolean;
|
|
399
401
|
autoConfirmAppointments: boolean;
|
|
402
|
+
businessIdentificationNumber: string | null;
|
|
400
403
|
}
|
|
401
404
|
|
|
402
405
|
/**
|
|
@@ -210,6 +210,7 @@ export const clinicGroupSchema = z.object({
|
|
|
210
210
|
subscriptionModel: z.nativeEnum(SubscriptionModel),
|
|
211
211
|
calendarSyncEnabled: z.boolean().optional(),
|
|
212
212
|
autoConfirmAppointments: z.boolean().optional(),
|
|
213
|
+
businessIdentificationNumber: z.string().optional().nullable(),
|
|
213
214
|
});
|
|
214
215
|
|
|
215
216
|
/**
|
|
@@ -301,6 +302,7 @@ export const createClinicGroupSchema = z.object({
|
|
|
301
302
|
.default(SubscriptionModel.NO_SUBSCRIPTION),
|
|
302
303
|
calendarSyncEnabled: z.boolean().optional(),
|
|
303
304
|
autoConfirmAppointments: z.boolean().optional(),
|
|
305
|
+
businessIdentificationNumber: z.string().optional().nullable(),
|
|
304
306
|
});
|
|
305
307
|
|
|
306
308
|
/**
|
|
@@ -387,6 +389,7 @@ export const clinicGroupSetupSchema = z.object({
|
|
|
387
389
|
logo: z.string(),
|
|
388
390
|
calendarSyncEnabled: z.boolean(),
|
|
389
391
|
autoConfirmAppointments: z.boolean(),
|
|
392
|
+
businessIdentificationNumber: z.string().optional().nullable(),
|
|
390
393
|
});
|
|
391
394
|
|
|
392
395
|
/**
|