@valentine-efagene/qshelter-common 2.0.142 → 2.0.144
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 +32 -0
- package/dist/generated/client/client.d.ts +32 -0
- package/dist/generated/client/commonInputTypes.d.ts +354 -144
- package/dist/generated/client/enums.d.ts +45 -0
- package/dist/generated/client/enums.js +39 -0
- package/dist/generated/client/internal/class.d.ts +66 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +633 -3
- package/dist/generated/client/internal/prismaNamespace.js +193 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +204 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +193 -1
- package/dist/generated/client/models/Application.d.ts +669 -1
- package/dist/generated/client/models/ApplicationDocument.d.ts +577 -1
- package/dist/generated/client/models/ApplicationOrganization.d.ts +2385 -0
- package/dist/generated/client/models/ApplicationOrganization.js +1 -0
- package/dist/generated/client/models/BankDocumentRequirement.d.ts +1932 -0
- package/dist/generated/client/models/BankDocumentRequirement.js +1 -0
- package/dist/generated/client/models/DocumentExpiryWarning.d.ts +1141 -0
- package/dist/generated/client/models/DocumentExpiryWarning.js +1 -0
- package/dist/generated/client/models/Organization.d.ts +390 -0
- package/dist/generated/client/models/PropertyMedia.d.ts +0 -7
- package/dist/generated/client/models/PropertyPaymentMethod.d.ts +192 -3
- package/dist/generated/client/models/PropertyVariant.d.ts +0 -7
- package/dist/generated/client/models/ScheduledJob.d.ts +1317 -0
- package/dist/generated/client/models/ScheduledJob.js +1 -0
- package/dist/generated/client/models/StateTransitionDefinition.d.ts +1104 -0
- package/dist/generated/client/models/StateTransitionDefinition.js +1 -0
- package/dist/generated/client/models/StateTransitionLog.d.ts +1383 -0
- package/dist/generated/client/models/StateTransitionLog.js +1 -0
- package/dist/generated/client/models/Tenant.d.ts +2535 -798
- package/dist/generated/client/models/index.d.ts +6 -0
- package/dist/generated/client/models/index.js +6 -0
- package/dist/generated/client/models.d.ts +6 -0
- package/dist/src/prisma/tenant.js +4 -0
- package/package.json +1 -1
- package/prisma/migrations/20260120024650_add_questionnaire_phase_review/migration.sql +102 -0
- package/prisma/schema.prisma +423 -2
|
@@ -46,6 +46,11 @@ export type Organization = Prisma.OrganizationModel;
|
|
|
46
46
|
* Supports maker-checker workflows via canApprove and approvalLimit
|
|
47
47
|
*/
|
|
48
48
|
export type OrganizationMember = Prisma.OrganizationMemberModel;
|
|
49
|
+
/**
|
|
50
|
+
* Model BankDocumentRequirement
|
|
51
|
+
* Bank Document Requirement - Bank-specific document rules
|
|
52
|
+
*/
|
|
53
|
+
export type BankDocumentRequirement = Prisma.BankDocumentRequirementModel;
|
|
49
54
|
/**
|
|
50
55
|
* Model Tenant
|
|
51
56
|
*
|
|
@@ -228,6 +233,11 @@ export type PaymentMethodPhaseField = Prisma.PaymentMethodPhaseFieldModel;
|
|
|
228
233
|
*
|
|
229
234
|
*/
|
|
230
235
|
export type Application = Prisma.ApplicationModel;
|
|
236
|
+
/**
|
|
237
|
+
* Model ApplicationOrganization
|
|
238
|
+
*
|
|
239
|
+
*/
|
|
240
|
+
export type ApplicationOrganization = Prisma.ApplicationOrganizationModel;
|
|
231
241
|
/**
|
|
232
242
|
* Model ApplicationRefund
|
|
233
243
|
*
|
|
@@ -372,3 +382,25 @@ export type ApprovalRequest = Prisma.ApprovalRequestModel;
|
|
|
372
382
|
* Workflow Blocker - Records who is blocking workflow and for how long
|
|
373
383
|
*/
|
|
374
384
|
export type WorkflowBlocker = Prisma.WorkflowBlockerModel;
|
|
385
|
+
/**
|
|
386
|
+
* Model StateTransitionDefinition
|
|
387
|
+
* State Machine Transition Definition - Configurable state transitions
|
|
388
|
+
* Allows admins to customize workflows without code changes
|
|
389
|
+
*/
|
|
390
|
+
export type StateTransitionDefinition = Prisma.StateTransitionDefinitionModel;
|
|
391
|
+
/**
|
|
392
|
+
* Model StateTransitionLog
|
|
393
|
+
* State Transition Log - Audit trail for all state changes
|
|
394
|
+
* Records every state transition for compliance and debugging
|
|
395
|
+
*/
|
|
396
|
+
export type StateTransitionLog = Prisma.StateTransitionLogModel;
|
|
397
|
+
/**
|
|
398
|
+
* Model ScheduledJob
|
|
399
|
+
* Scheduled Job - Tracks execution of background jobs
|
|
400
|
+
*/
|
|
401
|
+
export type ScheduledJob = Prisma.ScheduledJobModel;
|
|
402
|
+
/**
|
|
403
|
+
* Model DocumentExpiryWarning
|
|
404
|
+
* Document Expiry Warning - Track warnings sent for expiring documents
|
|
405
|
+
*/
|
|
406
|
+
export type DocumentExpiryWarning = Prisma.DocumentExpiryWarningModel;
|
|
@@ -63,6 +63,11 @@ export type Organization = Prisma.OrganizationModel;
|
|
|
63
63
|
* Supports maker-checker workflows via canApprove and approvalLimit
|
|
64
64
|
*/
|
|
65
65
|
export type OrganizationMember = Prisma.OrganizationMemberModel;
|
|
66
|
+
/**
|
|
67
|
+
* Model BankDocumentRequirement
|
|
68
|
+
* Bank Document Requirement - Bank-specific document rules
|
|
69
|
+
*/
|
|
70
|
+
export type BankDocumentRequirement = Prisma.BankDocumentRequirementModel;
|
|
66
71
|
/**
|
|
67
72
|
* Model Tenant
|
|
68
73
|
*
|
|
@@ -245,6 +250,11 @@ export type PaymentMethodPhaseField = Prisma.PaymentMethodPhaseFieldModel;
|
|
|
245
250
|
*
|
|
246
251
|
*/
|
|
247
252
|
export type Application = Prisma.ApplicationModel;
|
|
253
|
+
/**
|
|
254
|
+
* Model ApplicationOrganization
|
|
255
|
+
*
|
|
256
|
+
*/
|
|
257
|
+
export type ApplicationOrganization = Prisma.ApplicationOrganizationModel;
|
|
248
258
|
/**
|
|
249
259
|
* Model ApplicationRefund
|
|
250
260
|
*
|
|
@@ -389,3 +399,25 @@ export type ApprovalRequest = Prisma.ApprovalRequestModel;
|
|
|
389
399
|
* Workflow Blocker - Records who is blocking workflow and for how long
|
|
390
400
|
*/
|
|
391
401
|
export type WorkflowBlocker = Prisma.WorkflowBlockerModel;
|
|
402
|
+
/**
|
|
403
|
+
* Model StateTransitionDefinition
|
|
404
|
+
* State Machine Transition Definition - Configurable state transitions
|
|
405
|
+
* Allows admins to customize workflows without code changes
|
|
406
|
+
*/
|
|
407
|
+
export type StateTransitionDefinition = Prisma.StateTransitionDefinitionModel;
|
|
408
|
+
/**
|
|
409
|
+
* Model StateTransitionLog
|
|
410
|
+
* State Transition Log - Audit trail for all state changes
|
|
411
|
+
* Records every state transition for compliance and debugging
|
|
412
|
+
*/
|
|
413
|
+
export type StateTransitionLog = Prisma.StateTransitionLogModel;
|
|
414
|
+
/**
|
|
415
|
+
* Model ScheduledJob
|
|
416
|
+
* Scheduled Job - Tracks execution of background jobs
|
|
417
|
+
*/
|
|
418
|
+
export type ScheduledJob = Prisma.ScheduledJobModel;
|
|
419
|
+
/**
|
|
420
|
+
* Model DocumentExpiryWarning
|
|
421
|
+
* Document Expiry Warning - Track warnings sent for expiring documents
|
|
422
|
+
*/
|
|
423
|
+
export type DocumentExpiryWarning = Prisma.DocumentExpiryWarningModel;
|