@valentine-efagene/qshelter-common 2.0.31 → 2.0.32
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/commonInputTypes.d.ts +22 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +3 -0
- package/dist/generated/client/internal/prismaNamespace.js +3 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +3 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +3 -0
- package/dist/generated/client/models/ContractPhase.d.ts +52 -1
- package/dist/generated/client/models/PaymentPlan.d.ts +42 -1
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +51 -1
- package/package.json +1 -1
- package/prisma/migrations/20260101110958_add_collect_funds/migration.sql +8 -0
- package/prisma/schema.prisma +84 -69
|
@@ -251,6 +251,10 @@ export type EnumPhaseTypeFilter<$PrismaModel = never> = {
|
|
|
251
251
|
notIn?: $Enums.PhaseType[];
|
|
252
252
|
not?: Prisma.NestedEnumPhaseTypeFilter<$PrismaModel> | $Enums.PhaseType;
|
|
253
253
|
};
|
|
254
|
+
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
255
|
+
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel> | null;
|
|
256
|
+
not?: Prisma.NestedBoolNullableFilter<$PrismaModel> | boolean | null;
|
|
257
|
+
};
|
|
254
258
|
export type EnumCompletionCriterionNullableFilter<$PrismaModel = never> = {
|
|
255
259
|
equals?: $Enums.CompletionCriterion | Prisma.EnumCompletionCriterionFieldRefInput<$PrismaModel> | null;
|
|
256
260
|
in?: $Enums.CompletionCriterion[] | null;
|
|
@@ -292,6 +296,13 @@ export type EnumPhaseTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
292
296
|
_min?: Prisma.NestedEnumPhaseTypeFilter<$PrismaModel>;
|
|
293
297
|
_max?: Prisma.NestedEnumPhaseTypeFilter<$PrismaModel>;
|
|
294
298
|
};
|
|
299
|
+
export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
300
|
+
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel> | null;
|
|
301
|
+
not?: Prisma.NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null;
|
|
302
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
303
|
+
_min?: Prisma.NestedBoolNullableFilter<$PrismaModel>;
|
|
304
|
+
_max?: Prisma.NestedBoolNullableFilter<$PrismaModel>;
|
|
305
|
+
};
|
|
295
306
|
export type EnumCompletionCriterionNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
296
307
|
equals?: $Enums.CompletionCriterion | Prisma.EnumCompletionCriterionFieldRefInput<$PrismaModel> | null;
|
|
297
308
|
in?: $Enums.CompletionCriterion[] | null;
|
|
@@ -829,6 +840,10 @@ export type NestedEnumPhaseTypeFilter<$PrismaModel = never> = {
|
|
|
829
840
|
notIn?: $Enums.PhaseType[];
|
|
830
841
|
not?: Prisma.NestedEnumPhaseTypeFilter<$PrismaModel> | $Enums.PhaseType;
|
|
831
842
|
};
|
|
843
|
+
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
844
|
+
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel> | null;
|
|
845
|
+
not?: Prisma.NestedBoolNullableFilter<$PrismaModel> | boolean | null;
|
|
846
|
+
};
|
|
832
847
|
export type NestedEnumCompletionCriterionNullableFilter<$PrismaModel = never> = {
|
|
833
848
|
equals?: $Enums.CompletionCriterion | Prisma.EnumCompletionCriterionFieldRefInput<$PrismaModel> | null;
|
|
834
849
|
in?: $Enums.CompletionCriterion[] | null;
|
|
@@ -853,6 +868,13 @@ export type NestedEnumPhaseTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
853
868
|
_min?: Prisma.NestedEnumPhaseTypeFilter<$PrismaModel>;
|
|
854
869
|
_max?: Prisma.NestedEnumPhaseTypeFilter<$PrismaModel>;
|
|
855
870
|
};
|
|
871
|
+
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
872
|
+
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel> | null;
|
|
873
|
+
not?: Prisma.NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null;
|
|
874
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
875
|
+
_min?: Prisma.NestedBoolNullableFilter<$PrismaModel>;
|
|
876
|
+
_max?: Prisma.NestedBoolNullableFilter<$PrismaModel>;
|
|
877
|
+
};
|
|
856
878
|
export type NestedEnumCompletionCriterionNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
857
879
|
equals?: $Enums.CompletionCriterion | Prisma.EnumCompletionCriterionFieldRefInput<$PrismaModel> | null;
|
|
858
880
|
in?: $Enums.CompletionCriterion[] | null;
|