@valentine-efagene/qshelter-common 2.0.55 → 2.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/client/browser.d.ts +0 -5
- package/dist/generated/client/client.d.ts +0 -5
- package/dist/generated/client/internal/class.d.ts +0 -11
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +12 -88
- package/dist/generated/client/internal/prismaNamespace.js +11 -18
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +11 -20
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +11 -18
- package/dist/generated/client/models/Contract.d.ts +0 -291
- package/dist/generated/client/models/ContractEvent.d.ts +285 -93
- package/dist/generated/client/models/index.d.ts +0 -1
- package/dist/generated/client/models/index.js +0 -1
- package/dist/generated/client/models.d.ts +0 -1
- package/package.json +1 -1
- package/prisma/migrations/20260105080236_remove_prequalification_model/migration.sql +37 -0
- package/prisma/schema.prisma +23 -22
|
@@ -197,11 +197,6 @@ export type ContractPayment = Prisma.ContractPaymentModel;
|
|
|
197
197
|
*
|
|
198
198
|
*/
|
|
199
199
|
export type ContractDocument = Prisma.ContractDocumentModel;
|
|
200
|
-
/**
|
|
201
|
-
* Model ContractTransition
|
|
202
|
-
*
|
|
203
|
-
*/
|
|
204
|
-
export type ContractTransition = Prisma.ContractTransitionModel;
|
|
205
200
|
/**
|
|
206
201
|
* Model ContractEvent
|
|
207
202
|
*
|
|
@@ -214,11 +214,6 @@ export type ContractPayment = Prisma.ContractPaymentModel;
|
|
|
214
214
|
*
|
|
215
215
|
*/
|
|
216
216
|
export type ContractDocument = Prisma.ContractDocumentModel;
|
|
217
|
-
/**
|
|
218
|
-
* Model ContractTransition
|
|
219
|
-
*
|
|
220
|
-
*/
|
|
221
|
-
export type ContractTransition = Prisma.ContractTransitionModel;
|
|
222
217
|
/**
|
|
223
218
|
* Model ContractEvent
|
|
224
219
|
*
|
|
@@ -540,17 +540,6 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
540
540
|
get contractDocument(): Prisma.ContractDocumentDelegate<ExtArgs, {
|
|
541
541
|
omit: OmitOpts;
|
|
542
542
|
}>;
|
|
543
|
-
/**
|
|
544
|
-
* `prisma.contractTransition`: Exposes CRUD operations for the **ContractTransition** model.
|
|
545
|
-
* Example usage:
|
|
546
|
-
* ```ts
|
|
547
|
-
* // Fetch zero or more ContractTransitions
|
|
548
|
-
* const contractTransitions = await prisma.contractTransition.findMany()
|
|
549
|
-
* ```
|
|
550
|
-
*/
|
|
551
|
-
get contractTransition(): Prisma.ContractTransitionDelegate<ExtArgs, {
|
|
552
|
-
omit: OmitOpts;
|
|
553
|
-
}>;
|
|
554
543
|
/**
|
|
555
544
|
* `prisma.contractEvent`: Exposes CRUD operations for the **ContractEvent** model.
|
|
556
545
|
* Example usage:
|