fix: allow claims without appointment + support post/core multi-tooth input
- Make appointmentId nullable/optional in Prisma Zod schema via @zod rich comment so claims can be submitted without an existing appointment - Convert undefined appointmentId to null in all claim form handlers and the backend claim creation endpoint - Add AI classifier rule for expanding one procedure across multiple comma-separated tooth numbers (e.g. "post/core on #23, 24, 25, 26") - Add "post/core" (slash) alias to CDT lookup maps Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
47
packages/db/shared/schemas/aggregateAiSettings.schema.js
Normal file
47
packages/db/shared/schemas/aggregateAiSettings.schema.js
Normal file
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsAggregateZodSchema = exports.AiSettingsAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsOrderByWithRelationInput_schema_1 = require("./objects/AiSettingsOrderByWithRelationInput.schema");
|
||||
const AiSettingsWhereInput_schema_1 = require("./objects/AiSettingsWhereInput.schema");
|
||||
const AiSettingsWhereUniqueInput_schema_1 = require("./objects/AiSettingsWhereUniqueInput.schema");
|
||||
const AiSettingsCountAggregateInput_schema_1 = require("./objects/AiSettingsCountAggregateInput.schema");
|
||||
const AiSettingsMinAggregateInput_schema_1 = require("./objects/AiSettingsMinAggregateInput.schema");
|
||||
const AiSettingsMaxAggregateInput_schema_1 = require("./objects/AiSettingsMaxAggregateInput.schema");
|
||||
const AiSettingsAvgAggregateInput_schema_1 = require("./objects/AiSettingsAvgAggregateInput.schema");
|
||||
const AiSettingsSumAggregateInput_schema_1 = require("./objects/AiSettingsSumAggregateInput.schema");
|
||||
exports.AiSettingsAggregateSchema = z.object({ orderBy: z.union([AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), AiSettingsCountAggregateInput_schema_1.AiSettingsCountAggregateInputObjectSchema]).optional(), _min: AiSettingsMinAggregateInput_schema_1.AiSettingsMinAggregateInputObjectSchema.optional(), _max: AiSettingsMaxAggregateInput_schema_1.AiSettingsMaxAggregateInputObjectSchema.optional(), _avg: AiSettingsAvgAggregateInput_schema_1.AiSettingsAvgAggregateInputObjectSchema.optional(), _sum: AiSettingsSumAggregateInput_schema_1.AiSettingsSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.AiSettingsAggregateZodSchema = z.object({ orderBy: z.union([AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), AiSettingsCountAggregateInput_schema_1.AiSettingsCountAggregateInputObjectSchema]).optional(), _min: AiSettingsMinAggregateInput_schema_1.AiSettingsMinAggregateInputObjectSchema.optional(), _max: AiSettingsMaxAggregateInput_schema_1.AiSettingsMaxAggregateInputObjectSchema.optional(), _avg: AiSettingsAvgAggregateInput_schema_1.AiSettingsAvgAggregateInputObjectSchema.optional(), _sum: AiSettingsSumAggregateInput_schema_1.AiSettingsSumAggregateInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileAggregateZodSchema = exports.AppointmentFileAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileOrderByWithRelationInput_schema_1 = require("./objects/AppointmentFileOrderByWithRelationInput.schema");
|
||||
const AppointmentFileWhereInput_schema_1 = require("./objects/AppointmentFileWhereInput.schema");
|
||||
const AppointmentFileWhereUniqueInput_schema_1 = require("./objects/AppointmentFileWhereUniqueInput.schema");
|
||||
const AppointmentFileCountAggregateInput_schema_1 = require("./objects/AppointmentFileCountAggregateInput.schema");
|
||||
const AppointmentFileMinAggregateInput_schema_1 = require("./objects/AppointmentFileMinAggregateInput.schema");
|
||||
const AppointmentFileMaxAggregateInput_schema_1 = require("./objects/AppointmentFileMaxAggregateInput.schema");
|
||||
const AppointmentFileAvgAggregateInput_schema_1 = require("./objects/AppointmentFileAvgAggregateInput.schema");
|
||||
const AppointmentFileSumAggregateInput_schema_1 = require("./objects/AppointmentFileSumAggregateInput.schema");
|
||||
exports.AppointmentFileAggregateSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInput_schema_1.AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInput_schema_1.AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), AppointmentFileCountAggregateInput_schema_1.AppointmentFileCountAggregateInputObjectSchema]).optional(), _min: AppointmentFileMinAggregateInput_schema_1.AppointmentFileMinAggregateInputObjectSchema.optional(), _max: AppointmentFileMaxAggregateInput_schema_1.AppointmentFileMaxAggregateInputObjectSchema.optional(), _avg: AppointmentFileAvgAggregateInput_schema_1.AppointmentFileAvgAggregateInputObjectSchema.optional(), _sum: AppointmentFileSumAggregateInput_schema_1.AppointmentFileSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.AppointmentFileAggregateZodSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInput_schema_1.AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInput_schema_1.AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), AppointmentFileCountAggregateInput_schema_1.AppointmentFileCountAggregateInputObjectSchema]).optional(), _min: AppointmentFileMinAggregateInput_schema_1.AppointmentFileMinAggregateInputObjectSchema.optional(), _max: AppointmentFileMaxAggregateInput_schema_1.AppointmentFileMaxAggregateInputObjectSchema.optional(), _avg: AppointmentFileAvgAggregateInput_schema_1.AppointmentFileAvgAggregateInputObjectSchema.optional(), _sum: AppointmentFileSumAggregateInput_schema_1.AppointmentFileSumAggregateInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchAggregateZodSchema = exports.CommissionBatchAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchOrderByWithRelationInput_schema_1 = require("./objects/CommissionBatchOrderByWithRelationInput.schema");
|
||||
const CommissionBatchWhereInput_schema_1 = require("./objects/CommissionBatchWhereInput.schema");
|
||||
const CommissionBatchWhereUniqueInput_schema_1 = require("./objects/CommissionBatchWhereUniqueInput.schema");
|
||||
const CommissionBatchCountAggregateInput_schema_1 = require("./objects/CommissionBatchCountAggregateInput.schema");
|
||||
const CommissionBatchMinAggregateInput_schema_1 = require("./objects/CommissionBatchMinAggregateInput.schema");
|
||||
const CommissionBatchMaxAggregateInput_schema_1 = require("./objects/CommissionBatchMaxAggregateInput.schema");
|
||||
const CommissionBatchAvgAggregateInput_schema_1 = require("./objects/CommissionBatchAvgAggregateInput.schema");
|
||||
const CommissionBatchSumAggregateInput_schema_1 = require("./objects/CommissionBatchSumAggregateInput.schema");
|
||||
exports.CommissionBatchAggregateSchema = z.object({ orderBy: z.union([CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema, CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchWhereInput_schema_1.CommissionBatchWhereInputObjectSchema.optional(), cursor: CommissionBatchWhereUniqueInput_schema_1.CommissionBatchWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), CommissionBatchCountAggregateInput_schema_1.CommissionBatchCountAggregateInputObjectSchema]).optional(), _min: CommissionBatchMinAggregateInput_schema_1.CommissionBatchMinAggregateInputObjectSchema.optional(), _max: CommissionBatchMaxAggregateInput_schema_1.CommissionBatchMaxAggregateInputObjectSchema.optional(), _avg: CommissionBatchAvgAggregateInput_schema_1.CommissionBatchAvgAggregateInputObjectSchema.optional(), _sum: CommissionBatchSumAggregateInput_schema_1.CommissionBatchSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.CommissionBatchAggregateZodSchema = z.object({ orderBy: z.union([CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema, CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchWhereInput_schema_1.CommissionBatchWhereInputObjectSchema.optional(), cursor: CommissionBatchWhereUniqueInput_schema_1.CommissionBatchWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), CommissionBatchCountAggregateInput_schema_1.CommissionBatchCountAggregateInputObjectSchema]).optional(), _min: CommissionBatchMinAggregateInput_schema_1.CommissionBatchMinAggregateInputObjectSchema.optional(), _max: CommissionBatchMaxAggregateInput_schema_1.CommissionBatchMaxAggregateInputObjectSchema.optional(), _avg: CommissionBatchAvgAggregateInput_schema_1.CommissionBatchAvgAggregateInputObjectSchema.optional(), _sum: CommissionBatchSumAggregateInput_schema_1.CommissionBatchSumAggregateInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemAggregateZodSchema = exports.CommissionBatchItemAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemOrderByWithRelationInput_schema_1 = require("./objects/CommissionBatchItemOrderByWithRelationInput.schema");
|
||||
const CommissionBatchItemWhereInput_schema_1 = require("./objects/CommissionBatchItemWhereInput.schema");
|
||||
const CommissionBatchItemWhereUniqueInput_schema_1 = require("./objects/CommissionBatchItemWhereUniqueInput.schema");
|
||||
const CommissionBatchItemCountAggregateInput_schema_1 = require("./objects/CommissionBatchItemCountAggregateInput.schema");
|
||||
const CommissionBatchItemMinAggregateInput_schema_1 = require("./objects/CommissionBatchItemMinAggregateInput.schema");
|
||||
const CommissionBatchItemMaxAggregateInput_schema_1 = require("./objects/CommissionBatchItemMaxAggregateInput.schema");
|
||||
const CommissionBatchItemAvgAggregateInput_schema_1 = require("./objects/CommissionBatchItemAvgAggregateInput.schema");
|
||||
const CommissionBatchItemSumAggregateInput_schema_1 = require("./objects/CommissionBatchItemSumAggregateInput.schema");
|
||||
exports.CommissionBatchItemAggregateSchema = z.object({ orderBy: z.union([CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema, CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchItemWhereInput_schema_1.CommissionBatchItemWhereInputObjectSchema.optional(), cursor: CommissionBatchItemWhereUniqueInput_schema_1.CommissionBatchItemWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), CommissionBatchItemCountAggregateInput_schema_1.CommissionBatchItemCountAggregateInputObjectSchema]).optional(), _min: CommissionBatchItemMinAggregateInput_schema_1.CommissionBatchItemMinAggregateInputObjectSchema.optional(), _max: CommissionBatchItemMaxAggregateInput_schema_1.CommissionBatchItemMaxAggregateInputObjectSchema.optional(), _avg: CommissionBatchItemAvgAggregateInput_schema_1.CommissionBatchItemAvgAggregateInputObjectSchema.optional(), _sum: CommissionBatchItemSumAggregateInput_schema_1.CommissionBatchItemSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.CommissionBatchItemAggregateZodSchema = z.object({ orderBy: z.union([CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema, CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchItemWhereInput_schema_1.CommissionBatchItemWhereInputObjectSchema.optional(), cursor: CommissionBatchItemWhereUniqueInput_schema_1.CommissionBatchItemWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), CommissionBatchItemCountAggregateInput_schema_1.CommissionBatchItemCountAggregateInputObjectSchema]).optional(), _min: CommissionBatchItemMinAggregateInput_schema_1.CommissionBatchItemMinAggregateInputObjectSchema.optional(), _max: CommissionBatchItemMaxAggregateInput_schema_1.CommissionBatchItemMaxAggregateInputObjectSchema.optional(), _avg: CommissionBatchItemAvgAggregateInput_schema_1.CommissionBatchItemAvgAggregateInputObjectSchema.optional(), _sum: CommissionBatchItemSumAggregateInput_schema_1.CommissionBatchItemSumAggregateInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactAggregateZodSchema = exports.InsuranceContactAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactOrderByWithRelationInput_schema_1 = require("./objects/InsuranceContactOrderByWithRelationInput.schema");
|
||||
const InsuranceContactWhereInput_schema_1 = require("./objects/InsuranceContactWhereInput.schema");
|
||||
const InsuranceContactWhereUniqueInput_schema_1 = require("./objects/InsuranceContactWhereUniqueInput.schema");
|
||||
const InsuranceContactCountAggregateInput_schema_1 = require("./objects/InsuranceContactCountAggregateInput.schema");
|
||||
const InsuranceContactMinAggregateInput_schema_1 = require("./objects/InsuranceContactMinAggregateInput.schema");
|
||||
const InsuranceContactMaxAggregateInput_schema_1 = require("./objects/InsuranceContactMaxAggregateInput.schema");
|
||||
const InsuranceContactAvgAggregateInput_schema_1 = require("./objects/InsuranceContactAvgAggregateInput.schema");
|
||||
const InsuranceContactSumAggregateInput_schema_1 = require("./objects/InsuranceContactSumAggregateInput.schema");
|
||||
exports.InsuranceContactAggregateSchema = z.object({ orderBy: z.union([InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema, InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: InsuranceContactWhereInput_schema_1.InsuranceContactWhereInputObjectSchema.optional(), cursor: InsuranceContactWhereUniqueInput_schema_1.InsuranceContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), InsuranceContactCountAggregateInput_schema_1.InsuranceContactCountAggregateInputObjectSchema]).optional(), _min: InsuranceContactMinAggregateInput_schema_1.InsuranceContactMinAggregateInputObjectSchema.optional(), _max: InsuranceContactMaxAggregateInput_schema_1.InsuranceContactMaxAggregateInputObjectSchema.optional(), _avg: InsuranceContactAvgAggregateInput_schema_1.InsuranceContactAvgAggregateInputObjectSchema.optional(), _sum: InsuranceContactSumAggregateInput_schema_1.InsuranceContactSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.InsuranceContactAggregateZodSchema = z.object({ orderBy: z.union([InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema, InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: InsuranceContactWhereInput_schema_1.InsuranceContactWhereInputObjectSchema.optional(), cursor: InsuranceContactWhereUniqueInput_schema_1.InsuranceContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), InsuranceContactCountAggregateInput_schema_1.InsuranceContactCountAggregateInputObjectSchema]).optional(), _min: InsuranceContactMinAggregateInput_schema_1.InsuranceContactMinAggregateInputObjectSchema.optional(), _max: InsuranceContactMaxAggregateInput_schema_1.InsuranceContactMaxAggregateInputObjectSchema.optional(), _avg: InsuranceContactAvgAggregateInput_schema_1.InsuranceContactAvgAggregateInputObjectSchema.optional(), _sum: InsuranceContactSumAggregateInput_schema_1.InsuranceContactSumAggregateInputObjectSchema.optional() }).strict();
|
||||
47
packages/db/shared/schemas/aggregateOfficeContact.schema.js
Normal file
47
packages/db/shared/schemas/aggregateOfficeContact.schema.js
Normal file
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactAggregateZodSchema = exports.OfficeContactAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactOrderByWithRelationInput_schema_1 = require("./objects/OfficeContactOrderByWithRelationInput.schema");
|
||||
const OfficeContactWhereInput_schema_1 = require("./objects/OfficeContactWhereInput.schema");
|
||||
const OfficeContactWhereUniqueInput_schema_1 = require("./objects/OfficeContactWhereUniqueInput.schema");
|
||||
const OfficeContactCountAggregateInput_schema_1 = require("./objects/OfficeContactCountAggregateInput.schema");
|
||||
const OfficeContactMinAggregateInput_schema_1 = require("./objects/OfficeContactMinAggregateInput.schema");
|
||||
const OfficeContactMaxAggregateInput_schema_1 = require("./objects/OfficeContactMaxAggregateInput.schema");
|
||||
const OfficeContactAvgAggregateInput_schema_1 = require("./objects/OfficeContactAvgAggregateInput.schema");
|
||||
const OfficeContactSumAggregateInput_schema_1 = require("./objects/OfficeContactSumAggregateInput.schema");
|
||||
exports.OfficeContactAggregateSchema = z.object({ orderBy: z.union([OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema, OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema.optional(), cursor: OfficeContactWhereUniqueInput_schema_1.OfficeContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), OfficeContactCountAggregateInput_schema_1.OfficeContactCountAggregateInputObjectSchema]).optional(), _min: OfficeContactMinAggregateInput_schema_1.OfficeContactMinAggregateInputObjectSchema.optional(), _max: OfficeContactMaxAggregateInput_schema_1.OfficeContactMaxAggregateInputObjectSchema.optional(), _avg: OfficeContactAvgAggregateInput_schema_1.OfficeContactAvgAggregateInputObjectSchema.optional(), _sum: OfficeContactSumAggregateInput_schema_1.OfficeContactSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.OfficeContactAggregateZodSchema = z.object({ orderBy: z.union([OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema, OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema.optional(), cursor: OfficeContactWhereUniqueInput_schema_1.OfficeContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), OfficeContactCountAggregateInput_schema_1.OfficeContactCountAggregateInputObjectSchema]).optional(), _min: OfficeContactMinAggregateInput_schema_1.OfficeContactMinAggregateInputObjectSchema.optional(), _max: OfficeContactMaxAggregateInput_schema_1.OfficeContactMaxAggregateInputObjectSchema.optional(), _avg: OfficeContactAvgAggregateInput_schema_1.OfficeContactAvgAggregateInputObjectSchema.optional(), _sum: OfficeContactSumAggregateInput_schema_1.OfficeContactSumAggregateInputObjectSchema.optional() }).strict();
|
||||
47
packages/db/shared/schemas/aggregateOfficeHours.schema.js
Normal file
47
packages/db/shared/schemas/aggregateOfficeHours.schema.js
Normal file
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursAggregateZodSchema = exports.OfficeHoursAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursOrderByWithRelationInput_schema_1 = require("./objects/OfficeHoursOrderByWithRelationInput.schema");
|
||||
const OfficeHoursWhereInput_schema_1 = require("./objects/OfficeHoursWhereInput.schema");
|
||||
const OfficeHoursWhereUniqueInput_schema_1 = require("./objects/OfficeHoursWhereUniqueInput.schema");
|
||||
const OfficeHoursCountAggregateInput_schema_1 = require("./objects/OfficeHoursCountAggregateInput.schema");
|
||||
const OfficeHoursMinAggregateInput_schema_1 = require("./objects/OfficeHoursMinAggregateInput.schema");
|
||||
const OfficeHoursMaxAggregateInput_schema_1 = require("./objects/OfficeHoursMaxAggregateInput.schema");
|
||||
const OfficeHoursAvgAggregateInput_schema_1 = require("./objects/OfficeHoursAvgAggregateInput.schema");
|
||||
const OfficeHoursSumAggregateInput_schema_1 = require("./objects/OfficeHoursSumAggregateInput.schema");
|
||||
exports.OfficeHoursAggregateSchema = z.object({ orderBy: z.union([OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema, OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeHoursWhereInput_schema_1.OfficeHoursWhereInputObjectSchema.optional(), cursor: OfficeHoursWhereUniqueInput_schema_1.OfficeHoursWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), OfficeHoursCountAggregateInput_schema_1.OfficeHoursCountAggregateInputObjectSchema]).optional(), _min: OfficeHoursMinAggregateInput_schema_1.OfficeHoursMinAggregateInputObjectSchema.optional(), _max: OfficeHoursMaxAggregateInput_schema_1.OfficeHoursMaxAggregateInputObjectSchema.optional(), _avg: OfficeHoursAvgAggregateInput_schema_1.OfficeHoursAvgAggregateInputObjectSchema.optional(), _sum: OfficeHoursSumAggregateInput_schema_1.OfficeHoursSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.OfficeHoursAggregateZodSchema = z.object({ orderBy: z.union([OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema, OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeHoursWhereInput_schema_1.OfficeHoursWhereInputObjectSchema.optional(), cursor: OfficeHoursWhereUniqueInput_schema_1.OfficeHoursWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), OfficeHoursCountAggregateInput_schema_1.OfficeHoursCountAggregateInputObjectSchema]).optional(), _min: OfficeHoursMinAggregateInput_schema_1.OfficeHoursMinAggregateInputObjectSchema.optional(), _max: OfficeHoursMaxAggregateInput_schema_1.OfficeHoursMaxAggregateInputObjectSchema.optional(), _avg: OfficeHoursAvgAggregateInput_schema_1.OfficeHoursAvgAggregateInputObjectSchema.optional(), _sum: OfficeHoursSumAggregateInput_schema_1.OfficeHoursSumAggregateInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationAggregateZodSchema = exports.PatientConversationAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationOrderByWithRelationInput_schema_1 = require("./objects/PatientConversationOrderByWithRelationInput.schema");
|
||||
const PatientConversationWhereInput_schema_1 = require("./objects/PatientConversationWhereInput.schema");
|
||||
const PatientConversationWhereUniqueInput_schema_1 = require("./objects/PatientConversationWhereUniqueInput.schema");
|
||||
const PatientConversationCountAggregateInput_schema_1 = require("./objects/PatientConversationCountAggregateInput.schema");
|
||||
const PatientConversationMinAggregateInput_schema_1 = require("./objects/PatientConversationMinAggregateInput.schema");
|
||||
const PatientConversationMaxAggregateInput_schema_1 = require("./objects/PatientConversationMaxAggregateInput.schema");
|
||||
const PatientConversationAvgAggregateInput_schema_1 = require("./objects/PatientConversationAvgAggregateInput.schema");
|
||||
const PatientConversationSumAggregateInput_schema_1 = require("./objects/PatientConversationSumAggregateInput.schema");
|
||||
exports.PatientConversationAggregateSchema = z.object({ orderBy: z.union([PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema, PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema.array()]).optional(), where: PatientConversationWhereInput_schema_1.PatientConversationWhereInputObjectSchema.optional(), cursor: PatientConversationWhereUniqueInput_schema_1.PatientConversationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), PatientConversationCountAggregateInput_schema_1.PatientConversationCountAggregateInputObjectSchema]).optional(), _min: PatientConversationMinAggregateInput_schema_1.PatientConversationMinAggregateInputObjectSchema.optional(), _max: PatientConversationMaxAggregateInput_schema_1.PatientConversationMaxAggregateInputObjectSchema.optional(), _avg: PatientConversationAvgAggregateInput_schema_1.PatientConversationAvgAggregateInputObjectSchema.optional(), _sum: PatientConversationSumAggregateInput_schema_1.PatientConversationSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.PatientConversationAggregateZodSchema = z.object({ orderBy: z.union([PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema, PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema.array()]).optional(), where: PatientConversationWhereInput_schema_1.PatientConversationWhereInputObjectSchema.optional(), cursor: PatientConversationWhereUniqueInput_schema_1.PatientConversationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), PatientConversationCountAggregateInput_schema_1.PatientConversationCountAggregateInputObjectSchema]).optional(), _min: PatientConversationMinAggregateInput_schema_1.PatientConversationMinAggregateInputObjectSchema.optional(), _max: PatientConversationMaxAggregateInput_schema_1.PatientConversationMaxAggregateInputObjectSchema.optional(), _avg: PatientConversationAvgAggregateInput_schema_1.PatientConversationAvgAggregateInputObjectSchema.optional(), _sum: PatientConversationSumAggregateInput_schema_1.PatientConversationSumAggregateInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotAggregateZodSchema = exports.ProcedureTimeslotAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotOrderByWithRelationInput_schema_1 = require("./objects/ProcedureTimeslotOrderByWithRelationInput.schema");
|
||||
const ProcedureTimeslotWhereInput_schema_1 = require("./objects/ProcedureTimeslotWhereInput.schema");
|
||||
const ProcedureTimeslotWhereUniqueInput_schema_1 = require("./objects/ProcedureTimeslotWhereUniqueInput.schema");
|
||||
const ProcedureTimeslotCountAggregateInput_schema_1 = require("./objects/ProcedureTimeslotCountAggregateInput.schema");
|
||||
const ProcedureTimeslotMinAggregateInput_schema_1 = require("./objects/ProcedureTimeslotMinAggregateInput.schema");
|
||||
const ProcedureTimeslotMaxAggregateInput_schema_1 = require("./objects/ProcedureTimeslotMaxAggregateInput.schema");
|
||||
const ProcedureTimeslotAvgAggregateInput_schema_1 = require("./objects/ProcedureTimeslotAvgAggregateInput.schema");
|
||||
const ProcedureTimeslotSumAggregateInput_schema_1 = require("./objects/ProcedureTimeslotSumAggregateInput.schema");
|
||||
exports.ProcedureTimeslotAggregateSchema = z.object({ orderBy: z.union([ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema, ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema.array()]).optional(), where: ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema.optional(), cursor: ProcedureTimeslotWhereUniqueInput_schema_1.ProcedureTimeslotWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), ProcedureTimeslotCountAggregateInput_schema_1.ProcedureTimeslotCountAggregateInputObjectSchema]).optional(), _min: ProcedureTimeslotMinAggregateInput_schema_1.ProcedureTimeslotMinAggregateInputObjectSchema.optional(), _max: ProcedureTimeslotMaxAggregateInput_schema_1.ProcedureTimeslotMaxAggregateInputObjectSchema.optional(), _avg: ProcedureTimeslotAvgAggregateInput_schema_1.ProcedureTimeslotAvgAggregateInputObjectSchema.optional(), _sum: ProcedureTimeslotSumAggregateInput_schema_1.ProcedureTimeslotSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.ProcedureTimeslotAggregateZodSchema = z.object({ orderBy: z.union([ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema, ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema.array()]).optional(), where: ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema.optional(), cursor: ProcedureTimeslotWhereUniqueInput_schema_1.ProcedureTimeslotWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), ProcedureTimeslotCountAggregateInput_schema_1.ProcedureTimeslotCountAggregateInputObjectSchema]).optional(), _min: ProcedureTimeslotMinAggregateInput_schema_1.ProcedureTimeslotMinAggregateInputObjectSchema.optional(), _max: ProcedureTimeslotMaxAggregateInput_schema_1.ProcedureTimeslotMaxAggregateInputObjectSchema.optional(), _avg: ProcedureTimeslotAvgAggregateInput_schema_1.ProcedureTimeslotAvgAggregateInputObjectSchema.optional(), _sum: ProcedureTimeslotSumAggregateInput_schema_1.ProcedureTimeslotSumAggregateInputObjectSchema.optional() }).strict();
|
||||
47
packages/db/shared/schemas/aggregateShoppingVendor.schema.js
Normal file
47
packages/db/shared/schemas/aggregateShoppingVendor.schema.js
Normal file
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorAggregateZodSchema = exports.ShoppingVendorAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorOrderByWithRelationInput_schema_1 = require("./objects/ShoppingVendorOrderByWithRelationInput.schema");
|
||||
const ShoppingVendorWhereInput_schema_1 = require("./objects/ShoppingVendorWhereInput.schema");
|
||||
const ShoppingVendorWhereUniqueInput_schema_1 = require("./objects/ShoppingVendorWhereUniqueInput.schema");
|
||||
const ShoppingVendorCountAggregateInput_schema_1 = require("./objects/ShoppingVendorCountAggregateInput.schema");
|
||||
const ShoppingVendorMinAggregateInput_schema_1 = require("./objects/ShoppingVendorMinAggregateInput.schema");
|
||||
const ShoppingVendorMaxAggregateInput_schema_1 = require("./objects/ShoppingVendorMaxAggregateInput.schema");
|
||||
const ShoppingVendorAvgAggregateInput_schema_1 = require("./objects/ShoppingVendorAvgAggregateInput.schema");
|
||||
const ShoppingVendorSumAggregateInput_schema_1 = require("./objects/ShoppingVendorSumAggregateInput.schema");
|
||||
exports.ShoppingVendorAggregateSchema = z.object({ orderBy: z.union([ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema, ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema.array()]).optional(), where: ShoppingVendorWhereInput_schema_1.ShoppingVendorWhereInputObjectSchema.optional(), cursor: ShoppingVendorWhereUniqueInput_schema_1.ShoppingVendorWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), ShoppingVendorCountAggregateInput_schema_1.ShoppingVendorCountAggregateInputObjectSchema]).optional(), _min: ShoppingVendorMinAggregateInput_schema_1.ShoppingVendorMinAggregateInputObjectSchema.optional(), _max: ShoppingVendorMaxAggregateInput_schema_1.ShoppingVendorMaxAggregateInputObjectSchema.optional(), _avg: ShoppingVendorAvgAggregateInput_schema_1.ShoppingVendorAvgAggregateInputObjectSchema.optional(), _sum: ShoppingVendorSumAggregateInput_schema_1.ShoppingVendorSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.ShoppingVendorAggregateZodSchema = z.object({ orderBy: z.union([ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema, ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema.array()]).optional(), where: ShoppingVendorWhereInput_schema_1.ShoppingVendorWhereInputObjectSchema.optional(), cursor: ShoppingVendorWhereUniqueInput_schema_1.ShoppingVendorWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), ShoppingVendorCountAggregateInput_schema_1.ShoppingVendorCountAggregateInputObjectSchema]).optional(), _min: ShoppingVendorMinAggregateInput_schema_1.ShoppingVendorMinAggregateInputObjectSchema.optional(), _max: ShoppingVendorMaxAggregateInput_schema_1.ShoppingVendorMaxAggregateInputObjectSchema.optional(), _avg: ShoppingVendorAvgAggregateInput_schema_1.ShoppingVendorAvgAggregateInputObjectSchema.optional(), _sum: ShoppingVendorSumAggregateInput_schema_1.ShoppingVendorSumAggregateInputObjectSchema.optional() }).strict();
|
||||
47
packages/db/shared/schemas/aggregateTwilioSettings.schema.js
Normal file
47
packages/db/shared/schemas/aggregateTwilioSettings.schema.js
Normal file
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsAggregateZodSchema = exports.TwilioSettingsAggregateSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsOrderByWithRelationInput_schema_1 = require("./objects/TwilioSettingsOrderByWithRelationInput.schema");
|
||||
const TwilioSettingsWhereInput_schema_1 = require("./objects/TwilioSettingsWhereInput.schema");
|
||||
const TwilioSettingsWhereUniqueInput_schema_1 = require("./objects/TwilioSettingsWhereUniqueInput.schema");
|
||||
const TwilioSettingsCountAggregateInput_schema_1 = require("./objects/TwilioSettingsCountAggregateInput.schema");
|
||||
const TwilioSettingsMinAggregateInput_schema_1 = require("./objects/TwilioSettingsMinAggregateInput.schema");
|
||||
const TwilioSettingsMaxAggregateInput_schema_1 = require("./objects/TwilioSettingsMaxAggregateInput.schema");
|
||||
const TwilioSettingsAvgAggregateInput_schema_1 = require("./objects/TwilioSettingsAvgAggregateInput.schema");
|
||||
const TwilioSettingsSumAggregateInput_schema_1 = require("./objects/TwilioSettingsSumAggregateInput.schema");
|
||||
exports.TwilioSettingsAggregateSchema = z.object({ orderBy: z.union([TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema, TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: TwilioSettingsWhereInput_schema_1.TwilioSettingsWhereInputObjectSchema.optional(), cursor: TwilioSettingsWhereUniqueInput_schema_1.TwilioSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), TwilioSettingsCountAggregateInput_schema_1.TwilioSettingsCountAggregateInputObjectSchema]).optional(), _min: TwilioSettingsMinAggregateInput_schema_1.TwilioSettingsMinAggregateInputObjectSchema.optional(), _max: TwilioSettingsMaxAggregateInput_schema_1.TwilioSettingsMaxAggregateInputObjectSchema.optional(), _avg: TwilioSettingsAvgAggregateInput_schema_1.TwilioSettingsAvgAggregateInputObjectSchema.optional(), _sum: TwilioSettingsSumAggregateInput_schema_1.TwilioSettingsSumAggregateInputObjectSchema.optional() }).strict();
|
||||
exports.TwilioSettingsAggregateZodSchema = z.object({ orderBy: z.union([TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema, TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: TwilioSettingsWhereInput_schema_1.TwilioSettingsWhereInputObjectSchema.optional(), cursor: TwilioSettingsWhereUniqueInput_schema_1.TwilioSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), TwilioSettingsCountAggregateInput_schema_1.TwilioSettingsCountAggregateInputObjectSchema]).optional(), _min: TwilioSettingsMinAggregateInput_schema_1.TwilioSettingsMinAggregateInputObjectSchema.optional(), _max: TwilioSettingsMaxAggregateInput_schema_1.TwilioSettingsMaxAggregateInputObjectSchema.optional(), _avg: TwilioSettingsAvgAggregateInput_schema_1.TwilioSettingsAvgAggregateInputObjectSchema.optional(), _sum: TwilioSettingsSumAggregateInput_schema_1.TwilioSettingsSumAggregateInputObjectSchema.optional() }).strict();
|
||||
43
packages/db/shared/schemas/countAiSettings.schema.js
Normal file
43
packages/db/shared/schemas/countAiSettings.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsCountZodSchema = exports.AiSettingsCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsOrderByWithRelationInput_schema_1 = require("./objects/AiSettingsOrderByWithRelationInput.schema");
|
||||
const AiSettingsWhereInput_schema_1 = require("./objects/AiSettingsWhereInput.schema");
|
||||
const AiSettingsWhereUniqueInput_schema_1 = require("./objects/AiSettingsWhereUniqueInput.schema");
|
||||
const AiSettingsCountAggregateInput_schema_1 = require("./objects/AiSettingsCountAggregateInput.schema");
|
||||
exports.AiSettingsCountSchema = z.object({ orderBy: z.union([AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), AiSettingsCountAggregateInput_schema_1.AiSettingsCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.AiSettingsCountZodSchema = z.object({ orderBy: z.union([AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), AiSettingsCountAggregateInput_schema_1.AiSettingsCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countAppointmentFile.schema.js
Normal file
43
packages/db/shared/schemas/countAppointmentFile.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileCountZodSchema = exports.AppointmentFileCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileOrderByWithRelationInput_schema_1 = require("./objects/AppointmentFileOrderByWithRelationInput.schema");
|
||||
const AppointmentFileWhereInput_schema_1 = require("./objects/AppointmentFileWhereInput.schema");
|
||||
const AppointmentFileWhereUniqueInput_schema_1 = require("./objects/AppointmentFileWhereUniqueInput.schema");
|
||||
const AppointmentFileCountAggregateInput_schema_1 = require("./objects/AppointmentFileCountAggregateInput.schema");
|
||||
exports.AppointmentFileCountSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInput_schema_1.AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInput_schema_1.AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), AppointmentFileCountAggregateInput_schema_1.AppointmentFileCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.AppointmentFileCountZodSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInput_schema_1.AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInput_schema_1.AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInput_schema_1.AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), AppointmentFileCountAggregateInput_schema_1.AppointmentFileCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countCommissionBatch.schema.js
Normal file
43
packages/db/shared/schemas/countCommissionBatch.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchCountZodSchema = exports.CommissionBatchCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchOrderByWithRelationInput_schema_1 = require("./objects/CommissionBatchOrderByWithRelationInput.schema");
|
||||
const CommissionBatchWhereInput_schema_1 = require("./objects/CommissionBatchWhereInput.schema");
|
||||
const CommissionBatchWhereUniqueInput_schema_1 = require("./objects/CommissionBatchWhereUniqueInput.schema");
|
||||
const CommissionBatchCountAggregateInput_schema_1 = require("./objects/CommissionBatchCountAggregateInput.schema");
|
||||
exports.CommissionBatchCountSchema = z.object({ orderBy: z.union([CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema, CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchWhereInput_schema_1.CommissionBatchWhereInputObjectSchema.optional(), cursor: CommissionBatchWhereUniqueInput_schema_1.CommissionBatchWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), CommissionBatchCountAggregateInput_schema_1.CommissionBatchCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.CommissionBatchCountZodSchema = z.object({ orderBy: z.union([CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema, CommissionBatchOrderByWithRelationInput_schema_1.CommissionBatchOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchWhereInput_schema_1.CommissionBatchWhereInputObjectSchema.optional(), cursor: CommissionBatchWhereUniqueInput_schema_1.CommissionBatchWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), CommissionBatchCountAggregateInput_schema_1.CommissionBatchCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemCountZodSchema = exports.CommissionBatchItemCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemOrderByWithRelationInput_schema_1 = require("./objects/CommissionBatchItemOrderByWithRelationInput.schema");
|
||||
const CommissionBatchItemWhereInput_schema_1 = require("./objects/CommissionBatchItemWhereInput.schema");
|
||||
const CommissionBatchItemWhereUniqueInput_schema_1 = require("./objects/CommissionBatchItemWhereUniqueInput.schema");
|
||||
const CommissionBatchItemCountAggregateInput_schema_1 = require("./objects/CommissionBatchItemCountAggregateInput.schema");
|
||||
exports.CommissionBatchItemCountSchema = z.object({ orderBy: z.union([CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema, CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchItemWhereInput_schema_1.CommissionBatchItemWhereInputObjectSchema.optional(), cursor: CommissionBatchItemWhereUniqueInput_schema_1.CommissionBatchItemWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), CommissionBatchItemCountAggregateInput_schema_1.CommissionBatchItemCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.CommissionBatchItemCountZodSchema = z.object({ orderBy: z.union([CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema, CommissionBatchItemOrderByWithRelationInput_schema_1.CommissionBatchItemOrderByWithRelationInputObjectSchema.array()]).optional(), where: CommissionBatchItemWhereInput_schema_1.CommissionBatchItemWhereInputObjectSchema.optional(), cursor: CommissionBatchItemWhereUniqueInput_schema_1.CommissionBatchItemWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), CommissionBatchItemCountAggregateInput_schema_1.CommissionBatchItemCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countInsuranceContact.schema.js
Normal file
43
packages/db/shared/schemas/countInsuranceContact.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactCountZodSchema = exports.InsuranceContactCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactOrderByWithRelationInput_schema_1 = require("./objects/InsuranceContactOrderByWithRelationInput.schema");
|
||||
const InsuranceContactWhereInput_schema_1 = require("./objects/InsuranceContactWhereInput.schema");
|
||||
const InsuranceContactWhereUniqueInput_schema_1 = require("./objects/InsuranceContactWhereUniqueInput.schema");
|
||||
const InsuranceContactCountAggregateInput_schema_1 = require("./objects/InsuranceContactCountAggregateInput.schema");
|
||||
exports.InsuranceContactCountSchema = z.object({ orderBy: z.union([InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema, InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: InsuranceContactWhereInput_schema_1.InsuranceContactWhereInputObjectSchema.optional(), cursor: InsuranceContactWhereUniqueInput_schema_1.InsuranceContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), InsuranceContactCountAggregateInput_schema_1.InsuranceContactCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.InsuranceContactCountZodSchema = z.object({ orderBy: z.union([InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema, InsuranceContactOrderByWithRelationInput_schema_1.InsuranceContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: InsuranceContactWhereInput_schema_1.InsuranceContactWhereInputObjectSchema.optional(), cursor: InsuranceContactWhereUniqueInput_schema_1.InsuranceContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), InsuranceContactCountAggregateInput_schema_1.InsuranceContactCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countOfficeContact.schema.js
Normal file
43
packages/db/shared/schemas/countOfficeContact.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactCountZodSchema = exports.OfficeContactCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactOrderByWithRelationInput_schema_1 = require("./objects/OfficeContactOrderByWithRelationInput.schema");
|
||||
const OfficeContactWhereInput_schema_1 = require("./objects/OfficeContactWhereInput.schema");
|
||||
const OfficeContactWhereUniqueInput_schema_1 = require("./objects/OfficeContactWhereUniqueInput.schema");
|
||||
const OfficeContactCountAggregateInput_schema_1 = require("./objects/OfficeContactCountAggregateInput.schema");
|
||||
exports.OfficeContactCountSchema = z.object({ orderBy: z.union([OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema, OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema.optional(), cursor: OfficeContactWhereUniqueInput_schema_1.OfficeContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), OfficeContactCountAggregateInput_schema_1.OfficeContactCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.OfficeContactCountZodSchema = z.object({ orderBy: z.union([OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema, OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema.optional(), cursor: OfficeContactWhereUniqueInput_schema_1.OfficeContactWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), OfficeContactCountAggregateInput_schema_1.OfficeContactCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countOfficeHours.schema.js
Normal file
43
packages/db/shared/schemas/countOfficeHours.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursCountZodSchema = exports.OfficeHoursCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursOrderByWithRelationInput_schema_1 = require("./objects/OfficeHoursOrderByWithRelationInput.schema");
|
||||
const OfficeHoursWhereInput_schema_1 = require("./objects/OfficeHoursWhereInput.schema");
|
||||
const OfficeHoursWhereUniqueInput_schema_1 = require("./objects/OfficeHoursWhereUniqueInput.schema");
|
||||
const OfficeHoursCountAggregateInput_schema_1 = require("./objects/OfficeHoursCountAggregateInput.schema");
|
||||
exports.OfficeHoursCountSchema = z.object({ orderBy: z.union([OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema, OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeHoursWhereInput_schema_1.OfficeHoursWhereInputObjectSchema.optional(), cursor: OfficeHoursWhereUniqueInput_schema_1.OfficeHoursWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), OfficeHoursCountAggregateInput_schema_1.OfficeHoursCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.OfficeHoursCountZodSchema = z.object({ orderBy: z.union([OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema, OfficeHoursOrderByWithRelationInput_schema_1.OfficeHoursOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfficeHoursWhereInput_schema_1.OfficeHoursWhereInputObjectSchema.optional(), cursor: OfficeHoursWhereUniqueInput_schema_1.OfficeHoursWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), OfficeHoursCountAggregateInput_schema_1.OfficeHoursCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationCountZodSchema = exports.PatientConversationCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationOrderByWithRelationInput_schema_1 = require("./objects/PatientConversationOrderByWithRelationInput.schema");
|
||||
const PatientConversationWhereInput_schema_1 = require("./objects/PatientConversationWhereInput.schema");
|
||||
const PatientConversationWhereUniqueInput_schema_1 = require("./objects/PatientConversationWhereUniqueInput.schema");
|
||||
const PatientConversationCountAggregateInput_schema_1 = require("./objects/PatientConversationCountAggregateInput.schema");
|
||||
exports.PatientConversationCountSchema = z.object({ orderBy: z.union([PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema, PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema.array()]).optional(), where: PatientConversationWhereInput_schema_1.PatientConversationWhereInputObjectSchema.optional(), cursor: PatientConversationWhereUniqueInput_schema_1.PatientConversationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), PatientConversationCountAggregateInput_schema_1.PatientConversationCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.PatientConversationCountZodSchema = z.object({ orderBy: z.union([PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema, PatientConversationOrderByWithRelationInput_schema_1.PatientConversationOrderByWithRelationInputObjectSchema.array()]).optional(), where: PatientConversationWhereInput_schema_1.PatientConversationWhereInputObjectSchema.optional(), cursor: PatientConversationWhereUniqueInput_schema_1.PatientConversationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), PatientConversationCountAggregateInput_schema_1.PatientConversationCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countProcedureTimeslot.schema.js
Normal file
43
packages/db/shared/schemas/countProcedureTimeslot.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotCountZodSchema = exports.ProcedureTimeslotCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotOrderByWithRelationInput_schema_1 = require("./objects/ProcedureTimeslotOrderByWithRelationInput.schema");
|
||||
const ProcedureTimeslotWhereInput_schema_1 = require("./objects/ProcedureTimeslotWhereInput.schema");
|
||||
const ProcedureTimeslotWhereUniqueInput_schema_1 = require("./objects/ProcedureTimeslotWhereUniqueInput.schema");
|
||||
const ProcedureTimeslotCountAggregateInput_schema_1 = require("./objects/ProcedureTimeslotCountAggregateInput.schema");
|
||||
exports.ProcedureTimeslotCountSchema = z.object({ orderBy: z.union([ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema, ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema.array()]).optional(), where: ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema.optional(), cursor: ProcedureTimeslotWhereUniqueInput_schema_1.ProcedureTimeslotWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), ProcedureTimeslotCountAggregateInput_schema_1.ProcedureTimeslotCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.ProcedureTimeslotCountZodSchema = z.object({ orderBy: z.union([ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema, ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema.array()]).optional(), where: ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema.optional(), cursor: ProcedureTimeslotWhereUniqueInput_schema_1.ProcedureTimeslotWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), ProcedureTimeslotCountAggregateInput_schema_1.ProcedureTimeslotCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countShoppingVendor.schema.js
Normal file
43
packages/db/shared/schemas/countShoppingVendor.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorCountZodSchema = exports.ShoppingVendorCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorOrderByWithRelationInput_schema_1 = require("./objects/ShoppingVendorOrderByWithRelationInput.schema");
|
||||
const ShoppingVendorWhereInput_schema_1 = require("./objects/ShoppingVendorWhereInput.schema");
|
||||
const ShoppingVendorWhereUniqueInput_schema_1 = require("./objects/ShoppingVendorWhereUniqueInput.schema");
|
||||
const ShoppingVendorCountAggregateInput_schema_1 = require("./objects/ShoppingVendorCountAggregateInput.schema");
|
||||
exports.ShoppingVendorCountSchema = z.object({ orderBy: z.union([ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema, ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema.array()]).optional(), where: ShoppingVendorWhereInput_schema_1.ShoppingVendorWhereInputObjectSchema.optional(), cursor: ShoppingVendorWhereUniqueInput_schema_1.ShoppingVendorWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), ShoppingVendorCountAggregateInput_schema_1.ShoppingVendorCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.ShoppingVendorCountZodSchema = z.object({ orderBy: z.union([ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema, ShoppingVendorOrderByWithRelationInput_schema_1.ShoppingVendorOrderByWithRelationInputObjectSchema.array()]).optional(), where: ShoppingVendorWhereInput_schema_1.ShoppingVendorWhereInputObjectSchema.optional(), cursor: ShoppingVendorWhereUniqueInput_schema_1.ShoppingVendorWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), ShoppingVendorCountAggregateInput_schema_1.ShoppingVendorCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
43
packages/db/shared/schemas/countTwilioSettings.schema.js
Normal file
43
packages/db/shared/schemas/countTwilioSettings.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsCountZodSchema = exports.TwilioSettingsCountSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsOrderByWithRelationInput_schema_1 = require("./objects/TwilioSettingsOrderByWithRelationInput.schema");
|
||||
const TwilioSettingsWhereInput_schema_1 = require("./objects/TwilioSettingsWhereInput.schema");
|
||||
const TwilioSettingsWhereUniqueInput_schema_1 = require("./objects/TwilioSettingsWhereUniqueInput.schema");
|
||||
const TwilioSettingsCountAggregateInput_schema_1 = require("./objects/TwilioSettingsCountAggregateInput.schema");
|
||||
exports.TwilioSettingsCountSchema = z.object({ orderBy: z.union([TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema, TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: TwilioSettingsWhereInput_schema_1.TwilioSettingsWhereInputObjectSchema.optional(), cursor: TwilioSettingsWhereUniqueInput_schema_1.TwilioSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), TwilioSettingsCountAggregateInput_schema_1.TwilioSettingsCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
exports.TwilioSettingsCountZodSchema = z.object({ orderBy: z.union([TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema, TwilioSettingsOrderByWithRelationInput_schema_1.TwilioSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: TwilioSettingsWhereInput_schema_1.TwilioSettingsWhereInputObjectSchema.optional(), cursor: TwilioSettingsWhereUniqueInput_schema_1.TwilioSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), TwilioSettingsCountAggregateInput_schema_1.TwilioSettingsCountAggregateInputObjectSchema]).optional() }).strict();
|
||||
40
packages/db/shared/schemas/createManyAiSettings.schema.js
Normal file
40
packages/db/shared/schemas/createManyAiSettings.schema.js
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsCreateManyZodSchema = exports.AiSettingsCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsCreateManyInput_schema_1 = require("./objects/AiSettingsCreateManyInput.schema");
|
||||
exports.AiSettingsCreateManySchema = z.object({ data: z.union([AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema, z.array(AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.AiSettingsCreateManyZodSchema = z.object({ data: z.union([AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema, z.array(AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsCreateManyAndReturnZodSchema = exports.AiSettingsCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsSelect_schema_1 = require("./objects/AiSettingsSelect.schema");
|
||||
const AiSettingsCreateManyInput_schema_1 = require("./objects/AiSettingsCreateManyInput.schema");
|
||||
exports.AiSettingsCreateManyAndReturnSchema = z.object({ select: AiSettingsSelect_schema_1.AiSettingsSelectObjectSchema.optional(), data: z.union([AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema, z.array(AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.AiSettingsCreateManyAndReturnZodSchema = z.object({ select: AiSettingsSelect_schema_1.AiSettingsSelectObjectSchema.optional(), data: z.union([AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema, z.array(AiSettingsCreateManyInput_schema_1.AiSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileCreateManyAndReturnZodSchema = exports.AppointmentFileCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileSelect_schema_1 = require("./objects/AppointmentFileSelect.schema");
|
||||
const AppointmentFileCreateManyInput_schema_1 = require("./objects/AppointmentFileCreateManyInput.schema");
|
||||
exports.AppointmentFileCreateManyAndReturnSchema = z.object({ select: AppointmentFileSelect_schema_1.AppointmentFileSelectObjectSchema.optional(), data: z.union([AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.AppointmentFileCreateManyAndReturnZodSchema = z.object({ select: AppointmentFileSelect_schema_1.AppointmentFileSelectObjectSchema.optional(), data: z.union([AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchCreateManyAndReturnZodSchema = exports.CommissionBatchCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchSelect_schema_1 = require("./objects/CommissionBatchSelect.schema");
|
||||
const CommissionBatchCreateManyInput_schema_1 = require("./objects/CommissionBatchCreateManyInput.schema");
|
||||
exports.CommissionBatchCreateManyAndReturnSchema = z.object({ select: CommissionBatchSelect_schema_1.CommissionBatchSelectObjectSchema.optional(), data: z.union([CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema, z.array(CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.CommissionBatchCreateManyAndReturnZodSchema = z.object({ select: CommissionBatchSelect_schema_1.CommissionBatchSelectObjectSchema.optional(), data: z.union([CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema, z.array(CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemCreateManyAndReturnZodSchema = exports.CommissionBatchItemCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemSelect_schema_1 = require("./objects/CommissionBatchItemSelect.schema");
|
||||
const CommissionBatchItemCreateManyInput_schema_1 = require("./objects/CommissionBatchItemCreateManyInput.schema");
|
||||
exports.CommissionBatchItemCreateManyAndReturnSchema = z.object({ select: CommissionBatchItemSelect_schema_1.CommissionBatchItemSelectObjectSchema.optional(), data: z.union([CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema, z.array(CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.CommissionBatchItemCreateManyAndReturnZodSchema = z.object({ select: CommissionBatchItemSelect_schema_1.CommissionBatchItemSelectObjectSchema.optional(), data: z.union([CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema, z.array(CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactCreateManyAndReturnZodSchema = exports.InsuranceContactCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactSelect_schema_1 = require("./objects/InsuranceContactSelect.schema");
|
||||
const InsuranceContactCreateManyInput_schema_1 = require("./objects/InsuranceContactCreateManyInput.schema");
|
||||
exports.InsuranceContactCreateManyAndReturnSchema = z.object({ select: InsuranceContactSelect_schema_1.InsuranceContactSelectObjectSchema.optional(), data: z.union([InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema, z.array(InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.InsuranceContactCreateManyAndReturnZodSchema = z.object({ select: InsuranceContactSelect_schema_1.InsuranceContactSelectObjectSchema.optional(), data: z.union([InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema, z.array(InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactCreateManyAndReturnZodSchema = exports.OfficeContactCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactSelect_schema_1 = require("./objects/OfficeContactSelect.schema");
|
||||
const OfficeContactCreateManyInput_schema_1 = require("./objects/OfficeContactCreateManyInput.schema");
|
||||
exports.OfficeContactCreateManyAndReturnSchema = z.object({ select: OfficeContactSelect_schema_1.OfficeContactSelectObjectSchema.optional(), data: z.union([OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema, z.array(OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.OfficeContactCreateManyAndReturnZodSchema = z.object({ select: OfficeContactSelect_schema_1.OfficeContactSelectObjectSchema.optional(), data: z.union([OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema, z.array(OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursCreateManyAndReturnZodSchema = exports.OfficeHoursCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursSelect_schema_1 = require("./objects/OfficeHoursSelect.schema");
|
||||
const OfficeHoursCreateManyInput_schema_1 = require("./objects/OfficeHoursCreateManyInput.schema");
|
||||
exports.OfficeHoursCreateManyAndReturnSchema = z.object({ select: OfficeHoursSelect_schema_1.OfficeHoursSelectObjectSchema.optional(), data: z.union([OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema, z.array(OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.OfficeHoursCreateManyAndReturnZodSchema = z.object({ select: OfficeHoursSelect_schema_1.OfficeHoursSelectObjectSchema.optional(), data: z.union([OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema, z.array(OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationCreateManyAndReturnZodSchema = exports.PatientConversationCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationSelect_schema_1 = require("./objects/PatientConversationSelect.schema");
|
||||
const PatientConversationCreateManyInput_schema_1 = require("./objects/PatientConversationCreateManyInput.schema");
|
||||
exports.PatientConversationCreateManyAndReturnSchema = z.object({ select: PatientConversationSelect_schema_1.PatientConversationSelectObjectSchema.optional(), data: z.union([PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema, z.array(PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.PatientConversationCreateManyAndReturnZodSchema = z.object({ select: PatientConversationSelect_schema_1.PatientConversationSelectObjectSchema.optional(), data: z.union([PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema, z.array(PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotCreateManyAndReturnZodSchema = exports.ProcedureTimeslotCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotSelect_schema_1 = require("./objects/ProcedureTimeslotSelect.schema");
|
||||
const ProcedureTimeslotCreateManyInput_schema_1 = require("./objects/ProcedureTimeslotCreateManyInput.schema");
|
||||
exports.ProcedureTimeslotCreateManyAndReturnSchema = z.object({ select: ProcedureTimeslotSelect_schema_1.ProcedureTimeslotSelectObjectSchema.optional(), data: z.union([ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema, z.array(ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.ProcedureTimeslotCreateManyAndReturnZodSchema = z.object({ select: ProcedureTimeslotSelect_schema_1.ProcedureTimeslotSelectObjectSchema.optional(), data: z.union([ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema, z.array(ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorCreateManyAndReturnZodSchema = exports.ShoppingVendorCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorSelect_schema_1 = require("./objects/ShoppingVendorSelect.schema");
|
||||
const ShoppingVendorCreateManyInput_schema_1 = require("./objects/ShoppingVendorCreateManyInput.schema");
|
||||
exports.ShoppingVendorCreateManyAndReturnSchema = z.object({ select: ShoppingVendorSelect_schema_1.ShoppingVendorSelectObjectSchema.optional(), data: z.union([ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema, z.array(ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.ShoppingVendorCreateManyAndReturnZodSchema = z.object({ select: ShoppingVendorSelect_schema_1.ShoppingVendorSelectObjectSchema.optional(), data: z.union([ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema, z.array(ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsCreateManyAndReturnZodSchema = exports.TwilioSettingsCreateManyAndReturnSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsSelect_schema_1 = require("./objects/TwilioSettingsSelect.schema");
|
||||
const TwilioSettingsCreateManyInput_schema_1 = require("./objects/TwilioSettingsCreateManyInput.schema");
|
||||
exports.TwilioSettingsCreateManyAndReturnSchema = z.object({ select: TwilioSettingsSelect_schema_1.TwilioSettingsSelectObjectSchema.optional(), data: z.union([TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema, z.array(TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.TwilioSettingsCreateManyAndReturnZodSchema = z.object({ select: TwilioSettingsSelect_schema_1.TwilioSettingsSelectObjectSchema.optional(), data: z.union([TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema, z.array(TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileCreateManyZodSchema = exports.AppointmentFileCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileCreateManyInput_schema_1 = require("./objects/AppointmentFileCreateManyInput.schema");
|
||||
exports.AppointmentFileCreateManySchema = z.object({ data: z.union([AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.AppointmentFileCreateManyZodSchema = z.object({ data: z.union([AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInput_schema_1.AppointmentFileCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchCreateManyZodSchema = exports.CommissionBatchCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchCreateManyInput_schema_1 = require("./objects/CommissionBatchCreateManyInput.schema");
|
||||
exports.CommissionBatchCreateManySchema = z.object({ data: z.union([CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema, z.array(CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.CommissionBatchCreateManyZodSchema = z.object({ data: z.union([CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema, z.array(CommissionBatchCreateManyInput_schema_1.CommissionBatchCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemCreateManyZodSchema = exports.CommissionBatchItemCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemCreateManyInput_schema_1 = require("./objects/CommissionBatchItemCreateManyInput.schema");
|
||||
exports.CommissionBatchItemCreateManySchema = z.object({ data: z.union([CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema, z.array(CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.CommissionBatchItemCreateManyZodSchema = z.object({ data: z.union([CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema, z.array(CommissionBatchItemCreateManyInput_schema_1.CommissionBatchItemCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactCreateManyZodSchema = exports.InsuranceContactCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactCreateManyInput_schema_1 = require("./objects/InsuranceContactCreateManyInput.schema");
|
||||
exports.InsuranceContactCreateManySchema = z.object({ data: z.union([InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema, z.array(InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.InsuranceContactCreateManyZodSchema = z.object({ data: z.union([InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema, z.array(InsuranceContactCreateManyInput_schema_1.InsuranceContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
40
packages/db/shared/schemas/createManyOfficeContact.schema.js
Normal file
40
packages/db/shared/schemas/createManyOfficeContact.schema.js
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactCreateManyZodSchema = exports.OfficeContactCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactCreateManyInput_schema_1 = require("./objects/OfficeContactCreateManyInput.schema");
|
||||
exports.OfficeContactCreateManySchema = z.object({ data: z.union([OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema, z.array(OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.OfficeContactCreateManyZodSchema = z.object({ data: z.union([OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema, z.array(OfficeContactCreateManyInput_schema_1.OfficeContactCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
40
packages/db/shared/schemas/createManyOfficeHours.schema.js
Normal file
40
packages/db/shared/schemas/createManyOfficeHours.schema.js
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursCreateManyZodSchema = exports.OfficeHoursCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursCreateManyInput_schema_1 = require("./objects/OfficeHoursCreateManyInput.schema");
|
||||
exports.OfficeHoursCreateManySchema = z.object({ data: z.union([OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema, z.array(OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.OfficeHoursCreateManyZodSchema = z.object({ data: z.union([OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema, z.array(OfficeHoursCreateManyInput_schema_1.OfficeHoursCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationCreateManyZodSchema = exports.PatientConversationCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationCreateManyInput_schema_1 = require("./objects/PatientConversationCreateManyInput.schema");
|
||||
exports.PatientConversationCreateManySchema = z.object({ data: z.union([PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema, z.array(PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.PatientConversationCreateManyZodSchema = z.object({ data: z.union([PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema, z.array(PatientConversationCreateManyInput_schema_1.PatientConversationCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotCreateManyZodSchema = exports.ProcedureTimeslotCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotCreateManyInput_schema_1 = require("./objects/ProcedureTimeslotCreateManyInput.schema");
|
||||
exports.ProcedureTimeslotCreateManySchema = z.object({ data: z.union([ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema, z.array(ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.ProcedureTimeslotCreateManyZodSchema = z.object({ data: z.union([ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema, z.array(ProcedureTimeslotCreateManyInput_schema_1.ProcedureTimeslotCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorCreateManyZodSchema = exports.ShoppingVendorCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorCreateManyInput_schema_1 = require("./objects/ShoppingVendorCreateManyInput.schema");
|
||||
exports.ShoppingVendorCreateManySchema = z.object({ data: z.union([ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema, z.array(ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.ShoppingVendorCreateManyZodSchema = z.object({ data: z.union([ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema, z.array(ShoppingVendorCreateManyInput_schema_1.ShoppingVendorCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsCreateManyZodSchema = exports.TwilioSettingsCreateManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsCreateManyInput_schema_1 = require("./objects/TwilioSettingsCreateManyInput.schema");
|
||||
exports.TwilioSettingsCreateManySchema = z.object({ data: z.union([TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema, z.array(TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
exports.TwilioSettingsCreateManyZodSchema = z.object({ data: z.union([TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema, z.array(TwilioSettingsCreateManyInput_schema_1.TwilioSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
43
packages/db/shared/schemas/createOneAiSettings.schema.js
Normal file
43
packages/db/shared/schemas/createOneAiSettings.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsCreateOneZodSchema = exports.AiSettingsCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsSelect_schema_1 = require("./objects/AiSettingsSelect.schema");
|
||||
const AiSettingsInclude_schema_1 = require("./objects/AiSettingsInclude.schema");
|
||||
const AiSettingsCreateInput_schema_1 = require("./objects/AiSettingsCreateInput.schema");
|
||||
const AiSettingsUncheckedCreateInput_schema_1 = require("./objects/AiSettingsUncheckedCreateInput.schema");
|
||||
exports.AiSettingsCreateOneSchema = z.object({ select: AiSettingsSelect_schema_1.AiSettingsSelectObjectSchema.optional(), include: AiSettingsInclude_schema_1.AiSettingsIncludeObjectSchema.optional(), data: z.union([AiSettingsCreateInput_schema_1.AiSettingsCreateInputObjectSchema, AiSettingsUncheckedCreateInput_schema_1.AiSettingsUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.AiSettingsCreateOneZodSchema = z.object({ select: AiSettingsSelect_schema_1.AiSettingsSelectObjectSchema.optional(), include: AiSettingsInclude_schema_1.AiSettingsIncludeObjectSchema.optional(), data: z.union([AiSettingsCreateInput_schema_1.AiSettingsCreateInputObjectSchema, AiSettingsUncheckedCreateInput_schema_1.AiSettingsUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileCreateOneZodSchema = exports.AppointmentFileCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileSelect_schema_1 = require("./objects/AppointmentFileSelect.schema");
|
||||
const AppointmentFileInclude_schema_1 = require("./objects/AppointmentFileInclude.schema");
|
||||
const AppointmentFileCreateInput_schema_1 = require("./objects/AppointmentFileCreateInput.schema");
|
||||
const AppointmentFileUncheckedCreateInput_schema_1 = require("./objects/AppointmentFileUncheckedCreateInput.schema");
|
||||
exports.AppointmentFileCreateOneSchema = z.object({ select: AppointmentFileSelect_schema_1.AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileInclude_schema_1.AppointmentFileIncludeObjectSchema.optional(), data: z.union([AppointmentFileCreateInput_schema_1.AppointmentFileCreateInputObjectSchema, AppointmentFileUncheckedCreateInput_schema_1.AppointmentFileUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.AppointmentFileCreateOneZodSchema = z.object({ select: AppointmentFileSelect_schema_1.AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileInclude_schema_1.AppointmentFileIncludeObjectSchema.optional(), data: z.union([AppointmentFileCreateInput_schema_1.AppointmentFileCreateInputObjectSchema, AppointmentFileUncheckedCreateInput_schema_1.AppointmentFileUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchCreateOneZodSchema = exports.CommissionBatchCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchSelect_schema_1 = require("./objects/CommissionBatchSelect.schema");
|
||||
const CommissionBatchInclude_schema_1 = require("./objects/CommissionBatchInclude.schema");
|
||||
const CommissionBatchCreateInput_schema_1 = require("./objects/CommissionBatchCreateInput.schema");
|
||||
const CommissionBatchUncheckedCreateInput_schema_1 = require("./objects/CommissionBatchUncheckedCreateInput.schema");
|
||||
exports.CommissionBatchCreateOneSchema = z.object({ select: CommissionBatchSelect_schema_1.CommissionBatchSelectObjectSchema.optional(), include: CommissionBatchInclude_schema_1.CommissionBatchIncludeObjectSchema.optional(), data: z.union([CommissionBatchCreateInput_schema_1.CommissionBatchCreateInputObjectSchema, CommissionBatchUncheckedCreateInput_schema_1.CommissionBatchUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.CommissionBatchCreateOneZodSchema = z.object({ select: CommissionBatchSelect_schema_1.CommissionBatchSelectObjectSchema.optional(), include: CommissionBatchInclude_schema_1.CommissionBatchIncludeObjectSchema.optional(), data: z.union([CommissionBatchCreateInput_schema_1.CommissionBatchCreateInputObjectSchema, CommissionBatchUncheckedCreateInput_schema_1.CommissionBatchUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemCreateOneZodSchema = exports.CommissionBatchItemCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemSelect_schema_1 = require("./objects/CommissionBatchItemSelect.schema");
|
||||
const CommissionBatchItemInclude_schema_1 = require("./objects/CommissionBatchItemInclude.schema");
|
||||
const CommissionBatchItemCreateInput_schema_1 = require("./objects/CommissionBatchItemCreateInput.schema");
|
||||
const CommissionBatchItemUncheckedCreateInput_schema_1 = require("./objects/CommissionBatchItemUncheckedCreateInput.schema");
|
||||
exports.CommissionBatchItemCreateOneSchema = z.object({ select: CommissionBatchItemSelect_schema_1.CommissionBatchItemSelectObjectSchema.optional(), include: CommissionBatchItemInclude_schema_1.CommissionBatchItemIncludeObjectSchema.optional(), data: z.union([CommissionBatchItemCreateInput_schema_1.CommissionBatchItemCreateInputObjectSchema, CommissionBatchItemUncheckedCreateInput_schema_1.CommissionBatchItemUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.CommissionBatchItemCreateOneZodSchema = z.object({ select: CommissionBatchItemSelect_schema_1.CommissionBatchItemSelectObjectSchema.optional(), include: CommissionBatchItemInclude_schema_1.CommissionBatchItemIncludeObjectSchema.optional(), data: z.union([CommissionBatchItemCreateInput_schema_1.CommissionBatchItemCreateInputObjectSchema, CommissionBatchItemUncheckedCreateInput_schema_1.CommissionBatchItemUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactCreateOneZodSchema = exports.InsuranceContactCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactSelect_schema_1 = require("./objects/InsuranceContactSelect.schema");
|
||||
const InsuranceContactInclude_schema_1 = require("./objects/InsuranceContactInclude.schema");
|
||||
const InsuranceContactCreateInput_schema_1 = require("./objects/InsuranceContactCreateInput.schema");
|
||||
const InsuranceContactUncheckedCreateInput_schema_1 = require("./objects/InsuranceContactUncheckedCreateInput.schema");
|
||||
exports.InsuranceContactCreateOneSchema = z.object({ select: InsuranceContactSelect_schema_1.InsuranceContactSelectObjectSchema.optional(), include: InsuranceContactInclude_schema_1.InsuranceContactIncludeObjectSchema.optional(), data: z.union([InsuranceContactCreateInput_schema_1.InsuranceContactCreateInputObjectSchema, InsuranceContactUncheckedCreateInput_schema_1.InsuranceContactUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.InsuranceContactCreateOneZodSchema = z.object({ select: InsuranceContactSelect_schema_1.InsuranceContactSelectObjectSchema.optional(), include: InsuranceContactInclude_schema_1.InsuranceContactIncludeObjectSchema.optional(), data: z.union([InsuranceContactCreateInput_schema_1.InsuranceContactCreateInputObjectSchema, InsuranceContactUncheckedCreateInput_schema_1.InsuranceContactUncheckedCreateInputObjectSchema]) }).strict();
|
||||
43
packages/db/shared/schemas/createOneOfficeContact.schema.js
Normal file
43
packages/db/shared/schemas/createOneOfficeContact.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactCreateOneZodSchema = exports.OfficeContactCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactSelect_schema_1 = require("./objects/OfficeContactSelect.schema");
|
||||
const OfficeContactInclude_schema_1 = require("./objects/OfficeContactInclude.schema");
|
||||
const OfficeContactCreateInput_schema_1 = require("./objects/OfficeContactCreateInput.schema");
|
||||
const OfficeContactUncheckedCreateInput_schema_1 = require("./objects/OfficeContactUncheckedCreateInput.schema");
|
||||
exports.OfficeContactCreateOneSchema = z.object({ select: OfficeContactSelect_schema_1.OfficeContactSelectObjectSchema.optional(), include: OfficeContactInclude_schema_1.OfficeContactIncludeObjectSchema.optional(), data: z.union([OfficeContactCreateInput_schema_1.OfficeContactCreateInputObjectSchema, OfficeContactUncheckedCreateInput_schema_1.OfficeContactUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.OfficeContactCreateOneZodSchema = z.object({ select: OfficeContactSelect_schema_1.OfficeContactSelectObjectSchema.optional(), include: OfficeContactInclude_schema_1.OfficeContactIncludeObjectSchema.optional(), data: z.union([OfficeContactCreateInput_schema_1.OfficeContactCreateInputObjectSchema, OfficeContactUncheckedCreateInput_schema_1.OfficeContactUncheckedCreateInputObjectSchema]) }).strict();
|
||||
43
packages/db/shared/schemas/createOneOfficeHours.schema.js
Normal file
43
packages/db/shared/schemas/createOneOfficeHours.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursCreateOneZodSchema = exports.OfficeHoursCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursSelect_schema_1 = require("./objects/OfficeHoursSelect.schema");
|
||||
const OfficeHoursInclude_schema_1 = require("./objects/OfficeHoursInclude.schema");
|
||||
const OfficeHoursCreateInput_schema_1 = require("./objects/OfficeHoursCreateInput.schema");
|
||||
const OfficeHoursUncheckedCreateInput_schema_1 = require("./objects/OfficeHoursUncheckedCreateInput.schema");
|
||||
exports.OfficeHoursCreateOneSchema = z.object({ select: OfficeHoursSelect_schema_1.OfficeHoursSelectObjectSchema.optional(), include: OfficeHoursInclude_schema_1.OfficeHoursIncludeObjectSchema.optional(), data: z.union([OfficeHoursCreateInput_schema_1.OfficeHoursCreateInputObjectSchema, OfficeHoursUncheckedCreateInput_schema_1.OfficeHoursUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.OfficeHoursCreateOneZodSchema = z.object({ select: OfficeHoursSelect_schema_1.OfficeHoursSelectObjectSchema.optional(), include: OfficeHoursInclude_schema_1.OfficeHoursIncludeObjectSchema.optional(), data: z.union([OfficeHoursCreateInput_schema_1.OfficeHoursCreateInputObjectSchema, OfficeHoursUncheckedCreateInput_schema_1.OfficeHoursUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationCreateOneZodSchema = exports.PatientConversationCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationSelect_schema_1 = require("./objects/PatientConversationSelect.schema");
|
||||
const PatientConversationInclude_schema_1 = require("./objects/PatientConversationInclude.schema");
|
||||
const PatientConversationCreateInput_schema_1 = require("./objects/PatientConversationCreateInput.schema");
|
||||
const PatientConversationUncheckedCreateInput_schema_1 = require("./objects/PatientConversationUncheckedCreateInput.schema");
|
||||
exports.PatientConversationCreateOneSchema = z.object({ select: PatientConversationSelect_schema_1.PatientConversationSelectObjectSchema.optional(), include: PatientConversationInclude_schema_1.PatientConversationIncludeObjectSchema.optional(), data: z.union([PatientConversationCreateInput_schema_1.PatientConversationCreateInputObjectSchema, PatientConversationUncheckedCreateInput_schema_1.PatientConversationUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.PatientConversationCreateOneZodSchema = z.object({ select: PatientConversationSelect_schema_1.PatientConversationSelectObjectSchema.optional(), include: PatientConversationInclude_schema_1.PatientConversationIncludeObjectSchema.optional(), data: z.union([PatientConversationCreateInput_schema_1.PatientConversationCreateInputObjectSchema, PatientConversationUncheckedCreateInput_schema_1.PatientConversationUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotCreateOneZodSchema = exports.ProcedureTimeslotCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotSelect_schema_1 = require("./objects/ProcedureTimeslotSelect.schema");
|
||||
const ProcedureTimeslotInclude_schema_1 = require("./objects/ProcedureTimeslotInclude.schema");
|
||||
const ProcedureTimeslotCreateInput_schema_1 = require("./objects/ProcedureTimeslotCreateInput.schema");
|
||||
const ProcedureTimeslotUncheckedCreateInput_schema_1 = require("./objects/ProcedureTimeslotUncheckedCreateInput.schema");
|
||||
exports.ProcedureTimeslotCreateOneSchema = z.object({ select: ProcedureTimeslotSelect_schema_1.ProcedureTimeslotSelectObjectSchema.optional(), include: ProcedureTimeslotInclude_schema_1.ProcedureTimeslotIncludeObjectSchema.optional(), data: z.union([ProcedureTimeslotCreateInput_schema_1.ProcedureTimeslotCreateInputObjectSchema, ProcedureTimeslotUncheckedCreateInput_schema_1.ProcedureTimeslotUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.ProcedureTimeslotCreateOneZodSchema = z.object({ select: ProcedureTimeslotSelect_schema_1.ProcedureTimeslotSelectObjectSchema.optional(), include: ProcedureTimeslotInclude_schema_1.ProcedureTimeslotIncludeObjectSchema.optional(), data: z.union([ProcedureTimeslotCreateInput_schema_1.ProcedureTimeslotCreateInputObjectSchema, ProcedureTimeslotUncheckedCreateInput_schema_1.ProcedureTimeslotUncheckedCreateInputObjectSchema]) }).strict();
|
||||
43
packages/db/shared/schemas/createOneShoppingVendor.schema.js
Normal file
43
packages/db/shared/schemas/createOneShoppingVendor.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorCreateOneZodSchema = exports.ShoppingVendorCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorSelect_schema_1 = require("./objects/ShoppingVendorSelect.schema");
|
||||
const ShoppingVendorInclude_schema_1 = require("./objects/ShoppingVendorInclude.schema");
|
||||
const ShoppingVendorCreateInput_schema_1 = require("./objects/ShoppingVendorCreateInput.schema");
|
||||
const ShoppingVendorUncheckedCreateInput_schema_1 = require("./objects/ShoppingVendorUncheckedCreateInput.schema");
|
||||
exports.ShoppingVendorCreateOneSchema = z.object({ select: ShoppingVendorSelect_schema_1.ShoppingVendorSelectObjectSchema.optional(), include: ShoppingVendorInclude_schema_1.ShoppingVendorIncludeObjectSchema.optional(), data: z.union([ShoppingVendorCreateInput_schema_1.ShoppingVendorCreateInputObjectSchema, ShoppingVendorUncheckedCreateInput_schema_1.ShoppingVendorUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.ShoppingVendorCreateOneZodSchema = z.object({ select: ShoppingVendorSelect_schema_1.ShoppingVendorSelectObjectSchema.optional(), include: ShoppingVendorInclude_schema_1.ShoppingVendorIncludeObjectSchema.optional(), data: z.union([ShoppingVendorCreateInput_schema_1.ShoppingVendorCreateInputObjectSchema, ShoppingVendorUncheckedCreateInput_schema_1.ShoppingVendorUncheckedCreateInputObjectSchema]) }).strict();
|
||||
43
packages/db/shared/schemas/createOneTwilioSettings.schema.js
Normal file
43
packages/db/shared/schemas/createOneTwilioSettings.schema.js
Normal file
@@ -0,0 +1,43 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsCreateOneZodSchema = exports.TwilioSettingsCreateOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsSelect_schema_1 = require("./objects/TwilioSettingsSelect.schema");
|
||||
const TwilioSettingsInclude_schema_1 = require("./objects/TwilioSettingsInclude.schema");
|
||||
const TwilioSettingsCreateInput_schema_1 = require("./objects/TwilioSettingsCreateInput.schema");
|
||||
const TwilioSettingsUncheckedCreateInput_schema_1 = require("./objects/TwilioSettingsUncheckedCreateInput.schema");
|
||||
exports.TwilioSettingsCreateOneSchema = z.object({ select: TwilioSettingsSelect_schema_1.TwilioSettingsSelectObjectSchema.optional(), include: TwilioSettingsInclude_schema_1.TwilioSettingsIncludeObjectSchema.optional(), data: z.union([TwilioSettingsCreateInput_schema_1.TwilioSettingsCreateInputObjectSchema, TwilioSettingsUncheckedCreateInput_schema_1.TwilioSettingsUncheckedCreateInputObjectSchema]) }).strict();
|
||||
exports.TwilioSettingsCreateOneZodSchema = z.object({ select: TwilioSettingsSelect_schema_1.TwilioSettingsSelectObjectSchema.optional(), include: TwilioSettingsInclude_schema_1.TwilioSettingsIncludeObjectSchema.optional(), data: z.union([TwilioSettingsCreateInput_schema_1.TwilioSettingsCreateInputObjectSchema, TwilioSettingsUncheckedCreateInput_schema_1.TwilioSettingsUncheckedCreateInputObjectSchema]) }).strict();
|
||||
40
packages/db/shared/schemas/deleteManyAiSettings.schema.js
Normal file
40
packages/db/shared/schemas/deleteManyAiSettings.schema.js
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsDeleteManyZodSchema = exports.AiSettingsDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsWhereInput_schema_1 = require("./objects/AiSettingsWhereInput.schema");
|
||||
exports.AiSettingsDeleteManySchema = z.object({ where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional() }).strict();
|
||||
exports.AiSettingsDeleteManyZodSchema = z.object({ where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileDeleteManyZodSchema = exports.AppointmentFileDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileWhereInput_schema_1 = require("./objects/AppointmentFileWhereInput.schema");
|
||||
exports.AppointmentFileDeleteManySchema = z.object({ where: AppointmentFileWhereInput_schema_1.AppointmentFileWhereInputObjectSchema.optional() }).strict();
|
||||
exports.AppointmentFileDeleteManyZodSchema = z.object({ where: AppointmentFileWhereInput_schema_1.AppointmentFileWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchDeleteManyZodSchema = exports.CommissionBatchDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchWhereInput_schema_1 = require("./objects/CommissionBatchWhereInput.schema");
|
||||
exports.CommissionBatchDeleteManySchema = z.object({ where: CommissionBatchWhereInput_schema_1.CommissionBatchWhereInputObjectSchema.optional() }).strict();
|
||||
exports.CommissionBatchDeleteManyZodSchema = z.object({ where: CommissionBatchWhereInput_schema_1.CommissionBatchWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemDeleteManyZodSchema = exports.CommissionBatchItemDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemWhereInput_schema_1 = require("./objects/CommissionBatchItemWhereInput.schema");
|
||||
exports.CommissionBatchItemDeleteManySchema = z.object({ where: CommissionBatchItemWhereInput_schema_1.CommissionBatchItemWhereInputObjectSchema.optional() }).strict();
|
||||
exports.CommissionBatchItemDeleteManyZodSchema = z.object({ where: CommissionBatchItemWhereInput_schema_1.CommissionBatchItemWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactDeleteManyZodSchema = exports.InsuranceContactDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactWhereInput_schema_1 = require("./objects/InsuranceContactWhereInput.schema");
|
||||
exports.InsuranceContactDeleteManySchema = z.object({ where: InsuranceContactWhereInput_schema_1.InsuranceContactWhereInputObjectSchema.optional() }).strict();
|
||||
exports.InsuranceContactDeleteManyZodSchema = z.object({ where: InsuranceContactWhereInput_schema_1.InsuranceContactWhereInputObjectSchema.optional() }).strict();
|
||||
40
packages/db/shared/schemas/deleteManyOfficeContact.schema.js
Normal file
40
packages/db/shared/schemas/deleteManyOfficeContact.schema.js
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactDeleteManyZodSchema = exports.OfficeContactDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactWhereInput_schema_1 = require("./objects/OfficeContactWhereInput.schema");
|
||||
exports.OfficeContactDeleteManySchema = z.object({ where: OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema.optional() }).strict();
|
||||
exports.OfficeContactDeleteManyZodSchema = z.object({ where: OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema.optional() }).strict();
|
||||
40
packages/db/shared/schemas/deleteManyOfficeHours.schema.js
Normal file
40
packages/db/shared/schemas/deleteManyOfficeHours.schema.js
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursDeleteManyZodSchema = exports.OfficeHoursDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursWhereInput_schema_1 = require("./objects/OfficeHoursWhereInput.schema");
|
||||
exports.OfficeHoursDeleteManySchema = z.object({ where: OfficeHoursWhereInput_schema_1.OfficeHoursWhereInputObjectSchema.optional() }).strict();
|
||||
exports.OfficeHoursDeleteManyZodSchema = z.object({ where: OfficeHoursWhereInput_schema_1.OfficeHoursWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationDeleteManyZodSchema = exports.PatientConversationDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationWhereInput_schema_1 = require("./objects/PatientConversationWhereInput.schema");
|
||||
exports.PatientConversationDeleteManySchema = z.object({ where: PatientConversationWhereInput_schema_1.PatientConversationWhereInputObjectSchema.optional() }).strict();
|
||||
exports.PatientConversationDeleteManyZodSchema = z.object({ where: PatientConversationWhereInput_schema_1.PatientConversationWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotDeleteManyZodSchema = exports.ProcedureTimeslotDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotWhereInput_schema_1 = require("./objects/ProcedureTimeslotWhereInput.schema");
|
||||
exports.ProcedureTimeslotDeleteManySchema = z.object({ where: ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema.optional() }).strict();
|
||||
exports.ProcedureTimeslotDeleteManyZodSchema = z.object({ where: ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorDeleteManyZodSchema = exports.ShoppingVendorDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorWhereInput_schema_1 = require("./objects/ShoppingVendorWhereInput.schema");
|
||||
exports.ShoppingVendorDeleteManySchema = z.object({ where: ShoppingVendorWhereInput_schema_1.ShoppingVendorWhereInputObjectSchema.optional() }).strict();
|
||||
exports.ShoppingVendorDeleteManyZodSchema = z.object({ where: ShoppingVendorWhereInput_schema_1.ShoppingVendorWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsDeleteManyZodSchema = exports.TwilioSettingsDeleteManySchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsWhereInput_schema_1 = require("./objects/TwilioSettingsWhereInput.schema");
|
||||
exports.TwilioSettingsDeleteManySchema = z.object({ where: TwilioSettingsWhereInput_schema_1.TwilioSettingsWhereInputObjectSchema.optional() }).strict();
|
||||
exports.TwilioSettingsDeleteManyZodSchema = z.object({ where: TwilioSettingsWhereInput_schema_1.TwilioSettingsWhereInputObjectSchema.optional() }).strict();
|
||||
42
packages/db/shared/schemas/deleteOneAiSettings.schema.js
Normal file
42
packages/db/shared/schemas/deleteOneAiSettings.schema.js
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsDeleteOneZodSchema = exports.AiSettingsDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsSelect_schema_1 = require("./objects/AiSettingsSelect.schema");
|
||||
const AiSettingsInclude_schema_1 = require("./objects/AiSettingsInclude.schema");
|
||||
const AiSettingsWhereUniqueInput_schema_1 = require("./objects/AiSettingsWhereUniqueInput.schema");
|
||||
exports.AiSettingsDeleteOneSchema = z.object({ select: AiSettingsSelect_schema_1.AiSettingsSelectObjectSchema.optional(), include: AiSettingsInclude_schema_1.AiSettingsIncludeObjectSchema.optional(), where: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema }).strict();
|
||||
exports.AiSettingsDeleteOneZodSchema = z.object({ select: AiSettingsSelect_schema_1.AiSettingsSelectObjectSchema.optional(), include: AiSettingsInclude_schema_1.AiSettingsIncludeObjectSchema.optional(), where: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileDeleteOneZodSchema = exports.AppointmentFileDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AppointmentFileSelect_schema_1 = require("./objects/AppointmentFileSelect.schema");
|
||||
const AppointmentFileInclude_schema_1 = require("./objects/AppointmentFileInclude.schema");
|
||||
const AppointmentFileWhereUniqueInput_schema_1 = require("./objects/AppointmentFileWhereUniqueInput.schema");
|
||||
exports.AppointmentFileDeleteOneSchema = z.object({ select: AppointmentFileSelect_schema_1.AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileInclude_schema_1.AppointmentFileIncludeObjectSchema.optional(), where: AppointmentFileWhereUniqueInput_schema_1.AppointmentFileWhereUniqueInputObjectSchema }).strict();
|
||||
exports.AppointmentFileDeleteOneZodSchema = z.object({ select: AppointmentFileSelect_schema_1.AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileInclude_schema_1.AppointmentFileIncludeObjectSchema.optional(), where: AppointmentFileWhereUniqueInput_schema_1.AppointmentFileWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchDeleteOneZodSchema = exports.CommissionBatchDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchSelect_schema_1 = require("./objects/CommissionBatchSelect.schema");
|
||||
const CommissionBatchInclude_schema_1 = require("./objects/CommissionBatchInclude.schema");
|
||||
const CommissionBatchWhereUniqueInput_schema_1 = require("./objects/CommissionBatchWhereUniqueInput.schema");
|
||||
exports.CommissionBatchDeleteOneSchema = z.object({ select: CommissionBatchSelect_schema_1.CommissionBatchSelectObjectSchema.optional(), include: CommissionBatchInclude_schema_1.CommissionBatchIncludeObjectSchema.optional(), where: CommissionBatchWhereUniqueInput_schema_1.CommissionBatchWhereUniqueInputObjectSchema }).strict();
|
||||
exports.CommissionBatchDeleteOneZodSchema = z.object({ select: CommissionBatchSelect_schema_1.CommissionBatchSelectObjectSchema.optional(), include: CommissionBatchInclude_schema_1.CommissionBatchIncludeObjectSchema.optional(), where: CommissionBatchWhereUniqueInput_schema_1.CommissionBatchWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemDeleteOneZodSchema = exports.CommissionBatchItemDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const CommissionBatchItemSelect_schema_1 = require("./objects/CommissionBatchItemSelect.schema");
|
||||
const CommissionBatchItemInclude_schema_1 = require("./objects/CommissionBatchItemInclude.schema");
|
||||
const CommissionBatchItemWhereUniqueInput_schema_1 = require("./objects/CommissionBatchItemWhereUniqueInput.schema");
|
||||
exports.CommissionBatchItemDeleteOneSchema = z.object({ select: CommissionBatchItemSelect_schema_1.CommissionBatchItemSelectObjectSchema.optional(), include: CommissionBatchItemInclude_schema_1.CommissionBatchItemIncludeObjectSchema.optional(), where: CommissionBatchItemWhereUniqueInput_schema_1.CommissionBatchItemWhereUniqueInputObjectSchema }).strict();
|
||||
exports.CommissionBatchItemDeleteOneZodSchema = z.object({ select: CommissionBatchItemSelect_schema_1.CommissionBatchItemSelectObjectSchema.optional(), include: CommissionBatchItemInclude_schema_1.CommissionBatchItemIncludeObjectSchema.optional(), where: CommissionBatchItemWhereUniqueInput_schema_1.CommissionBatchItemWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactDeleteOneZodSchema = exports.InsuranceContactDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const InsuranceContactSelect_schema_1 = require("./objects/InsuranceContactSelect.schema");
|
||||
const InsuranceContactInclude_schema_1 = require("./objects/InsuranceContactInclude.schema");
|
||||
const InsuranceContactWhereUniqueInput_schema_1 = require("./objects/InsuranceContactWhereUniqueInput.schema");
|
||||
exports.InsuranceContactDeleteOneSchema = z.object({ select: InsuranceContactSelect_schema_1.InsuranceContactSelectObjectSchema.optional(), include: InsuranceContactInclude_schema_1.InsuranceContactIncludeObjectSchema.optional(), where: InsuranceContactWhereUniqueInput_schema_1.InsuranceContactWhereUniqueInputObjectSchema }).strict();
|
||||
exports.InsuranceContactDeleteOneZodSchema = z.object({ select: InsuranceContactSelect_schema_1.InsuranceContactSelectObjectSchema.optional(), include: InsuranceContactInclude_schema_1.InsuranceContactIncludeObjectSchema.optional(), where: InsuranceContactWhereUniqueInput_schema_1.InsuranceContactWhereUniqueInputObjectSchema }).strict();
|
||||
42
packages/db/shared/schemas/deleteOneOfficeContact.schema.js
Normal file
42
packages/db/shared/schemas/deleteOneOfficeContact.schema.js
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactDeleteOneZodSchema = exports.OfficeContactDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeContactSelect_schema_1 = require("./objects/OfficeContactSelect.schema");
|
||||
const OfficeContactInclude_schema_1 = require("./objects/OfficeContactInclude.schema");
|
||||
const OfficeContactWhereUniqueInput_schema_1 = require("./objects/OfficeContactWhereUniqueInput.schema");
|
||||
exports.OfficeContactDeleteOneSchema = z.object({ select: OfficeContactSelect_schema_1.OfficeContactSelectObjectSchema.optional(), include: OfficeContactInclude_schema_1.OfficeContactIncludeObjectSchema.optional(), where: OfficeContactWhereUniqueInput_schema_1.OfficeContactWhereUniqueInputObjectSchema }).strict();
|
||||
exports.OfficeContactDeleteOneZodSchema = z.object({ select: OfficeContactSelect_schema_1.OfficeContactSelectObjectSchema.optional(), include: OfficeContactInclude_schema_1.OfficeContactIncludeObjectSchema.optional(), where: OfficeContactWhereUniqueInput_schema_1.OfficeContactWhereUniqueInputObjectSchema }).strict();
|
||||
42
packages/db/shared/schemas/deleteOneOfficeHours.schema.js
Normal file
42
packages/db/shared/schemas/deleteOneOfficeHours.schema.js
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursDeleteOneZodSchema = exports.OfficeHoursDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const OfficeHoursSelect_schema_1 = require("./objects/OfficeHoursSelect.schema");
|
||||
const OfficeHoursInclude_schema_1 = require("./objects/OfficeHoursInclude.schema");
|
||||
const OfficeHoursWhereUniqueInput_schema_1 = require("./objects/OfficeHoursWhereUniqueInput.schema");
|
||||
exports.OfficeHoursDeleteOneSchema = z.object({ select: OfficeHoursSelect_schema_1.OfficeHoursSelectObjectSchema.optional(), include: OfficeHoursInclude_schema_1.OfficeHoursIncludeObjectSchema.optional(), where: OfficeHoursWhereUniqueInput_schema_1.OfficeHoursWhereUniqueInputObjectSchema }).strict();
|
||||
exports.OfficeHoursDeleteOneZodSchema = z.object({ select: OfficeHoursSelect_schema_1.OfficeHoursSelectObjectSchema.optional(), include: OfficeHoursInclude_schema_1.OfficeHoursIncludeObjectSchema.optional(), where: OfficeHoursWhereUniqueInput_schema_1.OfficeHoursWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationDeleteOneZodSchema = exports.PatientConversationDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const PatientConversationSelect_schema_1 = require("./objects/PatientConversationSelect.schema");
|
||||
const PatientConversationInclude_schema_1 = require("./objects/PatientConversationInclude.schema");
|
||||
const PatientConversationWhereUniqueInput_schema_1 = require("./objects/PatientConversationWhereUniqueInput.schema");
|
||||
exports.PatientConversationDeleteOneSchema = z.object({ select: PatientConversationSelect_schema_1.PatientConversationSelectObjectSchema.optional(), include: PatientConversationInclude_schema_1.PatientConversationIncludeObjectSchema.optional(), where: PatientConversationWhereUniqueInput_schema_1.PatientConversationWhereUniqueInputObjectSchema }).strict();
|
||||
exports.PatientConversationDeleteOneZodSchema = z.object({ select: PatientConversationSelect_schema_1.PatientConversationSelectObjectSchema.optional(), include: PatientConversationInclude_schema_1.PatientConversationIncludeObjectSchema.optional(), where: PatientConversationWhereUniqueInput_schema_1.PatientConversationWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotDeleteOneZodSchema = exports.ProcedureTimeslotDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ProcedureTimeslotSelect_schema_1 = require("./objects/ProcedureTimeslotSelect.schema");
|
||||
const ProcedureTimeslotInclude_schema_1 = require("./objects/ProcedureTimeslotInclude.schema");
|
||||
const ProcedureTimeslotWhereUniqueInput_schema_1 = require("./objects/ProcedureTimeslotWhereUniqueInput.schema");
|
||||
exports.ProcedureTimeslotDeleteOneSchema = z.object({ select: ProcedureTimeslotSelect_schema_1.ProcedureTimeslotSelectObjectSchema.optional(), include: ProcedureTimeslotInclude_schema_1.ProcedureTimeslotIncludeObjectSchema.optional(), where: ProcedureTimeslotWhereUniqueInput_schema_1.ProcedureTimeslotWhereUniqueInputObjectSchema }).strict();
|
||||
exports.ProcedureTimeslotDeleteOneZodSchema = z.object({ select: ProcedureTimeslotSelect_schema_1.ProcedureTimeslotSelectObjectSchema.optional(), include: ProcedureTimeslotInclude_schema_1.ProcedureTimeslotIncludeObjectSchema.optional(), where: ProcedureTimeslotWhereUniqueInput_schema_1.ProcedureTimeslotWhereUniqueInputObjectSchema }).strict();
|
||||
42
packages/db/shared/schemas/deleteOneShoppingVendor.schema.js
Normal file
42
packages/db/shared/schemas/deleteOneShoppingVendor.schema.js
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorDeleteOneZodSchema = exports.ShoppingVendorDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const ShoppingVendorSelect_schema_1 = require("./objects/ShoppingVendorSelect.schema");
|
||||
const ShoppingVendorInclude_schema_1 = require("./objects/ShoppingVendorInclude.schema");
|
||||
const ShoppingVendorWhereUniqueInput_schema_1 = require("./objects/ShoppingVendorWhereUniqueInput.schema");
|
||||
exports.ShoppingVendorDeleteOneSchema = z.object({ select: ShoppingVendorSelect_schema_1.ShoppingVendorSelectObjectSchema.optional(), include: ShoppingVendorInclude_schema_1.ShoppingVendorIncludeObjectSchema.optional(), where: ShoppingVendorWhereUniqueInput_schema_1.ShoppingVendorWhereUniqueInputObjectSchema }).strict();
|
||||
exports.ShoppingVendorDeleteOneZodSchema = z.object({ select: ShoppingVendorSelect_schema_1.ShoppingVendorSelectObjectSchema.optional(), include: ShoppingVendorInclude_schema_1.ShoppingVendorIncludeObjectSchema.optional(), where: ShoppingVendorWhereUniqueInput_schema_1.ShoppingVendorWhereUniqueInputObjectSchema }).strict();
|
||||
42
packages/db/shared/schemas/deleteOneTwilioSettings.schema.js
Normal file
42
packages/db/shared/schemas/deleteOneTwilioSettings.schema.js
Normal file
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsDeleteOneZodSchema = exports.TwilioSettingsDeleteOneSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const TwilioSettingsSelect_schema_1 = require("./objects/TwilioSettingsSelect.schema");
|
||||
const TwilioSettingsInclude_schema_1 = require("./objects/TwilioSettingsInclude.schema");
|
||||
const TwilioSettingsWhereUniqueInput_schema_1 = require("./objects/TwilioSettingsWhereUniqueInput.schema");
|
||||
exports.TwilioSettingsDeleteOneSchema = z.object({ select: TwilioSettingsSelect_schema_1.TwilioSettingsSelectObjectSchema.optional(), include: TwilioSettingsInclude_schema_1.TwilioSettingsIncludeObjectSchema.optional(), where: TwilioSettingsWhereUniqueInput_schema_1.TwilioSettingsWhereUniqueInputObjectSchema }).strict();
|
||||
exports.TwilioSettingsDeleteOneZodSchema = z.object({ select: TwilioSettingsSelect_schema_1.TwilioSettingsSelectObjectSchema.optional(), include: TwilioSettingsInclude_schema_1.TwilioSettingsIncludeObjectSchema.optional(), where: TwilioSettingsWhereUniqueInput_schema_1.TwilioSettingsWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.AiSettingsScalarFieldEnumSchema = z.enum(['id', 'userId', 'apiKey', 'aiEnabled', 'openAiKey', 'openAiEnabled', 'claudeAiKey', 'claudeAiEnabled', 'claudeAiModel', 'openAiModel', 'googleAiModel', 'dentalMgmtKey', 'dentalMgmtEnabled', 'afterHoursEnabled', 'openPhoneReply']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentFileScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.AppointmentFileScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'filename', 'mimeType', 'filePath']);
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'title', 'date', 'startTime', 'endTime', 'type', 'notes', 'procedureCodeNotes', 'status', 'createdAt', 'eligibilityStatus']);
|
||||
exports.AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'title', 'date', 'startTime', 'endTime', 'type', 'typeLocked', 'notes', 'procedureCodeNotes', 'status', 'movedByAi', 'createdAt', 'eligibilityStatus']);
|
||||
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ClaimScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ClaimScalarFieldEnumSchema = z.enum(['id', 'patientId', 'appointmentId', 'userId', 'staffId', 'patientName', 'memberId', 'dateOfBirth', 'remarks', 'missingTeethStatus', 'missingTeeth', 'serviceDate', 'insuranceProvider', 'createdAt', 'updatedAt', 'status', 'claimNumber', 'npiProviderId']);
|
||||
exports.ClaimScalarFieldEnumSchema = z.enum(['id', 'patientId', 'appointmentId', 'userId', 'staffId', 'patientName', 'memberId', 'dateOfBirth', 'remarks', 'missingTeethStatus', 'missingTeeth', 'serviceDate', 'insuranceProvider', 'createdAt', 'updatedAt', 'status', 'claimNumber', 'preAuthNumber', 'npiProviderId']);
|
||||
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ClaimStatusSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ClaimStatusSchema = z.enum(['PENDING', 'APPROVED', 'CANCELLED', 'REVIEW', 'VOID']);
|
||||
exports.ClaimStatusSchema = z.enum(['PENDING', 'APPROVED', 'CANCELLED', 'REVIEW', 'VOID', 'PREAUTH']);
|
||||
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CloudFolderScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.CloudFolderScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'parentId', 'createdAt', 'updatedAt']);
|
||||
exports.CloudFolderScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'parentId', 'patientId', 'createdAt', 'updatedAt']);
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchItemScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.CommissionBatchItemScalarFieldEnumSchema = z.enum(['id', 'commissionBatchId', 'paymentId', 'collectionAmount']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommissionBatchScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.CommissionBatchScalarFieldEnumSchema = z.enum(['id', 'npiProviderId', 'totalCollection', 'commissionAmount', 'notes', 'createdAt']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InsuranceContactScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.InsuranceContactScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'phoneNumber', 'createdAt']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.JsonNullValueInputSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.JsonNullValueInputSchema = z.enum(['JsonNull']);
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.NpiProviderScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.NpiProviderScalarFieldEnumSchema = z.enum(['id', 'userId', 'npiNumber', 'providerName', 'createdAt']);
|
||||
exports.NpiProviderScalarFieldEnumSchema = z.enum(['id', 'userId', 'npiNumber', 'providerName', 'sortOrder', 'createdAt']);
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeContactScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.OfficeContactScalarFieldEnumSchema = z.enum(['id', 'userId', 'officeName', 'receptionistName', 'dentistName', 'phoneNumber', 'email', 'fax', 'streetAddress', 'city', 'state', 'zipCode']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OfficeHoursScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.OfficeHoursScalarFieldEnumSchema = z.enum(['id', 'userId', 'data']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientConversationScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.PatientConversationScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'stage', 'aiHandoff', 'updatedAt']);
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PatientScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.PatientScalarFieldEnumSchema = z.enum(['id', 'firstName', 'lastName', 'dateOfBirth', 'gender', 'phone', 'email', 'address', 'city', 'zipCode', 'insuranceProvider', 'insuranceId', 'groupNumber', 'policyHolder', 'allergies', 'medicalConditions', 'status', 'userId', 'createdAt']);
|
||||
exports.PatientScalarFieldEnumSchema = z.enum(['id', 'firstName', 'lastName', 'dateOfBirth', 'gender', 'phone', 'email', 'address', 'city', 'zipCode', 'insuranceProvider', 'insuranceId', 'groupNumber', 'policyHolder', 'allergies', 'medicalConditions', 'preferredLanguage', 'status', 'userId', 'createdAt', 'updatedAt']);
|
||||
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PaymentScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.PaymentScalarFieldEnumSchema = z.enum(['id', 'claimId', 'patientId', 'userId', 'updatedById', 'totalBilled', 'totalPaid', 'totalAdjusted', 'totalDue', 'status', 'notes', 'icn', 'createdAt', 'updatedAt']);
|
||||
exports.PaymentScalarFieldEnumSchema = z.enum(['id', 'claimId', 'patientId', 'userId', 'updatedById', 'npiProviderId', 'totalBilled', 'totalPaid', 'totalAdjusted', 'totalDue', 'mhPaidAmount', 'copayment', 'adjustment', 'status', 'notes', 'icn', 'createdAt', 'updatedAt']);
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ProcedureTimeslotScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ProcedureTimeslotScalarFieldEnumSchema = z.enum(['id', 'userId', 'data']);
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ServiceLineScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ServiceLineScalarFieldEnumSchema = z.enum(['id', 'claimId', 'paymentId', 'procedureCode', 'procedureDate', 'quad', 'arch', 'toothNumber', 'toothSurface', 'totalBilled', 'totalPaid', 'totalAdjusted', 'totalDue', 'status']);
|
||||
exports.ServiceLineScalarFieldEnumSchema = z.enum(['id', 'claimId', 'paymentId', 'procedureCode', 'procedureDate', 'quad', 'arch', 'toothNumber', 'toothSurface', 'icn', 'paidCode', 'allowedAmount', 'totalBilled', 'totalPaid', 'totalAdjusted', 'totalDue', 'status']);
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShoppingVendorScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ShoppingVendorScalarFieldEnumSchema = z.enum(['id', 'userId', 'vendorName', 'websiteUrl', 'loginUsername', 'loginPassword']);
|
||||
@@ -0,0 +1,38 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.TwilioSettingsScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.TwilioSettingsScalarFieldEnumSchema = z.enum(['id', 'userId', 'accountSid', 'authToken', 'phoneNumber', 'greetingMessage', 'templates']);
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.UserScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.UserScalarFieldEnumSchema = z.enum(['id', 'username', 'password', 'autoBackupEnabled', 'usbBackupEnabled']);
|
||||
exports.UserScalarFieldEnumSchema = z.enum(['id', 'username', 'password', 'autoBackupEnabled', 'autoBackupHour', 'usbBackupEnabled', 'usbBackupHour', 'autoMhCheckEnabled', 'autoMhCheckDayOfWeek', 'autoMhCheckHour']);
|
||||
|
||||
82
packages/db/shared/schemas/findFirstAiSettings.schema.js
Normal file
82
packages/db/shared/schemas/findFirstAiSettings.schema.js
Normal file
@@ -0,0 +1,82 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || (function () {
|
||||
var ownKeys = function(o) {
|
||||
ownKeys = Object.getOwnPropertyNames || function (o) {
|
||||
var ar = [];
|
||||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
||||
return ar;
|
||||
};
|
||||
return ownKeys(o);
|
||||
};
|
||||
return function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AiSettingsFindFirstZodSchema = exports.AiSettingsFindFirstSchema = exports.AiSettingsFindFirstSelectZodSchema = exports.AiSettingsFindFirstSelectSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
const AiSettingsInclude_schema_1 = require("./objects/AiSettingsInclude.schema");
|
||||
const AiSettingsOrderByWithRelationInput_schema_1 = require("./objects/AiSettingsOrderByWithRelationInput.schema");
|
||||
const AiSettingsWhereInput_schema_1 = require("./objects/AiSettingsWhereInput.schema");
|
||||
const AiSettingsWhereUniqueInput_schema_1 = require("./objects/AiSettingsWhereUniqueInput.schema");
|
||||
const AiSettingsScalarFieldEnum_schema_1 = require("./enums/AiSettingsScalarFieldEnum.schema");
|
||||
// Select schema needs to be in file to prevent circular imports
|
||||
//------------------------------------------------------
|
||||
exports.AiSettingsFindFirstSelectSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
userId: z.boolean().optional(),
|
||||
apiKey: z.boolean().optional(),
|
||||
aiEnabled: z.boolean().optional(),
|
||||
openAiKey: z.boolean().optional(),
|
||||
openAiEnabled: z.boolean().optional(),
|
||||
claudeAiKey: z.boolean().optional(),
|
||||
claudeAiEnabled: z.boolean().optional(),
|
||||
claudeAiModel: z.boolean().optional(),
|
||||
openAiModel: z.boolean().optional(),
|
||||
googleAiModel: z.boolean().optional(),
|
||||
dentalMgmtKey: z.boolean().optional(),
|
||||
dentalMgmtEnabled: z.boolean().optional(),
|
||||
afterHoursEnabled: z.boolean().optional(),
|
||||
openPhoneReply: z.boolean().optional(),
|
||||
user: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AiSettingsFindFirstSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
userId: z.boolean().optional(),
|
||||
apiKey: z.boolean().optional(),
|
||||
aiEnabled: z.boolean().optional(),
|
||||
openAiKey: z.boolean().optional(),
|
||||
openAiEnabled: z.boolean().optional(),
|
||||
claudeAiKey: z.boolean().optional(),
|
||||
claudeAiEnabled: z.boolean().optional(),
|
||||
claudeAiModel: z.boolean().optional(),
|
||||
openAiModel: z.boolean().optional(),
|
||||
googleAiModel: z.boolean().optional(),
|
||||
dentalMgmtKey: z.boolean().optional(),
|
||||
dentalMgmtEnabled: z.boolean().optional(),
|
||||
afterHoursEnabled: z.boolean().optional(),
|
||||
openPhoneReply: z.boolean().optional(),
|
||||
user: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AiSettingsFindFirstSchema = z.object({ select: exports.AiSettingsFindFirstSelectSchema.optional(), include: z.lazy(() => AiSettingsInclude_schema_1.AiSettingsIncludeObjectSchema.optional()), orderBy: z.union([AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AiSettingsScalarFieldEnum_schema_1.AiSettingsScalarFieldEnumSchema, AiSettingsScalarFieldEnum_schema_1.AiSettingsScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
exports.AiSettingsFindFirstZodSchema = z.object({ select: exports.AiSettingsFindFirstSelectSchema.optional(), include: z.lazy(() => AiSettingsInclude_schema_1.AiSettingsIncludeObjectSchema.optional()), orderBy: z.union([AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInput_schema_1.AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInput_schema_1.AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInput_schema_1.AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AiSettingsScalarFieldEnum_schema_1.AiSettingsScalarFieldEnumSchema, AiSettingsScalarFieldEnum_schema_1.AiSettingsScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
@@ -52,9 +52,11 @@ exports.AppointmentFindFirstSelectSchema = z.object({
|
||||
startTime: z.boolean().optional(),
|
||||
endTime: z.boolean().optional(),
|
||||
type: z.boolean().optional(),
|
||||
typeLocked: z.boolean().optional(),
|
||||
notes: z.boolean().optional(),
|
||||
procedureCodeNotes: z.boolean().optional(),
|
||||
status: z.boolean().optional(),
|
||||
movedByAi: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
eligibilityStatus: z.boolean().optional(),
|
||||
patient: z.boolean().optional(),
|
||||
@@ -62,6 +64,7 @@ exports.AppointmentFindFirstSelectSchema = z.object({
|
||||
staff: z.boolean().optional(),
|
||||
procedures: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
files: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AppointmentFindFirstSelectZodSchema = z.object({
|
||||
@@ -74,9 +77,11 @@ exports.AppointmentFindFirstSelectZodSchema = z.object({
|
||||
startTime: z.boolean().optional(),
|
||||
endTime: z.boolean().optional(),
|
||||
type: z.boolean().optional(),
|
||||
typeLocked: z.boolean().optional(),
|
||||
notes: z.boolean().optional(),
|
||||
procedureCodeNotes: z.boolean().optional(),
|
||||
status: z.boolean().optional(),
|
||||
movedByAi: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
eligibilityStatus: z.boolean().optional(),
|
||||
patient: z.boolean().optional(),
|
||||
@@ -84,6 +89,7 @@ exports.AppointmentFindFirstSelectZodSchema = z.object({
|
||||
staff: z.boolean().optional(),
|
||||
procedures: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
files: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AppointmentFindFirstSchema = z.object({ select: exports.AppointmentFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentInclude_schema_1.AppointmentIncludeObjectSchema.optional()), orderBy: z.union([AppointmentOrderByWithRelationInput_schema_1.AppointmentOrderByWithRelationInputObjectSchema, AppointmentOrderByWithRelationInput_schema_1.AppointmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentWhereInput_schema_1.AppointmentWhereInputObjectSchema.optional(), cursor: AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentScalarFieldEnum_schema_1.AppointmentScalarFieldEnumSchema, AppointmentScalarFieldEnum_schema_1.AppointmentScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user