@sassoftware/vi-api 0.0.29 → 1.7.1

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 (40) hide show
  1. package/LICENSE.txt +333 -0
  2. package/README.md +9 -0
  3. package/alert-reps/index.d.ts +5 -1
  4. package/alert-reps/package.json +1 -1
  5. package/api.module.js +72 -0
  6. package/component/bindings.d.ts +15 -7
  7. package/component/index.d.ts +11 -10
  8. package/component/index.js +1 -1
  9. package/config/config-api.d.ts +21 -2
  10. package/control/control-api.d.ts +44 -22
  11. package/control/data-types.d.ts +6 -1
  12. package/control/page.d.ts +14 -0
  13. package/control/toolbar-property-api.d.ts +2 -1
  14. package/event/event-api.d.ts +1 -0
  15. package/event/event-api.js +1 -0
  16. package/index.d.ts +2 -2
  17. package/metadata/metadata-api.d.ts +15 -12
  18. package/object/object-api.d.ts +29 -40
  19. package/package.json +25 -2
  20. package/page-admin/page-admin-api.d.ts +2 -2
  21. package/page-model/page-model-api.d.ts +113 -14
  22. package/page-state/page-state-api.d.ts +23 -0
  23. package/property/property-api.d.ts +66 -6
  24. package/property/property-api.js +2 -2
  25. package/score-reps/index.d.ts +1 -1
  26. package/score-reps/package.json +1 -1
  27. package/search/client/client-search-api.d.ts +15 -11
  28. package/search/client/client-search-api.js +1 -1
  29. package/search/search-api.d.ts +7 -7
  30. package/sheet/sheet-api.d.ts +41 -9
  31. package/sheet/sheet-api.js +9 -1
  32. package/svi-datahub/index.d.ts +218 -173
  33. package/svi-datahub/package.json +1 -1
  34. package/svi-sand/index.d.ts +40 -33
  35. package/svi-sand/package.json +1 -1
  36. package/tab/tab-api.d.ts +1 -1
  37. package/theme/theme-api.d.ts +1 -1
  38. package/theme/theme-api.js +1 -1
  39. package/time-slider/index.d.ts +15 -0
  40. package/traversal/traversal-api.d.ts +7 -1
@@ -1,23 +1,23 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2022-03-03 16:51:12.
3
+ // Generated using typescript-generator version 2.15.527 on 2023-02-14 18:23:36.
4
4
 
5
5
  export interface SecuredApiMeta {
6
+ build?: SecuredBuild;
7
+ apiVersion?: number;
6
8
  experimental?: boolean;
7
- developmentStartYear?: number;
8
- developmentEndYear?: number;
9
9
  applicationVersion?: string;
10
10
  serviceId?: string;
11
- build?: SecuredBuild;
12
- apiVersion?: number;
11
+ developmentStartYear?: number;
12
+ developmentEndYear?: number;
13
13
  }
14
14
 
15
15
  export interface SecuredBuild {
16
16
  buildVersion?: string;
17
- sourceId?: string;
18
17
  sourceTimeStamp?: string;
19
18
  applicationVersion?: string;
20
19
  timeStamp?: string;
20
+ sourceId?: 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;
30
31
  experimental?: boolean;
32
+ serviceId?: string;
31
33
  developmentStartYear?: number;
32
34
  developmentEndYear?: number;
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
51
  buildVersion?: string;
51
- sourceId?: string;
52
52
  sourceTimeStamp?: string;
53
53
  applicationVersion?: string;
54
- timeStamp?: string;
54
+ sourceId?: string;
55
55
  }
56
56
 
