@valentine-efagene/qshelter-common 2.0.140 → 2.0.142
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 +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/commonInputTypes.d.ts +30 -30
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +93 -5
- package/dist/generated/client/internal/prismaNamespace.js +19 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +21 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +19 -0
- package/dist/generated/client/models/DocumentReview.d.ts +0 -3
- package/dist/generated/client/models/QuestionnairePhase.d.ts +171 -0
- package/dist/generated/client/models/QuestionnairePhaseReview.d.ts +1476 -0
- package/dist/generated/client/models/QuestionnairePhaseReview.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +563 -0
- package/dist/generated/client/models/User.d.ts +399 -0
- package/dist/generated/client/models/index.d.ts +1 -0
- package/dist/generated/client/models/index.js +1 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +46 -6
|
@@ -243,6 +243,11 @@ export type ApplicationPhase = Prisma.ApplicationPhaseModel;
|
|
|
243
243
|
*
|
|
244
244
|
*/
|
|
245
245
|
export type QuestionnairePhase = Prisma.QuestionnairePhaseModel;
|
|
246
|
+
/**
|
|
247
|
+
* Model QuestionnairePhaseReview
|
|
248
|
+
*
|
|
249
|
+
*/
|
|
250
|
+
export type QuestionnairePhaseReview = Prisma.QuestionnairePhaseReviewModel;
|
|
246
251
|
/**
|
|
247
252
|
* Model DocumentationPhase
|
|
248
253
|
*
|
|
@@ -260,6 +260,11 @@ export type ApplicationPhase = Prisma.ApplicationPhaseModel;
|
|
|
260
260
|
*
|
|
261
261
|
*/
|
|
262
262
|
export type QuestionnairePhase = Prisma.QuestionnairePhaseModel;
|
|
263
|
+
/**
|
|
264
|
+
* Model QuestionnairePhaseReview
|
|
265
|
+
*
|
|
266
|
+
*/
|
|
267
|
+
export type QuestionnairePhaseReview = Prisma.QuestionnairePhaseReviewModel;
|
|
263
268
|
/**
|
|
264
269
|
* Model DocumentationPhase
|
|
265
270
|
*
|
|
@@ -664,6 +664,21 @@ export type EnumPhaseStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
664
664
|
_min?: Prisma.NestedEnumPhaseStatusFilter<$PrismaModel>;
|
|
665
665
|
_max?: Prisma.NestedEnumPhaseStatusFilter<$PrismaModel>;
|
|
666
666
|
};
|
|
667
|
+
export type EnumReviewDecisionFilter<$PrismaModel = never> = {
|
|
668
|
+
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
669
|
+
in?: $Enums.ReviewDecision[];
|
|
670
|
+
notIn?: $Enums.ReviewDecision[];
|
|
671
|
+
not?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
672
|
+
};
|
|
673
|
+
export type EnumReviewDecisionWithAggregatesFilter<$PrismaModel = never> = {
|
|
674
|
+
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
675
|
+
in?: $Enums.ReviewDecision[];
|
|
676
|
+
notIn?: $Enums.ReviewDecision[];
|
|
677
|
+
not?: Prisma.NestedEnumReviewDecisionWithAggregatesFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
678
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
679
|
+
_min?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
680
|
+
_max?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
681
|
+
};
|
|
667
682
|
export type EnumApplicationEventTypeFilter<$PrismaModel = never> = {
|
|
668
683
|
equals?: $Enums.ApplicationEventType | Prisma.EnumApplicationEventTypeFieldRefInput<$PrismaModel>;
|
|
669
684
|
in?: $Enums.ApplicationEventType[];
|
|
@@ -754,21 +769,6 @@ export type EnumDocumentStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
754
769
|
_min?: Prisma.NestedEnumDocumentStatusFilter<$PrismaModel>;
|
|
755
770
|
_max?: Prisma.NestedEnumDocumentStatusFilter<$PrismaModel>;
|
|
756
771
|
};
|
|
757
|
-
export type EnumReviewDecisionFilter<$PrismaModel = never> = {
|
|
758
|
-
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
759
|
-
in?: $Enums.ReviewDecision[];
|
|
760
|
-
notIn?: $Enums.ReviewDecision[];
|
|
761
|
-
not?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
762
|
-
};
|
|
763
|
-
export type EnumReviewDecisionWithAggregatesFilter<$PrismaModel = never> = {
|
|
764
|
-
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
765
|
-
in?: $Enums.ReviewDecision[];
|
|
766
|
-
notIn?: $Enums.ReviewDecision[];
|
|
767
|
-
not?: Prisma.NestedEnumReviewDecisionWithAggregatesFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
768
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
769
|
-
_min?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
770
|
-
_max?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
771
|
-
};
|
|
772
772
|
export type EnumStageStatusFilter<$PrismaModel = never> = {
|
|
773
773
|
equals?: $Enums.StageStatus | Prisma.EnumStageStatusFieldRefInput<$PrismaModel>;
|
|
774
774
|
in?: $Enums.StageStatus[];
|
|
@@ -1688,6 +1688,21 @@ export type NestedEnumPhaseStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
1688
1688
|
_min?: Prisma.NestedEnumPhaseStatusFilter<$PrismaModel>;
|
|
1689
1689
|
_max?: Prisma.NestedEnumPhaseStatusFilter<$PrismaModel>;
|
|
1690
1690
|
};
|
|
1691
|
+
export type NestedEnumReviewDecisionFilter<$PrismaModel = never> = {
|
|
1692
|
+
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
1693
|
+
in?: $Enums.ReviewDecision[];
|
|
1694
|
+
notIn?: $Enums.ReviewDecision[];
|
|
1695
|
+
not?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
1696
|
+
};
|
|
1697
|
+
export type NestedEnumReviewDecisionWithAggregatesFilter<$PrismaModel = never> = {
|
|
1698
|
+
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
1699
|
+
in?: $Enums.ReviewDecision[];
|
|
1700
|
+
notIn?: $Enums.ReviewDecision[];
|
|
1701
|
+
not?: Prisma.NestedEnumReviewDecisionWithAggregatesFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
1702
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
1703
|
+
_min?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
1704
|
+
_max?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
1705
|
+
};
|
|
1691
1706
|
export type NestedEnumApplicationEventTypeFilter<$PrismaModel = never> = {
|
|
1692
1707
|
equals?: $Enums.ApplicationEventType | Prisma.EnumApplicationEventTypeFieldRefInput<$PrismaModel>;
|
|
1693
1708
|
in?: $Enums.ApplicationEventType[];
|
|
@@ -1778,21 +1793,6 @@ export type NestedEnumDocumentStatusWithAggregatesFilter<$PrismaModel = never> =
|
|
|
1778
1793
|
_min?: Prisma.NestedEnumDocumentStatusFilter<$PrismaModel>;
|
|
1779
1794
|
_max?: Prisma.NestedEnumDocumentStatusFilter<$PrismaModel>;
|
|
1780
1795
|
};
|
|
1781
|
-
export type NestedEnumReviewDecisionFilter<$PrismaModel = never> = {
|
|
1782
|
-
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
1783
|
-
in?: $Enums.ReviewDecision[];
|
|
1784
|
-
notIn?: $Enums.ReviewDecision[];
|
|
1785
|
-
not?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
1786
|
-
};
|
|
1787
|
-
export type NestedEnumReviewDecisionWithAggregatesFilter<$PrismaModel = never> = {
|
|
1788
|
-
equals?: $Enums.ReviewDecision | Prisma.EnumReviewDecisionFieldRefInput<$PrismaModel>;
|
|
1789
|
-
in?: $Enums.ReviewDecision[];
|
|
1790
|
-
notIn?: $Enums.ReviewDecision[];
|
|
1791
|
-
not?: Prisma.NestedEnumReviewDecisionWithAggregatesFilter<$PrismaModel> | $Enums.ReviewDecision;
|
|
1792
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
1793
|
-
_min?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
1794
|
-
_max?: Prisma.NestedEnumReviewDecisionFilter<$PrismaModel>;
|
|
1795
|
-
};
|
|
1796
1796
|
export type NestedEnumStageStatusFilter<$PrismaModel = never> = {
|
|
1797
1797
|
equals?: $Enums.StageStatus | Prisma.EnumStageStatusFieldRefInput<$PrismaModel>;
|
|
1798
1798
|
in?: $Enums.StageStatus[];
|
|
@@ -628,6 +628,17 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
628
628
|
get questionnairePhase(): Prisma.QuestionnairePhaseDelegate<ExtArgs, {
|
|
629
629
|
omit: OmitOpts;
|
|
630
630
|
}>;
|
|
631
|
+
/**
|
|
632
|
+
* `prisma.questionnairePhaseReview`: Exposes CRUD operations for the **QuestionnairePhaseReview** model.
|
|
633
|
+
* Example usage:
|
|
634
|
+
* ```ts
|
|
635
|
+
* // Fetch zero or more QuestionnairePhaseReviews
|
|
636
|
+
* const questionnairePhaseReviews = await prisma.questionnairePhaseReview.findMany()
|
|
637
|
+
* ```
|
|
638
|
+
*/
|
|
639
|
+
get questionnairePhaseReview(): Prisma.QuestionnairePhaseReviewDelegate<ExtArgs, {
|
|
640
|
+
omit: OmitOpts;
|
|
641
|
+
}>;
|
|
631
642
|
/**
|
|
632
643
|
* `prisma.documentationPhase`: Exposes CRUD operations for the **DocumentationPhase** model.
|
|
633
644
|
* Example usage:
|