@sassoftware/vi-api 1.5.0 → 1.9.0

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 (82) hide show
  1. package/alert-reps/index.d.ts +1 -1
  2. package/alert-reps/package.json +5 -0
  3. package/component/bindings.d.ts +10 -4
  4. package/component/index.d.ts +11 -10
  5. package/component/index.js +1 -1
  6. package/component/package.json +9 -0
  7. package/config/config-api.d.ts +21 -2
  8. package/config/package.json +9 -0
  9. package/control/control-api.d.ts +40 -15
  10. package/control/package.json +9 -0
  11. package/control/restrictions.d.ts +5 -1
  12. package/current-user/package.json +9 -0
  13. package/event/event-api.d.ts +3 -1
  14. package/event/event-api.js +2 -0
  15. package/event/package.json +9 -0
  16. package/file/package.json +9 -0
  17. package/http/package.json +9 -0
  18. package/index.d.ts +4 -2
  19. package/localization/package.json +9 -0
  20. package/metadata/metadata-api.d.ts +17 -14
  21. package/metadata/package.json +9 -0
  22. package/object/object-api.d.ts +34 -21
  23. package/object/package.json +9 -0
  24. package/package.json +2 -1
  25. package/page-admin/package.json +9 -0
  26. package/page-admin/page-admin-api.d.ts +2 -2
  27. package/page-model/package.json +9 -0
  28. package/page-model/page-model-api.d.ts +92 -1
  29. package/page-state/package.json +9 -0
  30. package/page-state/page-state-api.d.ts +6 -33
  31. package/property/package.json +9 -0
  32. package/property/property-api.d.ts +6 -6
  33. package/property/property-api.js +2 -2
  34. package/reference-data/package.json +9 -0
  35. package/resource/package.json +9 -0
  36. package/score-reps/index.d.ts +1 -1
  37. package/score-reps/package.json +5 -0
  38. package/search/client/client-search-api.d.ts +24 -14
  39. package/search/package.json +9 -0
  40. package/search/search-api.d.ts +1 -1
  41. package/sheet/package.json +9 -0
  42. package/sheet/sheet-api.d.ts +6 -6
  43. package/shell-tabs/package.json +9 -0
  44. package/shell-tabs/public-api.d.ts +2 -0
  45. package/shell-tabs/public-api.js +2 -0
  46. package/shell-tabs/shell-tabs-api.d.ts +199 -0
  47. package/shell-tabs/shell-tabs-api.js +6 -0
  48. package/shell-tabs/shell-tabs-lifecycle-api.d.ts +69 -0
  49. package/shell-tabs/shell-tabs-lifecycle-api.js +14 -0
  50. package/svi-datahub/index.d.ts +295 -135
  51. package/svi-datahub/package.json +5 -0
  52. package/svi-sand/index.d.ts +31 -24
  53. package/svi-sand/package.json +5 -0
  54. package/tab/package.json +9 -0
  55. package/tab/tab-api.d.ts +1 -1
  56. package/theme/package.json +9 -0
  57. package/time-slider/index.d.ts +9 -0
  58. package/traversal/package.json +9 -0
  59. package/api-init.service.js +0 -86
  60. package/component/component-api.service.js +0 -161
  61. package/config/config-api.service.js +0 -54
  62. package/current-user/currentUser-api.service.js +0 -49
  63. package/event/event-api.service.js +0 -32
  64. package/file/file-api.service.js +0 -24
  65. package/http/http-api.service.js +0 -64
  66. package/localization/localization-api.service.js +0 -38
  67. package/metadata/admin/admin-metadata-api.service.js +0 -30
  68. package/metadata/metadata-api.service.js +0 -85
  69. package/object/object-api.service.js +0 -207
  70. package/page-admin/page-admin-api.service.js +0 -25
  71. package/page-model/page-model-api.service.js +0 -25
  72. package/page-state/page-state-api.service.js +0 -70
  73. package/property/property-api.service.js +0 -34
  74. package/reference-data/refData.service.js +0 -40
  75. package/resource/resource-api.service.js +0 -24
  76. package/search/client/client-search-api.service.js +0 -111
  77. package/search/search-api.service.js +0 -28
  78. package/sheet/network-menu-handler.service.js +0 -39
  79. package/sheet/sheet-api.service.js +0 -140
  80. package/tab/tab-api.service.js +0 -35
  81. package/theme/theme-api.service.js +0 -35
  82. package/traversal/traversal-api.service.js +0 -77
@@ -1,23 +1,23 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2023-01-24 15:24:45.
3
+ // Generated using typescript-generator version 2.15.527 on 2023-07-17 19:52:59.
4
4
 
5
5
  export interface SecuredApiMeta {
6
- build?: SecuredBuild;
7
- apiVersion?: number;
8
6
  experimental?: boolean;
9
7
  developmentStartYear?: number;
10
8
  developmentEndYear?: number;
11
9
  applicationVersion?: string;
12
10
  serviceId?: string;
11
+ build?: SecuredBuild;
12
+ apiVersion?: number;
13
13
  }
14
14
 
15
15
  export interface SecuredBuild {
16
- timeStamp?: string;
16
+ sourceId?: string;
17
17
  buildVersion?: string;
18
- sourceTimeStamp?: string;
19
18
  applicationVersion?: string;
20
- sourceId?: string;
19
+ sourceTimeStamp?: string;
20
+ timeStamp?: string;
21
21
  }
22
22
 
