@valentine-efagene/qshelter-common 2.0.150 → 2.0.151
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 +30 -0
- package/dist/generated/client/enums.d.ts +7 -0
- package/dist/generated/client/enums.js +6 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +4 -2
- package/dist/generated/client/internal/prismaNamespace.js +0 -2
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +0 -2
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +0 -2
- package/dist/generated/client/models/Property.d.ts +59 -120
- package/package.json +1 -1
- package/prisma/migrations/20260125090213_remove_is_published_use_status_enum/migration.sql +10 -0
- package/prisma/schema.prisma +8 -2
|
@@ -383,6 +383,12 @@ export type FloatNullableFilter<$PrismaModel = never> = {
|
|
|
383
383
|
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
384
384
|
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
385
385
|
};
|
|
386
|
+
export type EnumPropertyStatusFilter<$PrismaModel = never> = {
|
|
387
|
+
equals?: $Enums.PropertyStatus | Prisma.EnumPropertyStatusFieldRefInput<$PrismaModel>;
|
|
388
|
+
in?: $Enums.PropertyStatus[];
|
|
389
|
+
notIn?: $Enums.PropertyStatus[];
|
|
390
|
+
not?: Prisma.NestedEnumPropertyStatusFilter<$PrismaModel> | $Enums.PropertyStatus;
|
|
391
|
+
};
|
|
386
392
|
export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
387
393
|
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
388
394
|
in?: number[] | null;
|
|
@@ -398,6 +404,15 @@ export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
398
404
|
_min?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
399
405
|
_max?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
400
406
|
};
|
|
407
|
+
export type EnumPropertyStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
408
|
+
equals?: $Enums.PropertyStatus | Prisma.EnumPropertyStatusFieldRefInput<$PrismaModel>;
|
|
409
|
+
in?: $Enums.PropertyStatus[];
|
|
410
|
+
notIn?: $Enums.PropertyStatus[];
|
|
411
|
+
not?: Prisma.NestedEnumPropertyStatusWithAggregatesFilter<$PrismaModel> | $Enums.PropertyStatus;
|
|
412
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
413
|
+
_min?: Prisma.NestedEnumPropertyStatusFilter<$PrismaModel>;
|
|
414
|
+
_max?: Prisma.NestedEnumPropertyStatusFilter<$PrismaModel>;
|
|
415
|
+
};
|
|
401
416
|
export type EnumUploadedByFilter<$PrismaModel = never> = {
|
|
402
417
|
equals?: $Enums.UploadedBy | Prisma.EnumUploadedByFieldRefInput<$PrismaModel>;
|
|
403
418
|
in?: $Enums.UploadedBy[];
|
|
@@ -1452,6 +1467,12 @@ export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
1452
1467
|
_min?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
1453
1468
|
_max?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
1454
1469
|
};
|
|
1470
|
+
export type NestedEnumPropertyStatusFilter<$PrismaModel = never> = {
|
|
1471
|
+
equals?: $Enums.PropertyStatus | Prisma.EnumPropertyStatusFieldRefInput<$PrismaModel>;
|
|
1472
|
+
in?: $Enums.PropertyStatus[];
|
|
1473
|
+
notIn?: $Enums.PropertyStatus[];
|
|
1474
|
+
not?: Prisma.NestedEnumPropertyStatusFilter<$PrismaModel> | $Enums.PropertyStatus;
|
|
1475
|
+
};
|
|
1455
1476
|
export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
1456
1477
|
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
1457
1478
|
in?: number[] | null;
|
|
@@ -1467,6 +1488,15 @@ export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
1467
1488
|
_min?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
1468
1489
|
_max?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
1469
1490
|
};
|
|
1491
|
+
export type NestedEnumPropertyStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
1492
|
+
equals?: $Enums.PropertyStatus | Prisma.EnumPropertyStatusFieldRefInput<$PrismaModel>;
|
|
1493
|
+
in?: $Enums.PropertyStatus[];
|
|
1494
|
+
notIn?: $Enums.PropertyStatus[];
|
|
1495
|
+
not?: Prisma.NestedEnumPropertyStatusWithAggregatesFilter<$PrismaModel> | $Enums.PropertyStatus;
|
|
1496
|
+
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
1497
|
+
_min?: Prisma.NestedEnumPropertyStatusFilter<$PrismaModel>;
|
|
1498
|
+
_max?: Prisma.NestedEnumPropertyStatusFilter<$PrismaModel>;
|
|
1499
|
+
};
|
|
1470
1500
|
export type NestedEnumUploadedByFilter<$PrismaModel = never> = {
|
|
1471
1501
|
equals?: $Enums.UploadedBy | Prisma.EnumUploadedByFieldRefInput<$PrismaModel>;
|
|
1472
1502
|
in?: $Enums.UploadedBy[];
|
|
@@ -23,6 +23,13 @@ export declare const PaymentFrequency: {
|
|
|
23
23
|
readonly CUSTOM: "CUSTOM";
|
|
24
24
|
};
|
|
25
25
|
export type PaymentFrequency = (typeof PaymentFrequency)[keyof typeof PaymentFrequency];
|
|
26
|
+
export declare const PropertyStatus: {
|
|
27
|
+
readonly DRAFT: "DRAFT";
|
|
28
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
29
|
+
readonly SOLD_OUT: "SOLD_OUT";
|
|
30
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
31
|
+
};
|
|
32
|
+
export type PropertyStatus = (typeof PropertyStatus)[keyof typeof PropertyStatus];
|
|
26
33
|
export declare const ApplicationStatus: {
|
|
27
34
|
readonly DRAFT: "DRAFT";
|
|
28
35
|
readonly PENDING: "PENDING";
|
|
@@ -29,6 +29,12 @@ export const PaymentFrequency = {
|
|
|
29
29
|
ONE_TIME: 'ONE_TIME',
|
|
30
30
|
CUSTOM: 'CUSTOM'
|
|
31
31
|
};
|
|
32
|
+
export const PropertyStatus = {
|
|
33
|
+
DRAFT: 'DRAFT',
|
|
34
|
+
PUBLISHED: 'PUBLISHED',
|
|
35
|
+
SOLD_OUT: 'SOLD_OUT',
|
|
36
|
+
ARCHIVED: 'ARCHIVED'
|
|
37
|
+
};
|
|
32
38
|
export const ApplicationStatus = {
|
|
33
39
|
DRAFT: 'DRAFT',
|
|
34
40
|
PENDING: 'PENDING',
|