all the haul
This commit is contained in:
@@ -28,9 +28,11 @@ export * from "./enums.ts"
|
||||
* Type-safe database client for TypeScript
|
||||
* @example
|
||||
* ```
|
||||
* const prisma = new PrismaClient()
|
||||
* // Fetch zero or more Sessions
|
||||
* const sessions = await prisma.session.findMany()
|
||||
* const prisma = new PrismaClient({
|
||||
* adapter: new PrismaPg({ connectionString: process.env.DATABASE_URL })
|
||||
* })
|
||||
* // Fetch zero or more SyncJobRuns
|
||||
* const syncJobRuns = await prisma.syncJobRun.findMany()
|
||||
* ```
|
||||
*
|
||||
* Read more in our [docs](https://pris.ly/d/client).
|
||||
@@ -39,6 +41,16 @@ export const PrismaClient = $Class.getPrismaClientClass()
|
||||
export type PrismaClient<LogOpts extends Prisma.LogLevel = never, OmitOpts extends Prisma.PrismaClientOptions["omit"] = Prisma.PrismaClientOptions["omit"], ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = $Class.PrismaClient<LogOpts, OmitOpts, ExtArgs>
|
||||
export { Prisma }
|
||||
|
||||
/**
|
||||
* Model SyncJobRun
|
||||
*
|
||||
*/
|
||||
export type SyncJobRun = Prisma.SyncJobRunModel
|
||||
/**
|
||||
* Model SyncStepLog
|
||||
*
|
||||
*/
|
||||
export type SyncStepLog = Prisma.SyncStepLogModel
|
||||
/**
|
||||
* Model Session
|
||||
*
|
||||
@@ -54,6 +66,16 @@ export type User = Prisma.UserModel
|
||||
*
|
||||
*/
|
||||
export type Role = Prisma.RoleModel
|
||||
/**
|
||||
* Model CorporateLocation
|
||||
*
|
||||
*/
|
||||
export type CorporateLocation = Prisma.CorporateLocationModel
|
||||
/**
|
||||
* Model InternalDepartment
|
||||
*
|
||||
*/
|
||||
export type InternalDepartment = Prisma.InternalDepartmentModel
|
||||
/**
|
||||
* Model UnifiSite
|
||||
*
|
||||
@@ -64,16 +86,156 @@ export type UnifiSite = Prisma.UnifiSiteModel
|
||||
*
|
||||
*/
|
||||
export type Company = Prisma.CompanyModel
|
||||
/**
|
||||
* Model CompanyAddress
|
||||
*
|
||||
*/
|
||||
export type CompanyAddress = Prisma.CompanyAddressModel
|
||||
/**
|
||||
* Model Contact
|
||||
*
|
||||
*/
|
||||
export type Contact = Prisma.ContactModel
|
||||
/**
|
||||
* Model CatalogItemType
|
||||
*
|
||||
*/
|
||||
export type CatalogItemType = Prisma.CatalogItemTypeModel
|
||||
/**
|
||||
* Model CatalogCategory
|
||||
*
|
||||
*/
|
||||
export type CatalogCategory = Prisma.CatalogCategoryModel
|
||||
/**
|
||||
* Model CatalogSubcategory
|
||||
*
|
||||
*/
|
||||
export type CatalogSubcategory = Prisma.CatalogSubcategoryModel
|
||||
/**
|
||||
* Model CatalogManufacturer
|
||||
*
|
||||
*/
|
||||
export type CatalogManufacturer = Prisma.CatalogManufacturerModel
|
||||
/**
|
||||
* Model WarehouseBin
|
||||
*
|
||||
*/
|
||||
export type WarehouseBin = Prisma.WarehouseBinModel
|
||||
/**
|
||||
* Model ProductInventory
|
||||
*
|
||||
*/
|
||||
export type ProductInventory = Prisma.ProductInventoryModel
|
||||
/**
|
||||
* Model Warehouse
|
||||
*
|
||||
*/
|
||||
export type Warehouse = Prisma.WarehouseModel
|
||||
/**
|
||||
* Model MinimumStockByWarehouse
|
||||
*
|
||||
*/
|
||||
export type MinimumStockByWarehouse = Prisma.MinimumStockByWarehouseModel
|
||||
/**
|
||||
* Model CatalogItem
|
||||
*
|
||||
*/
|
||||
export type CatalogItem = Prisma.CatalogItemModel
|
||||
/**
|
||||
* Model ProductData
|
||||
*
|
||||
*/
|
||||
export type ProductData = Prisma.ProductDataModel
|
||||
/**
|
||||
* Model ServiceTicket
|
||||
*
|
||||
*/
|
||||
export type ServiceTicket = Prisma.ServiceTicketModel
|
||||
/**
|
||||
* Model ServiceTicketNote
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketNote = Prisma.ServiceTicketNoteModel
|
||||
/**
|
||||
* Model ServiceTicketType
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketType = Prisma.ServiceTicketTypeModel
|
||||
/**
|
||||
* Model ServiceTicketBoard
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketBoard = Prisma.ServiceTicketBoardModel
|
||||
/**
|
||||
* Model ServiceTicketLocation
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketLocation = Prisma.ServiceTicketLocationModel
|
||||
/**
|
||||
* Model ServiceTicketSource
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketSource = Prisma.ServiceTicketSourceModel
|
||||
/**
|
||||
* Model ServiceTicketImpact
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketImpact = Prisma.ServiceTicketImpactModel
|
||||
/**
|
||||
* Model ServiceTicketPriority
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketPriority = Prisma.ServiceTicketPriorityModel
|
||||
/**
|
||||
* Model ServiceTicketSeverity
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketSeverity = Prisma.ServiceTicketSeverityModel
|
||||
/**
|
||||
* Model ServiceTicketFinalData
|
||||
*
|
||||
*/
|
||||
export type ServiceTicketFinalData = Prisma.ServiceTicketFinalDataModel
|
||||
/**
|
||||
* Model OpportunityStage
|
||||
*
|
||||
*/
|
||||
export type OpportunityStage = Prisma.OpportunityStageModel
|
||||
/**
|
||||
* Model OpportunityType
|
||||
*
|
||||
*/
|
||||
export type OpportunityType = Prisma.OpportunityTypeModel
|
||||
/**
|
||||
* Model OpportunityStatus
|
||||
*
|
||||
*/
|
||||
export type OpportunityStatus = Prisma.OpportunityStatusModel
|
||||
/**
|
||||
* Model Opportunity
|
||||
*
|
||||
*/
|
||||
export type Opportunity = Prisma.OpportunityModel
|
||||
/**
|
||||
* Model ScheduleStatus
|
||||
*
|
||||
*/
|
||||
export type ScheduleStatus = Prisma.ScheduleStatusModel
|
||||
/**
|
||||
* Model ScheduleType
|
||||
*
|
||||
*/
|
||||
export type ScheduleType = Prisma.ScheduleTypeModel
|
||||
/**
|
||||
* Model ScheduleSpan
|
||||
*
|
||||
*/
|
||||
export type ScheduleSpan = Prisma.ScheduleSpanModel
|
||||
/**
|
||||
* Model Schedule
|
||||
*
|
||||
*/
|
||||
export type Schedule = Prisma.ScheduleModel
|
||||
/**
|
||||
* Model CredentialType
|
||||
*
|
||||
@@ -94,6 +256,11 @@ export type Credential = Prisma.CredentialModel
|
||||
*
|
||||
*/
|
||||
export type GeneratedQuotes = Prisma.GeneratedQuotesModel
|
||||
/**
|
||||
* Model TaxCode
|
||||
*
|
||||
*/
|
||||
export type TaxCode = Prisma.TaxCodeModel
|
||||
/**
|
||||
* Model CwMember
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user