@valentine-efagene/qshelter-common 2.0.48 → 2.0.49
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 +6 -6
- package/dist/generated/client/client.d.ts +6 -6
- package/dist/generated/client/internal/class.d.ts +12 -12
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +109 -109
- package/dist/generated/client/internal/prismaNamespace.js +9 -9
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +15 -15
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +9 -9
- package/dist/generated/client/models/ContractPhase.d.ts +35 -35
- package/dist/generated/client/models/DocumentationStep.d.ts +1819 -0
- package/dist/generated/client/models/DocumentationStep.js +1 -0
- package/dist/generated/client/models/DocumentationStepApproval.d.ts +1253 -0
- package/dist/generated/client/models/DocumentationStepApproval.js +1 -0
- package/dist/generated/client/models/DocumentationStepDocument.d.ts +1052 -0
- package/dist/generated/client/models/DocumentationStepDocument.js +1 -0
- package/dist/generated/client/models/User.d.ts +214 -214
- package/dist/generated/client/models.d.ts +3 -3
- package/package.json +1 -1
- package/prisma/schema.prisma +13 -13
|
@@ -168,20 +168,20 @@ export type Contract = Prisma.ContractModel;
|
|
|
168
168
|
*/
|
|
169
169
|
export type ContractPhase = Prisma.ContractPhaseModel;
|
|
170
170
|
/**
|
|
171
|
-
* Model
|
|
171
|
+
* Model DocumentationStep
|
|
172
172
|
*
|
|
173
173
|
*/
|
|
174
|
-
export type
|
|
174
|
+
export type DocumentationStep = Prisma.DocumentationStepModel;
|
|
175
175
|
/**
|
|
176
|
-
* Model
|
|
176
|
+
* Model DocumentationStepDocument
|
|
177
177
|
*
|
|
178
178
|
*/
|
|
179
|
-
export type
|
|
179
|
+
export type DocumentationStepDocument = Prisma.DocumentationStepDocumentModel;
|
|
180
180
|
/**
|
|
181
|
-
* Model
|
|
181
|
+
* Model DocumentationStepApproval
|
|
182
182
|
*
|
|
183
183
|
*/
|
|
184
|
-
export type
|
|
184
|
+
export type DocumentationStepApproval = Prisma.DocumentationStepApprovalModel;
|
|
185
185
|
/**
|
|
186
186
|
* Model ContractInstallment
|
|
187
187
|
*
|
|
@@ -185,20 +185,20 @@ export type Contract = Prisma.ContractModel;
|
|
|
185
185
|
*/
|
|
186
186
|
export type ContractPhase = Prisma.ContractPhaseModel;
|
|
187
187
|
/**
|
|
188
|
-
* Model
|
|
188
|
+
* Model DocumentationStep
|
|
189
189
|
*
|
|
190
190
|
*/
|
|
191
|
-
export type
|
|
191
|
+
export type DocumentationStep = Prisma.DocumentationStepModel;
|
|
192
192
|
/**
|
|
193
|
-
* Model
|
|
193
|
+
* Model DocumentationStepDocument
|
|
194
194
|
*
|
|
195
195
|
*/
|
|
196
|
-
export type
|
|
196
|
+
export type DocumentationStepDocument = Prisma.DocumentationStepDocumentModel;
|
|
197
197
|
/**
|
|
198
|
-
* Model
|
|
198
|
+
* Model DocumentationStepApproval
|
|
199
199
|
*
|
|
200
200
|
*/
|
|
201
|
-
export type
|
|
201
|
+
export type DocumentationStepApproval = Prisma.DocumentationStepApprovalModel;
|
|
202
202
|
/**
|
|
203
203
|
* Model ContractInstallment
|
|
204
204
|
*
|
|
@@ -475,36 +475,36 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
475
475
|
omit: OmitOpts;
|
|
476
476
|
}>;
|
|
477
477
|
/**
|
|
478
|
-
* `prisma.
|
|
478
|
+
* `prisma.documentationStep`: Exposes CRUD operations for the **DocumentationStep** model.
|
|
479
479
|
* Example usage:
|
|
480
480
|
* ```ts
|
|
481
|
-
* // Fetch zero or more
|
|
482
|
-
* const
|
|
481
|
+
* // Fetch zero or more DocumentationSteps
|
|
482
|
+
* const documentationSteps = await prisma.documentationStep.findMany()
|
|
483
483
|
* ```
|
|
484
484
|
*/
|
|
485
|
-
get
|
|
485
|
+
get documentationStep(): Prisma.DocumentationStepDelegate<ExtArgs, {
|
|
486
486
|
omit: OmitOpts;
|
|
487
487
|
}>;
|
|
488
488
|
/**
|
|
489
|
-
* `prisma.
|
|
489
|
+
* `prisma.documentationStepDocument`: Exposes CRUD operations for the **DocumentationStepDocument** model.
|
|
490
490
|
* Example usage:
|
|
491
491
|
* ```ts
|
|
492
|
-
* // Fetch zero or more
|
|
493
|
-
* const
|
|
492
|
+
* // Fetch zero or more DocumentationStepDocuments
|
|
493
|
+
* const documentationStepDocuments = await prisma.documentationStepDocument.findMany()
|
|
494
494
|
* ```
|
|
495
495
|
*/
|
|
496
|
-
get
|
|
496
|
+
get documentationStepDocument(): Prisma.DocumentationStepDocumentDelegate<ExtArgs, {
|
|
497
497
|
omit: OmitOpts;
|
|
498
498
|
}>;
|
|
499
499
|
/**
|
|
500
|
-
* `prisma.
|
|
500
|
+
* `prisma.documentationStepApproval`: Exposes CRUD operations for the **DocumentationStepApproval** model.
|
|
501
501
|
* Example usage:
|
|
502
502
|
* ```ts
|
|
503
|
-
* // Fetch zero or more
|
|
504
|
-
* const
|
|
503
|
+
* // Fetch zero or more DocumentationStepApprovals
|
|
504
|
+
* const documentationStepApprovals = await prisma.documentationStepApproval.findMany()
|
|
505
505
|
* ```
|
|
506
506
|
*/
|
|
507
|
-
get
|
|
507
|
+
get documentationStepApproval(): Prisma.DocumentationStepApprovalDelegate<ExtArgs, {
|
|
508
508
|
omit: OmitOpts;
|
|
509
509
|
}>;
|
|
510
510
|
/**
|