@valentine-efagene/qshelter-common 2.0.98 → 2.0.100

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 (56) hide show
  1. package/dist/generated/client/browser.d.ts +5 -0
  2. package/dist/generated/client/client.d.ts +5 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +90 -0
  4. package/dist/generated/client/enums.d.ts +26 -0
  5. package/dist/generated/client/enums.js +23 -0
  6. package/dist/generated/client/internal/class.d.ts +11 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +176 -1
  9. package/dist/generated/client/internal/prismaNamespace.js +95 -1
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +96 -0
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +95 -1
  12. package/dist/generated/client/models/Amenity.d.ts +183 -3
  13. package/dist/generated/client/models/ApplicationDocument.d.ts +183 -1
  14. package/dist/generated/client/models/ApplicationEvent.d.ts +190 -14
  15. package/dist/generated/client/models/ApplicationPayment.d.ts +225 -1
  16. package/dist/generated/client/models/ApplicationPhase.d.ts +272 -26
  17. package/dist/generated/client/models/DocumentationPhase.d.ts +224 -24
  18. package/dist/generated/client/models/DocumentationStep.d.ts +237 -1
  19. package/dist/generated/client/models/DocumentationStepApproval.d.ts +159 -1
  20. package/dist/generated/client/models/DocumentationStepDocument.d.ts +150 -10
  21. package/dist/generated/client/models/EventHandlerExecution.d.ts +208 -14
  22. package/dist/generated/client/models/PaymentInstallment.d.ts +228 -14
  23. package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +178 -14
  24. package/dist/generated/client/models/PaymentMethodPhaseField.d.ts +208 -14
  25. package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +180 -14
  26. package/dist/generated/client/models/PaymentPhase.d.ts +214 -14
  27. package/dist/generated/client/models/PhaseEventAttachment.d.ts +178 -14
  28. package/dist/generated/client/models/PropertyAmenity.d.ts +145 -11
  29. package/dist/generated/client/models/PropertyDocument.d.ts +164 -12
  30. package/dist/generated/client/models/PropertyMedia.d.ts +183 -17
  31. package/dist/generated/client/models/PropertyPaymentMethodLink.d.ts +159 -13
  32. package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +270 -14
  33. package/dist/generated/client/models/PropertyUnit.d.ts +230 -14
  34. package/dist/generated/client/models/PropertyVariant.d.ts +256 -14
  35. package/dist/generated/client/models/PropertyVariantAmenity.d.ts +145 -11
  36. package/dist/generated/client/models/PropertyVariantMedia.d.ts +171 -13
  37. package/dist/generated/client/models/QuestionnaireField.d.ts +232 -14
  38. package/dist/generated/client/models/QuestionnairePhase.d.ts +207 -1
  39. package/dist/generated/client/models/StepEventAttachment.d.ts +178 -14
  40. package/dist/generated/client/models/Tenant.d.ts +11653 -1153
  41. package/dist/generated/client/models/WorkflowBlocker.d.ts +1432 -0
  42. package/dist/generated/client/models/WorkflowBlocker.js +1 -0
  43. package/dist/generated/client/models/index.d.ts +1 -0
  44. package/dist/generated/client/models/index.js +1 -0
  45. package/dist/generated/client/models.d.ts +1 -0
  46. package/dist/src/index.d.ts +1 -0
  47. package/dist/src/index.js +1 -0
  48. package/dist/src/middleware/auth-context.d.ts +63 -6
  49. package/dist/src/middleware/auth-context.js +132 -13
  50. package/dist/src/prisma/tenant.js +26 -32
  51. package/dist/src/types/action-status.d.ts +137 -0
  52. package/dist/src/types/action-status.js +402 -0
  53. package/package.json +1 -1
  54. package/prisma/migrations/20260113000000_remove_workflow_analytics_summary/migration.sql +5 -0
  55. package/prisma/migrations/20260113110450_add_tenant_id_to_child_models/migration.sql +334 -0
  56. package/prisma/schema.prisma +273 -60
