@valentine-efagene/qshelter-common 2.0.143 → 2.0.145

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.
Files changed (38) hide show
  1. package/dist/generated/client/browser.d.ts +20 -11
  2. package/dist/generated/client/client.d.ts +20 -11
  3. package/dist/generated/client/commonInputTypes.d.ts +324 -234
  4. package/dist/generated/client/enums.d.ts +38 -24
  5. package/dist/generated/client/enums.js +33 -21
  6. package/dist/generated/client/internal/class.d.ts +44 -22
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +438 -204
  9. package/dist/generated/client/internal/prismaNamespace.js +140 -52
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +147 -55
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +140 -52
  12. package/dist/generated/client/models/Application.d.ts +669 -1
  13. package/dist/generated/client/models/ApplicationDocument.d.ts +577 -1
  14. package/dist/generated/client/models/ApplicationOrganization.d.ts +2385 -0
  15. package/dist/generated/client/models/ApplicationOrganization.js +1 -0
  16. package/dist/generated/client/models/BankDocumentRequirement.d.ts +1932 -0
  17. package/dist/generated/client/models/BankDocumentRequirement.js +1 -0
  18. package/dist/generated/client/models/DocumentExpiryWarning.d.ts +1141 -0
  19. package/dist/generated/client/models/DocumentExpiryWarning.js +1 -0
  20. package/dist/generated/client/models/EventHandler.d.ts +0 -158
  21. package/dist/generated/client/models/EventType.d.ts +0 -134
  22. package/dist/generated/client/models/Organization.d.ts +390 -0
  23. package/dist/generated/client/models/PropertyMedia.d.ts +0 -7
  24. package/dist/generated/client/models/PropertyPaymentMethod.d.ts +192 -3
  25. package/dist/generated/client/models/PropertyVariant.d.ts +0 -7
  26. package/dist/generated/client/models/ScheduledJob.d.ts +1317 -0
  27. package/dist/generated/client/models/ScheduledJob.js +1 -0
  28. package/dist/generated/client/models/StateTransitionDefinition.d.ts +1104 -0
  29. package/dist/generated/client/models/StateTransitionDefinition.js +1 -0
  30. package/dist/generated/client/models/StateTransitionLog.d.ts +1383 -0
  31. package/dist/generated/client/models/StateTransitionLog.js +1 -0
  32. package/dist/generated/client/models/Tenant.d.ts +1314 -1314
  33. package/dist/generated/client/models/index.d.ts +4 -2
  34. package/dist/generated/client/models/index.js +4 -2
  35. package/dist/generated/client/models.d.ts +4 -2
  36. package/dist/src/prisma/tenant.js +2 -0
  37. package/package.json +1 -1
  38. package/prisma/schema.prisma +333 -134
@@ -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
  *
@@ -341,17 +351,6 @@ export type EventType = Prisma.EventTypeModel;
341
351
  * Handlers can be internal (call a service), external (webhook), or workflow triggers
342
352
  */
343
353
  export type EventHandler = Prisma.EventHandlerModel;
344
- /**
345
- * Model WorkflowEvent
346
- * Workflow Event - An actual event instance that occurred
347
- * This is the audit log of all events in the system
348
- */
349
- export type WorkflowEvent = Prisma.WorkflowEventModel;
350
- /**
351
- * Model EventHandlerExecution
352
- * Event Handler Execution - Log of a handler processing an event
353
- */
354
- export type EventHandlerExecution = Prisma.EventHandlerExecutionModel;
355
354
  /**
356
355
  * Model DomainEvent
357
356
  *
@@ -372,3 +371,13 @@ export type ApprovalRequest = Prisma.ApprovalRequestModel;
372
371
  * Workflow Blocker - Records who is blocking workflow and for how long
373
372
  */
374
373
  export type WorkflowBlocker = Prisma.WorkflowBlockerModel;
374
+ /**
375
+ * Model ScheduledJob
376
+ * Scheduled Job - Tracks execution of background jobs
377
+ */
378
+ export type ScheduledJob = Prisma.ScheduledJobModel;
379
+ /**
380
+ * Model DocumentExpiryWarning
381
+ * Document Expiry Warning - Track warnings sent for expiring documents
382
+ */
383
+ 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
  *
@@ -358,17 +368,6 @@ export type EventType = Prisma.EventTypeModel;
358
368
  * Handlers can be internal (call a service), external (webhook), or workflow triggers
359
369
  */
360
370
  export type EventHandler = Prisma.EventHandlerModel;
361
- /**
362
- * Model WorkflowEvent
363
- * Workflow Event - An actual event instance that occurred
364
- * This is the audit log of all events in the system
365
- */
366
- export type WorkflowEvent = Prisma.WorkflowEventModel;
367
- /**
368
- * Model EventHandlerExecution
369
- * Event Handler Execution - Log of a handler processing an event
370
- */
371
- export type EventHandlerExecution = Prisma.EventHandlerExecutionModel;
372
371
  /**
373
372
  * Model DomainEvent
374
373
  *
@@ -389,3 +388,13 @@ export type ApprovalRequest = Prisma.ApprovalRequestModel;
389
388
  * Workflow Blocker - Records who is blocking workflow and for how long
390
389
  */
391
390
  export type WorkflowBlocker = Prisma.WorkflowBlockerModel;
391
+ /**
392
+ * Model ScheduledJob
393
+ * Scheduled Job - Tracks execution of background jobs
394
+ */
395
+ export type ScheduledJob = Prisma.ScheduledJobModel;
396
+ /**
397
+ * Model DocumentExpiryWarning
398
+ * Document Expiry Warning - Track warnings sent for expiring documents
399
+ */
400
+ export type DocumentExpiryWarning = Prisma.DocumentExpiryWarningModel;