57
57
  export interface Count extends Serializable {
@@ -266,7 +266,7 @@ export interface TableActionItem extends ActionItem {
266
266
  }
267
267
 
268
268
  export interface DataContent {
269
- "@type": "Document" | "ResolvedEntity" | "DocumentIdentifier" | "DocumentLink" | "TransactionLink" | "ResolvedEntityChanges" | "StringData";
269
+ "@type": "Document" | "ResolvedEntity" | "DocumentIdentifier" | "DocumentLink" | "TransactionLink";
270
270
  }
271
271
 
272
272
  export interface Document extends DataContent {
@@ -326,6 +326,13 @@ export interface CommonsDataRelationship extends DataContent {
326
326
  fieldValues?: { [index: string]: any };
327
327
  }
328
328
 
329
+ export interface RelationshipIdentifier {
330
+ fullyQualifiedId?: string;
331
+ relationshipName?: string;
332
+ fromObjectName?: string;
333
+ toObjectName?: string;
334
+ }
335
+
329
336
  export interface DataResolvedEntity extends Document {
330
337
  "@type": "ResolvedEntity";
331
338
  label?: string;
@@ -333,17 +340,6 @@ export interface DataResolvedEntity extends Document {
333
340
  references?: EntityReference[];
334
341
  }
335
342
 
336
- export interface ResolvedEntityChanges extends DataContent {
337
- "@type": "ResolvedEntityChanges";
338
- deletedCompoundValues?: string[];
339
- entities?: DataResolvedEntity[];
340
- }
341
-
342
- export interface StringData extends DataContent {
343
- "@type": "StringData";
344
- data?: string;
345
- }
346
-
347
343
  export interface TransactionLink extends CommonsDataRelationship {
348
344
  "@type": "TransactionLink";
349
345
  }
@@ -364,6 +360,7 @@ export interface FileAssociation {
364
360
  version?: number;
365
361
  id?: string;
366
362
  name?: string;
363
+ originalName?: string;
367
364
  category?: string;
368
365
  location?: string;
369
366
  type?: string;
@@ -374,6 +371,8 @@ export interface FileAssociation {
374
371
  uploadedBy?: string;
375
372
  extractedContent?: string;
376
373
  displayOrder?: number;
374
+ link?: boolean;
375
+ isLink?: boolean;
377
376
  }
378
377
 
379
378
  export interface UpdateFileOperation extends AbstractFileOperation {
@@ -409,8 +408,7 @@ export interface SolutionPublishResultDTO {
409
408
  export interface AttachmentController {
410
409
  }
411
410
 
412
- export interface InnerFileAssociationResponse extends FileAssociation {
413
- links?: RestRepresentationsLink[];
411
+ export interface CatalogController {
414
412
  }
415
413
 
416
414
  export interface CommentController {
@@ -473,6 +471,9 @@ export interface LinkWithBody<T> extends RestRepresentationsLink {
473
471
  export interface LockController {
474
472
  }
475
473
 
474
+ export interface MetadataActivityRecorder {
475
+ }
476
+
476
477
  export interface MetahubSharedExceptionHandler {
477
478
  }
478
479
 
@@ -491,9 +492,6 @@ export interface ResolvedEntityController {
491
492
  export interface ResolvedEntityUtilController {
492
493
  }
493
494
 
494
- export interface StoredObjectRelationshipsController {
495
- }
496
-
497
495
  export interface TransactionDataController {
498
496
  }
499
497
 
@@ -505,8 +503,8 @@ export interface TraversalController {
505
503
  }
506
504
 
507
505
  export interface UtilityServicesController {
508
- supportedLocales?: LocalizedLocale[];
509
506
  defaultLocale?: LocalizedLocale;
507
+ supportedLocales?: LocalizedLocale[];
510
508
  }
511
509
 
512
510
  export interface ActionController {
@@ -527,6 +525,11 @@ export interface AdminControlController {
527
525
  export interface AdminDataStoreController {
528
526
  }
529
527
 
528
+ export interface DataStoreCredentials {
529
+ username?: string;
530
+ password?: string;
531
+ }
532
+
530
533
  export interface AdminElementBagController {
531
534
  }
532
535
 
@@ -546,8 +549,11 @@ export interface AdminIconController {
546
549
 
547
550
  export interface AdminMetadataCacheController {
548
551
  metadataCacheStatistics?: ResponseEntity<{ [index: string]: any }>;
549
- clientMetadataCacheStatistics?: ResponseEntity<{ [index: string]: any }>;
550
- clientMetadataCacheStatisticsWithFootprint?: ResponseEntity<{ [index: string]: any }>;
552
+ clientMetadataCacheStatistics?: ResponseEntity<CacheStats>;
553
+ }
554
+
555
+ export interface AdminNldStylingRuleController {
556
+ rulesFromAllSources?: { [index: string]: any };
551
557
  }
552
558
 
553
559
  export interface AdminPageBuilderController {
@@ -596,6 +602,9 @@ export interface AuditableObject extends IdentifiableObject {
596
602
  lastUpdatedAt?: Date;
597
603
  }
598
604
 
605
+ export interface CapabilityConstants {
606
+ }
607
+
599
608
  export interface ConfigProperty extends Identifiable, NamedObject {
600
609
  values?: string[];
601
610
  }
@@ -609,9 +618,6 @@ export interface ActionHistoryColumns {
609
618
  export interface ConfigPropertyName {
610
619
  }
611
620
 
612
- export interface Feature {
613
- }
614
-
615
621
  export interface Length {
616
622
  }
617
623
 
@@ -651,9 +657,9 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
651
657
  redacted?: boolean;
652
658
  useObjectAuthorization?: boolean;
653
659
  allowedRedactedFieldGroups?: RedactionRuleEntity[];
654
- userGroupSelectionField?: boolean;
655
- owner?: O;
656
660
  constrained?: boolean;
661
+ owner?: O;
662
+ userGroupSelectionField?: boolean;
657
663
  }
658
664
 
659
665
  export interface CoreDataObject extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity, Serializable {
@@ -755,6 +761,8 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
755
761
  width?: number;
756
762
  dashType?: string;
757
763
  styles?: LinkStyleEntity[];
764
+ link?: boolean;
765
+ qualifiedName?: string;
758
766
  primaryKeyFields?: CoreRelationshipField[];
759
767
  heterogeneous?: boolean;
760
768
  internalHeterogeneous?: boolean;
@@ -762,8 +770,6 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
762
770
  foreignKeyFieldNames?: string[];
763
771
  attributeFields?: CoreRelationshipField[];
764
772
  nonAttributeFieldNames?: string[];
765
- qualifiedName?: string;
766
- link?: boolean;
767
773
  readOnly?: boolean;
768
774
  }
769
775
 
@@ -865,9 +871,12 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject {
865
871
  poolMinIdle?: number;
866
872
  poolMaxIdle?: number;
867
873
  poolMaxActive?: number;
868
- defaultSchemaName?: string;
869
874
  defaultDataStore?: boolean;
870
875
  testOnBorrow?: boolean;
876
+ defaultSchemaName?: string;
877
+ }
878
+
879
+ export interface FeatureConstants {
871
880
  }
872
881
 
873
882
  export interface FileCategoryEntity extends Serializable {
@@ -902,8 +911,8 @@ export interface InjectableResource {
902
911
  export interface LocalizableObject extends AuditableObject {
903
912
  localizedLabels?: LocalizedLabel[];
904
913
  localizedDescriptions?: LocalizedDescription[];
905
- description?: string;
906
914
  label?: string;
915
+ description?: string;
907
916
  }
908
917
 
909
918
  export interface LocalizedDescription extends AuditableObject, Versioned {
@@ -1659,7 +1668,6 @@ export interface TransactionTypeFieldConverter extends AbstractCoreFieldConverte
1659
1668
  export interface AsyncJobDTO {
1660
1669
  id?: string;
1661
1670
  type?: JobType;
1662
- status?: ExecutionStatus;
1663
1671
  submittedBy?: string;
1664
1672
  submittedAt?: Date;
1665
1673
  parameters?: { [index: string]: any };
@@ -1671,7 +1679,6 @@ export interface AsyncTaskDTO {
1671
1679
  name?: string;
1672
1680
  description?: string;
1673
1681
  type?: TaskType;
1674
- status?: ExecutionStatus;
1675
1682
  queuedAt?: Date;
1676
1683
  properties?: { [index: string]: any };
1677
1684
  }
@@ -1786,8 +1793,8 @@ export interface DTOUtil {
1786
1793
 
1787
1794
  export interface DataFieldDTO extends LocalizableObjectDTO, DataField, Versioned, NamedObject {
1788
1795
  dataType?: string;
1789
- userGroupSelection?: boolean;
1790
1796
  constrained?: boolean;
1797
+ userGroupSelection?: boolean;
1791
1798
  }
1792
1799
 
1793
1800
  export interface DataObjectDTO extends LocalizableObjectDTO, DataObject, Versioned, NamedObject {
@@ -1827,12 +1834,11 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
1827
1834
  maxIdle?: number;
1828
1835
  minIdle?: number;
1829
1836
  maxActive?: number;
1830
- handle?: string;
1831
1837
  username?: string;
1832
1838
  connectionError?: string;
1833
- defaultSchemaName?: string;
1834
- password?: string;
1835
1839
  url?: string;
1840
+ password?: string;
1841
+ defaultSchemaName?: string;
1836
1842
  reindexRequired?: boolean;
1837
1843
  postedTimestamp?: number;
1838
1844
  casDistributedDataLoadSupported?: boolean;
@@ -1911,6 +1917,16 @@ export interface JobFilter {
1911
1917
  type?: string;
1912
1918
  }
1913
1919
 
1920
+ export interface LinkSummaryDTO {
1921
+ relationshipId?: number;
1922
+ relationshipName?: string;
1923
+ fromEntityTypeName?: string;
1924
+ fromEntityTypeLabel?: string;
1925
+ toEntityTypeName?: string;
1926
+ toEntityTypeLabel?: string;
1927
+ linkCount?: number;
1928
+ }
1929
+
1914
1930
  export interface LocalizableObjectDTO extends AuditableObjectDTO, InjectableResource {
1915
1931
  label?: string;
1916
1932
  description?: string;
@@ -2097,13 +2113,13 @@ export interface ControlConfigurationDTO extends NamedObject, SolutionAssignedDT
2097
2113
  directive?: string;
2098
2114
  controlAttributes?: { [index: string]: any };
2099
2115
  controlCategory?: string;
2100
- requiredFeatures?: string[];
2101
2116
  customControl?: boolean;
2117
+ requiredCapabilities?: string[];
2102
2118
  }
2103
2119
 
2104
2120
  export interface DocumentTypeWithClientApplication {
2105
- documentType?: string;
2106
2121
  clientApplication?: string;
2122
+ documentType?: string;
2107
2123
  }
2108
2124
 
2109
2125
  export interface ElementExportDTO extends ElementDTO {
@@ -2249,8 +2265,8 @@ export interface RelationshipTypeCoreMetadataInternalAdapter extends Relationshi
2249
2265
  }
2250
2266
 
2251
2267
  export interface RelationshipTypeOperations {
2252
- allHeterogeneousRelationshipTypes?: RelationshipDTO[];
2253
2268
  all?: RelationshipDTO[];
2269
+ allHeterogeneousRelationshipTypes?: RelationshipDTO[];
2254
2270
  }
2255
2271
 
2256
2272
  export interface RelationshipTypeUtils {
@@ -2260,8 +2276,8 @@ export interface TransactionTypeCoreMetadataInternalAdapter extends TransactionT
2260
2276
  }
2261
2277
 
2262
2278
  export interface TransactionTypeOperations {
2263
- allHeterogeneousTransactionTypes?: TransactionDTO[];
2264
2279
  all?: TransactionDTO[];
2280
+ allHeterogeneousTransactionTypes?: TransactionDTO[];
2265
2281
  }
2266
2282
 
2267
2283
  export interface TransactionTypeUtils {
@@ -2288,11 +2304,17 @@ export interface DataObjectRuleSourceTypeGroup extends RuleSourceTypeGroup<DataO
2288
2304
  export interface HomepageRuleSourceTypeGroup extends RuleSourceTypeGroup<RuleSource> {
2289
2305
  }
2290
2306
 
2291
- export interface RuleSetKey extends Serializable {
2307
+ export interface RuleSetKey extends Serializable, Comparable<RuleSetKey> {
2292
2308
  type?: RuleKeyType;
2293
2309
  key?: string;
2294
2310
  }
2295
2311
 
2312
+ export interface RuleSetKeyDeserializer extends KeyDeserializer {
2313
+ }
2314
+
2315
+ export interface RuleSetKeySerializer extends JsonSerializer<RuleSetKey> {
2316
+ }
2317
+
2296
2318
  export interface RuleSource {
2297
2319
  key?: RuleSetKey;
2298
2320
  }
@@ -2363,6 +2385,9 @@ export interface PagingOptions {
2363
2385
  limit?: number;
2364
2386
  }
2365
2387
 
2388
+ export interface PartitionUtil {
2389
+ }
2390
+
2366
2391
  export interface QueryResults<T> {
2367
2392
  totalResultCount?: number;
2368
2393
  items?: T[];
@@ -2502,10 +2527,17 @@ export interface ConditionalRule {
2502
2527
  }
2503
2528
 
2504
2529
  export interface DataField {
2505
- unique?: boolean;
2530
+ required?: boolean;
2531
+ label?: string;
2532
+ columnName?: string;
2533
+ precision?: number;
2534
+ scale?: number;
2535
+ description?: string;
2536
+ dataType?: any;
2506
2537
  primaryKeyField?: boolean;
2507
2538
  displayIndex?: number;
2508
2539
  primaryKeySeqNo?: number;
2540
+ unique?: boolean;
2509
2541
  autoGenerated?: boolean;
2510
2542
  systemReserved?: boolean;
2511
2543
  allowMultipleSelections?: boolean;
@@ -2519,13 +2551,6 @@ export interface DataField {
2519
2551
  requiredConditionally?: ConditionalRule;
2520
2552
  readOnlyConditionally?: ConditionalRule;
2521
2553
  ownerName?: string;
2522
- dataType?: any;
2523
- description?: string;
2524
- label?: string;
2525
- columnName?: string;
2526
- precision?: number;
2527
- scale?: number;
2528
- required?: boolean;
2529
2554
  length?: number;
2530
2555
  name?: string;
2531
2556
  id?: number;
@@ -2533,6 +2558,10 @@ export interface DataField {
2533
2558
  }
2534
2559
 
2535
2560
  export interface DataObject extends SolutionAssignedDTO {
2561
+ label?: string;
2562
+ tableName?: string;
2563
+ description?: string;
2564
+ version?: number;
2536
2565
  historyEnabled?: boolean;
2537
2566
  createdAtTimeFieldName?: string;
2538
2567
  validFromFieldName?: string;
@@ -2544,10 +2573,6 @@ export interface DataObject extends SolutionAssignedDTO {
2544
2573
  dataStoreName?: string;
2545
2574
  dataStoreDefaultSchemaName?: string;
2546
2575
  dataStoreAssignedTimeZone?: string;
2547
- version?: number;
2548
- description?: string;
2549
- label?: string;
2550
- tableName?: string;
2551
2576
  name?: string;
2552
2577
  fields?: DataField[];
2553
2578
  id?: number;
@@ -2568,10 +2593,10 @@ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
2568
2593
  }
2569
2594
 
2570
2595
  export interface Element {
2571
- displayable?: boolean;
2572
- mappedFields?: DataField[];
2573
- dataType?: any;
2574
2596
  label?: string;
2597
+ dataType?: any;
2598
+ mappedFields?: DataField[];
2599
+ displayable?: boolean;
2575
2600
  name?: string;
2576
2601
  id?: number;
2577
2602
  }
@@ -2594,11 +2619,12 @@ export interface EnrichedDocument {
2594
2619
  }
2595
2620
 
2596
2621
  export interface Entity extends SolutionAssignedDTO {
2622
+ label?: string;
2623
+ scale?: number;
2597
2624
  defaultRegularIcon?: Icon;
2625
+ nodeColor?: string;
2598
2626
  nodeShape?: string;
2599
2627
  markerColor?: string;
2600
- nodeColor?: string;
2601
- compounds?: Compound[];
2602
2628
  borderColor?: string;
2603
2629
  borderWidth?: number;
2604
2630
  useForNetworkBuild?: boolean;
@@ -2606,10 +2632,9 @@ export interface Entity extends SolutionAssignedDTO {
2606
2632
  displayTextElements?: SortableNameReference[];
2607
2633
  linkDisplayTextElements?: SortableNameReference[];
2608
2634
  requiresMultipleContributors?: boolean;
2635
+ compounds?: Compound[];
2609
2636
  publishCode?: PublishCode;
2610
2637
  defaultMapIcon?: Icon;
2611
- label?: string;
2612
- scale?: number;
2613
2638
  name?: string;
2614
2639
  id?: number;
2615
2640
  }
@@ -2632,6 +2657,17 @@ export interface Icon {
2632
2657
  type?: IconType;
2633
2658
  }
2634
2659
 
2660
+ export interface LinkBulkOperationResult {
2661
+ id?: string;
2662
+ relationshipTypeName?: string;
2663
+ fromEntityType?: string;
2664
+ fromId?: string;
2665
+ toEntityType?: string;
2666
+ toId?: string;
2667
+ operation?: MessageAction;
2668
+ error?: ErrorResponse;
2669
+ }
2670
+
2635
2671
  export interface MediaTypeConstants {
2636
2672
  }
2637
2673
 
@@ -2650,8 +2686,13 @@ export interface ReferenceListSummary {
2650
2686
  }
2651
2687
 
2652
2688
  export interface Relationship extends DataObject {
2653
- fromObjectName?: string;
2654
- toObjectName?: string;
2689
+ qualifiedName?: string;
2690
+ required?: boolean;
2691
+ managed?: boolean;
2692
+ width?: number;
2693
+ color?: string;
2694
+ fromObjectLabel?: string;
2695
+ toObjectLabel?: string;
2655
2696
  cardinality?: RelationshipCardinality;
2656
2697
  previousCardinality?: RelationshipCardinality;
2657
2698
  symmetric?: boolean;
@@ -2659,18 +2700,13 @@ export interface Relationship extends DataObject {
2659
2700
  reverseLabel?: string;
2660
2701
  dashType?: string;
2661
2702
  styles?: LinkStyleDTO[];
2703
+ toObjectTypeNames?: string[];
2662
2704
  summaryFields?: SortableNameReference[];
2663
2705
  heterogeneousLink?: boolean;
2664
2706
  linkFields?: { [index: string]: string }[];
2665
2707
  joinTableName?: string;
2666
- toObjectLabel?: string;
2667
- fromObjectLabel?: string;
2668
- toObjectTypeNames?: string[];
2669
- width?: number;
2670
- color?: string;
2671
- managed?: boolean;
2672
- qualifiedName?: string;
2673
- required?: boolean;
2708
+ fromObjectName?: string;
2709
+ toObjectName?: string;
2674
2710
  type?: RelationshipType;
2675
2711
  }
2676
2712
 
@@ -2691,31 +2727,29 @@ export interface SortableNameReference {
2691
2727
  }
2692
2728
 
2693
2729
  export interface StoredDataObject extends DataObject {
2730
+ parentName?: string;
2731
+ scale?: number;
2694
2732
  defaultRegularIcon?: Icon;
2695
- relationshipsFrom?: Relationship[];
2696
- relationshipsTo?: Relationship[];
2733
+ nodeColor?: string;
2697
2734
  nodeShape?: string;
2698
2735
  markerColor?: string;
2699
- nodeColor?: string;
2700
2736
  borderColor?: string;
2701
2737
  borderWidth?: number;
2702
2738
  styles?: EntityStyleDTO[];
2703
2739
  attachmentsIndexedForSearch?: boolean;
2704
2740
  enableCasDistributedDataLoad?: boolean;
2741
+ relationshipsTo?: Relationship[];
2705
2742
  elementGroupRoot?: boolean;
2706
2743
  requireSearchBeforeCreate?: boolean;
2707
2744
  mobileOfflineEnabled?: boolean;
2708
2745
  fileCategories?: FileCategory[];
2709
2746
  defaultMapIcon?: Icon;
2710
2747
  nodeDecoration?: NodeDecorationDTO;
2711
- scale?: number;
2712
- parentName?: string;
2748
+ relationshipsFrom?: Relationship[];
2713
2749
  type?: DataObjectType;
2714
2750
  }
2715
2751
 
2716
2752
  export interface Transaction extends DataObject {
2717
- fromObjectName?: string;
2718
- toObjectName?: string;
2719
2753
  toObjectTypeFieldName?: string;
2720
2754
  fromObjectTypeFieldName?: string;
2721
2755
  fromObjectRefFieldName?: string;
@@ -2724,6 +2758,8 @@ export interface Transaction extends DataObject {
2724
2758
  lineWidthFunctionType?: AggregateFunctionType;
2725
2759
  lineColorFieldName?: string;
2726
2760
  lineColorFunctionType?: AggregateFunctionType;
2761
+ fromObjectName?: string;
2762
+ toObjectName?: string;
2727
2763
  }
2728
2764
 
2729
2765
  export interface Version extends VersionSummary {
@@ -2779,9 +2815,9 @@ export interface EntityImpl extends Entity {
2779
2815
  }
2780
2816
 
2781
2817
  export interface FileCategory {
2818
+ required?: boolean;
2782
2819
  allowMultiple?: boolean;
2783
2820
  documentLockRequired?: boolean;
2784
- required?: boolean;
2785
2821
  name?: string;
2786
2822
  displayName?: string;
2787
2823
  }
@@ -2806,14 +2842,6 @@ export interface NodeDecorationDTO {
2806
2842
  icons?: IconDecorationDTO[];
2807
2843
  }
2808
2844
 
2809
- export interface ObjectLock {
2810
- id?: string;
2811
- key?: string;
2812
- lockType?: ObjectLockType;
2813
- expiresAt?: Date;
2814
- sessionId?: string;
2815
- }
2816
-
2817
2845
  export interface Paging {
2818
2846
  start?: number;
2819
2847
  count?: number;
@@ -2904,9 +2932,9 @@ export interface CommentUser {
2904
2932
 
2905
2933
  export interface AbstractFieldConditionMetadata<Y, T> {
2906
2934
  cycleDetector?: CycleDetector;
2935
+ owner?: Y;
2907
2936
  ownerName?: string;
2908
2937
  parentObjectName?: string;
2909
- owner?: Y;
2910
2938
  }
2911
2939
 
2912
2940
  export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
@@ -2968,15 +2996,33 @@ export interface ReferencedFact {
2968
2996
  export interface ArithmeticComparator<T> extends Serializable, BiFunction<T, T, boolean> {
2969
2997
  }
2970
2998
 
2971
- export interface ComparableComparator extends ArithmeticComparator<Comparable<any>> {
2999
+ export interface EqualityComparator extends ArithmeticComparator<any> {
2972
3000
  }
2973
3001
 
2974
- export interface EqualityComparator extends ArithmeticComparator<any> {
3002
+ export interface InequalityComparator extends ArithmeticComparator<any> {
2975
3003
  }
2976
3004
 
2977
3005
  export interface PresenceComparator extends Serializable, Function<any, boolean> {
2978
3006
  }
2979
3007
 
3008
+ export interface EqualityComparatorDeserializer extends JsonDeserializer<EqualityComparator> {
3009
+ }
3010
+
3011
+ export interface EqualityComparatorSerializer extends JsonSerializer<EqualityComparator> {
3012
+ }
3013
+
3014
+ export interface InequalityComparatorDeserializer extends JsonDeserializer<InequalityComparator> {
3015
+ }
3016
+
3017
+ export interface InequalityComparatorSerializer extends JsonSerializer<InequalityComparator> {
3018
+ }
3019
+
3020
+ export interface PresenceComparatorDeserializer extends JsonDeserializer<PresenceComparator> {
3021
+ }
3022
+
3023
+ export interface PresenceComparatorSerializer extends JsonSerializer<PresenceComparator> {
3024
+ }
3025
+
2980
3026
  export interface AbstractCondition<T> extends Serializable {
2981
3027
  parameters?: T[];
2982
3028
  type?: string;
@@ -3049,14 +3095,14 @@ export interface EventMetadata {
3049
3095
  }
3050
3096
 
3051
3097
  export interface ValidatableContextMapping extends SolutionAssignedDTO {
3098
+ tag?: string;
3099
+ event?: string;
3052
3100
  docType?: string;
3053
3101
  uuid?: string;
3054
3102
  fallbackToEvent?: string;
3055
3103
  templateId?: any;
3056
3104
  toolbarEnabled?: boolean;
3057
3105
  evaluateOrder?: number;
3058
- tag?: string;
3059
- event?: string;
3060
3106
  }
3061
3107
 
3062
3108
  export interface Control extends ControlMetadata {
@@ -3087,9 +3133,9 @@ export interface ControlMetadata extends SolutionAssignedDTO {
3087
3133
  controlDescription?: ResourcedString;
3088
3134
  propertiesTitle?: ResourcedString;
3089
3135
  controlAttributes?: { [index: string]: any };
3090
- requiredFeatures?: string[];
3091
3136
  customControl?: boolean;
3092
3137
  solutionLabel?: string;
3138
+ requiredCapabilities?: string[];
3093
3139
  }
3094
3140
 
3095
3141
  export interface RelateLinkDTO {
@@ -3233,7 +3279,7 @@ export interface ActionItemRule {
3233
3279
  id?: number;
3234
3280
  actionName?: string;
3235
3281
  disableRules?: QueryUnion;
3236
- requiredFeatures?: string[];
3282
+ requiredCapabilities?: string[];
3237
3283
  }
3238
3284
 
3239
3285
  export interface ArithmeticQuery extends Query, FieldCondition {
@@ -3489,8 +3535,8 @@ export interface EnrichedDocumentValidator {
3489
3535
  }
3490
3536
 
3491
3537
  export interface HtmlEncoder<T> {
3492
- wrappedRenderer?: HtmlStreamEventReceiver;
3493
3538
  wrappedPolicy?: Policy;
3539
+ wrappedRenderer?: HtmlStreamEventReceiver;
3494
3540
  }
3495
3541
 
3496
3542
  export interface InputChannel<T> extends Policy {
@@ -3580,57 +3626,49 @@ export interface Task {
3580
3626
  }
3581
3627
 
3582
3628
  export interface TaskV1 extends Task {
3583
- endedTimeStamp?: Date;
3584
3629
  startedTimeStamp?: Date;
3630
+ endedTimeStamp?: Date;
3585
3631
  }
3586
3632
 
3587
3633
  export interface CreatedEvent extends JobEvent {
3588
- type: "job.monitor.job.created" | "job.monitor.task.created";
3589
3634
  name?: string;
3590
3635
  description?: string;
3591
3636
  parameters?: { [index: string]: any };
3592
3637
  }
3593
3638
 
3594
3639
  export interface JobCreatedEvent extends CreatedEvent {
3595
- type: "job.monitor.job.created";
3596
3640
  tags?: string[];
3597
3641
  startedBy?: string;
3598
3642
  tasks?: TaskCreatedEvent[];
3599
3643
  }
3600
3644
 
3601
- export interface JobEvent {
3602
- type: "job.monitor.job.created" | "job.monitor.task.created" | "job.monitor.job.updated" | "job.monitor.task.updated";
3645
+ export interface JobEvent extends TypedPayload {
3603
3646
  version?: number;
3604
3647
  id?: string;
3605
3648
  status?: Status;
3606
3649
  startedAt?: Date;
3607
3650
  links?: RestRepresentationsLink[];
3608
- eventType?: string;
3609
3651
  eventTopic?: string;
3610
3652
  eventSubject?: string;
3611
3653
  job?: boolean;
3612
3654
  }
3613
3655
 
3614
3656
  export interface JobUpdatedEvent extends UpdatedEvent {
3615
- type: "job.monitor.job.updated";
3616
3657
  startedBy?: string;
3617
3658
  tasks?: TaskUpdatedEvent[];
3618
3659
  }
3619
3660
 
3620
3661
  export interface TaskCreatedEvent extends CreatedEvent {
3621
- type: "job.monitor.task.created";
3622
3662
  parent?: string;
3623
3663
  subTasks?: TaskCreatedEvent[];
3624
3664
  }
3625
3665
 
3626
3666
  export interface TaskUpdatedEvent extends UpdatedEvent {
3627
- type: "job.monitor.task.updated";
3628
3667
  parent?: string;
3629
3668
  subTasks?: TaskUpdatedEvent[];
3630
3669
  }
3631
3670
 
3632
3671
  export interface UpdatedEvent extends JobEvent {
3633
- type: "job.monitor.job.updated" | "job.monitor.task.updated";
3634
3672
  endedAt?: Date;
3635
3673
  message?: string;
3636
3674
  updateAllParentStatus?: boolean;
@@ -3694,13 +3732,13 @@ export interface Serializable {
3694
3732
  }
3695
3733
 
3696
3734
  export interface JsonDeserializer<T> extends NullValueProvider {
3735
+ cachable?: boolean;
3697
3736
  delegatee?: JsonDeserializer<any>;
3698
3737
  knownPropertyNames?: any[];
3699
3738
  nullValue?: T;
3700
3739
  emptyAccessPattern?: AccessPattern;
3701
3740
  emptyValue?: any;
3702
3741
  objectIdReader?: ObjectIdReader;
3703
- cachable?: boolean;
3704
3742
  }
3705
3743
 
3706
3744
  export interface ObjectIdReader extends Serializable {
@@ -3708,8 +3746,8 @@ export interface ObjectIdReader extends Serializable {
3708
3746
  generator?: ObjectIdGenerator<any>;
3709
3747
  resolver?: ObjectIdResolver;
3710
3748
  idProperty?: SettableBeanProperty;
3711
- idType?: JavaType;
3712
3749
  deserializer?: JsonDeserializer<any>;
3750
+ idType?: JavaType;
3713
3751
  }
3714
3752
 
3715
3753
  export interface JsonSerializer<T> extends JsonFormatVisitable {
@@ -3732,6 +3770,10 @@ export interface LocalizedLocale {
3732
3770
 
3733
3771
  export interface ResponseEntity<T> extends HttpEntity<T> {
3734
3772
  statusCode?: HttpStatus;
3773
+ statusCodeValue?: number;
3774
+ }
3775
+
3776
+ export interface CacheStats {
3735
3777
  }
3736
3778
 
3737
3779
  export interface Throwable extends Serializable {
@@ -3791,11 +3833,6 @@ export interface StringPath extends DslTypesDslStringExpression, Path<string> {
3791
3833
  export interface NumberPath<T> extends NumberExpression<T>, Path<T> {
3792
3834
  }
3793
3835
 
3794
- export interface AnnotatedElement {
3795
- annotations?: Annotation[];
3796
- declaredAnnotations?: Annotation[];
3797
- }
3798
-
3799
3836
  export interface PathMetadata extends Serializable {
3800
3837
  element?: any;
3801
3838
  parent?: Path<any>;
@@ -3805,9 +3842,14 @@ export interface PathMetadata extends Serializable {
3805
3842
  name?: string;
3806
3843
  }
3807
3844
 
3845
+ export interface AnnotatedElement {
3846
+ annotations?: Annotation[];
3847
+ declaredAnnotations?: Annotation[];
3848
+ }
3849
+
3808
3850
  export interface Path<T> extends DslTypesExpression<T> {
3809
- annotatedElement?: AnnotatedElement;
3810
3851
  metadata?: PathMetadata;
3852
+ annotatedElement?: AnnotatedElement;
3811
3853
  root?: Path<any>;
3812
3854
  }
3813
3855
 
@@ -3885,6 +3927,9 @@ export interface DefaultResponseErrorHandler extends ResponseErrorHandler {
3885
3927
  export interface RuntimeException extends Exception {
3886
3928
  }
3887
3929
 
3930
+ export interface KeyDeserializer {
3931
+ }
3932
+
3888
3933
  export interface HtmlStreamEventReceiver {
3889
3934
  }
3890
3935
 
@@ -3894,6 +3939,11 @@ export interface Policy extends HtmlStreamEventReceiver {
3894
3939
  export interface Appendable {
3895
3940
  }
3896
3941
 
3942
+ export interface TypedPayload {
3943
+ eventType?: string;
3944
+ payloadType?: string;
3945
+ }
3946
+
3897
3947
  export interface NullValueProvider {
3898
3948
  nullAccessPattern?: AccessPattern;
3899
3949
  }
@@ -3912,6 +3962,7 @@ export interface ObjectIdResolver {
3912
3962
  }
3913
3963
 
3914
3964
  export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
3965
+ ignorable?: boolean;
3915
3966
  objectIdInfo?: ObjectIdInfo;
3916
3967
  managedReferenceName?: string;
3917
3968
  valueDeserializer?: JsonDeserializer<any>;
@@ -3920,21 +3971,22 @@ export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializ
3920
3971
  propertyIndex?: number;
3921
3972
  creatorIndex?: number;
3922
3973
  injectableValueId?: any;
3923
- ignorable?: boolean;
3974
+ injectionOnly?: boolean;
3924
3975
  }
3925
3976
 
3926
3977
  export interface JavaType extends ResolvedType, Serializable, Type {
3978
+ superClass?: JavaType;
3927
3979
  keyType?: JavaType;
3928
- contentValueHandler?: any;
3929
- contentTypeHandler?: any;
3930
- erasedSignature?: string;
3931
- valueHandler?: any;
3980
+ contentType?: JavaType;
3981
+ bindings?: TypeBindings;
3932
3982
  typeHandler?: any;
3983
+ valueHandler?: any;
3984
+ enumImplType?: boolean;
3933
3985
  javaLangObject?: boolean;
3934
3986
  referencedType?: JavaType;
3935
- contentType?: JavaType;
3936
- bindings?: TypeBindings;
3937
- superClass?: JavaType;
3987
+ contentValueHandler?: any;
3988
+ contentTypeHandler?: any;
3989
+ erasedSignature?: string;
3938
3990
  interfaces?: JavaType[];
3939
3991
  genericSignature?: string;
3940
3992
  }
@@ -4052,36 +4104,36 @@ export interface Function<T, R> {
4052
4104
  export interface HtmlChangeListener<T> {
4053
4105
  }
4054
4106
 
4107
+ export interface AnnotatedMember extends Annotated, Serializable {
4108
+ allAnnotations?: AnnotationMap;
4109
+ fullName?: string;
4110
+ member?: Member;
4111
+ typeContext?: TypeResolutionContext;
4112
+ declaringClass?: Class<any>;
4113
+ }
4114
+
4055
4115
  export interface ObjectIdInfo {
4116
+ scope?: Class<any>;
4117
+ propertyName?: PropertyName;
4056
4118
  generatorType?: Class<ObjectIdGenerator<any>>;
4057
4119
  resolverType?: Class<ObjectIdResolver>;
4058
4120
  alwaysAsId?: boolean;
4059
- scope?: Class<any>;
4060
- propertyName?: PropertyName;
4061
4121
  }
4062
4122
 
4063
4123
  export interface TypeDeserializer {
4124
+ defaultImpl?: Class<any>;
4125
+ propertyName?: string;
4064
4126
  typeInclusion?: As;
4065
4127
  typeIdResolver?: TypeIdResolver;
4066
- propertyName?: string;
4067
- defaultImpl?: Class<any>;
4068
- }
4069
-
4070
- export interface AnnotatedMember extends Annotated, Serializable {
4071
- allAnnotations?: AnnotationMap;
4072
- typeContext?: TypeResolutionContext;
4073
- fullName?: string;
4074
- member?: Member;
4075
- declaringClass?: Class<any>;
4076
4128
  }
4077
4129
 
4078
4130
  export interface PropertyMetadata extends Serializable {
4079
4131
  required?: boolean;
4132
+ index?: number;
4133
+ description?: string;
4080
4134
  mergeInfo?: MergeInfo;
4081
4135
  valueNulls?: Nulls;
4082
4136
  contentNulls?: Nulls;
4083
- index?: number;
4084
- description?: string;
4085
4137
  defaultValue?: string;
4086
4138
  }
4087
4139
 
@@ -4094,19 +4146,19 @@ export interface TypeBindings extends Serializable {
4094
4146
  }
4095
4147
 
4096
4148
  export interface ResolvedType {
4149
+ rawClass?: Class<any>;
4097
4150
  keyType?: ResolvedType;
4151
+ contentType?: ResolvedType;
4098
4152
  containerType?: boolean;
4099
4153
  arrayType?: boolean;
4154
+ referenceType?: boolean;
4100
4155
  concrete?: boolean;
4101
4156
  throwable?: boolean;
4102
4157
  enumType?: boolean;
4103
- parameterSource?: Class<any>;
4104
- referenceType?: boolean;
4105
- mapLikeType?: boolean;
4106
4158
  collectionLikeType?: boolean;
4159
+ mapLikeType?: boolean;
4107
4160
  referencedType?: ResolvedType;
4108
- contentType?: ResolvedType;
4109
- rawClass?: Class<any>;
4161
+ parameterSource?: Class<any>;
4110
4162
  interface?: boolean;
4111
4163
  primitive?: boolean;
4112
4164
  abstract?: boolean;
@@ -4225,17 +4277,9 @@ export interface StandardEntity {
4225
4277
  export interface BaseVisitor extends ExpressionVisitor {
4226
4278
  }
4227
4279
 
4228
- export interface TypeIdResolver {
4229
- mechanism?: Id;
4230
- descForKnownTypeIds?: string;
4231
- }
4232
-
4233
4280
  export interface AnnotationMap extends Annotations {
4234
4281
  }
4235
4282
 
4236
- export interface TypeResolutionContext {
4237
- }
4238
-
4239
4283
  export interface Member {
4240
4284
  modifiers?: number;
4241
4285
  name?: string;
@@ -4243,27 +4287,34 @@ export interface Member {
4243
4287
  declaringClass?: Class<any>;
4244
4288
  }
4245
4289
 
4290
+ export interface TypeResolutionContext {
4291
+ }
4292
+
4246
4293
  export interface Annotated {
4247
4294
  annotated?: AnnotatedElement;
4248
4295
  name?: string;
4249
4296
  type?: JavaType;
4250
- genericType?: Type;
4251
4297
  public?: boolean;
4252
4298
  rawType?: Class<any>;
4253
4299
  }
4254
4300
 
4301
+ export interface TypeIdResolver {
4302
+ descForKnownTypeIds?: string;
4303
+ mechanism?: Id;
4304
+ }
4305
+
4255
4306
  export interface MergeInfo {
4256
4307
  getter?: AnnotatedMember;
4257
4308
  fromDefaults?: boolean;
4258
4309
  }
4259
4310
 
4260
4311
  export interface BeanProperty extends Named {
4261
- wrapperName?: PropertyName;
4262
4312
  fullName?: PropertyName;
4263
- virtual?: boolean;
4264
4313
  member?: AnnotatedMember;
4265
- metadata?: PropertyMetadata;
4266
4314
  required?: boolean;
4315
+ virtual?: boolean;
4316
+ metadata?: PropertyMetadata;
4317
+ wrapperName?: PropertyName;
4267
4318
  type?: JavaType;
4268
4319
  }
4269
4320
 
@@ -4401,8 +4452,6 @@ export type DataObjectType = "MANAGED" | "SOURCE";
4401
4452
 
4402
4453
  export type DisplayInTimeZone = "DEFAULT" | "AS_STORED" | "LOCAL";
4403
4454
 
4404
- export type ExecutionStatus = "SCHEDULED" | "PENDING" | "RUNNING" | "COMPLETE" | "CANCELLED" | "FAILED";
4405
-
4406
4455
  export type IconImageType = "GIF" | "JPEG" | "PNG" | "SVG";
4407
4456
 
4408
4457
  export type IconType = "REGULAR" | "MAP";
@@ -4421,16 +4470,14 @@ export type RelationshipType = "DIRECT_CHILD" | "INDIRECT_CHILD" | "LINK";
4421
4470
 
4422
4471
  export type TaskType = "LOAD_DOCUMENT" | "LOAD_LINK" | "DELETE_INDEX" | "LOAD_TRANSACTION" | "PROCESS_ATTACHMENTS";
4423
4472
 
4424
- export type ObjectLockType = "Document";
4425
-
4426
4473
  export type ConditionAssociationType = "REQUIRED_FIELD" | "READ_ONLY_FIELD" | "TEMPLATE_CONTROL" | "NLD_STYLING" | "CONDITION";
4427
4474
 
4428
4475
  export type ReferencedFactType = "FIELD" | "MEMBERSHIP" | "CONDITION_REFERENCE";
4429
4476
 
4430
- export type ComparisonOperator = "gt" | "gte" | "lt" | "lte";
4431
-
4432
4477
  export type EqualityOperator = "eq" | "neq";
4433
4478
 
4479
+ export type InequalityOperator = "gt" | "gte" | "lt" | "lte";
4480
+
4434
4481
  export type LogicalOperator = "and" | "or" | "not";
4435
4482
 
4436
4483
  export type MembershipOperator = "current_user_is_member_of" | "current_user_is_not_member_of";
@@ -4471,19 +4518,19 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
4471
4518
 
4472
4519
  export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4473
4520
 
4474
- 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" | "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" | "DH3028" | "DH3029" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "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" | "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" | "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" | "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" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "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";
4521
+ 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" | "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";
4475
4522
 
4476
4523
  export type DataStoreType = "RELATIONAL";
4477
4524
 
4478
- export type TYPE = "internal_postgres" | "postgres" | "oracle" | "hive" | "teradata" | "db2" | "MySQL" | "SQL Server";
4525
+ export type TYPE = "internal_postgres" | "postgres" | "oracle" | "teradata" | "db2" | "MySQL" | "SQL Server";
4479
4526
 
4480
- export type MessageAction = "CREATE" | "UPDATE" | "DELETE" | "UNDELETE" | "CUSTOM" | "ENTITY";
4527
+ export type MessageAction = "CREATE" | "UPDATE" | "DELETE";
4481
4528
 
4482
4529
  export type CommonsSecurityBootStrapModelTypesUserGroupType = "user" | "group";
4483
4530
 
4484
4531
  export type AccessType = "create" | "read" | "update" | "delete" | "search";
4485
4532
 
4486
- export type HttpStatus = "100" | "101" | "102" | "103" | "200" | "201" | "202" | "203" | "204" | "205" | "206" | "207" | "208" | "226" | "300" | "301" | "302" | "303" | "304" | "305" | "307" | "308" | "400" | "401" | "402" | "403" | "404" | "405" | "406" | "407" | "408" | "409" | "410" | "411" | "412" | "413" | "414" | "415" | "416" | "417" | "418" | "419" | "420" | "421" | "422" | "423" | "424" | "426" | "428" | "429" | "431" | "500" | "501" | "502" | "503" | "504" | "505" | "506" | "507" | "508" | "509" | "510" | "511";
4533
+ export type HttpStatus = "100 CONTINUE" | "101 SWITCHING_PROTOCOLS" | "102 PROCESSING" | "103 CHECKPOINT" | "200 OK" | "201 CREATED" | "202 ACCEPTED" | "203 NON_AUTHORITATIVE_INFORMATION" | "204 NO_CONTENT" | "205 RESET_CONTENT" | "206 PARTIAL_CONTENT" | "207 MULTI_STATUS" | "208 ALREADY_REPORTED" | "226 IM_USED" | "300 MULTIPLE_CHOICES" | "301 MOVED_PERMANENTLY" | "302 FOUND" | "302 MOVED_TEMPORARILY" | "303 SEE_OTHER" | "304 NOT_MODIFIED" | "305 USE_PROXY" | "307 TEMPORARY_REDIRECT" | "308 PERMANENT_REDIRECT" | "400 BAD_REQUEST" | "401 UNAUTHORIZED" | "402 PAYMENT_REQUIRED" | "403 FORBIDDEN" | "404 NOT_FOUND" | "405 METHOD_NOT_ALLOWED" | "406 NOT_ACCEPTABLE" | "407 PROXY_AUTHENTICATION_REQUIRED" | "408 REQUEST_TIMEOUT" | "409 CONFLICT" | "410 GONE" | "411 LENGTH_REQUIRED" | "412 PRECONDITION_FAILED" | "413 PAYLOAD_TOO_LARGE" | "413 REQUEST_ENTITY_TOO_LARGE" | "414 URI_TOO_LONG" | "414 REQUEST_URI_TOO_LONG" | "415 UNSUPPORTED_MEDIA_TYPE" | "416 REQUESTED_RANGE_NOT_SATISFIABLE" | "417 EXPECTATION_FAILED" | "418 I_AM_A_TEAPOT" | "419 INSUFFICIENT_SPACE_ON_RESOURCE" | "420 METHOD_FAILURE" | "421 DESTINATION_LOCKED" | "422 UNPROCESSABLE_ENTITY" | "423 LOCKED" | "424 FAILED_DEPENDENCY" | "425 TOO_EARLY" | "426 UPGRADE_REQUIRED" | "428 PRECONDITION_REQUIRED" | "429 TOO_MANY_REQUESTS" | "431 REQUEST_HEADER_FIELDS_TOO_LARGE" | "451 UNAVAILABLE_FOR_LEGAL_REASONS" | "500 INTERNAL_SERVER_ERROR" | "501 NOT_IMPLEMENTED" | "502 BAD_GATEWAY" | "503 SERVICE_UNAVAILABLE" | "504 GATEWAY_TIMEOUT" | "505 HTTP_VERSION_NOT_SUPPORTED" | "506 VARIANT_ALSO_NEGOTIATES" | "507 INSUFFICIENT_STORAGE" | "508 LOOP_DETECTED" | "509 BANDWIDTH_LIMIT_EXCEEDED" | "510 NOT_EXTENDED" | "511 NETWORK_AUTHENTICATION_REQUIRED";
4487
4534
 
4488
4535
  export type PathType = "ARRAYVALUE" | "ARRAYVALUE_CONSTANT" | "COLLECTION_ANY" | "DELEGATE" | "LISTVALUE" | "LISTVALUE_CONSTANT" | "MAPVALUE" | "MAPVALUE_CONSTANT" | "PROPERTY" | "VARIABLE";
4489
4536
 
@@ -4493,7 +4540,7 @@ export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
4493
4540
 
4494
4541
  export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "CUSTOM";
4495
4542
 
4496
- export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity | ResolvedEntityChanges | StringData;
4543
+ export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
4497
4544
 
4498
4545
  export type AbstractFileOperationUnion = CreateFileOperation | UpdateFileOperation | DeleteFileOperation;
4499
4546
 
@@ -4510,5 +4557,3 @@ export type QueryUnion = CompositeQuery | ArithmeticQuery | CurrentUserMembershi
4510
4557
  export type AbstractRedactionRuleUnion = FullRedactionRule;
4511
4558
 
4512
4559
  export type CellUnion = LiveVisualizationCell | StaticVisualizationCell | ImageCell | TextCell;
4513
-
4514
- export type JobEventUnion = JobCreatedEvent | JobUpdatedEvent | TaskCreatedEvent | TaskUpdatedEvent;