@@ -129,7 +129,8 @@ export const ModelName = {
129
129
  EventHandlerExecution: 'EventHandlerExecution',
130
130
  DomainEvent: 'DomainEvent',
131
131
  PropertyTransferRequest: 'PropertyTransferRequest',
132
- ApprovalRequest: 'ApprovalRequest'
132
+ ApprovalRequest: 'ApprovalRequest',
133
+ WorkflowBlocker: 'WorkflowBlocker'
133
134
  };
134
135
  /**
135
136
  * Enums
@@ -334,6 +335,7 @@ export const PropertyScalarFieldEnum = {
334
335
  };
335
336
  export const PropertyMediaScalarFieldEnum = {
336
337
  id: 'id',
338
+ tenantId: 'tenantId',
337
339
  propertyId: 'propertyId',
338
340
  url: 'url',
339
341
  type: 'type',
@@ -344,6 +346,7 @@ export const PropertyMediaScalarFieldEnum = {
344
346
  };
345
347
  export const PropertyDocumentScalarFieldEnum = {
346
348
  id: 'id',
349
+ tenantId: 'tenantId',
347
350
  propertyId: 'propertyId',
348
351
  name: 'name',
349
352
  url: 'url',
@@ -353,6 +356,7 @@ export const PropertyDocumentScalarFieldEnum = {
353
356
  };
354
357
  export const AmenityScalarFieldEnum = {
355
358
  id: 'id',
359
+ tenantId: 'tenantId',
356
360
  name: 'name',
357
361
  category: 'category',
358
362
  icon: 'icon',
@@ -361,6 +365,7 @@ export const AmenityScalarFieldEnum = {
361
365
  };
362
366
  export const PropertyVariantScalarFieldEnum = {
363
367
  id: 'id',
368
+ tenantId: 'tenantId',
364
369
  propertyId: 'propertyId',
365
370
  name: 'name',
366
371
  description: 'description',
@@ -380,12 +385,14 @@ export const PropertyVariantScalarFieldEnum = {
380
385
  updatedAt: 'updatedAt'
381
386
  };
382
387
  export const PropertyVariantAmenityScalarFieldEnum = {
388
+ tenantId: 'tenantId',
383
389
  variantId: 'variantId',
384
390
  amenityId: 'amenityId',
385
391
  createdAt: 'createdAt'
386
392
  };
387
393
  export const PropertyVariantMediaScalarFieldEnum = {
388
394
  id: 'id',
395
+ tenantId: 'tenantId',
389
396
  variantId: 'variantId',
390
397
  url: 'url',
391
398
  type: 'type',
@@ -396,6 +403,7 @@ export const PropertyVariantMediaScalarFieldEnum = {
396
403
  };
397
404
  export const PropertyUnitScalarFieldEnum = {
398
405
  id: 'id',
406
+ tenantId: 'tenantId',
399
407
  variantId: 'variantId',
400
408
  unitNumber: 'unitNumber',
401
409
  floorNumber: 'floorNumber',
@@ -412,6 +420,7 @@ export const PropertyUnitScalarFieldEnum = {
412
420
  updatedAt: 'updatedAt'
413
421
  };
414
422
  export const PropertyAmenityScalarFieldEnum = {
423
+ tenantId: 'tenantId',
415
424
  propertyId: 'propertyId',
416
425
  amenityId: 'amenityId',
417
426
  createdAt: 'createdAt'
@@ -450,6 +459,7 @@ export const PropertyPaymentMethodScalarFieldEnum = {
450
459
  updatedAt: 'updatedAt'
451
460
  };
452
461
  export const PropertyPaymentMethodLinkScalarFieldEnum = {
462
+ tenantId: 'tenantId',
453
463
  propertyId: 'propertyId',
454
464
  paymentMethodId: 'paymentMethodId',
455
465
  isDefault: 'isDefault',
@@ -458,6 +468,7 @@ export const PropertyPaymentMethodLinkScalarFieldEnum = {
458
468
  };
459
469
  export const PropertyPaymentMethodPhaseScalarFieldEnum = {
460
470
  id: 'id',
471
+ tenantId: 'tenantId',
461
472
  paymentMethodId: 'paymentMethodId',
462
473
  paymentPlanId: 'paymentPlanId',
463
474
  name: 'name',
@@ -478,6 +489,7 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
478
489
  };
479
490
  export const PhaseEventAttachmentScalarFieldEnum = {
480
491
  id: 'id',
492
+ tenantId: 'tenantId',
481
493
  phaseId: 'phaseId',
482
494
  trigger: 'trigger',
483
495
  handlerId: 'handlerId',
@@ -488,6 +500,7 @@ export const PhaseEventAttachmentScalarFieldEnum = {
488
500
  };
489
501
  export const PaymentMethodPhaseStepScalarFieldEnum = {
490
502
  id: 'id',
503
+ tenantId: 'tenantId',
491
504
  phaseId: 'phaseId',
492
505
  name: 'name',
493
506
  stepType: 'stepType',
@@ -498,6 +511,7 @@ export const PaymentMethodPhaseStepScalarFieldEnum = {
498
511
  };
499
512
  export const StepEventAttachmentScalarFieldEnum = {
500
513
  id: 'id',
514
+ tenantId: 'tenantId',
501
515
  stepId: 'stepId',
502
516
  trigger: 'trigger',
503
517
  handlerId: 'handlerId',
@@ -508,6 +522,7 @@ export const StepEventAttachmentScalarFieldEnum = {
508
522
  };
509
523
  export const PaymentMethodPhaseDocumentScalarFieldEnum = {
510
524
  id: 'id',
525
+ tenantId: 'tenantId',
511
526
  phaseId: 'phaseId',
512
527
  documentType: 'documentType',
513
528
  isRequired: 'isRequired',
@@ -519,6 +534,7 @@ export const PaymentMethodPhaseDocumentScalarFieldEnum = {
519
534
  };
520
535
  export const PaymentMethodPhaseFieldScalarFieldEnum = {
521
536
  id: 'id',
537
+ tenantId: 'tenantId',
522
538
  phaseId: 'phaseId',
523
539
  name: 'name',
524
540
  label: 'label',
@@ -584,6 +600,7 @@ export const ApplicationRefundScalarFieldEnum = {
584
600
  };
585
601
  export const ApplicationPhaseScalarFieldEnum = {
586
602
  id: 'id',
603
+ tenantId: 'tenantId',
587
604
  applicationId: 'applicationId',
588
605
  name: 'name',
589
606
  description: 'description',
@@ -602,6 +619,7 @@ export const ApplicationPhaseScalarFieldEnum = {
602
619
  };
603
620
  export const QuestionnairePhaseScalarFieldEnum = {
604
621
  id: 'id',
622
+ tenantId: 'tenantId',
605
623
  phaseId: 'phaseId',
606
624
  completedFieldsCount: 'completedFieldsCount',
607
625
  totalFieldsCount: 'totalFieldsCount',
@@ -615,6 +633,7 @@ export const QuestionnairePhaseScalarFieldEnum = {
615
633
  };
616
634
  export const DocumentationPhaseScalarFieldEnum = {
617
635
  id: 'id',
636
+ tenantId: 'tenantId',
618
637
  phaseId: 'phaseId',
619
638
  currentStepId: 'currentStepId',
620
639
  approvedDocumentsCount: 'approvedDocumentsCount',
@@ -630,6 +649,7 @@ export const DocumentationPhaseScalarFieldEnum = {
630
649
  };
631
650
  export const PaymentPhaseScalarFieldEnum = {
632
651
  id: 'id',
652
+ tenantId: 'tenantId',
633
653
  phaseId: 'phaseId',
634
654
  paymentPlanId: 'paymentPlanId',
635
655
  totalAmount: 'totalAmount',
@@ -645,6 +665,7 @@ export const PaymentPhaseScalarFieldEnum = {
645
665
  };
646
666
  export const QuestionnaireFieldScalarFieldEnum = {
647
667
  id: 'id',
668
+ tenantId: 'tenantId',
648
669
  questionnairePhaseId: 'questionnairePhaseId',
649
670
  name: 'name',
650
671
  label: 'label',
@@ -665,6 +686,7 @@ export const QuestionnaireFieldScalarFieldEnum = {
665
686
  };
666
687
  export const ApplicationEventScalarFieldEnum = {
667
688
  id: 'id',
689
+ tenantId: 'tenantId',
668
690
  applicationId: 'applicationId',
669
691
  eventType: 'eventType',
670
692
  eventGroup: 'eventGroup',
@@ -678,6 +700,7 @@ export const ApplicationEventScalarFieldEnum = {
678
700
  };
679
701
  export const DocumentationStepScalarFieldEnum = {
680
702
  id: 'id',
703
+ tenantId: 'tenantId',
681
704
  documentationPhaseId: 'documentationPhaseId',
682
705
  name: 'name',
683
706
  description: 'description',
@@ -696,6 +719,7 @@ export const DocumentationStepScalarFieldEnum = {
696
719
  };
697
720
  export const DocumentationStepDocumentScalarFieldEnum = {
698
721
  id: 'id',
722
+ tenantId: 'tenantId',
699
723
  stepId: 'stepId',
700
724
  documentType: 'documentType',
701
725
  isRequired: 'isRequired',
@@ -703,6 +727,7 @@ export const DocumentationStepDocumentScalarFieldEnum = {
703
727
  };
704
728
  export const DocumentationStepApprovalScalarFieldEnum = {
705
729
  id: 'id',
730
+ tenantId: 'tenantId',
706
731
  stepId: 'stepId',
707
732
  approverId: 'approverId',
708
733
  decision: 'decision',
@@ -712,6 +737,7 @@ export const DocumentationStepApprovalScalarFieldEnum = {
712
737
  };
713
738
  export const PaymentInstallmentScalarFieldEnum = {
714
739
  id: 'id',
740
+ tenantId: 'tenantId',
715
741
  paymentPhaseId: 'paymentPhaseId',
716
742
  installmentNumber: 'installmentNumber',
717
743
  amount: 'amount',
@@ -730,6 +756,7 @@ export const PaymentInstallmentScalarFieldEnum = {
730
756
  };
731
757
  export const ApplicationPaymentScalarFieldEnum = {
732
758
  id: 'id',
759
+ tenantId: 'tenantId',
733
760
  applicationId: 'applicationId',
734
761
  phaseId: 'phaseId',
735
762
  installmentId: 'installmentId',
@@ -748,6 +775,7 @@ export const ApplicationPaymentScalarFieldEnum = {
748
775
  };
749
776
  export const ApplicationDocumentScalarFieldEnum = {
750
777
  id: 'id',
778
+ tenantId: 'tenantId',
751
779
  applicationId: 'applicationId',
752
780
  phaseId: 'phaseId',
753
781
  stepId: 'stepId',
@@ -946,6 +974,7 @@ export const WorkflowEventScalarFieldEnum = {
946
974
  };
947
975
  export const EventHandlerExecutionScalarFieldEnum = {
948
976
  id: 'id',
977
+ tenantId: 'tenantId',
949
978
  eventId: 'eventId',
950
979
  handlerId: 'handlerId',
951
980
  status: 'status',
@@ -1024,6 +1053,32 @@ export const ApprovalRequestScalarFieldEnum = {
1024
1053
  completedAt: 'completedAt',
1025
1054
  updatedAt: 'updatedAt'
1026
1055
  };
1056
+ export const WorkflowBlockerScalarFieldEnum = {
1057
+ id: 'id',
1058
+ tenantId: 'tenantId',
1059
+ applicationId: 'applicationId',
1060
+ phaseId: 'phaseId',
1061
+ stepId: 'stepId',
1062
+ blockerActor: 'blockerActor',
1063
+ blockerCategory: 'blockerCategory',
1064
+ urgency: 'urgency',
1065
+ actionRequired: 'actionRequired',
1066
+ context: 'context',
1067
+ expectedByDate: 'expectedByDate',
1068
+ isOverdue: 'isOverdue',
1069
+ overdueAt: 'overdueAt',
1070
+ startedAt: 'startedAt',
1071
+ resolvedAt: 'resolvedAt',
1072
+ durationMs: 'durationMs',
1073
+ resolvedByActor: 'resolvedByActor',
1074
+ resolutionTrigger: 'resolutionTrigger',
1075
+ reminderCount: 'reminderCount',
1076
+ lastReminderAt: 'lastReminderAt',
1077
+ nextReminderAt: 'nextReminderAt',
1078
+ metadata: 'metadata',
1079
+ createdAt: 'createdAt',
1080
+ updatedAt: 'updatedAt'
1081
+ };
1027
1082
  export const SortOrder = {
1028
1083
  asc: 'asc',
1029
1084
  desc: 'desc'
@@ -1176,6 +1231,7 @@ export const PropertyOrderByRelevanceFieldEnum = {
1176
1231
  };
1177
1232
  export const PropertyMediaOrderByRelevanceFieldEnum = {
1178
1233
  id: 'id',
1234
+ tenantId: 'tenantId',
1179
1235
  propertyId: 'propertyId',
1180
1236
  url: 'url',
1181
1237
  type: 'type',
@@ -1183,6 +1239,7 @@ export const PropertyMediaOrderByRelevanceFieldEnum = {
1183
1239
  };
1184
1240
  export const PropertyDocumentOrderByRelevanceFieldEnum = {
1185
1241
  id: 'id',
1242
+ tenantId: 'tenantId',
1186
1243
  propertyId: 'propertyId',
1187
1244
  name: 'name',
1188
1245
  url: 'url',
@@ -1190,23 +1247,27 @@ export const PropertyDocumentOrderByRelevanceFieldEnum = {
1190
1247
  };
1191
1248
  export const AmenityOrderByRelevanceFieldEnum = {
1192
1249
  id: 'id',
1250
+ tenantId: 'tenantId',
1193
1251
  name: 'name',
1194
1252
  category: 'category',
1195
1253
  icon: 'icon'
1196
1254
  };
1197
1255
  export const PropertyVariantOrderByRelevanceFieldEnum = {
1198
1256
  id: 'id',
1257
+ tenantId: 'tenantId',
1199
1258
  propertyId: 'propertyId',
1200
1259
  name: 'name',
1201
1260
  description: 'description',
1202
1261
  status: 'status'
1203
1262
  };
1204
1263
  export const PropertyVariantAmenityOrderByRelevanceFieldEnum = {
1264
+ tenantId: 'tenantId',
1205
1265
  variantId: 'variantId',
1206
1266
  amenityId: 'amenityId'
1207
1267
  };
1208
1268
  export const PropertyVariantMediaOrderByRelevanceFieldEnum = {
1209
1269
  id: 'id',
1270
+ tenantId: 'tenantId',
1210
1271
  variantId: 'variantId',
1211
1272
  url: 'url',
1212
1273
  type: 'type',
@@ -1214,6 +1275,7 @@ export const PropertyVariantMediaOrderByRelevanceFieldEnum = {
1214
1275
  };
1215
1276
  export const PropertyUnitOrderByRelevanceFieldEnum = {
1216
1277
  id: 'id',
1278
+ tenantId: 'tenantId',
1217
1279
  variantId: 'variantId',
1218
1280
  unitNumber: 'unitNumber',
1219
1281
  blockName: 'blockName',
@@ -1223,6 +1285,7 @@ export const PropertyUnitOrderByRelevanceFieldEnum = {
1223
1285
  ownerId: 'ownerId'
1224
1286
  };
1225
1287
  export const PropertyAmenityOrderByRelevanceFieldEnum = {
1288
+ tenantId: 'tenantId',
1226
1289
  propertyId: 'propertyId',
1227
1290
  amenityId: 'amenityId'
1228
1291
  };
@@ -1239,11 +1302,13 @@ export const PropertyPaymentMethodOrderByRelevanceFieldEnum = {
1239
1302
  description: 'description'
1240
1303
  };
1241
1304
  export const PropertyPaymentMethodLinkOrderByRelevanceFieldEnum = {
1305
+ tenantId: 'tenantId',
1242
1306
  propertyId: 'propertyId',
1243
1307
  paymentMethodId: 'paymentMethodId'
1244
1308
  };
1245
1309
  export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
1246
1310
  id: 'id',
1311
+ tenantId: 'tenantId',
1247
1312
  paymentMethodId: 'paymentMethodId',
1248
1313
  paymentPlanId: 'paymentPlanId',
1249
1314
  name: 'name',
@@ -1251,21 +1316,25 @@ export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
1251
1316
  };
1252
1317
  export const PhaseEventAttachmentOrderByRelevanceFieldEnum = {
1253
1318
  id: 'id',
1319
+ tenantId: 'tenantId',
1254
1320
  phaseId: 'phaseId',
1255
1321
  handlerId: 'handlerId'
1256
1322
  };
1257
1323
  export const PaymentMethodPhaseStepOrderByRelevanceFieldEnum = {
1258
1324
  id: 'id',
1325
+ tenantId: 'tenantId',
1259
1326
  phaseId: 'phaseId',
1260
1327
  name: 'name'
1261
1328
  };
1262
1329
  export const StepEventAttachmentOrderByRelevanceFieldEnum = {
1263
1330
  id: 'id',
1331
+ tenantId: 'tenantId',
1264
1332
  stepId: 'stepId',
1265
1333
  handlerId: 'handlerId'
1266
1334
  };
1267
1335
  export const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = {
1268
1336
  id: 'id',
1337
+ tenantId: 'tenantId',
1269
1338
  phaseId: 'phaseId',
1270
1339
  documentType: 'documentType',
1271
1340
  description: 'description',
@@ -1273,6 +1342,7 @@ export const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = {
1273
1342
  };
1274
1343
  export const PaymentMethodPhaseFieldOrderByRelevanceFieldEnum = {
1275
1344
  id: 'id',
1345
+ tenantId: 'tenantId',
1276
1346
  phaseId: 'phaseId',
1277
1347
  name: 'name',
1278
1348
  label: 'label',
@@ -1312,28 +1382,33 @@ export const ApplicationRefundOrderByRelevanceFieldEnum = {
1312
1382
  };
1313
1383
  export const ApplicationPhaseOrderByRelevanceFieldEnum = {
1314
1384
  id: 'id',
1385
+ tenantId: 'tenantId',
1315
1386
  applicationId: 'applicationId',
1316
1387
  name: 'name',
1317
1388
  description: 'description'
1318
1389
  };
1319
1390
  export const QuestionnairePhaseOrderByRelevanceFieldEnum = {
1320
1391
  id: 'id',
1392
+ tenantId: 'tenantId',
1321
1393
  phaseId: 'phaseId',
1322
1394
  underwritingDecision: 'underwritingDecision',
1323
1395
  underwritingNotes: 'underwritingNotes'
1324
1396
  };
1325
1397
  export const DocumentationPhaseOrderByRelevanceFieldEnum = {
1326
1398
  id: 'id',
1399
+ tenantId: 'tenantId',
1327
1400
  phaseId: 'phaseId',
1328
1401
  currentStepId: 'currentStepId'
1329
1402
  };
1330
1403
  export const PaymentPhaseOrderByRelevanceFieldEnum = {
1331
1404
  id: 'id',
1405
+ tenantId: 'tenantId',
1332
1406
  phaseId: 'phaseId',
1333
1407
  paymentPlanId: 'paymentPlanId'
1334
1408
  };
1335
1409
  export const QuestionnaireFieldOrderByRelevanceFieldEnum = {
1336
1410
  id: 'id',
1411
+ tenantId: 'tenantId',
1337
1412
  questionnairePhaseId: 'questionnairePhaseId',
1338
1413
  name: 'name',
1339
1414
  label: 'label',
@@ -1342,6 +1417,7 @@ export const QuestionnaireFieldOrderByRelevanceFieldEnum = {
1342
1417
  };
1343
1418
  export const ApplicationEventOrderByRelevanceFieldEnum = {
1344
1419
  id: 'id',
1420
+ tenantId: 'tenantId',
1345
1421
  applicationId: 'applicationId',
1346
1422
  fromState: 'fromState',
1347
1423
  toState: 'toState',
@@ -1350,6 +1426,7 @@ export const ApplicationEventOrderByRelevanceFieldEnum = {
1350
1426
  };
1351
1427
  export const DocumentationStepOrderByRelevanceFieldEnum = {
1352
1428
  id: 'id',
1429
+ tenantId: 'tenantId',
1353
1430
  documentationPhaseId: 'documentationPhaseId',
1354
1431
  name: 'name',
1355
1432
  description: 'description',
@@ -1358,21 +1435,25 @@ export const DocumentationStepOrderByRelevanceFieldEnum = {
1358
1435
  };
1359
1436
  export const DocumentationStepDocumentOrderByRelevanceFieldEnum = {
1360
1437
  id: 'id',
1438
+ tenantId: 'tenantId',
1361
1439
  stepId: 'stepId',
1362
1440
  documentType: 'documentType'
1363
1441
  };
1364
1442
  export const DocumentationStepApprovalOrderByRelevanceFieldEnum = {
1365
1443
  id: 'id',
1444
+ tenantId: 'tenantId',
1366
1445
  stepId: 'stepId',
1367
1446
  approverId: 'approverId',
1368
1447
  comment: 'comment'
1369
1448
  };
1370
1449
  export const PaymentInstallmentOrderByRelevanceFieldEnum = {
1371
1450
  id: 'id',
1451
+ tenantId: 'tenantId',
1372
1452
  paymentPhaseId: 'paymentPhaseId'
1373
1453
  };
1374
1454
  export const ApplicationPaymentOrderByRelevanceFieldEnum = {
1375
1455
  id: 'id',
1456
+ tenantId: 'tenantId',
1376
1457
  applicationId: 'applicationId',
1377
1458
  phaseId: 'phaseId',
1378
1459
  installmentId: 'installmentId',
@@ -1383,6 +1464,7 @@ export const ApplicationPaymentOrderByRelevanceFieldEnum = {
1383
1464
  };
1384
1465
  export const ApplicationDocumentOrderByRelevanceFieldEnum = {
1385
1466
  id: 'id',
1467
+ tenantId: 'tenantId',
1386
1468
  applicationId: 'applicationId',
1387
1469
  phaseId: 'phaseId',
1388
1470
  stepId: 'stepId',
@@ -1490,6 +1572,7 @@ export const WorkflowEventOrderByRelevanceFieldEnum = {
1490
1572
  };
1491
1573
  export const EventHandlerExecutionOrderByRelevanceFieldEnum = {
1492
1574
  id: 'id',
1575
+ tenantId: 'tenantId',
1493
1576
  eventId: 'eventId',
1494
1577
  handlerId: 'handlerId',
1495
1578
  error: 'error',
@@ -1532,4 +1615,15 @@ export const ApprovalRequestOrderByRelevanceFieldEnum = {
1532
1615
  reviewedById: 'reviewedById',
1533
1616
  reviewNotes: 'reviewNotes'
1534
1617
  };
1618
+ export const WorkflowBlockerOrderByRelevanceFieldEnum = {
1619
+ id: 'id',
1620
+ tenantId: 'tenantId',
1621
+ applicationId: 'applicationId',
1622
+ phaseId: 'phaseId',
1623
+ stepId: 'stepId',
1624
+ actionRequired: 'actionRequired',
1625
+ context: 'context',
1626
+ resolvedByActor: 'resolvedByActor',
1627
+ resolutionTrigger: 'resolutionTrigger'
1628
+ };
1535
1629
  export const defineExtension = runtime.Extensions.defineExtension;