@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.
- package/dist/generated/client/browser.d.ts +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/commonInputTypes.d.ts +90 -0
- package/dist/generated/client/enums.d.ts +26 -0
- package/dist/generated/client/enums.js +23 -0
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +176 -1
- package/dist/generated/client/internal/prismaNamespace.js +95 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +96 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +95 -1
- package/dist/generated/client/models/Amenity.d.ts +183 -3
- package/dist/generated/client/models/ApplicationDocument.d.ts +183 -1
- package/dist/generated/client/models/ApplicationEvent.d.ts +190 -14
- package/dist/generated/client/models/ApplicationPayment.d.ts +225 -1
- package/dist/generated/client/models/ApplicationPhase.d.ts +272 -26
- package/dist/generated/client/models/DocumentationPhase.d.ts +224 -24
- package/dist/generated/client/models/DocumentationStep.d.ts +237 -1
- package/dist/generated/client/models/DocumentationStepApproval.d.ts +159 -1
- package/dist/generated/client/models/DocumentationStepDocument.d.ts +150 -10
- package/dist/generated/client/models/EventHandlerExecution.d.ts +208 -14
- package/dist/generated/client/models/PaymentInstallment.d.ts +228 -14
- package/dist/generated/client/models/PaymentMethodPhaseDocument.d.ts +178 -14
- package/dist/generated/client/models/PaymentMethodPhaseField.d.ts +208 -14
- package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +180 -14
- package/dist/generated/client/models/PaymentPhase.d.ts +214 -14
- package/dist/generated/client/models/PhaseEventAttachment.d.ts +178 -14
- package/dist/generated/client/models/PropertyAmenity.d.ts +145 -11
- package/dist/generated/client/models/PropertyDocument.d.ts +164 -12
- package/dist/generated/client/models/PropertyMedia.d.ts +183 -17
- package/dist/generated/client/models/PropertyPaymentMethodLink.d.ts +159 -13
- package/dist/generated/client/models/PropertyPaymentMethodPhase.d.ts +270 -14
- package/dist/generated/client/models/PropertyUnit.d.ts +230 -14
- package/dist/generated/client/models/PropertyVariant.d.ts +256 -14
- package/dist/generated/client/models/PropertyVariantAmenity.d.ts +145 -11
- package/dist/generated/client/models/PropertyVariantMedia.d.ts +171 -13
- package/dist/generated/client/models/QuestionnaireField.d.ts +232 -14
- package/dist/generated/client/models/QuestionnairePhase.d.ts +207 -1
- package/dist/generated/client/models/StepEventAttachment.d.ts +178 -14
- package/dist/generated/client/models/Tenant.d.ts +11653 -1153
- package/dist/generated/client/models/WorkflowBlocker.d.ts +1432 -0
- package/dist/generated/client/models/WorkflowBlocker.js +1 -0
- package/dist/generated/client/models/index.d.ts +1 -0
- package/dist/generated/client/models/index.js +1 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/middleware/auth-context.d.ts +63 -6
- package/dist/src/middleware/auth-context.js +132 -13
- package/dist/src/prisma/tenant.js +26 -32
- package/dist/src/types/action-status.d.ts +137 -0
- package/dist/src/types/action-status.js +402 -0
- package/package.json +1 -1
- package/prisma/migrations/20260113000000_remove_workflow_analytics_summary/migration.sql +5 -0
- package/prisma/migrations/20260113110450_add_tenant_id_to_child_models/migration.sql +334 -0
- package/prisma/schema.prisma +273 -60
|
@@ -101,7 +101,8 @@ export const ModelName = {
|
|
|
101
101
|
EventHandlerExecution: 'EventHandlerExecution',
|
|
102
102
|
DomainEvent: 'DomainEvent',
|
|
103
103
|
PropertyTransferRequest: 'PropertyTransferRequest',
|
|
104
|
-
ApprovalRequest: 'ApprovalRequest'
|
|
104
|
+
ApprovalRequest: 'ApprovalRequest',
|
|
105
|
+
WorkflowBlocker: 'WorkflowBlocker'
|
|
105
106
|
};
|
|
106
107
|
/*
|
|
107
108
|
* Enums
|
|
@@ -306,6 +307,7 @@ export const PropertyScalarFieldEnum = {
|
|
|
306
307
|
};
|
|
307
308
|
export const PropertyMediaScalarFieldEnum = {
|
|
308
309
|
id: 'id',
|
|
310
|
+
tenantId: 'tenantId',
|
|
309
311
|
propertyId: 'propertyId',
|
|
310
312
|
url: 'url',
|
|
311
313
|
type: 'type',
|
|
@@ -316,6 +318,7 @@ export const PropertyMediaScalarFieldEnum = {
|
|
|
316
318
|
};
|
|
317
319
|
export const PropertyDocumentScalarFieldEnum = {
|
|
318
320
|
id: 'id',
|
|
321
|
+
tenantId: 'tenantId',
|
|
319
322
|
propertyId: 'propertyId',
|
|
320
323
|
name: 'name',
|
|
321
324
|
url: 'url',
|
|
@@ -325,6 +328,7 @@ export const PropertyDocumentScalarFieldEnum = {
|
|
|
325
328
|
};
|
|
326
329
|
export const AmenityScalarFieldEnum = {
|
|
327
330
|
id: 'id',
|
|
331
|
+
tenantId: 'tenantId',
|
|
328
332
|
name: 'name',
|
|
329
333
|
category: 'category',
|
|
330
334
|
icon: 'icon',
|
|
@@ -333,6 +337,7 @@ export const AmenityScalarFieldEnum = {
|
|
|
333
337
|
};
|
|
334
338
|
export const PropertyVariantScalarFieldEnum = {
|
|
335
339
|
id: 'id',
|
|
340
|
+
tenantId: 'tenantId',
|
|
336
341
|
propertyId: 'propertyId',
|
|
337
342
|
name: 'name',
|
|
338
343
|
description: 'description',
|
|
@@ -352,12 +357,14 @@ export const PropertyVariantScalarFieldEnum = {
|
|
|
352
357
|
updatedAt: 'updatedAt'
|
|
353
358
|
};
|
|
354
359
|
export const PropertyVariantAmenityScalarFieldEnum = {
|
|
360
|
+
tenantId: 'tenantId',
|
|
355
361
|
variantId: 'variantId',
|
|
356
362
|
amenityId: 'amenityId',
|
|
357
363
|
createdAt: 'createdAt'
|
|
358
364
|
};
|
|
359
365
|
export const PropertyVariantMediaScalarFieldEnum = {
|
|
360
366
|
id: 'id',
|
|
367
|
+
tenantId: 'tenantId',
|
|
361
368
|
variantId: 'variantId',
|
|
362
369
|
url: 'url',
|
|
363
370
|
type: 'type',
|
|
@@ -368,6 +375,7 @@ export const PropertyVariantMediaScalarFieldEnum = {
|
|
|
368
375
|
};
|
|
369
376
|
export const PropertyUnitScalarFieldEnum = {
|
|
370
377
|
id: 'id',
|
|
378
|
+
tenantId: 'tenantId',
|
|
371
379
|
variantId: 'variantId',
|
|
372
380
|
unitNumber: 'unitNumber',
|
|
373
381
|
floorNumber: 'floorNumber',
|
|
@@ -384,6 +392,7 @@ export const PropertyUnitScalarFieldEnum = {
|
|
|
384
392
|
updatedAt: 'updatedAt'
|
|
385
393
|
};
|
|
386
394
|
export const PropertyAmenityScalarFieldEnum = {
|
|
395
|
+
tenantId: 'tenantId',
|
|
387
396
|
propertyId: 'propertyId',
|
|
388
397
|
amenityId: 'amenityId',
|
|
389
398
|
createdAt: 'createdAt'
|
|
@@ -422,6 +431,7 @@ export const PropertyPaymentMethodScalarFieldEnum = {
|
|
|
422
431
|
updatedAt: 'updatedAt'
|
|
423
432
|
};
|
|
424
433
|
export const PropertyPaymentMethodLinkScalarFieldEnum = {
|
|
434
|
+
tenantId: 'tenantId',
|
|
425
435
|
propertyId: 'propertyId',
|
|
426
436
|
paymentMethodId: 'paymentMethodId',
|
|
427
437
|
isDefault: 'isDefault',
|
|
@@ -430,6 +440,7 @@ export const PropertyPaymentMethodLinkScalarFieldEnum = {
|
|
|
430
440
|
};
|
|
431
441
|
export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
432
442
|
id: 'id',
|
|
443
|
+
tenantId: 'tenantId',
|
|
433
444
|
paymentMethodId: 'paymentMethodId',
|
|
434
445
|
paymentPlanId: 'paymentPlanId',
|
|
435
446
|
name: 'name',
|
|
@@ -450,6 +461,7 @@ export const PropertyPaymentMethodPhaseScalarFieldEnum = {
|
|
|
450
461
|
};
|
|
451
462
|
export const PhaseEventAttachmentScalarFieldEnum = {
|
|
452
463
|
id: 'id',
|
|
464
|
+
tenantId: 'tenantId',
|
|
453
465
|
phaseId: 'phaseId',
|
|
454
466
|
trigger: 'trigger',
|
|
455
467
|
handlerId: 'handlerId',
|
|
@@ -460,6 +472,7 @@ export const PhaseEventAttachmentScalarFieldEnum = {
|
|
|
460
472
|
};
|
|
461
473
|
export const PaymentMethodPhaseStepScalarFieldEnum = {
|
|
462
474
|
id: 'id',
|
|
475
|
+
tenantId: 'tenantId',
|
|
463
476
|
phaseId: 'phaseId',
|
|
464
477
|
name: 'name',
|
|
465
478
|
stepType: 'stepType',
|
|
@@ -470,6 +483,7 @@ export const PaymentMethodPhaseStepScalarFieldEnum = {
|
|
|
470
483
|
};
|
|
471
484
|
export const StepEventAttachmentScalarFieldEnum = {
|
|
472
485
|
id: 'id',
|
|
486
|
+
tenantId: 'tenantId',
|
|
473
487
|
stepId: 'stepId',
|
|
474
488
|
trigger: 'trigger',
|
|
475
489
|
handlerId: 'handlerId',
|
|
@@ -480,6 +494,7 @@ export const StepEventAttachmentScalarFieldEnum = {
|
|
|
480
494
|
};
|
|
481
495
|
export const PaymentMethodPhaseDocumentScalarFieldEnum = {
|
|
482
496
|
id: 'id',
|
|
497
|
+
tenantId: 'tenantId',
|
|
483
498
|
phaseId: 'phaseId',
|
|
484
499
|
documentType: 'documentType',
|
|
485
500
|
isRequired: 'isRequired',
|
|
@@ -491,6 +506,7 @@ export const PaymentMethodPhaseDocumentScalarFieldEnum = {
|
|
|
491
506
|
};
|
|
492
507
|
export const PaymentMethodPhaseFieldScalarFieldEnum = {
|
|
493
508
|
id: 'id',
|
|
509
|
+
tenantId: 'tenantId',
|
|
494
510
|
phaseId: 'phaseId',
|
|
495
511
|
name: 'name',
|
|
496
512
|
label: 'label',
|
|
@@ -556,6 +572,7 @@ export const ApplicationRefundScalarFieldEnum = {
|
|
|
556
572
|
};
|
|
557
573
|
export const ApplicationPhaseScalarFieldEnum = {
|
|
558
574
|
id: 'id',
|
|
575
|
+
tenantId: 'tenantId',
|
|
559
576
|
applicationId: 'applicationId',
|
|
560
577
|
name: 'name',
|
|
561
578
|
description: 'description',
|
|
@@ -574,6 +591,7 @@ export const ApplicationPhaseScalarFieldEnum = {
|
|
|
574
591
|
};
|
|
575
592
|
export const QuestionnairePhaseScalarFieldEnum = {
|
|
576
593
|
id: 'id',
|
|
594
|
+
tenantId: 'tenantId',
|
|
577
595
|
phaseId: 'phaseId',
|
|
578
596
|
completedFieldsCount: 'completedFieldsCount',
|
|
579
597
|
totalFieldsCount: 'totalFieldsCount',
|
|
@@ -587,6 +605,7 @@ export const QuestionnairePhaseScalarFieldEnum = {
|
|
|
587
605
|
};
|
|
588
606
|
export const DocumentationPhaseScalarFieldEnum = {
|
|
589
607
|
id: 'id',
|
|
608
|
+
tenantId: 'tenantId',
|
|
590
609
|
phaseId: 'phaseId',
|
|
591
610
|
currentStepId: 'currentStepId',
|
|
592
611
|
approvedDocumentsCount: 'approvedDocumentsCount',
|
|
@@ -602,6 +621,7 @@ export const DocumentationPhaseScalarFieldEnum = {
|
|
|
602
621
|
};
|
|
603
622
|
export const PaymentPhaseScalarFieldEnum = {
|
|
604
623
|
id: 'id',
|
|
624
|
+
tenantId: 'tenantId',
|
|
605
625
|
phaseId: 'phaseId',
|
|
606
626
|
paymentPlanId: 'paymentPlanId',
|
|
607
627
|
totalAmount: 'totalAmount',
|
|
@@ -617,6 +637,7 @@ export const PaymentPhaseScalarFieldEnum = {
|
|
|
617
637
|
};
|
|
618
638
|
export const QuestionnaireFieldScalarFieldEnum = {
|
|
619
639
|
id: 'id',
|
|
640
|
+
tenantId: 'tenantId',
|
|
620
641
|
questionnairePhaseId: 'questionnairePhaseId',
|
|
621
642
|
name: 'name',
|
|
622
643
|
label: 'label',
|
|
@@ -637,6 +658,7 @@ export const QuestionnaireFieldScalarFieldEnum = {
|
|
|
637
658
|
};
|
|
638
659
|
export const ApplicationEventScalarFieldEnum = {
|
|
639
660
|
id: 'id',
|
|
661
|
+
tenantId: 'tenantId',
|
|
640
662
|
applicationId: 'applicationId',
|
|
641
663
|
eventType: 'eventType',
|
|
642
664
|
eventGroup: 'eventGroup',
|
|
@@ -650,6 +672,7 @@ export const ApplicationEventScalarFieldEnum = {
|
|
|
650
672
|
};
|
|
651
673
|
export const DocumentationStepScalarFieldEnum = {
|
|
652
674
|
id: 'id',
|
|
675
|
+
tenantId: 'tenantId',
|
|
653
676
|
documentationPhaseId: 'documentationPhaseId',
|
|
654
677
|
name: 'name',
|
|
655
678
|
description: 'description',
|
|
@@ -668,6 +691,7 @@ export const DocumentationStepScalarFieldEnum = {
|
|
|
668
691
|
};
|
|
669
692
|
export const DocumentationStepDocumentScalarFieldEnum = {
|
|
670
693
|
id: 'id',
|
|
694
|
+
tenantId: 'tenantId',
|
|
671
695
|
stepId: 'stepId',
|
|
672
696
|
documentType: 'documentType',
|
|
673
697
|
isRequired: 'isRequired',
|
|
@@ -675,6 +699,7 @@ export const DocumentationStepDocumentScalarFieldEnum = {
|
|
|
675
699
|
};
|
|
676
700
|
export const DocumentationStepApprovalScalarFieldEnum = {
|
|
677
701
|
id: 'id',
|
|
702
|
+
tenantId: 'tenantId',
|
|
678
703
|
stepId: 'stepId',
|
|
679
704
|
approverId: 'approverId',
|
|
680
705
|
decision: 'decision',
|
|
@@ -684,6 +709,7 @@ export const DocumentationStepApprovalScalarFieldEnum = {
|
|
|
684
709
|
};
|
|
685
710
|
export const PaymentInstallmentScalarFieldEnum = {
|
|
686
711
|
id: 'id',
|
|
712
|
+
tenantId: 'tenantId',
|
|
687
713
|
paymentPhaseId: 'paymentPhaseId',
|
|
688
714
|
installmentNumber: 'installmentNumber',
|
|
689
715
|
amount: 'amount',
|
|
@@ -702,6 +728,7 @@ export const PaymentInstallmentScalarFieldEnum = {
|
|
|
702
728
|
};
|
|
703
729
|
export const ApplicationPaymentScalarFieldEnum = {
|
|
704
730
|
id: 'id',
|
|
731
|
+
tenantId: 'tenantId',
|
|
705
732
|
applicationId: 'applicationId',
|
|
706
733
|
phaseId: 'phaseId',
|
|
707
734
|
installmentId: 'installmentId',
|
|
@@ -720,6 +747,7 @@ export const ApplicationPaymentScalarFieldEnum = {
|
|
|
720
747
|
};
|
|
721
748
|
export const ApplicationDocumentScalarFieldEnum = {
|
|
722
749
|
id: 'id',
|
|
750
|
+
tenantId: 'tenantId',
|
|
723
751
|
applicationId: 'applicationId',
|
|
724
752
|
phaseId: 'phaseId',
|
|
725
753
|
stepId: 'stepId',
|
|
@@ -918,6 +946,7 @@ export const WorkflowEventScalarFieldEnum = {
|
|
|
918
946
|
};
|
|
919
947
|
export const EventHandlerExecutionScalarFieldEnum = {
|
|
920
948
|
id: 'id',
|
|
949
|
+
tenantId: 'tenantId',
|
|
921
950
|
eventId: 'eventId',
|
|
922
951
|
handlerId: 'handlerId',
|
|
923
952
|
status: 'status',
|
|
@@ -996,6 +1025,32 @@ export const ApprovalRequestScalarFieldEnum = {
|
|
|
996
1025
|
completedAt: 'completedAt',
|
|
997
1026
|
updatedAt: 'updatedAt'
|
|
998
1027
|
};
|
|
1028
|
+
export const WorkflowBlockerScalarFieldEnum = {
|
|
1029
|
+
id: 'id',
|
|
1030
|
+
tenantId: 'tenantId',
|
|
1031
|
+
applicationId: 'applicationId',
|
|
1032
|
+
phaseId: 'phaseId',
|
|
1033
|
+
stepId: 'stepId',
|
|
1034
|
+
blockerActor: 'blockerActor',
|
|
1035
|
+
blockerCategory: 'blockerCategory',
|
|
1036
|
+
urgency: 'urgency',
|
|
1037
|
+
actionRequired: 'actionRequired',
|
|
1038
|
+
context: 'context',
|
|
1039
|
+
expectedByDate: 'expectedByDate',
|
|
1040
|
+
isOverdue: 'isOverdue',
|
|
1041
|
+
overdueAt: 'overdueAt',
|
|
1042
|
+
startedAt: 'startedAt',
|
|
1043
|
+
resolvedAt: 'resolvedAt',
|
|
1044
|
+
durationMs: 'durationMs',
|
|
1045
|
+
resolvedByActor: 'resolvedByActor',
|
|
1046
|
+
resolutionTrigger: 'resolutionTrigger',
|
|
1047
|
+
reminderCount: 'reminderCount',
|
|
1048
|
+
lastReminderAt: 'lastReminderAt',
|
|
1049
|
+
nextReminderAt: 'nextReminderAt',
|
|
1050
|
+
metadata: 'metadata',
|
|
1051
|
+
createdAt: 'createdAt',
|
|
1052
|
+
updatedAt: 'updatedAt'
|
|
1053
|
+
};
|
|
999
1054
|
export const SortOrder = {
|
|
1000
1055
|
asc: 'asc',
|
|
1001
1056
|
desc: 'desc'
|
|
@@ -1148,6 +1203,7 @@ export const PropertyOrderByRelevanceFieldEnum = {
|
|
|
1148
1203
|
};
|
|
1149
1204
|
export const PropertyMediaOrderByRelevanceFieldEnum = {
|
|
1150
1205
|
id: 'id',
|
|
1206
|
+
tenantId: 'tenantId',
|
|
1151
1207
|
propertyId: 'propertyId',
|
|
1152
1208
|
url: 'url',
|
|
1153
1209
|
type: 'type',
|
|
@@ -1155,6 +1211,7 @@ export const PropertyMediaOrderByRelevanceFieldEnum = {
|
|
|
1155
1211
|
};
|
|
1156
1212
|
export const PropertyDocumentOrderByRelevanceFieldEnum = {
|
|
1157
1213
|
id: 'id',
|
|
1214
|
+
tenantId: 'tenantId',
|
|
1158
1215
|
propertyId: 'propertyId',
|
|
1159
1216
|
name: 'name',
|
|
1160
1217
|
url: 'url',
|
|
@@ -1162,23 +1219,27 @@ export const PropertyDocumentOrderByRelevanceFieldEnum = {
|
|
|
1162
1219
|
};
|
|
1163
1220
|
export const AmenityOrderByRelevanceFieldEnum = {
|
|
1164
1221
|
id: 'id',
|
|
1222
|
+
tenantId: 'tenantId',
|
|
1165
1223
|
name: 'name',
|
|
1166
1224
|
category: 'category',
|
|
1167
1225
|
icon: 'icon'
|
|
1168
1226
|
};
|
|
1169
1227
|
export const PropertyVariantOrderByRelevanceFieldEnum = {
|
|
1170
1228
|
id: 'id',
|
|
1229
|
+
tenantId: 'tenantId',
|
|
1171
1230
|
propertyId: 'propertyId',
|
|
1172
1231
|
name: 'name',
|
|
1173
1232
|
description: 'description',
|
|
1174
1233
|
status: 'status'
|
|
1175
1234
|
};
|
|
1176
1235
|
export const PropertyVariantAmenityOrderByRelevanceFieldEnum = {
|
|
1236
|
+
tenantId: 'tenantId',
|
|
1177
1237
|
variantId: 'variantId',
|
|
1178
1238
|
amenityId: 'amenityId'
|
|
1179
1239
|
};
|
|
1180
1240
|
export const PropertyVariantMediaOrderByRelevanceFieldEnum = {
|
|
1181
1241
|
id: 'id',
|
|
1242
|
+
tenantId: 'tenantId',
|
|
1182
1243
|
variantId: 'variantId',
|
|
1183
1244
|
url: 'url',
|
|
1184
1245
|
type: 'type',
|
|
@@ -1186,6 +1247,7 @@ export const PropertyVariantMediaOrderByRelevanceFieldEnum = {
|
|
|
1186
1247
|
};
|
|
1187
1248
|
export const PropertyUnitOrderByRelevanceFieldEnum = {
|
|
1188
1249
|
id: 'id',
|
|
1250
|
+
tenantId: 'tenantId',
|
|
1189
1251
|
variantId: 'variantId',
|
|
1190
1252
|
unitNumber: 'unitNumber',
|
|
1191
1253
|
blockName: 'blockName',
|
|
@@ -1195,6 +1257,7 @@ export const PropertyUnitOrderByRelevanceFieldEnum = {
|
|
|
1195
1257
|
ownerId: 'ownerId'
|
|
1196
1258
|
};
|
|
1197
1259
|
export const PropertyAmenityOrderByRelevanceFieldEnum = {
|
|
1260
|
+
tenantId: 'tenantId',
|
|
1198
1261
|
propertyId: 'propertyId',
|
|
1199
1262
|
amenityId: 'amenityId'
|
|
1200
1263
|
};
|
|
@@ -1211,11 +1274,13 @@ export const PropertyPaymentMethodOrderByRelevanceFieldEnum = {
|
|
|
1211
1274
|
description: 'description'
|
|
1212
1275
|
};
|
|
1213
1276
|
export const PropertyPaymentMethodLinkOrderByRelevanceFieldEnum = {
|
|
1277
|
+
tenantId: 'tenantId',
|
|
1214
1278
|
propertyId: 'propertyId',
|
|
1215
1279
|
paymentMethodId: 'paymentMethodId'
|
|
1216
1280
|
};
|
|
1217
1281
|
export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
|
|
1218
1282
|
id: 'id',
|
|
1283
|
+
tenantId: 'tenantId',
|
|
1219
1284
|
paymentMethodId: 'paymentMethodId',
|
|
1220
1285
|
paymentPlanId: 'paymentPlanId',
|
|
1221
1286
|
name: 'name',
|
|
@@ -1223,21 +1288,25 @@ export const PropertyPaymentMethodPhaseOrderByRelevanceFieldEnum = {
|
|
|
1223
1288
|
};
|
|
1224
1289
|
export const PhaseEventAttachmentOrderByRelevanceFieldEnum = {
|
|
1225
1290
|
id: 'id',
|
|
1291
|
+
tenantId: 'tenantId',
|
|
1226
1292
|
phaseId: 'phaseId',
|
|
1227
1293
|
handlerId: 'handlerId'
|
|
1228
1294
|
};
|
|
1229
1295
|
export const PaymentMethodPhaseStepOrderByRelevanceFieldEnum = {
|
|
1230
1296
|
id: 'id',
|
|
1297
|
+
tenantId: 'tenantId',
|
|
1231
1298
|
phaseId: 'phaseId',
|
|
1232
1299
|
name: 'name'
|
|
1233
1300
|
};
|
|
1234
1301
|
export const StepEventAttachmentOrderByRelevanceFieldEnum = {
|
|
1235
1302
|
id: 'id',
|
|
1303
|
+
tenantId: 'tenantId',
|
|
1236
1304
|
stepId: 'stepId',
|
|
1237
1305
|
handlerId: 'handlerId'
|
|
1238
1306
|
};
|
|
1239
1307
|
export const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = {
|
|
1240
1308
|
id: 'id',
|
|
1309
|
+
tenantId: 'tenantId',
|
|
1241
1310
|
phaseId: 'phaseId',
|
|
1242
1311
|
documentType: 'documentType',
|
|
1243
1312
|
description: 'description',
|
|
@@ -1245,6 +1314,7 @@ export const PaymentMethodPhaseDocumentOrderByRelevanceFieldEnum = {
|
|
|
1245
1314
|
};
|
|
1246
1315
|
export const PaymentMethodPhaseFieldOrderByRelevanceFieldEnum = {
|
|
1247
1316
|
id: 'id',
|
|
1317
|
+
tenantId: 'tenantId',
|
|
1248
1318
|
phaseId: 'phaseId',
|
|
1249
1319
|
name: 'name',
|
|
1250
1320
|
label: 'label',
|
|
@@ -1284,28 +1354,33 @@ export const ApplicationRefundOrderByRelevanceFieldEnum = {
|
|
|
1284
1354
|
};
|
|
1285
1355
|
export const ApplicationPhaseOrderByRelevanceFieldEnum = {
|
|
1286
1356
|
id: 'id',
|
|
1357
|
+
tenantId: 'tenantId',
|
|
1287
1358
|
applicationId: 'applicationId',
|
|
1288
1359
|
name: 'name',
|
|
1289
1360
|
description: 'description'
|
|
1290
1361
|
};
|
|
1291
1362
|
export const QuestionnairePhaseOrderByRelevanceFieldEnum = {
|
|
1292
1363
|
id: 'id',
|
|
1364
|
+
tenantId: 'tenantId',
|
|
1293
1365
|
phaseId: 'phaseId',
|
|
1294
1366
|
underwritingDecision: 'underwritingDecision',
|
|
1295
1367
|
underwritingNotes: 'underwritingNotes'
|
|
1296
1368
|
};
|
|
1297
1369
|
export const DocumentationPhaseOrderByRelevanceFieldEnum = {
|
|
1298
1370
|
id: 'id',
|
|
1371
|
+
tenantId: 'tenantId',
|
|
1299
1372
|
phaseId: 'phaseId',
|
|
1300
1373
|
currentStepId: 'currentStepId'
|
|
1301
1374
|
};
|
|
1302
1375
|
export const PaymentPhaseOrderByRelevanceFieldEnum = {
|
|
1303
1376
|
id: 'id',
|
|
1377
|
+
tenantId: 'tenantId',
|
|
1304
1378
|
phaseId: 'phaseId',
|
|
1305
1379
|
paymentPlanId: 'paymentPlanId'
|
|
1306
1380
|
};
|
|
1307
1381
|
export const QuestionnaireFieldOrderByRelevanceFieldEnum = {
|
|
1308
1382
|
id: 'id',
|
|
1383
|
+
tenantId: 'tenantId',
|
|
1309
1384
|
questionnairePhaseId: 'questionnairePhaseId',
|
|
1310
1385
|
name: 'name',
|
|
1311
1386
|
label: 'label',
|
|
@@ -1314,6 +1389,7 @@ export const QuestionnaireFieldOrderByRelevanceFieldEnum = {
|
|
|
1314
1389
|
};
|
|
1315
1390
|
export const ApplicationEventOrderByRelevanceFieldEnum = {
|
|
1316
1391
|
id: 'id',
|
|
1392
|
+
tenantId: 'tenantId',
|
|
1317
1393
|
applicationId: 'applicationId',
|
|
1318
1394
|
fromState: 'fromState',
|
|
1319
1395
|
toState: 'toState',
|
|
@@ -1322,6 +1398,7 @@ export const ApplicationEventOrderByRelevanceFieldEnum = {
|
|
|
1322
1398
|
};
|
|
1323
1399
|
export const DocumentationStepOrderByRelevanceFieldEnum = {
|
|
1324
1400
|
id: 'id',
|
|
1401
|
+
tenantId: 'tenantId',
|
|
1325
1402
|
documentationPhaseId: 'documentationPhaseId',
|
|
1326
1403
|
name: 'name',
|
|
1327
1404
|
description: 'description',
|
|
@@ -1330,21 +1407,25 @@ export const DocumentationStepOrderByRelevanceFieldEnum = {
|
|
|
1330
1407
|
};
|
|
1331
1408
|
export const DocumentationStepDocumentOrderByRelevanceFieldEnum = {
|
|
1332
1409
|
id: 'id',
|
|
1410
|
+
tenantId: 'tenantId',
|
|
1333
1411
|
stepId: 'stepId',
|
|
1334
1412
|
documentType: 'documentType'
|
|
1335
1413
|
};
|
|
1336
1414
|
export const DocumentationStepApprovalOrderByRelevanceFieldEnum = {
|
|
1337
1415
|
id: 'id',
|
|
1416
|
+
tenantId: 'tenantId',
|
|
1338
1417
|
stepId: 'stepId',
|
|
1339
1418
|
approverId: 'approverId',
|
|
1340
1419
|
comment: 'comment'
|
|
1341
1420
|
};
|
|
1342
1421
|
export const PaymentInstallmentOrderByRelevanceFieldEnum = {
|
|
1343
1422
|
id: 'id',
|
|
1423
|
+
tenantId: 'tenantId',
|
|
1344
1424
|
paymentPhaseId: 'paymentPhaseId'
|
|
1345
1425
|
};
|
|
1346
1426
|
export const ApplicationPaymentOrderByRelevanceFieldEnum = {
|
|
1347
1427
|
id: 'id',
|
|
1428
|
+
tenantId: 'tenantId',
|
|
1348
1429
|
applicationId: 'applicationId',
|
|
1349
1430
|
phaseId: 'phaseId',
|
|
1350
1431
|
installmentId: 'installmentId',
|
|
@@ -1355,6 +1436,7 @@ export const ApplicationPaymentOrderByRelevanceFieldEnum = {
|
|
|
1355
1436
|
};
|
|
1356
1437
|
export const ApplicationDocumentOrderByRelevanceFieldEnum = {
|
|
1357
1438
|
id: 'id',
|
|
1439
|
+
tenantId: 'tenantId',
|
|
1358
1440
|
applicationId: 'applicationId',
|
|
1359
1441
|
phaseId: 'phaseId',
|
|
1360
1442
|
stepId: 'stepId',
|
|
@@ -1462,6 +1544,7 @@ export const WorkflowEventOrderByRelevanceFieldEnum = {
|
|
|
1462
1544
|
};
|
|
1463
1545
|
export const EventHandlerExecutionOrderByRelevanceFieldEnum = {
|
|
1464
1546
|
id: 'id',
|
|
1547
|
+
tenantId: 'tenantId',
|
|
1465
1548
|
eventId: 'eventId',
|
|
1466
1549
|
handlerId: 'handlerId',
|
|
1467
1550
|
error: 'error',
|
|
@@ -1504,3 +1587,14 @@ export const ApprovalRequestOrderByRelevanceFieldEnum = {
|
|
|
1504
1587
|
reviewedById: 'reviewedById',
|
|
1505
1588
|
reviewNotes: 'reviewNotes'
|
|
1506
1589
|
};
|
|
1590
|
+
export const WorkflowBlockerOrderByRelevanceFieldEnum = {
|
|
1591
|
+
id: 'id',
|
|
1592
|
+
tenantId: 'tenantId',
|
|
1593
|
+
applicationId: 'applicationId',
|
|
1594
|
+
phaseId: 'phaseId',
|
|
1595
|
+
stepId: 'stepId',
|
|
1596
|
+
actionRequired: 'actionRequired',
|
|
1597
|
+
context: 'context',
|
|
1598
|
+
resolvedByActor: 'resolvedByActor',
|
|
1599
|
+
resolutionTrigger: 'resolutionTrigger'
|
|
1600
|
+
};
|