@valentine-efagene/qshelter-common 2.0.138 → 2.0.140
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 +17 -17
- package/dist/generated/client/client.d.ts +17 -17
- package/dist/generated/client/commonInputTypes.d.ts +142 -202
- package/dist/generated/client/enums.d.ts +23 -0
- package/dist/generated/client/enums.js +21 -1
- package/dist/generated/client/internal/class.d.ts +37 -37
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +348 -377
- package/dist/generated/client/internal/prismaNamespace.js +91 -116
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +97 -122
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +91 -116
- package/dist/generated/client/models/ApplicationDocument.d.ts +290 -1
- package/dist/generated/client/models/ApprovalStage.d.ts +1605 -0
- package/dist/generated/client/models/ApprovalStage.js +1 -0
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +2329 -0
- package/dist/generated/client/models/ApprovalStageProgress.js +1 -0
- package/dist/generated/client/models/DocumentApproval.d.ts +1611 -0
- package/dist/generated/client/models/DocumentApproval.js +1 -0
- package/dist/generated/client/models/DocumentDefinition.d.ts +1475 -0
- package/dist/generated/client/models/DocumentDefinition.js +1 -0
- package/dist/generated/client/models/DocumentReview.d.ts +0 -3
- package/dist/generated/client/models/DocumentationPhase.d.ts +215 -629
- package/dist/generated/client/models/DocumentationPlan.d.ts +188 -57
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +3 -0
- package/dist/generated/client/models/Tenant.d.ts +640 -1203
- package/dist/generated/client/models/User.d.ts +414 -817
- package/dist/generated/client/models/index.d.ts +4 -4
- package/dist/generated/client/models/index.js +4 -4
- package/dist/generated/client/models.d.ts +4 -4
- package/dist/src/utils/documentation-enums.d.ts +10 -1
- package/dist/src/utils/documentation-enums.js +8 -0
- package/package.json +1 -1
- package/prisma/migrations/20260119190336_add_document_approval_workflow/migration.sql +134 -0
- package/prisma/schema.prisma +229 -214
|
@@ -442,14 +442,25 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
442
442
|
omit: OmitOpts;
|
|
443
443
|
}>;
|
|
444
444
|
/**
|
|
445
|
-
* `prisma.
|
|
445
|
+
* `prisma.documentDefinition`: Exposes CRUD operations for the **DocumentDefinition** model.
|
|
446
446
|
* Example usage:
|
|
447
447
|
* ```ts
|
|
448
|
-
* // Fetch zero or more
|
|
449
|
-
* const
|
|
448
|
+
* // Fetch zero or more DocumentDefinitions
|
|
449
|
+
* const documentDefinitions = await prisma.documentDefinition.findMany()
|
|
450
450
|
* ```
|
|
451
451
|
*/
|
|
452
|
-
get
|
|
452
|
+
get documentDefinition(): Prisma.DocumentDefinitionDelegate<ExtArgs, {
|
|
453
|
+
omit: OmitOpts;
|
|
454
|
+
}>;
|
|
455
|
+
/**
|
|
456
|
+
* `prisma.approvalStage`: Exposes CRUD operations for the **ApprovalStage** model.
|
|
457
|
+
* Example usage:
|
|
458
|
+
* ```ts
|
|
459
|
+
* // Fetch zero or more ApprovalStages
|
|
460
|
+
* const approvalStages = await prisma.approvalStage.findMany()
|
|
461
|
+
* ```
|
|
462
|
+
*/
|
|
463
|
+
get approvalStage(): Prisma.ApprovalStageDelegate<ExtArgs, {
|
|
453
464
|
omit: OmitOpts;
|
|
454
465
|
}>;
|
|
455
466
|
/**
|
|
@@ -661,39 +672,6 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
661
672
|
get applicationEvent(): Prisma.ApplicationEventDelegate<ExtArgs, {
|
|
662
673
|
omit: OmitOpts;
|
|
663
674
|
}>;
|
|
664
|
-
/**
|
|
665
|
-
* `prisma.documentationStep`: Exposes CRUD operations for the **DocumentationStep** model.
|
|
666
|
-
* Example usage:
|
|
667
|
-
* ```ts
|
|
668
|
-
* // Fetch zero or more DocumentationSteps
|
|
669
|
-
* const documentationSteps = await prisma.documentationStep.findMany()
|
|
670
|
-
* ```
|
|
671
|
-
*/
|
|
672
|
-
get documentationStep(): Prisma.DocumentationStepDelegate<ExtArgs, {
|
|
673
|
-
omit: OmitOpts;
|
|
674
|
-
}>;
|
|
675
|
-
/**
|
|
676
|
-
* `prisma.documentationStepDocument`: Exposes CRUD operations for the **DocumentationStepDocument** model.
|
|
677
|
-
* Example usage:
|
|
678
|
-
* ```ts
|
|
679
|
-
* // Fetch zero or more DocumentationStepDocuments
|
|
680
|
-
* const documentationStepDocuments = await prisma.documentationStepDocument.findMany()
|
|
681
|
-
* ```
|
|
682
|
-
*/
|
|
683
|
-
get documentationStepDocument(): Prisma.DocumentationStepDocumentDelegate<ExtArgs, {
|
|
684
|
-
omit: OmitOpts;
|
|
685
|
-
}>;
|
|
686
|
-
/**
|
|
687
|
-
* `prisma.documentationStepApproval`: Exposes CRUD operations for the **DocumentationStepApproval** model.
|
|
688
|
-
* Example usage:
|
|
689
|
-
* ```ts
|
|
690
|
-
* // Fetch zero or more DocumentationStepApprovals
|
|
691
|
-
* const documentationStepApprovals = await prisma.documentationStepApproval.findMany()
|
|
692
|
-
* ```
|
|
693
|
-
*/
|
|
694
|
-
get documentationStepApproval(): Prisma.DocumentationStepApprovalDelegate<ExtArgs, {
|
|
695
|
-
omit: OmitOpts;
|
|
696
|
-
}>;
|
|
697
675
|
/**
|
|
698
676
|
* `prisma.paymentInstallment`: Exposes CRUD operations for the **PaymentInstallment** model.
|
|
699
677
|
* Example usage:
|
|
@@ -738,6 +716,28 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
738
716
|
get documentReview(): Prisma.DocumentReviewDelegate<ExtArgs, {
|
|
739
717
|
omit: OmitOpts;
|
|
740
718
|
}>;
|
|
719
|
+
/**
|
|
720
|
+
* `prisma.approvalStageProgress`: Exposes CRUD operations for the **ApprovalStageProgress** model.
|
|
721
|
+
* Example usage:
|
|
722
|
+
* ```ts
|
|
723
|
+
* // Fetch zero or more ApprovalStageProgresses
|
|
724
|
+
* const approvalStageProgresses = await prisma.approvalStageProgress.findMany()
|
|
725
|
+
* ```
|
|
726
|
+
*/
|
|
727
|
+
get approvalStageProgress(): Prisma.ApprovalStageProgressDelegate<ExtArgs, {
|
|
728
|
+
omit: OmitOpts;
|
|
729
|
+
}>;
|
|
730
|
+
/**
|
|
731
|
+
* `prisma.documentApproval`: Exposes CRUD operations for the **DocumentApproval** model.
|
|
732
|
+
* Example usage:
|
|
733
|
+
* ```ts
|
|
734
|
+
* // Fetch zero or more DocumentApprovals
|
|
735
|
+
* const documentApprovals = await prisma.documentApproval.findMany()
|
|
736
|
+
* ```
|
|
737
|
+
*/
|
|
738
|
+
get documentApproval(): Prisma.DocumentApprovalDelegate<ExtArgs, {
|
|
739
|
+
omit: OmitOpts;
|
|
740
|
+
}>;
|
|
741
741
|
/**
|
|
742
742
|
* `prisma.documentTemplate`: Exposes CRUD operations for the **DocumentTemplate** model.
|
|
743
743
|
* Example usage:
|