@valentine-efagene/qshelter-common 2.0.150 → 2.0.152
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 +13 -2
- package/dist/generated/client/client.d.ts +15 -4
- package/dist/generated/client/client.js +2 -2
- package/dist/generated/client/commonInputTypes.d.ts +50 -190
- package/dist/generated/client/enums.d.ts +7 -34
- package/dist/generated/client/enums.js +6 -30
- package/dist/generated/client/internal/class.d.ts +29 -7
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +185 -34
- package/dist/generated/client/internal/prismaNamespace.js +42 -13
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +46 -13
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +42 -13
- package/dist/generated/client/models/ApplicationOrganization.d.ts +308 -67
- package/dist/generated/client/models/ApprovalStage.d.ts +210 -91
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +258 -69
- package/dist/generated/client/models/DocumentApproval.d.ts +196 -65
- package/dist/generated/client/models/DocumentReview.d.ts +475 -86
- package/dist/generated/client/models/Organization.d.ts +424 -52
- package/dist/generated/client/models/OrganizationMember.d.ts +42 -169
- package/dist/generated/client/models/OrganizationType.d.ts +1982 -0
- package/dist/generated/client/models/OrganizationType.js +1 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.d.ts +1159 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.js +1 -0
- package/dist/generated/client/models/Property.d.ts +59 -120
- package/dist/generated/client/models/Tenant.d.ts +575 -4
- package/dist/generated/client/models/User.d.ts +0 -12
- package/dist/generated/client/models/index.d.ts +2 -0
- package/dist/generated/client/models/index.js +2 -0
- package/dist/generated/client/models.d.ts +2 -0
- package/package.json +1 -1
- package/prisma/migrations/20260125090213_remove_is_published_use_status_enum/migration.sql +10 -0
- package/prisma/migrations/20260125102448_org_types_many_to_many/migration.sql +153 -0
- package/prisma/migrations/20260125103700_20260125102448_org_types_many_to_many_fix/migration.sql +5 -0
- package/prisma/schema.prisma +121 -81
|
@@ -9,8 +9,8 @@ export interface PrismaClientConstructor {
|
|
|
9
9
|
* @example
|
|
10
10
|
* ```
|
|
11
11
|
* const prisma = new PrismaClient()
|
|
12
|
-
* // Fetch zero or more
|
|
13
|
-
* const
|
|
12
|
+
* // Fetch zero or more OrganizationTypes
|
|
13
|
+
* const organizationTypes = await prisma.organizationType.findMany()
|
|
14
14
|
* ```
|
|
15
15
|
*
|
|
16
16
|
* Read more in our [docs](https://pris.ly/d/client).
|
|
@@ -26,8 +26,8 @@ export interface PrismaClientConstructor {
|
|
|
26
26
|
* @example
|
|
27
27
|
* ```
|
|
28
28
|
* const prisma = new PrismaClient()
|
|
29
|
-
* // Fetch zero or more
|
|
30
|
-
* const
|
|
29
|
+
* // Fetch zero or more OrganizationTypes
|
|
30
|
+
* const organizationTypes = await prisma.organizationType.findMany()
|
|
31
31
|
* ```
|
|
32
32
|
*
|
|
33
33
|
* Read more in our [docs](https://pris.ly/d/client).
|
|
@@ -112,13 +112,35 @@ export interface PrismaClient<in LogOpts extends Prisma.LogLevel = never, in out
|
|
|
112
112
|
extArgs: ExtArgs;
|
|
113
113
|
}>>;
|
|
114
114
|
/**
|
|
115
|
-
* `prisma.
|
|
115
|
+
* `prisma.organizationType`: Exposes CRUD operations for the **OrganizationType** model.
|
|
116
116
|
* Example usage:
|
|
117
117
|
* ```ts
|
|
118
|
-
* // Fetch zero or more
|
|
119
|
-
* const
|
|
118
|
+
* // Fetch zero or more OrganizationTypes
|
|
119
|
+
* const organizationTypes = await prisma.organizationType.findMany()
|
|
120
120
|
* ```
|
|
121
121
|
*/
|
|
122
|
+
get organizationType(): Prisma.OrganizationTypeDelegate<ExtArgs, {
|
|
123
|
+
omit: OmitOpts;
|
|
124
|
+
}>;
|
|
125
|
+
/**
|
|
126
|
+
* `prisma.organizationTypeAssignment`: Exposes CRUD operations for the **OrganizationTypeAssignment** model.
|
|
127
|
+
* Example usage:
|
|
128
|
+
* ```ts
|
|
129
|
+
* // Fetch zero or more OrganizationTypeAssignments
|
|
130
|
+
* const organizationTypeAssignments = await prisma.organizationTypeAssignment.findMany()
|
|
131
|
+
* ```
|
|
132
|
+
*/
|
|
133
|
+
get organizationTypeAssignment(): Prisma.OrganizationTypeAssignmentDelegate<ExtArgs, {
|
|
134
|
+
omit: OmitOpts;
|
|
135
|
+
}>;
|
|
136
|
+
/**
|
|
137
|
+
* `prisma.user`: Exposes CRUD operations for the **User** model.
|
|
138
|
+
* Example usage:
|
|
139
|
+
* ```ts
|
|
140
|
+
* // Fetch zero or more Users
|
|
141
|
+
* const users = await prisma.user.findMany()
|
|
142
|
+
* ```
|
|
143
|
+
*/
|
|
122
144
|
get user(): Prisma.UserDelegate<ExtArgs, {
|
|
123
145
|
omit: OmitOpts;
|
|
124
146
|
}>;
|