@valentine-efagene/qshelter-common 2.0.151 → 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 +20 -190
- package/dist/generated/client/enums.d.ts +0 -34
- package/dist/generated/client/enums.js +0 -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 +181 -32
- package/dist/generated/client/internal/prismaNamespace.js +42 -11
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +46 -11
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +42 -11
- 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/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/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 +113 -79
|
@@ -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
|
};
|
|
@@ -526,13 +544,12 @@ export declare const ApprovalStageScalarFieldEnum: {
|
|
|
526
544
|
readonly planId: "planId";
|
|
527
545
|
readonly name: "name";
|
|
528
546
|
readonly order: "order";
|
|
529
|
-
readonly
|
|
547
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
530
548
|
readonly autoTransition: "autoTransition";
|
|
531
549
|
readonly waitForAllDocuments: "waitForAllDocuments";
|
|
532
550
|
readonly allowEarlyVisibility: "allowEarlyVisibility";
|
|
533
551
|
readonly onRejection: "onRejection";
|
|
534
552
|
readonly restartFromStageOrder: "restartFromStageOrder";
|
|
535
|
-
readonly organizationId: "organizationId";
|
|
536
553
|
readonly slaHours: "slaHours";
|
|
537
554
|
readonly description: "description";
|
|
538
555
|
readonly createdAt: "createdAt";
|
|
@@ -745,7 +762,7 @@ export declare const ApplicationOrganizationScalarFieldEnum: {
|
|
|
745
762
|
readonly tenantId: "tenantId";
|
|
746
763
|
readonly applicationId: "applicationId";
|
|
747
764
|
readonly organizationId: "organizationId";
|
|
748
|
-
readonly
|
|
765
|
+
readonly assignedAsTypeId: "assignedAsTypeId";
|
|
749
766
|
readonly status: "status";
|
|
750
767
|
readonly assignedById: "assignedById";
|
|
751
768
|
readonly assignedAt: "assignedAt";
|
|
@@ -994,8 +1011,8 @@ export declare const DocumentReviewScalarFieldEnum: {
|
|
|
994
1011
|
readonly id: "id";
|
|
995
1012
|
readonly tenantId: "tenantId";
|
|
996
1013
|
readonly documentId: "documentId";
|
|
997
|
-
readonly reviewParty: "reviewParty";
|
|
998
1014
|
readonly organizationId: "organizationId";
|
|
1015
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
999
1016
|
readonly reviewerId: "reviewerId";
|
|
1000
1017
|
readonly reviewerName: "reviewerName";
|
|
1001
1018
|
readonly decision: "decision";
|
|
@@ -1017,7 +1034,7 @@ export declare const ApprovalStageProgressScalarFieldEnum: {
|
|
|
1017
1034
|
readonly approvalStageId: "approvalStageId";
|
|
1018
1035
|
readonly name: "name";
|
|
1019
1036
|
readonly order: "order";
|
|
1020
|
-
readonly
|
|
1037
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1021
1038
|
readonly autoTransition: "autoTransition";
|
|
1022
1039
|
readonly waitForAllDocuments: "waitForAllDocuments";
|
|
1023
1040
|
readonly allowEarlyVisibility: "allowEarlyVisibility";
|
|
@@ -1038,7 +1055,7 @@ export declare const DocumentApprovalScalarFieldEnum: {
|
|
|
1038
1055
|
readonly documentId: "documentId";
|
|
1039
1056
|
readonly stageProgressId: "stageProgressId";
|
|
1040
1057
|
readonly reviewerId: "reviewerId";
|
|
1041
|
-
readonly
|
|
1058
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1042
1059
|
readonly decision: "decision";
|
|
1043
1060
|
readonly comment: "comment";
|
|
1044
1061
|
readonly reviewedAt: "reviewedAt";
|
|
@@ -1376,6 +1393,20 @@ export declare const NullsOrder: {
|
|
|
1376
1393
|
readonly last: "last";
|
|
1377
1394
|
};
|
|
1378
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];
|
|
1379
1410
|
export declare const UserOrderByRelevanceFieldEnum: {
|
|
1380
1411
|
readonly id: "id";
|
|
1381
1412
|
readonly email: "email";
|
|
@@ -1668,7 +1699,7 @@ export declare const ApprovalStageOrderByRelevanceFieldEnum: {
|
|
|
1668
1699
|
readonly id: "id";
|
|
1669
1700
|
readonly planId: "planId";
|
|
1670
1701
|
readonly name: "name";
|
|
1671
|
-
readonly
|
|
1702
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1672
1703
|
readonly description: "description";
|
|
1673
1704
|
};
|
|
1674
1705
|
export type ApprovalStageOrderByRelevanceFieldEnum = (typeof ApprovalStageOrderByRelevanceFieldEnum)[keyof typeof ApprovalStageOrderByRelevanceFieldEnum];
|
|
@@ -1780,6 +1811,7 @@ export declare const ApplicationOrganizationOrderByRelevanceFieldEnum: {
|
|
|
1780
1811
|
readonly tenantId: "tenantId";
|
|
1781
1812
|
readonly applicationId: "applicationId";
|
|
1782
1813
|
readonly organizationId: "organizationId";
|
|
1814
|
+
readonly assignedAsTypeId: "assignedAsTypeId";
|
|
1783
1815
|
readonly assignedById: "assignedById";
|
|
1784
1816
|
readonly declineReason: "declineReason";
|
|
1785
1817
|
readonly escalatedToUserId: "escalatedToUserId";
|
|
@@ -1904,6 +1936,7 @@ export declare const DocumentReviewOrderByRelevanceFieldEnum: {
|
|
|
1904
1936
|
readonly tenantId: "tenantId";
|
|
1905
1937
|
readonly documentId: "documentId";
|
|
1906
1938
|
readonly organizationId: "organizationId";
|
|
1939
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1907
1940
|
readonly reviewerId: "reviewerId";
|
|
1908
1941
|
readonly reviewerName: "reviewerName";
|
|
1909
1942
|
readonly comments: "comments";
|
|
@@ -1916,6 +1949,7 @@ export declare const ApprovalStageProgressOrderByRelevanceFieldEnum: {
|
|
|
1916
1949
|
readonly documentationPhaseId: "documentationPhaseId";
|
|
1917
1950
|
readonly approvalStageId: "approvalStageId";
|
|
1918
1951
|
readonly name: "name";
|
|
1952
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1919
1953
|
readonly completedById: "completedById";
|
|
1920
1954
|
readonly transitionComment: "transitionComment";
|
|
1921
1955
|
};
|
|
@@ -1926,6 +1960,7 @@ export declare const DocumentApprovalOrderByRelevanceFieldEnum: {
|
|
|
1926
1960
|
readonly documentId: "documentId";
|
|
1927
1961
|
readonly stageProgressId: "stageProgressId";
|
|
1928
1962
|
readonly reviewerId: "reviewerId";
|
|
1963
|
+
readonly organizationTypeId: "organizationTypeId";
|
|
1929
1964
|
readonly comment: "comment";
|
|
1930
1965
|
};
|
|
1931
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
|
};
|
|
@@ -508,13 +524,12 @@ export const ApprovalStageScalarFieldEnum = {
|
|
|
508
524
|
planId: 'planId',
|
|
509
525
|
name: 'name',
|
|
510
526
|
order: 'order',
|
|
511
|
-
|
|
527
|
+
organizationTypeId: 'organizationTypeId',
|
|
512
528
|
autoTransition: 'autoTransition',
|
|
513
529
|
waitForAllDocuments: 'waitForAllDocuments',
|
|
514
530
|
allowEarlyVisibility: 'allowEarlyVisibility',
|
|
515
531
|
onRejection: 'onRejection',
|
|
516
532
|
restartFromStageOrder: 'restartFromStageOrder',
|
|
517
|
-
organizationId: 'organizationId',
|
|
518
533
|
slaHours: 'slaHours',
|
|
519
534
|
description: 'description',
|
|
520
535
|
createdAt: 'createdAt',
|
|
@@ -714,7 +729,7 @@ export const ApplicationOrganizationScalarFieldEnum = {
|
|
|
714
729
|
tenantId: 'tenantId',
|
|
715
730
|
applicationId: 'applicationId',
|
|
716
731
|
organizationId: 'organizationId',
|
|
717
|
-
|
|
732
|
+
assignedAsTypeId: 'assignedAsTypeId',
|
|
718
733
|
status: 'status',
|
|
719
734
|
assignedById: 'assignedById',
|
|
720
735
|
assignedAt: 'assignedAt',
|
|
@@ -951,8 +966,8 @@ export const DocumentReviewScalarFieldEnum = {
|
|
|
951
966
|
id: 'id',
|
|
952
967
|
tenantId: 'tenantId',
|
|
953
968
|
documentId: 'documentId',
|
|
954
|
-
reviewParty: 'reviewParty',
|
|
955
969
|
organizationId: 'organizationId',
|
|
970
|
+
organizationTypeId: 'organizationTypeId',
|
|
956
971
|
reviewerId: 'reviewerId',
|
|
957
972
|
reviewerName: 'reviewerName',
|
|
958
973
|
decision: 'decision',
|
|
@@ -973,7 +988,7 @@ export const ApprovalStageProgressScalarFieldEnum = {
|
|
|
973
988
|
approvalStageId: 'approvalStageId',
|
|
974
989
|
name: 'name',
|
|
975
990
|
order: 'order',
|
|
976
|
-
|
|
991
|
+
organizationTypeId: 'organizationTypeId',
|
|
977
992
|
autoTransition: 'autoTransition',
|
|
978
993
|
waitForAllDocuments: 'waitForAllDocuments',
|
|
979
994
|
allowEarlyVisibility: 'allowEarlyVisibility',
|
|
@@ -993,7 +1008,7 @@ export const DocumentApprovalScalarFieldEnum = {
|
|
|
993
1008
|
documentId: 'documentId',
|
|
994
1009
|
stageProgressId: 'stageProgressId',
|
|
995
1010
|
reviewerId: 'reviewerId',
|
|
996
|
-
|
|
1011
|
+
organizationTypeId: 'organizationTypeId',
|
|
997
1012
|
decision: 'decision',
|
|
998
1013
|
comment: 'comment',
|
|
999
1014
|
reviewedAt: 'reviewedAt',
|
|
@@ -1312,6 +1327,18 @@ export const NullsOrder = {
|
|
|
1312
1327
|
first: 'first',
|
|
1313
1328
|
last: 'last'
|
|
1314
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
|
+
};
|
|
1315
1342
|
export const UserOrderByRelevanceFieldEnum = {
|
|
1316
1343
|
id: 'id',
|
|
1317
1344
|
email: 'email',
|
|
@@ -1570,7 +1597,7 @@ export const ApprovalStageOrderByRelevanceFieldEnum = {
|
|
|
1570
1597
|
id: 'id',
|
|
1571
1598
|
planId: 'planId',
|
|
1572
1599
|
name: 'name',
|
|
1573
|
-
|
|
1600
|
+
organizationTypeId: 'organizationTypeId',
|
|
1574
1601
|
description: 'description'
|
|
1575
1602
|
};
|
|
1576
1603
|
export const QuestionnairePlanOrderByRelevanceFieldEnum = {
|
|
@@ -1669,6 +1696,7 @@ export const ApplicationOrganizationOrderByRelevanceFieldEnum = {
|
|
|
1669
1696
|
tenantId: 'tenantId',
|
|
1670
1697
|
applicationId: 'applicationId',
|
|
1671
1698
|
organizationId: 'organizationId',
|
|
1699
|
+
assignedAsTypeId: 'assignedAsTypeId',
|
|
1672
1700
|
assignedById: 'assignedById',
|
|
1673
1701
|
declineReason: 'declineReason',
|
|
1674
1702
|
escalatedToUserId: 'escalatedToUserId',
|
|
@@ -1781,6 +1809,7 @@ export const DocumentReviewOrderByRelevanceFieldEnum = {
|
|
|
1781
1809
|
tenantId: 'tenantId',
|
|
1782
1810
|
documentId: 'documentId',
|
|
1783
1811
|
organizationId: 'organizationId',
|
|
1812
|
+
organizationTypeId: 'organizationTypeId',
|
|
1784
1813
|
reviewerId: 'reviewerId',
|
|
1785
1814
|
reviewerName: 'reviewerName',
|
|
1786
1815
|
comments: 'comments',
|
|
@@ -1792,6 +1821,7 @@ export const ApprovalStageProgressOrderByRelevanceFieldEnum = {
|
|
|
1792
1821
|
documentationPhaseId: 'documentationPhaseId',
|
|
1793
1822
|
approvalStageId: 'approvalStageId',
|
|
1794
1823
|
name: 'name',
|
|
1824
|
+
organizationTypeId: 'organizationTypeId',
|
|
1795
1825
|
completedById: 'completedById',
|
|
1796
1826
|
transitionComment: 'transitionComment'
|
|
1797
1827
|
};
|
|
@@ -1801,6 +1831,7 @@ export const DocumentApprovalOrderByRelevanceFieldEnum = {
|
|
|
1801
1831
|
documentId: 'documentId',
|
|
1802
1832
|
stageProgressId: 'stageProgressId',
|
|
1803
1833
|
reviewerId: 'reviewerId',
|
|
1834
|
+
organizationTypeId: 'organizationTypeId',
|
|
1804
1835
|
comment: 'comment'
|
|
1805
1836
|
};
|
|
1806
1837
|
export const DocumentTemplateOrderByRelevanceFieldEnum = {
|