@valentine-efagene/qshelter-common 2.0.150 → 2.0.152
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 +13 -2
- package/dist/generated/client/client.d.ts +15 -4
- package/dist/generated/client/client.js +2 -2
- package/dist/generated/client/commonInputTypes.d.ts +50 -190
- package/dist/generated/client/enums.d.ts +7 -34
- package/dist/generated/client/enums.js +6 -30
- package/dist/generated/client/internal/class.d.ts +29 -7
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +185 -34
- package/dist/generated/client/internal/prismaNamespace.js +42 -13
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +46 -13
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +42 -13
- package/dist/generated/client/models/ApplicationOrganization.d.ts +308 -67
- package/dist/generated/client/models/ApprovalStage.d.ts +210 -91
- package/dist/generated/client/models/ApprovalStageProgress.d.ts +258 -69
- package/dist/generated/client/models/DocumentApproval.d.ts +196 -65
- package/dist/generated/client/models/DocumentReview.d.ts +475 -86
- package/dist/generated/client/models/Organization.d.ts +424 -52
- package/dist/generated/client/models/OrganizationMember.d.ts +42 -169
- package/dist/generated/client/models/OrganizationType.d.ts +1982 -0
- package/dist/generated/client/models/OrganizationType.js +1 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.d.ts +1159 -0
- package/dist/generated/client/models/OrganizationTypeAssignment.js +1 -0
- package/dist/generated/client/models/Property.d.ts +59 -120
- package/dist/generated/client/models/Tenant.d.ts +575 -4
- package/dist/generated/client/models/User.d.ts +0 -12
- package/dist/generated/client/models/index.d.ts +2 -0
- package/dist/generated/client/models/index.js +2 -0
- package/dist/generated/client/models.d.ts +2 -0
- package/package.json +1 -1
- package/prisma/migrations/20260125090213_remove_is_published_use_status_enum/migration.sql +10 -0
- package/prisma/migrations/20260125102448_org_types_many_to_many/migration.sql +153 -0
- package/prisma/migrations/20260125103700_20260125102448_org_types_many_to_many_fix/migration.sql +5 -0
- package/prisma/schema.prisma +121 -81
|
@@ -26,6 +26,8 @@ export declare const JsonNull: import("@prisma/client/runtime/client.js").JsonNu
|
|
|
26
26
|
*/
|
|
27
27
|
export declare const AnyNull: import("@prisma/client/runtime/client.js").AnyNullClass;
|
|
28
28
|
export declare const ModelName: {
|
|
29
|
+
readonly OrganizationType: "OrganizationType";
|
|
30
|
+
readonly OrganizationTypeAssignment: "OrganizationTypeAssignment";
|
|
29
31
|
readonly User: "User";
|
|
30
32
|
readonly Role: "Role";
|
|
31
33
|
readonly Permission: "Permission";
|
|
@@ -109,6 +111,25 @@ export declare const TransactionIsolationLevel: {
|
|
|
109
111
|
readonly Serializable: "Serializable";
|
|
110
112
|
};
|
|
111
113
|
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
|
|
114
|
+
export declare const OrganizationTypeScalarFieldEnum: {
|
|
115
|
+
readonly id: "id";
|
|
116
|
+
readonly tenantId: "tenantId";
|
|
117
|
+
readonly code: "code";
|
|
118
|
+
readonly name: "name";
|
|
119
|
+
readonly description: "description";
|
|
120
|
+
readonly isSystemType: "isSystemType";
|
|
121
|
+
readonly createdAt: "createdAt";
|
|
122
|
+
readonly updatedAt: "updatedAt";
|
|
123
|
+
};
|
|
124
|
+
export type OrganizationTypeScalarFieldEnum = (typeof OrganizationTypeScalarFieldEnum)[keyof typeof OrganizationTypeScalarFieldEnum];
|
|
125
|
+
export declare const OrganizationTypeAssignmentScalarFieldEnum: {
|
|
126
|
+
readonly id: "id";
|
|
127
|
+
readonly organizationId: "organizationId";
|
|
128
|
+
readonly typeId: "typeId";
|
|
129
|
+
readonly isPrimary: "isPrimary";
|
|
130
|
+
readonly createdAt: "createdAt";
|
|
131
|
+
};
|
|
132
|
+
export type OrganizationTypeAssignmentScalarFieldEnum = (typeof OrganizationTypeAssignmentScalarFieldEnum)[keyof typeof OrganizationTypeAssignmentScalarFieldEnum];
|
|
112
133
|
export declare const UserScalarFieldEnum: {
|
|
113
134
|
readonly id: "id";
|
|
114
135
|
readonly email: "email";
|
|
@@ -180,7 +201,6 @@ export declare const OrganizationScalarFieldEnum: {
|
|
|
180
201
|
readonly id: "id";
|
|
181
202
|
readonly tenantId: "tenantId";
|
|
182
203
|
readonly name: "name";
|
|
183
|
-
readonly type: "type";
|
|
184
204
|
readonly status: "status";
|
|
185
205
|
readonly isPlatformOrg: "isPlatformOrg";
|
|
186
206
|
readonly email: "email";
|
|
@@ -209,16 +229,14 @@ export declare const OrganizationMemberScalarFieldEnum: {
|
|
|
209
229
|
readonly id: "id";
|
|
210
230
|
readonly organizationId: "organizationId";
|
|
211
231
|
readonly userId: "userId";
|
|
212
|
-
readonly role: "role";
|
|
213
232
|
readonly title: "title";
|
|
214
233
|
readonly department: "department";
|
|
215
234
|
readonly employeeId: "employeeId";
|
|
216
235
|
readonly isActive: "isActive";
|
|
217
|
-
readonly canApprove: "canApprove";
|
|
218
|
-
readonly approvalLimit: "approvalLimit";
|
|
219
236
|
readonly invitedAt: "invitedAt";
|
|
220
237
|
readonly acceptedAt: "acceptedAt";
|
|
221
238
|
readonly invitedBy: "invitedBy";
|
|
239
|
+
readonly joinedAt: "joinedAt";
|
|
222
240
|
readonly createdAt: "createdAt";
|
|
223
241
|
readonly updatedAt: "updatedAt";
|
|
224
242
|
};
|
|
@@ -386,7 +404,6 @@ export declare const PropertyScalarFieldEnum: {
|
|
|
386
404
|
readonly status: "status";
|
|
387
405
|
readonly description: "description";
|
|
388
406
|
readonly displayImageId: "displayImageId";
|
|
389
|
-
readonly isPublished: "isPublished";
|
|
390
407
|
readonly publishedAt: "publishedAt";
|
|
391
408
|
readonly createdAt: "createdAt";
|
|
392
409
|
readonly updatedAt: "updatedAt";
|
|
@@ -527,13 +544,12 @@ export declare const ApprovalStageScalarFieldEnum: {
|
|
|
527
544
|
readonly planId: "planId";
|
|
528
545
|
readonly name: "name";
|
|
529
546
|
readonly order: "order";
|
|
530
|
-
readonly
|
|
547
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
531
548
|
readonly autoTransition: "autoTransition";
|
|
532
549
|
readonly waitForAllDocuments: "waitForAllDocuments";
|
|
533
550
|
readonly allowEarlyVisibility: "allowEarlyVisibility";
|
|
534
551
|
readonly onRejection: "onRejection";
|
|
535
552
|
readonly restartFromStageOrder: "restartFromStageOrder";
|
|
536
|
-
readonly organizationId: "organizationId";
|
|
537
553
|
readonly slaHours: "slaHours";
|
|
538
554
|
readonly description: "description";
|
|
539
555
|
readonly createdAt: "createdAt";
|
|
@@ -746,7 +762,7 @@ export declare const ApplicationOrganizationScalarFieldEnum: {
|
|
|
746
762
|
readonly tenantId: "tenantId";
|
|
747
763
|
readonly applicationId: "applicationId";
|
|
748
764
|
readonly organizationId: "organizationId";
|
|
749
|
-
readonly
|
|
765
|
+
readonly assignedAsTypeId: "assignedAsTypeId";
|
|
750
766
|
readonly status: "status";
|
|
751
767
|
readonly assignedById: "assignedById";
|
|
752
768
|
readonly assignedAt: "assignedAt";
|
|
@@ -995,8 +1011,8 @@ export declare const DocumentReviewScalarFieldEnum: {
|
|
|
995
1011
|
readonly id: "id";
|
|
996
1012
|
readonly tenantId: "tenantId";
|
|
997
1013
|
readonly documentId: "documentId";
|
|
998
|
-
readonly reviewParty: "reviewParty";
|
|
999
1014
|
readonly organizationId: "organizationId";
|
|
1015
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1000
1016
|
readonly reviewerId: "reviewerId";
|
|
1001
1017
|
readonly reviewerName: "reviewerName";
|
|
1002
1018
|
readonly decision: "decision";
|
|
@@ -1018,7 +1034,7 @@ export declare const ApprovalStageProgressScalarFieldEnum: {
|
|
|
1018
1034
|
readonly approvalStageId: "approvalStageId";
|
|
1019
1035
|
readonly name: "name";
|
|
1020
1036
|
readonly order: "order";
|
|
1021
|
-
readonly
|
|
1037
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1022
1038
|
readonly autoTransition: "autoTransition";
|
|
1023
1039
|
readonly waitForAllDocuments: "waitForAllDocuments";
|
|
1024
1040
|
readonly allowEarlyVisibility: "allowEarlyVisibility";
|
|
@@ -1039,7 +1055,7 @@ export declare const DocumentApprovalScalarFieldEnum: {
|
|
|
1039
1055
|
readonly documentId: "documentId";
|
|
1040
1056
|
readonly stageProgressId: "stageProgressId";
|
|
1041
1057
|
readonly reviewerId: "reviewerId";
|
|
1042
|
-
readonly
|
|
1058
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1043
1059
|
readonly decision: "decision";
|
|
1044
1060
|
readonly comment: "comment";
|
|
1045
1061
|
readonly reviewedAt: "reviewedAt";
|
|
@@ -1377,6 +1393,20 @@ export declare const NullsOrder: {
|
|
|
1377
1393
|
readonly last: "last";
|
|
1378
1394
|
};
|
|
1379
1395
|
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
1396
|
+
export declare const OrganizationTypeOrderByRelevanceFieldEnum: {
|
|
1397
|
+
readonly id: "id";
|
|
1398
|
+
readonly tenantId: "tenantId";
|
|
1399
|
+
readonly code: "code";
|
|
1400
|
+
readonly name: "name";
|
|
1401
|
+
readonly description: "description";
|
|
1402
|
+
};
|
|
1403
|
+
export type OrganizationTypeOrderByRelevanceFieldEnum = (typeof OrganizationTypeOrderByRelevanceFieldEnum)[keyof typeof OrganizationTypeOrderByRelevanceFieldEnum];
|
|
1404
|
+
export declare const OrganizationTypeAssignmentOrderByRelevanceFieldEnum: {
|
|
1405
|
+
readonly id: "id";
|
|
1406
|
+
readonly organizationId: "organizationId";
|
|
1407
|
+
readonly typeId: "typeId";
|
|
1408
|
+
};
|
|
1409
|
+
export type OrganizationTypeAssignmentOrderByRelevanceFieldEnum = (typeof OrganizationTypeAssignmentOrderByRelevanceFieldEnum)[keyof typeof OrganizationTypeAssignmentOrderByRelevanceFieldEnum];
|
|
1380
1410
|
export declare const UserOrderByRelevanceFieldEnum: {
|
|
1381
1411
|
readonly id: "id";
|
|
1382
1412
|
readonly email: "email";
|
|
@@ -1577,7 +1607,6 @@ export declare const PropertyOrderByRelevanceFieldEnum: {
|
|
|
1577
1607
|
readonly district: "district";
|
|
1578
1608
|
readonly zipCode: "zipCode";
|
|
1579
1609
|
readonly streetAddress: "streetAddress";
|
|
1580
|
-
readonly status: "status";
|
|
1581
1610
|
readonly description: "description";
|
|
1582
1611
|
readonly displayImageId: "displayImageId";
|
|
1583
1612
|
};
|
|
@@ -1670,7 +1699,7 @@ export declare const ApprovalStageOrderByRelevanceFieldEnum: {
|
|
|
1670
1699
|
readonly id: "id";
|
|
1671
1700
|
readonly planId: "planId";
|
|
1672
1701
|
readonly name: "name";
|
|
1673
|
-
readonly
|
|
1702
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1674
1703
|
readonly description: "description";
|
|
1675
1704
|
};
|
|
1676
1705
|
export type ApprovalStageOrderByRelevanceFieldEnum = (typeof ApprovalStageOrderByRelevanceFieldEnum)[keyof typeof ApprovalStageOrderByRelevanceFieldEnum];
|
|
@@ -1782,6 +1811,7 @@ export declare const ApplicationOrganizationOrderByRelevanceFieldEnum: {
|
|
|
1782
1811
|
readonly tenantId: "tenantId";
|
|
1783
1812
|
readonly applicationId: "applicationId";
|
|
1784
1813
|
readonly organizationId: "organizationId";
|
|
1814
|
+
readonly assignedAsTypeId: "assignedAsTypeId";
|
|
1785
1815
|
readonly assignedById: "assignedById";
|
|
1786
1816
|
readonly declineReason: "declineReason";
|
|
1787
1817
|
readonly escalatedToUserId: "escalatedToUserId";
|
|
@@ -1906,6 +1936,7 @@ export declare const DocumentReviewOrderByRelevanceFieldEnum: {
|
|
|
1906
1936
|
readonly tenantId: "tenantId";
|
|
1907
1937
|
readonly documentId: "documentId";
|
|
1908
1938
|
readonly organizationId: "organizationId";
|
|
1939
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1909
1940
|
readonly reviewerId: "reviewerId";
|
|
1910
1941
|
readonly reviewerName: "reviewerName";
|
|
1911
1942
|
readonly comments: "comments";
|
|
@@ -1918,6 +1949,7 @@ export declare const ApprovalStageProgressOrderByRelevanceFieldEnum: {
|
|
|
1918
1949
|
readonly documentationPhaseId: "documentationPhaseId";
|
|
1919
1950
|
readonly approvalStageId: "approvalStageId";
|
|
1920
1951
|
readonly name: "name";
|
|
1952
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1921
1953
|
readonly completedById: "completedById";
|
|
1922
1954
|
readonly transitionComment: "transitionComment";
|
|
1923
1955
|
};
|
|
@@ -1928,6 +1960,7 @@ export declare const DocumentApprovalOrderByRelevanceFieldEnum: {
|
|
|
1928
1960
|
readonly documentId: "documentId";
|
|
1929
1961
|
readonly stageProgressId: "stageProgressId";
|
|
1930
1962
|
readonly reviewerId: "reviewerId";
|
|
1963
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1931
1964
|
readonly comment: "comment";
|
|
1932
1965
|
};
|
|
1933
1966
|
export type DocumentApprovalOrderByRelevanceFieldEnum = (typeof DocumentApprovalOrderByRelevanceFieldEnum)[keyof typeof DocumentApprovalOrderByRelevanceFieldEnum];
|
|
@@ -39,6 +39,8 @@ export const JsonNull = runtime.JsonNull;
|
|
|
39
39
|
*/
|
|
40
40
|
export const AnyNull = runtime.AnyNull;
|
|
41
41
|
export const ModelName = {
|
|
42
|
+
OrganizationType: 'OrganizationType',
|
|
43
|
+
OrganizationTypeAssignment: 'OrganizationTypeAssignment',
|
|
42
44
|
User: 'User',
|
|
43
45
|
Role: 'Role',
|
|
44
46
|
Permission: 'Permission',
|
|
@@ -123,6 +125,23 @@ export const TransactionIsolationLevel = {
|
|
|
123
125
|
RepeatableRead: 'RepeatableRead',
|
|
124
126
|
Serializable: 'Serializable'
|
|
125
127
|
};
|
|
128
|
+
export const OrganizationTypeScalarFieldEnum = {
|
|
129
|
+
id: 'id',
|
|
130
|
+
tenantId: 'tenantId',
|
|
131
|
+
code: 'code',
|
|
132
|
+
name: 'name',
|
|
133
|
+
description: 'description',
|
|
134
|
+
isSystemType: 'isSystemType',
|
|
135
|
+
createdAt: 'createdAt',
|
|
136
|
+
updatedAt: 'updatedAt'
|
|
137
|
+
};
|
|
138
|
+
export const OrganizationTypeAssignmentScalarFieldEnum = {
|
|
139
|
+
id: 'id',
|
|
140
|
+
organizationId: 'organizationId',
|
|
141
|
+
typeId: 'typeId',
|
|
142
|
+
isPrimary: 'isPrimary',
|
|
143
|
+
createdAt: 'createdAt'
|
|
144
|
+
};
|
|
126
145
|
export const UserScalarFieldEnum = {
|
|
127
146
|
id: 'id',
|
|
128
147
|
email: 'email',
|
|
@@ -188,7 +207,6 @@ export const OrganizationScalarFieldEnum = {
|
|
|
188
207
|
id: 'id',
|
|
189
208
|
tenantId: 'tenantId',
|
|
190
209
|
name: 'name',
|
|
191
|
-
type: 'type',
|
|
192
210
|
status: 'status',
|
|
193
211
|
isPlatformOrg: 'isPlatformOrg',
|
|
194
212
|
email: 'email',
|
|
@@ -216,16 +234,14 @@ export const OrganizationMemberScalarFieldEnum = {
|
|
|
216
234
|
id: 'id',
|
|
217
235
|
organizationId: 'organizationId',
|
|
218
236
|
userId: 'userId',
|
|
219
|
-
role: 'role',
|
|
220
237
|
title: 'title',
|
|
221
238
|
department: 'department',
|
|
222
239
|
employeeId: 'employeeId',
|
|
223
240
|
isActive: 'isActive',
|
|
224
|
-
canApprove: 'canApprove',
|
|
225
|
-
approvalLimit: 'approvalLimit',
|
|
226
241
|
invitedAt: 'invitedAt',
|
|
227
242
|
acceptedAt: 'acceptedAt',
|
|
228
243
|
invitedBy: 'invitedBy',
|
|
244
|
+
joinedAt: 'joinedAt',
|
|
229
245
|
createdAt: 'createdAt',
|
|
230
246
|
updatedAt: 'updatedAt'
|
|
231
247
|
};
|
|
@@ -379,7 +395,6 @@ export const PropertyScalarFieldEnum = {
|
|
|
379
395
|
status: 'status',
|
|
380
396
|
description: 'description',
|
|
381
397
|
displayImageId: 'displayImageId',
|
|
382
|
-
isPublished: 'isPublished',
|
|
383
398
|
publishedAt: 'publishedAt',
|
|
384
399
|
createdAt: 'createdAt',
|
|
385
400
|
updatedAt: 'updatedAt'
|
|
@@ -509,13 +524,12 @@ export const ApprovalStageScalarFieldEnum = {
|
|
|
509
524
|
planId: 'planId',
|
|
510
525
|
name: 'name',
|
|
511
526
|
order: 'order',
|
|
512
|
-
|
|
527
|
+
organizationTypeId: 'organizationTypeId',
|
|
513
528
|
autoTransition: 'autoTransition',
|
|
514
529
|
waitForAllDocuments: 'waitForAllDocuments',
|
|
515
530
|
allowEarlyVisibility: 'allowEarlyVisibility',
|
|
516
531
|
onRejection: 'onRejection',
|
|
517
532
|
restartFromStageOrder: 'restartFromStageOrder',
|
|
518
|
-
organizationId: 'organizationId',
|
|
519
533
|
slaHours: 'slaHours',
|
|
520
534
|
description: 'description',
|
|
521
535
|
createdAt: 'createdAt',
|
|
@@ -715,7 +729,7 @@ export const ApplicationOrganizationScalarFieldEnum = {
|
|
|
715
729
|
tenantId: 'tenantId',
|
|
716
730
|
applicationId: 'applicationId',
|
|
717
731
|
organizationId: 'organizationId',
|
|
718
|
-
|
|
732
|
+
assignedAsTypeId: 'assignedAsTypeId',
|
|
719
733
|
status: 'status',
|
|
720
734
|
assignedById: 'assignedById',
|
|
721
735
|
assignedAt: 'assignedAt',
|
|
@@ -952,8 +966,8 @@ export const DocumentReviewScalarFieldEnum = {
|
|
|
952
966
|
id: 'id',
|
|
953
967
|
tenantId: 'tenantId',
|
|
954
968
|
documentId: 'documentId',
|
|
955
|
-
reviewParty: 'reviewParty',
|
|
956
969
|
organizationId: 'organizationId',
|
|
970
|
+
organizationTypeId: 'organizationTypeId',
|
|
957
971
|
reviewerId: 'reviewerId',
|
|
958
972
|
reviewerName: 'reviewerName',
|
|
959
973
|
decision: 'decision',
|
|
@@ -974,7 +988,7 @@ export const ApprovalStageProgressScalarFieldEnum = {
|
|
|
974
988
|
approvalStageId: 'approvalStageId',
|
|
975
989
|
name: 'name',
|
|
976
990
|
order: 'order',
|
|
977
|
-
|
|
991
|
+
organizationTypeId: 'organizationTypeId',
|
|
978
992
|
autoTransition: 'autoTransition',
|
|
979
993
|
waitForAllDocuments: 'waitForAllDocuments',
|
|
980
994
|
allowEarlyVisibility: 'allowEarlyVisibility',
|
|
@@ -994,7 +1008,7 @@ export const DocumentApprovalScalarFieldEnum = {
|
|
|
994
1008
|
documentId: 'documentId',
|
|
995
1009
|
stageProgressId: 'stageProgressId',
|
|
996
1010
|
reviewerId: 'reviewerId',
|
|
997
|
-
|
|
1011
|
+
organizationTypeId: 'organizationTypeId',
|
|
998
1012
|
decision: 'decision',
|
|
999
1013
|
comment: 'comment',
|
|
1000
1014
|
reviewedAt: 'reviewedAt',
|
|
@@ -1313,6 +1327,18 @@ export const NullsOrder = {
|
|
|
1313
1327
|
first: 'first',
|
|
1314
1328
|
last: 'last'
|
|
1315
1329
|
};
|
|
1330
|
+
export const OrganizationTypeOrderByRelevanceFieldEnum = {
|
|
1331
|
+
id: 'id',
|
|
1332
|
+
tenantId: 'tenantId',
|
|
1333
|
+
code: 'code',
|
|
1334
|
+
name: 'name',
|
|
1335
|
+
description: 'description'
|
|
1336
|
+
};
|
|
1337
|
+
export const OrganizationTypeAssignmentOrderByRelevanceFieldEnum = {
|
|
1338
|
+
id: 'id',
|
|
1339
|
+
organizationId: 'organizationId',
|
|
1340
|
+
typeId: 'typeId'
|
|
1341
|
+
};
|
|
1316
1342
|
export const UserOrderByRelevanceFieldEnum = {
|
|
1317
1343
|
id: 'id',
|
|
1318
1344
|
email: 'email',
|
|
@@ -1490,7 +1516,6 @@ export const PropertyOrderByRelevanceFieldEnum = {
|
|
|
1490
1516
|
district: 'district',
|
|
1491
1517
|
zipCode: 'zipCode',
|
|
1492
1518
|
streetAddress: 'streetAddress',
|
|
1493
|
-
status: 'status',
|
|
1494
1519
|
description: 'description',
|
|
1495
1520
|
displayImageId: 'displayImageId'
|
|
1496
1521
|
};
|
|
@@ -1572,7 +1597,7 @@ export const ApprovalStageOrderByRelevanceFieldEnum = {
|
|
|
1572
1597
|
id: 'id',
|
|
1573
1598
|
planId: 'planId',
|
|
1574
1599
|
name: 'name',
|
|
1575
|
-
|
|
1600
|
+
organizationTypeId: 'organizationTypeId',
|
|
1576
1601
|
description: 'description'
|
|
1577
1602
|
};
|
|
1578
1603
|
export const QuestionnairePlanOrderByRelevanceFieldEnum = {
|
|
@@ -1671,6 +1696,7 @@ export const ApplicationOrganizationOrderByRelevanceFieldEnum = {
|
|
|
1671
1696
|
tenantId: 'tenantId',
|
|
1672
1697
|
applicationId: 'applicationId',
|
|
1673
1698
|
organizationId: 'organizationId',
|
|
1699
|
+
assignedAsTypeId: 'assignedAsTypeId',
|
|
1674
1700
|
assignedById: 'assignedById',
|
|
1675
1701
|
declineReason: 'declineReason',
|
|
1676
1702
|
escalatedToUserId: 'escalatedToUserId',
|
|
@@ -1783,6 +1809,7 @@ export const DocumentReviewOrderByRelevanceFieldEnum = {
|
|
|
1783
1809
|
tenantId: 'tenantId',
|
|
1784
1810
|
documentId: 'documentId',
|
|
1785
1811
|
organizationId: 'organizationId',
|
|
1812
|
+
organizationTypeId: 'organizationTypeId',
|
|
1786
1813
|
reviewerId: 'reviewerId',
|
|
1787
1814
|
reviewerName: 'reviewerName',
|
|
1788
1815
|
comments: 'comments',
|
|
@@ -1794,6 +1821,7 @@ export const ApprovalStageProgressOrderByRelevanceFieldEnum = {
|
|
|
1794
1821
|
documentationPhaseId: 'documentationPhaseId',
|
|
1795
1822
|
approvalStageId: 'approvalStageId',
|
|
1796
1823
|
name: 'name',
|
|
1824
|
+
organizationTypeId: 'organizationTypeId',
|
|
1797
1825
|
completedById: 'completedById',
|
|
1798
1826
|
transitionComment: 'transitionComment'
|
|
1799
1827
|
};
|
|
@@ -1803,6 +1831,7 @@ export const DocumentApprovalOrderByRelevanceFieldEnum = {
|
|
|
1803
1831
|
documentId: 'documentId',
|
|
1804
1832
|
stageProgressId: 'stageProgressId',
|
|
1805
1833
|
reviewerId: 'reviewerId',
|
|
1834
|
+
organizationTypeId: 'organizationTypeId',
|
|
1806
1835
|
comment: 'comment'
|
|
1807
1836
|
};
|
|
1808
1837
|
export const DocumentTemplateOrderByRelevanceFieldEnum = {
|