@valentine-efagene/qshelter-common 2.0.47 → 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.
@@ -168,20 +168,20 @@ export type Contract = Prisma.ContractModel;
168
168
  */
169
169
  export type ContractPhase = Prisma.ContractPhaseModel;
170
170
  /**
171
- * Model ContractPhaseStep
171
+ * Model DocumentationStep
172
172
  *
173
173
  */
174
- export type ContractPhaseStep = Prisma.ContractPhaseStepModel;
174
+ export type DocumentationStep = Prisma.DocumentationStepModel;
175
175
  /**
176
- * Model ContractPhaseStepDocument
176
+ * Model DocumentationStepDocument
177
177
  *
178
178
  */
179
- export type ContractPhaseStepDocument = Prisma.ContractPhaseStepDocumentModel;
179
+ export type DocumentationStepDocument = Prisma.DocumentationStepDocumentModel;
180
180
  /**
181
- * Model ContractPhaseStepApproval
181
+ * Model DocumentationStepApproval
182
182
  *
183
183
  */
184
- export type ContractPhaseStepApproval = Prisma.ContractPhaseStepApprovalModel;
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 ContractPhaseStep
188
+ * Model DocumentationStep
189
189
  *
190
190
  */
191
- export type ContractPhaseStep = Prisma.ContractPhaseStepModel;
191
+ export type DocumentationStep = Prisma.DocumentationStepModel;
192
192
  /**
193
- * Model ContractPhaseStepDocument
193
+ * Model DocumentationStepDocument
194
194
  *
195
195
  */
196
- export type ContractPhaseStepDocument = Prisma.ContractPhaseStepDocumentModel;
196
+ export type DocumentationStepDocument = Prisma.DocumentationStepDocumentModel;
197
197
  /**
198
- * Model ContractPhaseStepApproval
198
+ * Model DocumentationStepApproval
199
199
  *
200
200
  */
201
- export type ContractPhaseStepApproval = Prisma.ContractPhaseStepApprovalModel;
201
+ export type DocumentationStepApproval = Prisma.DocumentationStepApprovalModel;
202
202
  /**
203
203
  * Model ContractInstallment
204
204
  *
@@ -37,6 +37,7 @@ export declare const PhaseStatus: {
37
37
  readonly COMPLETED: "COMPLETED";
38
38
  readonly SKIPPED: "SKIPPED";
39
39
  readonly FAILED: "FAILED";
40
+ readonly SUPERSEDED: "SUPERSEDED";
40
41
  };
41
42
  export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
42
43
  export declare const StepType: {
@@ -41,7 +41,8 @@ export const PhaseStatus = {
41
41
  ACTIVE: 'ACTIVE',
42
42
  COMPLETED: 'COMPLETED',
43
43
  SKIPPED: 'SKIPPED',
44
- FAILED: 'FAILED'
44
+ FAILED: 'FAILED',
45
+ SUPERSEDED: 'SUPERSEDED'
45
46
  };
46
47
  export const StepType = {
47
48
  UPLOAD: 'UPLOAD',
@@ -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.contractPhaseStep`: Exposes CRUD operations for the **ContractPhaseStep** model.
478
+ * `prisma.documentationStep`: Exposes CRUD operations for the **DocumentationStep** model.
479
479
  * Example usage:
480
480
  * ```ts
481
- * // Fetch zero or more ContractPhaseSteps
482
- * const contractPhaseSteps = await prisma.contractPhaseStep.findMany()
481
+ * // Fetch zero or more DocumentationSteps
482
+ * const documentationSteps = await prisma.documentationStep.findMany()
483
483
  * ```
484
484
  */
485
- get contractPhaseStep(): Prisma.ContractPhaseStepDelegate<ExtArgs, {
485
+ get documentationStep(): Prisma.DocumentationStepDelegate<ExtArgs, {
486
486
  omit: OmitOpts;
487
487
  }>;
488
488
  /**
489
- * `prisma.contractPhaseStepDocument`: Exposes CRUD operations for the **ContractPhaseStepDocument** model.
489
+ * `prisma.documentationStepDocument`: Exposes CRUD operations for the **DocumentationStepDocument** model.
490
490
  * Example usage:
491
491
  * ```ts
492
- * // Fetch zero or more ContractPhaseStepDocuments
493
- * const contractPhaseStepDocuments = await prisma.contractPhaseStepDocument.findMany()
492
+ * // Fetch zero or more DocumentationStepDocuments
493
+ * const documentationStepDocuments = await prisma.documentationStepDocument.findMany()
494
494
  * ```
495
495
  */
496
- get contractPhaseStepDocument(): Prisma.ContractPhaseStepDocumentDelegate<ExtArgs, {
496
+ get documentationStepDocument(): Prisma.DocumentationStepDocumentDelegate<ExtArgs, {
497
497
  omit: OmitOpts;
498
498
  }>;
499
499
  /**
500
- * `prisma.contractPhaseStepApproval`: Exposes CRUD operations for the **ContractPhaseStepApproval** model.
500
+ * `prisma.documentationStepApproval`: Exposes CRUD operations for the **DocumentationStepApproval** model.
501
501
  * Example usage:
502
502
  * ```ts
503
- * // Fetch zero or more ContractPhaseStepApprovals
504
- * const contractPhaseStepApprovals = await prisma.contractPhaseStepApproval.findMany()
503
+ * // Fetch zero or more DocumentationStepApprovals
504
+ * const documentationStepApprovals = await prisma.documentationStepApproval.findMany()
505
505
  * ```
506
506
  */
507
- get contractPhaseStepApproval(): Prisma.ContractPhaseStepApprovalDelegate<ExtArgs, {
507
+ get documentationStepApproval(): Prisma.DocumentationStepApprovalDelegate<ExtArgs, {
508
508
  omit: OmitOpts;
509
509
  }>;
510
510
  /**