23
23
  export interface Api extends Serializable {
@@ -27,11 +27,11 @@ export interface Api extends Serializable {
27
27
 
28
28
  export interface ApiMeta extends Serializable {
29
29
  build?: Build;
30
- apiVersion?: number;
31
30
  experimental?: boolean;
32
31
  developmentStartYear?: number;
33
32
  developmentEndYear?: number;
34
33
  serviceId?: string;
34
+ apiVersion?: number;
35
35
  }
36
36
 
37
37
  export interface ResourceMediaType {
@@ -47,11 +47,11 @@ export interface ResourceMediaTypes {
47
47
  }
48
48
 
49
49
  export interface Build extends Serializable {
50
- timeStamp?: string;
50
+ sourceId?: string;
51
51
  buildVersion?: string;
52
52
  sourceTimeStamp?: string;
53
53
  applicationVersion?: string;
54
- sourceId?: string;
54
+ timeStamp?: string;
55
55
  }
56
56
 
57
57
  export interface Count extends Serializable {
@@ -408,6 +408,9 @@ export interface SolutionPublishResultDTO {
408
408
  export interface AttachmentController {
409
409
  }
410
410
 
411
+ export interface CatalogController {
412
+ }
413
+
411
414
  export interface CommentController {
412
415
  }
413
416
 
@@ -489,9 +492,6 @@ export interface ResolvedEntityController {
489
492
  export interface ResolvedEntityUtilController {
490
493
  }
491
494
 
492
- export interface StoredObjectRelationshipsController {
493
- }
494
-
495
495
  export interface TransactionDataController {
496
496
  }
497
497
 
@@ -503,8 +503,8 @@ export interface TraversalController {
503
503
  }
504
504
 
505
505
  export interface UtilityServicesController {
506
- defaultLocale?: LocalizedLocale;
507
506
  supportedLocales?: LocalizedLocale[];
507
+ defaultLocale?: LocalizedLocale;
508
508
  }
509
509
 
510
510
  export interface ActionController {
@@ -657,9 +657,10 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
657
657
  redacted?: boolean;
658
658
  useObjectAuthorization?: boolean;
659
659
  allowedRedactedFieldGroups?: RedactionRuleEntity[];
660
- constrained?: boolean;
661
- owner?: O;
662
660
  userGroupSelectionField?: boolean;
661
+ masked?: boolean;
662
+ owner?: O;
663
+ constrained?: boolean;
663
664
  }
664
665
 
665
666
  export interface CoreDataObject extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity, Serializable {
@@ -761,21 +762,22 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
761
762
  width?: number;
762
763
  dashType?: string;
763
764
  styles?: LinkStyleEntity[];
764
- link?: boolean;
765
- qualifiedName?: string;
765
+ reverseLabel?: string;
766
766
  primaryKeyFields?: CoreRelationshipField[];
767
767
  heterogeneous?: boolean;
768
768
  internalHeterogeneous?: boolean;
769
- reverseLabel?: string;
770
769
  foreignKeyFieldNames?: string[];
771
770
  attributeFields?: CoreRelationshipField[];
772
771
  nonAttributeFieldNames?: string[];
772
+ qualifiedName?: string;
773
+ link?: boolean;
773
774
  readOnly?: boolean;
774
775
  }
775
776
 
776
777
  export interface CoreRelationshipField extends CoreDataField<CoreRelationship> {
777
778
  owner?: CoreRelationship;
778
779
  summaryDisplayIndex?: number;
780
+ authorizedToRevealMasked?: MaskRevealAuthorizationEntityRelationship[];
779
781
  }
780
782
 
781
783
  export interface CoreStoredObject extends CoreDataObjectWithHistory {
@@ -827,6 +829,7 @@ export interface CoreStoredObjectField extends CoreDataField<CoreStoredObject> {
827
829
  cascadingReferenceDataFilterByListName?: string;
828
830
  cascadingReferenceDataFilterByCode?: string;
829
831
  cascadingReferenceDataFilterByField?: string;
832
+ authorizedToRevealMasked?: MaskRevealAuthorizationEntityStoredObject[];
830
833
  }
831
834
 
832
835
  export interface CoreTransaction extends CoreDataObject {
@@ -846,15 +849,16 @@ export interface CoreTransaction extends CoreDataObject {
846
849
  primaryKeyFields?: CoreDataField<any>[];
847
850
  heterogeneous?: boolean;
848
851
  fullHeterogeneous?: boolean;
849
- toHeterogeneous?: boolean;
850
852
  fromHeterogeneous?: boolean;
851
853
  toHeterogeneousAndFromObjectIsIndexable?: boolean;
852
854
  fromHeterogeneousAndToObjectIsIndexable?: boolean;
853
855
  nonHeterogeneousAndBothSidesAreIndexable?: boolean;
856
+ toHeterogeneous?: boolean;
854
857
  }
855
858
 
856
859
  export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
857
860
  owner?: CoreTransaction;
861
+ authorizedToRevealMasked?: MaskRevealAuthorizationEntityTransaction[];
858
862
  }
859
863
 
860
864
  export interface DataStore extends AuditableObject, Versioned, NamedObject {
@@ -871,14 +875,22 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject {
871
875
  poolMinIdle?: number;
872
876
  poolMaxIdle?: number;
873
877
  poolMaxActive?: number;
874
- defaultDataStore?: boolean;
875
878
  testOnBorrow?: boolean;
876
879
  defaultSchemaName?: string;
880
+ defaultDataStore?: boolean;
877
881
  }
878
882
 
879
883
  export interface FeatureConstants {
880
884
  }
881
885
 
886
+ export interface FieldHeader {
887
+ fieldId?: number;
888
+ entityTypeId?: number;
889
+ fieldName?: string;
890
+ columnName?: string;
891
+ fieldDataType?: string;
892
+ }
893
+
882
894
  export interface FileCategoryEntity extends Serializable {
883
895
  name?: string;
884
896
  displayName?: string;
@@ -927,6 +939,27 @@ export interface LocalizedLabel extends AuditableObject, Versioned {
927
939
  type?: LabelType;
928
940
  }
929
941
 
942
+ export interface MaskRevealAuthorizationEntity {
943
+ uuid?: string;
944
+ selectionTypeCd?: UserGroupType;
945
+ selectionNm?: string;
946
+ }
947
+
948
+ export interface MaskRevealAuthorizationEntityFactory {
949
+ }
950
+
951
+ export interface MaskRevealAuthorizationEntityRelationship extends MaskRevealAuthorizationEntity {
952
+ coreDataField?: CoreRelationshipField;
953
+ }
954
+
955
+ export interface MaskRevealAuthorizationEntityStoredObject extends MaskRevealAuthorizationEntity {
956
+ coreDataField?: CoreStoredObjectField;
957
+ }
958
+
959
+ export interface MaskRevealAuthorizationEntityTransaction extends MaskRevealAuthorizationEntity {
960
+ coreDataField?: CoreTransactionField;
961
+ }
962
+
930
963
  export interface NamedObject {
931
964
  name?: string;
932
965
  }
@@ -996,6 +1029,7 @@ export interface QCoreDataField extends EntityPathBase<CoreDataField<CoreDataObj
996
1029
  displayInTimeZone?: StringPath;
997
1030
  id?: NumberPath<number>;
998
1031
  indexedForSearch?: BooleanPath;
1032
+ isMasked?: BooleanPath;
999
1033
  lastUpdatedAt?: DateTimePath<Date>;
1000
1034
  lastUpdatedBy?: StringPath;
1001
1035
  length?: NumberPath<number>;
@@ -1227,6 +1261,7 @@ export interface QCoreRelationshipField extends EntityPathBase<CoreRelationshipF
1227
1261
  allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1228
1262
  allowMultipleSelections?: BooleanPath;
1229
1263
  assignedTimeZone?: StringPath;
1264
+ authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityRelationship, QMaskRevealAuthorizationEntityRelationship>;
1230
1265
  autoGenerated?: BooleanPath;
1231
1266
  columnName?: StringPath;
1232
1267
  constrainingListName?: StringPath;
@@ -1237,6 +1272,7 @@ export interface QCoreRelationshipField extends EntityPathBase<CoreRelationshipF
1237
1272
  displayInTimeZone?: StringPath;
1238
1273
  id?: NumberPath<number>;
1239
1274
  indexedForSearch?: BooleanPath;
1275
+ isMasked?: BooleanPath;
1240
1276
  lastUpdatedAt?: DateTimePath<Date>;
1241
1277
  lastUpdatedBy?: StringPath;
1242
1278
  length?: NumberPath<number>;
@@ -1325,6 +1361,7 @@ export interface QCoreStoredObjectField extends EntityPathBase<CoreStoredObjectF
1325
1361
  allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1326
1362
  allowMultipleSelections?: BooleanPath;
1327
1363
  assignedTimeZone?: StringPath;
1364
+ authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityStoredObject, QMaskRevealAuthorizationEntityStoredObject>;
1328
1365
  autoGenerated?: BooleanPath;
1329
1366
  cascadingReferenceDataFilterByCode?: StringPath;
1330
1367
  cascadingReferenceDataFilterByField?: StringPath;
@@ -1340,6 +1377,7 @@ export interface QCoreStoredObjectField extends EntityPathBase<CoreStoredObjectF
1340
1377
  element?: QCoreElement;
1341
1378
  id?: NumberPath<number>;
1342
1379
  indexedForSearch?: BooleanPath;
1380
+ isMasked?: BooleanPath;
1343
1381
  lastUpdatedAt?: DateTimePath<Date>;
1344
1382
  lastUpdatedBy?: StringPath;
1345
1383
  length?: NumberPath<number>;
@@ -1409,6 +1447,7 @@ export interface QCoreTransactionField extends EntityPathBase<CoreTransactionFie
1409
1447
  allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1410
1448
  allowMultipleSelections?: BooleanPath;
1411
1449
  assignedTimeZone?: StringPath;
1450
+ authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityTransaction, QMaskRevealAuthorizationEntityTransaction>;
1412
1451
  autoGenerated?: BooleanPath;
1413
1452
  columnName?: StringPath;
1414
1453
  constrainingListName?: StringPath;
@@ -1419,6 +1458,7 @@ export interface QCoreTransactionField extends EntityPathBase<CoreTransactionFie
1419
1458
  displayInTimeZone?: StringPath;
1420
1459
  id?: NumberPath<number>;
1421
1460
  indexedForSearch?: BooleanPath;
1461
+ isMasked?: BooleanPath;
1422
1462
  lastUpdatedAt?: DateTimePath<Date>;
1423
1463
  lastUpdatedBy?: StringPath;
1424
1464
  length?: NumberPath<number>;
@@ -1465,6 +1505,14 @@ export interface QDataStore extends EntityPathBase<DataStore> {
1465
1505
  version?: NumberPath<number>;
1466
1506
  }
1467
1507
 
1508
+ export interface QFieldHeader extends EntityPathBase<FieldHeader> {
1509
+ columnName?: StringPath;
1510
+ entityTypeId?: NumberPath<number>;
1511
+ fieldDataType?: StringPath;
1512
+ fieldId?: NumberPath<number>;
1513
+ fieldName?: StringPath;
1514
+ }
1515
+
1468
1516
  export interface QFileCategoryEntity extends BeanPath<FileCategoryEntity> {
1469
1517
  allowMultiple?: BooleanPath;
1470
1518
  displayName?: StringPath;
@@ -1512,12 +1560,50 @@ export interface QLocalizedLabel extends EntityPathBase<LocalizedLabel> {
1512
1560
  version?: NumberPath<number>;
1513
1561
  }
1514
1562
 
1563
+ export interface QMaskRevealAuthorizationEntity extends EntityPathBase<MaskRevealAuthorizationEntity> {
1564
+ selectionNm?: StringPath;
1565
+ selectionTypeCd?: EnumPath<UserGroupType>;
1566
+ uuid?: StringPath;
1567
+ }
1568
+
1569
+ export interface QMaskRevealAuthorizationEntityRelationship extends EntityPathBase<MaskRevealAuthorizationEntityRelationship> {
1570
+ _super?: QMaskRevealAuthorizationEntity;
1571
+ coreDataField?: QCoreRelationshipField;
1572
+ selectionNm?: StringPath;
1573
+ selectionTypeCd?: EnumPath<UserGroupType>;
1574
+ uuid?: StringPath;
1575
+ }
1576
+
1577
+ export interface QMaskRevealAuthorizationEntityStoredObject extends EntityPathBase<MaskRevealAuthorizationEntityStoredObject> {
1578
+ _super?: QMaskRevealAuthorizationEntity;
1579
+ coreDataField?: QCoreStoredObjectField;
1580
+ selectionNm?: StringPath;
1581
+ selectionTypeCd?: EnumPath<UserGroupType>;
1582
+ uuid?: StringPath;
1583
+ }
1584
+
1585
+ export interface QMaskRevealAuthorizationEntityTransaction extends EntityPathBase<MaskRevealAuthorizationEntityTransaction> {
1586
+ _super?: QMaskRevealAuthorizationEntity;
1587
+ coreDataField?: QCoreTransactionField;
1588
+ selectionNm?: StringPath;
1589
+ selectionTypeCd?: EnumPath<UserGroupType>;
1590
+ uuid?: StringPath;
1591
+ }
1592
+
1515
1593
  export interface QRedactionRuleEntity extends EntityPathBase<RedactionRuleEntity> {
1516
1594
  groupName?: StringPath;
1517
1595
  ownerId?: NumberPath<number>;
1518
1596
  uuid?: StringPath;
1519
1597
  }
1520
1598
 
1599
+ export interface QRelationshipTypeHeader extends EntityPathBase<RelationshipTypeHeader> {
1600
+ fromObjectId?: NumberPath<number>;
1601
+ relationshipId?: NumberPath<number>;
1602
+ relationshipName?: StringPath;
1603
+ reverseRelationshipName?: StringPath;
1604
+ toObjectId?: NumberPath<number>;
1605
+ }
1606
+
1521
1607
  export interface QSolutionEntity extends EntityPathBase<SolutionEntity> {
1522
1608
  _super?: QLocalizableObject;
1523
1609
  archived?: BooleanPath;
@@ -1546,6 +1632,14 @@ export interface RedactionRuleEntity {
1546
1632
  groupName?: string;
1547
1633
  }
1548
1634
 
1635
+ export interface RelationshipTypeHeader {
1636
+ relationshipId?: number;
1637
+ fromObjectId?: number;
1638
+ toObjectId?: number;
1639
+ relationshipName?: string;
1640
+ reverseRelationshipName?: string;
1641
+ }
1642
+
1549
1643
  export interface RelationshipTypeName {
1550
1644
  fromObject?: string;
1551
1645
  relationshipName?: string;
@@ -1793,8 +1887,8 @@ export interface DTOUtil {
1793
1887
 
1794
1888
  export interface DataFieldDTO extends LocalizableObjectDTO, DataField, Versioned, NamedObject {
1795
1889
  dataType?: string;
1796
- constrained?: boolean;
1797
1890
  userGroupSelection?: boolean;
1891
+ constrained?: boolean;
1798
1892
  }
1799
1893
 
1800
1894
  export interface DataObjectDTO extends LocalizableObjectDTO, DataObject, Versioned, NamedObject {
@@ -1836,9 +1930,9 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
1836
1930
  maxActive?: number;
1837
1931
  username?: string;
1838
1932
  connectionError?: string;
1933
+ defaultSchemaName?: string;
1839
1934
  url?: string;
1840
1935
  password?: string;
1841
- defaultSchemaName?: string;
1842
1936
  reindexRequired?: boolean;
1843
1937
  postedTimestamp?: number;
1844
1938
  casDistributedDataLoadSupported?: boolean;
@@ -1873,6 +1967,10 @@ export interface EntityDTO extends LocalizableObjectDTO, Entity, Versioned, Name
1873
1967
  icons?: IconDTO[];
1874
1968
  }
1875
1969
 
1970
+ export interface FieldValueDTO {
1971
+ raw?: any;
1972
+ }
1973
+
1876
1974
  export interface FileCategoryDTO extends InjectableResource, FileCategory {
1877
1975
  filesExist?: boolean;
1878
1976
  templates?: string[];
@@ -1917,6 +2015,20 @@ export interface JobFilter {
1917
2015
  type?: string;
1918
2016
  }
1919
2017
 
2018
+ export interface LinkSummaryDTO {
2019
+ relationshipId?: number;
2020
+ relationshipName?: string;
2021
+ relationshipQualifiedName?: string;
2022
+ relationshipLabel?: string;
2023
+ reverseRelationshipName?: string;
2024
+ reverseRelationshipLabel?: string;
2025
+ fromEntityTypeName?: string;
2026
+ fromEntityTypeLabel?: string;
2027
+ toEntityTypeName?: string;
2028
+ toEntityTypeLabel?: string;
2029
+ linkCount?: number;
2030
+ }
2031
+
1920
2032
  export interface LocalizableObjectDTO extends AuditableObjectDTO, InjectableResource {
1921
2033
  label?: string;
1922
2034
  description?: string;
@@ -2108,8 +2220,8 @@ export interface ControlConfigurationDTO extends NamedObject, SolutionAssignedDT
2108
2220
  }
2109
2221
 
2110
2222
  export interface DocumentTypeWithClientApplication {
2111
- clientApplication?: string;
2112
2223
  documentType?: string;
2224
+ clientApplication?: string;
2113
2225
  }
2114
2226
 
2115
2227
  export interface ElementExportDTO extends ElementDTO {
@@ -2255,8 +2367,8 @@ export interface RelationshipTypeCoreMetadataInternalAdapter extends Relationshi
2255
2367
  }
2256
2368
 
2257
2369
  export interface RelationshipTypeOperations {
2258
- all?: RelationshipDTO[];
2259
2370
  allHeterogeneousRelationshipTypes?: RelationshipDTO[];
2371
+ all?: RelationshipDTO[];
2260
2372
  }
2261
2373
 
2262
2374
  export interface RelationshipTypeUtils {
@@ -2266,8 +2378,8 @@ export interface TransactionTypeCoreMetadataInternalAdapter extends TransactionT
2266
2378
  }
2267
2379
 
2268
2380
  export interface TransactionTypeOperations {
2269
- all?: TransactionDTO[];
2270
2381
  allHeterogeneousTransactionTypes?: TransactionDTO[];
2382
+ all?: TransactionDTO[];
2271
2383
  }
2272
2384
 
2273
2385
  export interface TransactionTypeUtils {
@@ -2314,6 +2426,9 @@ export interface RuleSourceTypeGroup<T> {
2314
2426
  ruleSources?: T[];
2315
2427
  }
2316
2428
 
2429
+ export interface DataMaskingStrategy {
2430
+ }
2431
+
2317
2432
  export interface DatahubQuery {
2318
2433
  filterCriteria?: FilterCriteria;
2319
2434
  sortCriteria?: SortCriteria;
@@ -2326,6 +2441,7 @@ export interface DatahubQuery {
2326
2441
  depth?: number;
2327
2442
  includeDisplayLabel?: boolean;
2328
2443
  includeAuditObjects?: boolean;
2444
+ dataMaskingStrategy?: DataMaskingStrategy;
2329
2445
  selectColumnFields?: string[];
2330
2446
  selectAll?: boolean;
2331
2447
  }
@@ -2375,12 +2491,21 @@ export interface PagingOptions {
2375
2491
  limit?: number;
2376
2492
  }
2377
2493
 
2494
+ export interface PartitionUtil {
2495
+ }
2496
+
2378
2497
  export interface QueryResults<T> {
2379
2498
  totalResultCount?: number;
2380
2499
  items?: T[];
2381
2500
  pagingOptions?: PagingOptions;
2382
2501
  }
2383
2502
 
2503
+ export interface RemoveValuesDataMaskingStrategy extends DataMaskingStrategy {
2504
+ }
2505
+
2506
+ export interface ReplaceWithDotsDataMaskingStrategy extends DataMaskingStrategy {
2507
+ }
2508
+
2384
2509
  export interface SortCriteria {
2385
2510
  field?: FieldReference;
2386
2511
  sortOrder?: SortOrder;
@@ -2395,6 +2520,9 @@ export interface TemporalOptions {
2395
2520
  dateFieldName?: string;
2396
2521
  }
2397
2522
 
2523
+ export interface UnmaskedDataMaskingStrategy extends DataMaskingStrategy {
2524
+ }
2525
+
2398
2526
  export interface WherePredicate {
2399
2527
  fields?: string[];
2400
2528
  operator?: PredicateOperator;
@@ -2509,17 +2637,15 @@ export interface Compound {
2509
2637
  }
2510
2638
 
2511
2639
  export interface ConditionalRule {
2512
- conditionId?: string;
2513
2640
  objectState?: string;
2641
+ conditionId?: string;
2514
2642
  }
2515
2643
 
2516
2644
  export interface DataField {
2517
- required?: boolean;
2518
- label?: string;
2519
- columnName?: string;
2520
- precision?: number;
2521
- scale?: number;
2522
- description?: string;
2645
+ redacted?: AbstractRedactionRuleUnion;
2646
+ requiredConditionally?: ConditionalRule;
2647
+ readOnlyConditionally?: ConditionalRule;
2648
+ ownerName?: string;
2523
2649
  dataType?: any;
2524
2650
  primaryKeyField?: boolean;
2525
2651
  displayIndex?: number;
@@ -2534,36 +2660,40 @@ export interface DataField {
2534
2660
  assignedTimeZone?: string;
2535
2661
  displayInTimeZone?: string;
2536
2662
  showTimeZone?: boolean;
2537
- redacted?: AbstractRedactionRuleUnion;
2538
- requiredConditionally?: ConditionalRule;
2539
- readOnlyConditionally?: ConditionalRule;
2540
- ownerName?: string;
2663
+ masked?: boolean;
2664
+ authorizedToRevealMasked?: UserGroupChooserSelection[];
2665
+ columnName?: string;
2666
+ scale?: number;
2667
+ label?: string;
2541
2668
  length?: number;
2542
2669
  name?: string;
2543
2670
  id?: number;
2544
2671
  readOnly?: boolean;
2672
+ description?: string;
2673
+ precision?: number;
2674
+ required?: boolean;
2545
2675
  }
2546
2676
 
2547
2677
  export interface DataObject extends SolutionAssignedDTO {
2548
- label?: string;
2549
- tableName?: string;
2550
- description?: string;
2551
- version?: number;
2678
+ dataStoreDefaultSchemaName?: string;
2679
+ dataStoreAssignedTimeZone?: string;
2552
2680
  historyEnabled?: boolean;
2553
2681
  createdAtTimeFieldName?: string;
2554
2682
  validFromFieldName?: string;
2683
+ systemReserved?: boolean;
2684
+ allowedRedactedFieldGroups?: string[];
2555
2685
  validToFieldName?: string;
2556
2686
  lastUpdatedAtTimeFieldName?: string;
2557
2687
  displayTextFields?: SortableNameReference[];
2558
- systemReserved?: boolean;
2559
- allowedRedactedFieldGroups?: string[];
2560
2688
  dataStoreName?: string;
2561
- dataStoreDefaultSchemaName?: string;
2562
- dataStoreAssignedTimeZone?: string;
2689
+ tableName?: string;
2690
+ label?: string;
2563
2691
  name?: string;
2564
2692
  fields?: DataField[];
2565
2693
  id?: number;
2566
2694
  readOnly?: boolean;
2695
+ version?: number;
2696
+ description?: string;
2567
2697
  }
2568
2698
 
2569
2699
  export interface DocumentAndLink {
@@ -2580,10 +2710,10 @@ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
2580
2710
  }
2581
2711
 
2582
2712
  export interface Element {
2583
- label?: string;
2584
2713
  dataType?: any;
2585
2714
  mappedFields?: DataField[];
2586
2715
  displayable?: boolean;
2716
+ label?: string;
2587
2717
  name?: string;
2588
2718
  id?: number;
2589
2719
  }
@@ -2602,12 +2732,12 @@ export interface EnrichedDocument {
2602
2732
  sheets?: Sheet[];
2603
2733
  comments?: Comment[];
2604
2734
  fileOperations?: AbstractFileOperationUnion[];
2735
+ fieldRestrictions?: { [index: string]: any };
2605
2736
  attachmentsCount?: number;
2606
2737
  }
2607
2738
 
2608
2739
  export interface Entity extends SolutionAssignedDTO {
2609
- label?: string;
2610
- scale?: number;
2740
+ defaultMapIcon?: Icon;
2611
2741
  defaultRegularIcon?: Icon;
2612
2742
  nodeColor?: string;
2613
2743
  nodeShape?: string;
@@ -2621,7 +2751,8 @@ export interface Entity extends SolutionAssignedDTO {
2621
2751
  requiresMultipleContributors?: boolean;
2622
2752
  compounds?: Compound[];
2623
2753
  publishCode?: PublishCode;
2624
- defaultMapIcon?: Icon;
2754
+ scale?: number;
2755
+ label?: string;
2625
2756
  name?: string;
2626
2757
  id?: number;
2627
2758
  }
@@ -2637,9 +2768,13 @@ export interface Error {
2637
2768
  version?: number;
2638
2769
  }
2639
2770
 
2771
+ export interface FieldMaskingConfigDTO {
2772
+ currentUserIsAuthorizedToReveal?: boolean;
2773
+ }
2774
+
2640
2775
  export interface Icon {
2641
- imageType?: IconImageType;
2642
2776
  imageLocation?: string;
2777
+ imageType?: IconImageType;
2643
2778
  id?: number;
2644
2779
  type?: IconType;
2645
2780
  }
@@ -2673,28 +2808,28 @@ export interface ReferenceListSummary {
2673
2808
  }
2674
2809
 
2675
2810
  export interface Relationship extends DataObject {
2676
- qualifiedName?: string;
2677
- required?: boolean;
2678
- managed?: boolean;
2679
- width?: number;
2680
- color?: string;
2681
- cardinality?: RelationshipCardinality;
2682
- previousCardinality?: RelationshipCardinality;
2683
- symmetric?: boolean;
2684
- reverseName?: string;
2685
- reverseLabel?: string;
2686
- dashType?: string;
2687
- styles?: LinkStyleDTO[];
2688
- fromObjectName?: string;
2689
- toObjectName?: string;
2690
- toObjectLabel?: string;
2691
- fromObjectLabel?: string;
2692
2811
  toObjectTypeNames?: string[];
2693
2812
  summaryFields?: SortableNameReference[];
2694
2813
  heterogeneousLink?: boolean;
2695
2814
  linkFields?: { [index: string]: string }[];
2696
2815
  joinTableName?: string;
2816
+ reverseName?: string;
2817
+ reverseLabel?: string;
2818
+ fromObjectLabel?: string;
2819
+ toObjectLabel?: string;
2820
+ fromObjectName?: string;
2821
+ toObjectName?: string;
2822
+ cardinality?: RelationshipCardinality;
2823
+ previousCardinality?: RelationshipCardinality;
2824
+ symmetric?: boolean;
2825
+ dashType?: string;
2826
+ styles?: LinkStyleDTO[];
2827
+ qualifiedName?: string;
2828
+ managed?: boolean;
2829
+ width?: number;
2830
+ color?: string;
2697
2831
  type?: RelationshipType;
2832
+ required?: boolean;
2698
2833
  }
2699
2834
 
2700
2835
  export interface SheetCopySelection {
@@ -2714,39 +2849,39 @@ export interface SortableNameReference {
2714
2849
  }
2715
2850
 
2716
2851
  export interface StoredDataObject extends DataObject {
2717
- parentName?: string;
2718
- scale?: number;
2852
+ defaultMapIcon?: Icon;
2853
+ nodeDecoration?: NodeDecorationDTO;
2719
2854
  defaultRegularIcon?: Icon;
2720
- relationshipsFrom?: Relationship[];
2721
- relationshipsTo?: Relationship[];
2722
2855
  nodeColor?: string;
2723
2856
  nodeShape?: string;
2724
2857
  markerColor?: string;
2858
+ relationshipsFrom?: Relationship[];
2725
2859
  borderColor?: string;
2726
2860
  borderWidth?: number;
2727
2861
  attachmentsIndexedForSearch?: boolean;
2728
2862
  enableCasDistributedDataLoad?: boolean;
2863
+ relationshipsTo?: Relationship[];
2729
2864
  elementGroupRoot?: boolean;
2730
2865
  requireSearchBeforeCreate?: boolean;
2731
2866
  mobileOfflineEnabled?: boolean;
2732
2867
  fileCategories?: FileCategory[];
2733
2868
  styles?: EntityStyleDTO[];
2734
- defaultMapIcon?: Icon;
2735
- nodeDecoration?: NodeDecorationDTO;
2869
+ scale?: number;
2870
+ parentName?: string;
2736
2871
  type?: DataObjectType;
2737
2872
  }
2738
2873
 
2739
2874
  export interface Transaction extends DataObject {
2875
+ fromObjectName?: string;
2876
+ toObjectName?: string;
2740
2877
  toObjectTypeFieldName?: string;
2878
+ lineWidthFunctionType?: AggregateFunctionType;
2879
+ lineColorFieldName?: string;
2880
+ lineColorFunctionType?: AggregateFunctionType;
2741
2881
  fromObjectTypeFieldName?: string;
2742
2882
  fromObjectRefFieldName?: string;
2743
2883
  toObjectRefFieldName?: string;
2744
2884
  lineWidthFieldName?: string;
2745
- lineWidthFunctionType?: AggregateFunctionType;
2746
- lineColorFieldName?: string;
2747
- lineColorFunctionType?: AggregateFunctionType;
2748
- fromObjectName?: string;
2749
- toObjectName?: string;
2750
2885
  }
2751
2886
 
2752
2887
  export interface Version extends VersionSummary {
@@ -2802,11 +2937,11 @@ export interface EntityImpl extends Entity {
2802
2937
  }
2803
2938
 
2804
2939
  export interface FileCategory {
2805
- required?: boolean;
2806
2940
  allowMultiple?: boolean;
2807
2941
  documentLockRequired?: boolean;
2808
2942
  name?: string;
2809
2943
  displayName?: string;
2944
+ required?: boolean;
2810
2945
  }
2811
2946
 
2812
2947
  export interface FileCategoryImpl extends FileCategory {
@@ -2919,9 +3054,9 @@ export interface CommentUser {
2919
3054
 
2920
3055
  export interface AbstractFieldConditionMetadata<Y, T> {
2921
3056
  cycleDetector?: CycleDetector;
2922
- owner?: Y;
2923
3057
  ownerName?: string;
2924
3058
  parentObjectName?: string;
3059
+ owner?: Y;
2925
3060
  }
2926
3061
 
2927
3062
  export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
@@ -3082,14 +3217,14 @@ export interface EventMetadata {
3082
3217
  }
3083
3218
 
3084
3219
  export interface ValidatableContextMapping extends SolutionAssignedDTO {
3085
- tag?: string;
3086
- event?: string;
3087
- docType?: string;
3088
- uuid?: string;
3089
3220
  fallbackToEvent?: string;
3090
3221
  templateId?: any;
3091
3222
  toolbarEnabled?: boolean;
3092
3223
  evaluateOrder?: number;
3224
+ docType?: string;
3225
+ uuid?: string;
3226
+ tag?: string;
3227
+ event?: string;
3093
3228
  }
3094
3229
 
3095
3230
  export interface Control extends ControlMetadata {
@@ -3568,6 +3703,15 @@ export interface TextCellValidator {
3568
3703
  export interface ValidatorHtmlChangeListener extends HtmlChangeListener<string> {
3569
3704
  }
3570
3705
 
3706
+ export interface JsonMapWithNoHtmlValidator extends ConstraintValidator<JsonMapWithNoHtml, { [index: string]: any }> {
3707
+ }
3708
+
3709
+ export interface SortByQueryParamValidator extends ConstraintValidator<SortByQueryParam, string> {
3710
+ }
3711
+
3712
+ export interface StringWithNoHtmlValidator extends ConstraintValidator<StringWithNoHtml, string> {
3713
+ }
3714
+
3571
3715
  export interface HtmlSanitizerConfig {
3572
3716
  htmlSanitizerProperties?: AdditionalHtmlSanitizerProperties;
3573
3717
  }
@@ -3719,13 +3863,13 @@ export interface Serializable {
3719
3863
  }
3720
3864
 
3721
3865
  export interface JsonDeserializer<T> extends NullValueProvider {
3722
- cachable?: boolean;
3723
3866
  delegatee?: JsonDeserializer<any>;
3724
3867
  knownPropertyNames?: any[];
3725
3868
  nullValue?: T;
3726
3869
  emptyAccessPattern?: AccessPattern;
3727
3870
  emptyValue?: any;
3728
3871
  objectIdReader?: ObjectIdReader;
3872
+ cachable?: boolean;
3729
3873
  }
3730
3874
 
3731
3875
  export interface ObjectIdReader extends Serializable {
@@ -3738,8 +3882,8 @@ export interface ObjectIdReader extends Serializable {
3738
3882
  }
3739
3883
 
3740
3884
  export interface JsonSerializer<T> extends JsonFormatVisitable {
3741
- delegatee?: JsonSerializer<any>;
3742
3885
  unwrappingSerializer?: boolean;
3886
+ delegatee?: JsonSerializer<any>;
3743
3887
  }
3744
3888
 
3745
3889
  export interface HandlerExceptionResolver {
@@ -3756,8 +3900,8 @@ export interface LocalizedLocale {
3756
3900
  }
3757
3901
 
3758
3902
  export interface ResponseEntity<T> extends HttpEntity<T> {
3759
- statusCode?: HttpStatus;
3760
3903
  statusCodeValue?: number;
3904
+ statusCode?: HttpStatus;
3761
3905
  }
3762
3906
 
3763
3907
  export interface CacheStats {
@@ -3767,11 +3911,14 @@ export interface Throwable extends Serializable {
3767
3911
  cause?: Throwable;
3768
3912
  stackTrace?: StackTraceElement[];
3769
3913
  message?: string;
3770
- localizedMessage?: string;
3771
3914
  suppressed?: Throwable[];
3915
+ localizedMessage?: string;
3772
3916
  }
3773
3917
 
3774
3918
  export interface StackTraceElement extends Serializable {
3919
+ classLoaderName?: string;
3920
+ moduleName?: string;
3921
+ moduleVersion?: string;
3775
3922
  methodName?: string;
3776
3923
  fileName?: string;
3777
3924
  lineNumber?: number;
@@ -3820,24 +3967,24 @@ export interface StringPath extends DslTypesDslStringExpression, Path<string> {
3820
3967
  export interface NumberPath<T> extends NumberExpression<T>, Path<T> {
3821
3968
  }
3822
3969
 
3823
- export interface PathMetadata extends Serializable {
3824
- element?: any;
3825
- parent?: Path<any>;
3826
- rootPath?: Path<any>;
3827
- pathType?: PathType;
3828
- root?: boolean;
3829
- name?: string;
3830
- }
3831
-
3832
3970
  export interface AnnotatedElement {
3833
3971
  annotations?: Annotation[];
3834
3972
  declaredAnnotations?: Annotation[];
3835
3973
  }
3836
3974
 
3837
3975
  export interface Path<T> extends DslTypesExpression<T> {
3838
- metadata?: PathMetadata;
3839
3976
  annotatedElement?: AnnotatedElement;
3840
3977
  root?: Path<any>;
3978
+ metadata?: PathMetadata;
3979
+ }
3980
+
3981
+ export interface PathMetadata extends Serializable {
3982
+ element?: any;
3983
+ parent?: Path<any>;
3984
+ rootPath?: Path<any>;
3985
+ pathType?: PathType;
3986
+ root?: boolean;
3987
+ name?: string;
3841
3988
  }
3842
3989
 
3843
3990
  export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement {
@@ -3927,8 +4074,8 @@ export interface Appendable {
3927
4074
  }
3928
4075
 
3929
4076
  export interface TypedPayload {
3930
- eventType?: string;
3931
4077
  payloadType?: string;
4078
+ eventType?: string;
3932
4079
  }
3933
4080
 
3934
4081
  export interface NullValueProvider {
@@ -3949,23 +4096,20 @@ export interface ObjectIdResolver {
3949
4096
  }
3950
4097
 
3951
4098
  export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
3952
- ignorable?: boolean;
3953
4099
  objectIdInfo?: ObjectIdInfo;
3954
4100
  managedReferenceName?: string;
3955
- valueDeserializer?: JsonDeserializer<any>;
3956
4101
  valueTypeDeserializer?: TypeDeserializer;
3957
4102
  nullValueProvider?: NullValueProvider;
3958
4103
  propertyIndex?: number;
3959
4104
  creatorIndex?: number;
3960
4105
  injectableValueId?: any;
3961
4106
  injectionOnly?: boolean;
4107
+ valueDeserializer?: JsonDeserializer<any>;
4108
+ ignorable?: boolean;
3962
4109
  }
3963
4110
 
3964
4111
  export interface JavaType extends ResolvedType, Serializable, Type {
3965
4112
  keyType?: JavaType;
3966
- superClass?: JavaType;
3967
- contentType?: JavaType;
3968
- bindings?: TypeBindings;
3969
4113
  typeHandler?: any;
3970
4114
  valueHandler?: any;
3971
4115
  enumImplType?: boolean;
@@ -3974,8 +4118,11 @@ export interface JavaType extends ResolvedType, Serializable, Type {
3974
4118
  contentValueHandler?: any;
3975
4119
  contentTypeHandler?: any;
3976
4120
  erasedSignature?: string;
4121
+ superClass?: JavaType;
4122
+ contentType?: JavaType;
3977
4123
  interfaces?: JavaType[];
3978
4124
  genericSignature?: string;
4125
+ bindings?: TypeBindings;
3979
4126
  }
3980
4127
 
3981
4128
  export interface JsonFormatVisitable {
@@ -4091,37 +4238,49 @@ export interface Function<T, R> {
4091
4238
  export interface HtmlChangeListener<T> {
4092
4239
  }
4093
4240
 
4094
- export interface AnnotatedMember extends Annotated, Serializable {
4095
- allAnnotations?: AnnotationMap;
4096
- fullName?: string;
4097
- member?: Member;
4098
- typeContext?: TypeResolutionContext;
4099
- declaringClass?: Class<any>;
4241
+ export interface ConstraintValidator<A, T> {
4242
+ }
4243
+
4244
+ export interface JsonMapWithNoHtml extends Annotation {
4245
+ }
4246
+
4247
+ export interface SortByQueryParam extends Annotation {
4248
+ }
4249
+
4250
+ export interface StringWithNoHtml extends Annotation {
4100
4251
  }
4101
4252
 
4102
4253
  export interface ObjectIdInfo {
4103
- scope?: Class<any>;
4104
- propertyName?: PropertyName;
4105
4254
  generatorType?: Class<ObjectIdGenerator<any>>;
4106
4255
  resolverType?: Class<ObjectIdResolver>;
4107
4256
  alwaysAsId?: boolean;
4257
+ scope?: Class<any>;
4258
+ propertyName?: PropertyName;
4108
4259
  }
4109
4260
 
4110
4261
  export interface TypeDeserializer {
4111
- defaultImpl?: Class<any>;
4112
- propertyName?: string;
4113
4262
  typeInclusion?: As;
4114
4263
  typeIdResolver?: TypeIdResolver;
4264
+ propertyName?: string;
4265
+ defaultImpl?: Class<any>;
4266
+ }
4267
+
4268
+ export interface AnnotatedMember extends Annotated, Serializable {
4269
+ typeContext?: TypeResolutionContext;
4270
+ allAnnotations?: AnnotationMap;
4271
+ member?: Member;
4272
+ fullName?: string;
4273
+ declaringClass?: Class<any>;
4115
4274
  }
4116
4275
 
4117
4276
  export interface PropertyMetadata extends Serializable {
4118
- required?: boolean;
4119
- index?: number;
4120
- description?: string;
4121
4277
  mergeInfo?: MergeInfo;
4122
4278
  valueNulls?: Nulls;
4123
4279
  contentNulls?: Nulls;
4280
+ required?: boolean;
4124
4281
  defaultValue?: string;
4282
+ index?: number;
4283
+ description?: string;
4125
4284
  }
4126
4285
 
4127
4286
  export interface ConcreteBeanPropertyBase extends BeanProperty, Serializable {
@@ -4134,8 +4293,6 @@ export interface TypeBindings extends Serializable {
4134
4293
 
4135
4294
  export interface ResolvedType {
4136
4295
  keyType?: ResolvedType;
4137
- rawClass?: Class<any>;
4138
- contentType?: ResolvedType;
4139
4296
  containerType?: boolean;
4140
4297
  arrayType?: boolean;
4141
4298
  concrete?: boolean;
@@ -4146,10 +4303,12 @@ export interface ResolvedType {
4146
4303
  referencedType?: ResolvedType;
4147
4304
  parameterSource?: Class<any>;
4148
4305
  referenceType?: boolean;
4306
+ rawClass?: Class<any>;
4307
+ contentType?: ResolvedType;
4149
4308
  interface?: boolean;
4150
4309
  primitive?: boolean;
4151
- abstract?: boolean;
4152
4310
  final?: boolean;
4311
+ abstract?: boolean;
4153
4312
  }
4154
4313
 
4155
4314
  export interface HttpEntity<T> {
@@ -4178,9 +4337,9 @@ export interface DslTypesExpression<T> extends Serializable {
4178
4337
  }
4179
4338
 
4180
4339
  export interface TypeVariable<D> extends Type, AnnotatedElement {
4181
- bounds?: Type[];
4182
4340
  genericDeclaration?: D;
4183
4341
  annotatedBounds?: AnnotatedType[];
4342
+ bounds?: Type[];
4184
4343
  name?: string;
4185
4344
  }
4186
4345
 
@@ -4264,6 +4423,14 @@ export interface StandardEntity {
4264
4423
  export interface BaseVisitor extends ExpressionVisitor {
4265
4424
  }
4266
4425
 
4426
+ export interface TypeIdResolver {
4427
+ descForKnownTypeIds?: string;
4428
+ mechanism?: Id;
4429
+ }
4430
+
4431
+ export interface TypeResolutionContext {
4432
+ }
4433
+
4267
4434
  export interface AnnotationMap extends Annotations {
4268
4435
  }
4269
4436
 
@@ -4274,35 +4441,27 @@ export interface Member {
4274
4441
  declaringClass?: Class<any>;
4275
4442
  }
4276
4443
 
4277
- export interface TypeResolutionContext {
4278
- }
4279
-
4280
4444
  export interface Annotated {
4281
4445
  annotated?: AnnotatedElement;
4282
4446
  name?: string;
4283
- type?: JavaType;
4284
4447
  public?: boolean;
4448
+ type?: JavaType;
4285
4449
  rawType?: Class<any>;
4286
4450
  }
4287
4451
 
4288
- export interface TypeIdResolver {
4289
- mechanism?: Id;
4290
- descForKnownTypeIds?: string;
4291
- }
4292
-
4293
4452
  export interface MergeInfo {
4294
4453
  getter?: AnnotatedMember;
4295
4454
  fromDefaults?: boolean;
4296
4455
  }
4297
4456
 
4298
4457
  export interface BeanProperty extends Named {
4299
- fullName?: PropertyName;
4458
+ wrapperName?: PropertyName;
4300
4459
  member?: AnnotatedMember;
4460
+ fullName?: PropertyName;
4461
+ type?: JavaType;
4462
+ metadata?: PropertyMetadata;
4301
4463
  required?: boolean;
4302
4464
  virtual?: boolean;
4303
- metadata?: PropertyMetadata;
4304
- wrapperName?: PropertyName;
4305
- type?: JavaType;
4306
4465
  }
4307
4466
 
4308
4467
  export interface Mergable<E> {
@@ -4313,6 +4472,7 @@ export interface LiteralExpression<T> extends ComparableExpression<T> {
4313
4472
  }
4314
4473
 
4315
4474
  export interface AnnotatedType extends AnnotatedElement {
4475
+ annotatedOwnerType?: AnnotatedType;
4316
4476
  type?: Type;
4317
4477
  }
4318
4478
 
@@ -4443,7 +4603,7 @@ export type IconImageType = "GIF" | "JPEG" | "PNG" | "SVG";
4443
4603
 
4444
4604
  export type IconType = "REGULAR" | "MAP";
4445
4605
 
4446
- export type JobType = "SEARCH_INDEX_LOADER" | "PROCESS_ATTACHMENTS";
4606
+ export type JobType = "SEARCH_INDEX_LOADER" | "PROCESS_ATTACHMENTS" | "IMPORT_CONFIG";
4447
4607
 
4448
4608
  export type MetadataObjectType = "ICON" | "DOCUMENT" | "LINK" | "TRANSACTION" | "ELEMENT" | "ENTITY" | "TEMPLATE" | "TRAVERSAL" | "CONTROL" | "CONTROL_CATEGORY" | "CONTEXT_MAPPING" | "ACTION" | "ACTION_ITEM" | "REFERENCE_LIST" | "HIERARCHICAL_REFERENCE_DATA" | "CLIENT_APPLICATION" | "TEMPLATE_TYPE" | "CONDITION" | "DATA_STORE" | "SOLUTION" | "ACTIVE_HOMEPAGE";
4449
4609
 
@@ -4475,7 +4635,7 @@ export type CardinalityStatus = "SATURATED" | "UNSATURATED" | "UNKNOWN";
4475
4635
 
4476
4636
  export type ActionItemState = "ENABLED" | "DISABLED" | "REMOVED";
4477
4637
 
4478
- export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
4638
+ export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "masked" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
4479
4639
 
4480
4640
  export type RestrictionType = "required" | "requiresDocumentLock" | "allowMultipleFiles";
4481
4641
 
@@ -4505,7 +4665,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
4505
4665
 
4506
4666
  export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4507
4667
 
4508
- export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3369" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4169" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json";
4668
+ export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3369" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4169" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json" | "authorized_to_reveal_masked_length" | "authorized_to_reveal_masked_should_be_null" | "authorized_to_reveal_masked_should_have_contents" | "authorized_to_reveal_masked_cannot_be_primary_key_field" | "user_group_not_authorized_to_reveal_masked_field" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body";
4509
4669
 
4510
4670
  export type DataStoreType = "RELATIONAL";
4511
4671