@valentine-efagene/qshelter-common 2.0.126 → 2.0.129
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/enums.d.ts +4 -0
- package/dist/generated/client/enums.js +5 -1
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +1 -0
- package/dist/generated/client/internal/prismaNamespace.js +1 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +1 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +1 -0
- package/dist/generated/client/models/Organization.d.ts +38 -1
- package/dist/generated/client/models/index.d.ts +3 -0
- package/dist/generated/client/models/index.js +3 -0
- package/dist/src/middleware/auth-context.d.ts +8 -1
- package/dist/src/middleware/auth-context.js +16 -1
- package/package.json +1 -1
- package/prisma/migrations/20260116152051_add_multi_party_document_review/migration.sql +59 -0
- package/prisma/migrations/20260116153745_add_platform_organization_type/migration.sql +3 -0
- package/prisma/schema.prisma +10 -3
|
@@ -161,8 +161,12 @@ export declare const ApprovalDecision: {
|
|
|
161
161
|
};
|
|
162
162
|
export type ApprovalDecision = (typeof ApprovalDecision)[keyof typeof ApprovalDecision];
|
|
163
163
|
export declare const OrganizationType: {
|
|
164
|
+
readonly PLATFORM: "PLATFORM";
|
|
164
165
|
readonly BANK: "BANK";
|
|
165
166
|
readonly DEVELOPER: "DEVELOPER";
|
|
167
|
+
readonly LEGAL: "LEGAL";
|
|
168
|
+
readonly INSURER: "INSURER";
|
|
169
|
+
readonly GOVERNMENT: "GOVERNMENT";
|
|
166
170
|
};
|
|
167
171
|
export type OrganizationType = (typeof OrganizationType)[keyof typeof OrganizationType];
|
|
168
172
|
export declare const OrganizationStatus: {
|
|
@@ -152,8 +152,12 @@ export const ApprovalDecision = {
|
|
|
152
152
|
REQUEST_CHANGES: 'REQUEST_CHANGES'
|
|
153
153
|
};
|
|
154
154
|
export const OrganizationType = {
|
|
155
|
+
PLATFORM: 'PLATFORM',
|
|
155
156
|
BANK: 'BANK',
|
|
156
|
-
DEVELOPER: 'DEVELOPER'
|
|
157
|
+
DEVELOPER: 'DEVELOPER',
|
|
158
|
+
LEGAL: 'LEGAL',
|
|
159
|
+
INSURER: 'INSURER',
|
|
160
|
+
GOVERNMENT: 'GOVERNMENT'
|
|
157
161
|
};
|
|
158
162
|
export const OrganizationStatus = {
|
|
159
163
|
PENDING: 'PENDING',
|