@sassoftware/vi-api 1.40.2 → 1.40.3

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.
@@ -1,22 +1,22 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2024-02-13 19:39:35.
3
+ // Generated using typescript-generator version 2.15.527 on 2024-05-02 10:44:28.
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
+ sourceId?: string;
16
17
  applicationVersion?: string;
17
18
  buildVersion?: string;
18
19
  sourceTimeStamp?: string;
19
- sourceId?: string;
20
20
  timeStamp?: string;
21
21
  }
22
22
 
@@ -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;
51
+ sourceId?: string;
50
52
  applicationVersion?: string;
51
53
  buildVersion?: string;
52
- sourceId?: string;
53
54
  sourceTimeStamp?: string;
54
- timeStamp?: string;
55
55
  }
56
56
 
57
57
  export interface Count extends Serializable {
@@ -72,7 +72,6 @@ export interface ErrorResponse extends Serializable {
72
72
  links?: RestRepresentationsLink[];
73
73
  version?: number;
74
74
  httpStatusCode?: number;
75
- targetUri?: string;
76
75
  }
77
76
 
78
77
  export interface RestRepresentationsLink extends Serializable {
@@ -87,11 +86,6 @@ export interface RestRepresentationsLink extends Serializable {
87
86
  title?: string;
88
87
  }
89
88
 
90
- export interface RestRepresentationsLinks extends Serializable {
91
- version?: number;
92
- links?: RestRepresentationsLink[];
93
- }
94
-
95
89
  export interface ModelConstants {
96
90
  }
97
91
 
@@ -197,10 +191,10 @@ export interface TrackedResource extends Serializable, ETaggable, TimeTrackedRes
197
191
  modifiedBy?: string;
198
192
  }
199
193
 
200
- export interface DateDeserializer extends JsonDeserializer<Date> {
194
+ export interface DateDeserializer extends StdDeserializer<Date> {
201
195
  }
202
196
 
203
- export interface DateSerializer extends JsonSerializer<Date> {
197
+ export interface DateSerializer extends StdSerializer<Date> {
204
198
  }
205
199
 
206
200
  export interface InstantDeserializer extends JsonDeserializer<Date> {
@@ -431,7 +425,7 @@ export interface ControllerUriConstants {
431
425
  export interface ControllerUtil {
432
426
  }
433
427
 
434
- export interface DataHubExceptionHandler {
428
+ export interface DataHubExceptionHandler extends MetahubSharedExceptionHandler {
435
429
  }
436
430
 
437
431
  export interface DataServicesController {
@@ -508,8 +502,8 @@ export interface TraversalController {
508
502
  }
509
503
 
510
504
  export interface UtilityServicesController {
511
- supportedLocales?: LocalizedLocale[];
512
505
  defaultLocale?: LocalizedLocale;
506
+ supportedLocales?: LocalizedLocale[];
513
507
  }
514
508
 
515
509
  export interface ActionController {
@@ -554,7 +548,7 @@ export interface AdminIconController {
554
548
 
555
549
  export interface AdminMetadataCacheController {
556
550
  metadataCacheStatistics?: ResponseEntity<{ [index: string]: any }>;
557
- clientMetadataCacheStatistics?: ResponseEntity<CacheStats>;
551
+ clientMetadataCacheStatistics?: ResponseEntity<{ [index: string]: any }>;
558
552
  }
559
553
 
560
554
  export interface AdminNldStylingRuleController {
@@ -660,9 +654,9 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
660
654
  useObjectAuthorization?: boolean;
661
655
  allowedRedactedFieldGroups?: RedactionRuleEntity[];
662
656
  owner?: O;
657
+ constrained?: boolean;
663
658
  userGroupSelectionField?: boolean;
664
659
  masked?: boolean;
665
- constrained?: boolean;
666
660
  }
667
661
 
668
662
  export interface CoreDataObject extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity, Serializable {
@@ -765,15 +759,15 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
765
759
  dashType?: string;
766
760
  styles?: LinkStyleEntity[];
767
761
  readOnly?: boolean;
768
- heterogeneous?: boolean;
762
+ qualifiedName?: string;
763
+ link?: boolean;
764
+ internalHeterogeneous?: boolean;
765
+ reverseLabel?: string;
769
766
  primaryKeyFields?: CoreRelationshipField[];
770
767
  attributeFields?: CoreRelationshipField[];
771
768
  nonAttributeFieldNames?: string[];
772
769
  foreignKeyFieldNames?: string[];
773
- internalHeterogeneous?: boolean;
774
- reverseLabel?: string;
775
- qualifiedName?: string;
776
- link?: boolean;
770
+ heterogeneous?: boolean;
777
771
  }
778
772
 
779
773
  export interface CoreRelationshipField extends CoreDataField<CoreRelationship> {
@@ -815,9 +809,9 @@ export interface CoreStoredObject extends CoreDataObjectWithHistory {
815
809
  publishCode?: PublishCode;
816
810
  fieldMap?: { [index: string]: CoreStoredObjectField };
817
811
  readOnly?: boolean;
818
- primaryKeyFields?: CoreStoredObjectField[];
819
812
  quotedDeleteTableName?: string;
820
813
  urnsequential?: boolean;
814
+ primaryKeyFields?: CoreStoredObjectField[];
821
815
  }
822
816
 
823
817
  export interface CoreStoredObjectField extends CoreDataField<CoreStoredObject> {
@@ -848,14 +842,14 @@ export interface CoreTransaction extends CoreDataObject {
848
842
  lineWidthFunctionType?: AggregateFunctionType;
849
843
  lineColorFieldName?: string;
850
844
  lineColorFunctionType?: AggregateFunctionType;
851
- heterogeneous?: boolean;
852
- primaryKeyFields?: CoreDataField<any>[];
853
- toHeterogeneous?: boolean;
854
- fromHeterogeneous?: boolean;
855
845
  fullHeterogeneous?: boolean;
856
- toHeterogeneousAndFromObjectIsIndexable?: boolean;
857
846
  fromHeterogeneousAndToObjectIsIndexable?: boolean;
858
847
  nonHeterogeneousAndBothSidesAreIndexable?: boolean;
848
+ toHeterogeneous?: boolean;
849
+ fromHeterogeneous?: boolean;
850
+ toHeterogeneousAndFromObjectIsIndexable?: boolean;
851
+ primaryKeyFields?: CoreDataField<any>[];
852
+ heterogeneous?: boolean;
859
853
  }
860
854
 
861
855
  export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
@@ -1901,8 +1895,8 @@ export interface DTOUtil {
1901
1895
 
1902
1896
  export interface DataFieldDTO extends LocalizableObjectDTO, DataField, Versioned, NamedObject {
1903
1897
  dataType?: string;
1904
- userGroupSelection?: boolean;
1905
1898
  constrained?: boolean;
1899
+ userGroupSelection?: boolean;
1906
1900
  }
1907
1901
 
1908
1902
  export interface DataObjectDTO extends LocalizableObjectDTO, DataObject, Versioned, NamedObject {
@@ -1944,9 +1938,9 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
1944
1938
  maxActive?: number;
1945
1939
  username?: string;
1946
1940
  connectionError?: string;
1947
- defaultSchemaName?: string;
1948
1941
  url?: string;
1949
1942
  password?: string;
1943
+ defaultSchemaName?: string;
1950
1944
  reindexRequired?: boolean;
1951
1945
  postedTimestamp?: number;
1952
1946
  casDistributedDataLoadSupported?: boolean;
@@ -2235,8 +2229,8 @@ export interface ControlConfigurationDTO extends NamedObject, SolutionAssignedDT
2235
2229
  }
2236
2230
 
2237
2231
  export interface DocumentTypeWithClientApplication {
2238
- clientApplication?: string;
2239
2232
  documentType?: string;
2233
+ clientApplication?: string;
2240
2234
  }
2241
2235
 
2242
2236
  export interface ElementExportDTO extends ElementDTO {
@@ -2467,8 +2461,8 @@ export interface DatahubQuery {
2467
2461
  includeAuditObjects?: boolean;
2468
2462
  dataMaskingStrategy?: DataMaskingStrategy;
2469
2463
  filterInternalChildEntityAuditFields?: boolean;
2470
- selectColumnFields?: string[];
2471
2464
  selectAll?: boolean;
2465
+ selectColumnFields?: string[];
2472
2466
  }
2473
2467
 
2474
2468
  export interface EmptyResultsWherePredicate extends WherePredicate {
@@ -2687,14 +2681,19 @@ export interface DataField {
2687
2681
  id?: number;
2688
2682
  readOnly?: boolean;
2689
2683
  precision?: number;
2690
- dataType?: any;
2691
- primaryKeyField?: boolean;
2684
+ required?: boolean;
2685
+ columnName?: string;
2686
+ scale?: number;
2687
+ label?: string;
2688
+ redacted?: AbstractRedactionRuleUnion;
2689
+ ownerName?: string;
2690
+ currentUserIsAuthorizedToReveal?: boolean;
2691
+ allowMultipleSelections?: boolean;
2692
2692
  displayIndex?: number;
2693
2693
  primaryKeySeqNo?: number;
2694
2694
  unique?: boolean;
2695
2695
  autoGenerated?: boolean;
2696
2696
  systemReserved?: boolean;
2697
- allowMultipleSelections?: boolean;
2698
2697
  userSelectionStrategy?: UserSelectionStrategyType;
2699
2698
  constrainingListName?: string;
2700
2699
  indexedForSearch?: boolean;
@@ -2702,15 +2701,11 @@ export interface DataField {
2702
2701
  displayInTimeZone?: string;
2703
2702
  showTimeZone?: boolean;
2704
2703
  masked?: boolean;
2705
- authorizedToRevealMasked?: UserGroupChooserSelection[];
2706
- redacted?: AbstractRedactionRuleUnion;
2704
+ primaryKeyField?: boolean;
2707
2705
  requiredConditionally?: ConditionalRule;
2708
2706
  readOnlyConditionally?: ConditionalRule;
2709
- ownerName?: string;
2710
- required?: boolean;
2711
- scale?: number;
2712
- columnName?: string;
2713
- label?: string;
2707
+ authorizedToRevealMasked?: UserGroupChooserSelection[];
2708
+ dataType?: any;
2714
2709
  description?: string;
2715
2710
  }
2716
2711
 
@@ -2720,19 +2715,19 @@ export interface DataObject extends SolutionAssignedDTO {
2720
2715
  id?: number;
2721
2716
  readOnly?: boolean;
2722
2717
  version?: number;
2723
- validFromFieldName?: string;
2718
+ tableName?: string;
2719
+ label?: string;
2720
+ historyEnabled?: boolean;
2721
+ createdAtTimeFieldName?: string;
2722
+ dataStoreName?: string;
2723
+ dataStoreDefaultSchemaName?: string;
2724
+ dataStoreAssignedTimeZone?: string;
2724
2725
  systemReserved?: boolean;
2725
2726
  allowedRedactedFieldGroups?: string[];
2727
+ validFromFieldName?: string;
2726
2728
  validToFieldName?: string;
2727
2729
  lastUpdatedAtTimeFieldName?: string;
2728
2730
  displayTextFields?: SortableNameReference[];
2729
- dataStoreName?: string;
2730
- dataStoreDefaultSchemaName?: string;
2731
- dataStoreAssignedTimeZone?: string;
2732
- historyEnabled?: boolean;
2733
- createdAtTimeFieldName?: string;
2734
- tableName?: string;
2735
- label?: string;
2736
2731
  description?: string;
2737
2732
  }
2738
2733
 
@@ -2752,10 +2747,10 @@ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
2752
2747
  export interface Element {
2753
2748
  name?: string;
2754
2749
  id?: number;
2750
+ label?: string;
2755
2751
  dataType?: any;
2756
2752
  mappedFields?: DataField[];
2757
2753
  displayable?: boolean;
2758
- label?: string;
2759
2754
  }
2760
2755
 
2761
2756
  export interface EnrichedDocument {
@@ -2779,11 +2774,11 @@ export interface EnrichedDocument {
2779
2774
  export interface Entity extends SolutionAssignedDTO {
2780
2775
  name?: string;
2781
2776
  id?: number;
2782
- defaultRegularIcon?: Icon;
2777
+ scale?: number;
2778
+ label?: string;
2779
+ nodeColor?: string;
2783
2780
  nodeShape?: string;
2784
2781
  markerColor?: string;
2785
- nodeColor?: string;
2786
- compounds?: Compound[];
2787
2782
  borderColor?: string;
2788
2783
  borderWidth?: number;
2789
2784
  useForNetworkBuild?: boolean;
@@ -2791,10 +2786,10 @@ export interface Entity extends SolutionAssignedDTO {
2791
2786
  displayTextElements?: SortableNameReference[];
2792
2787
  linkDisplayTextElements?: SortableNameReference[];
2793
2788
  requiresMultipleContributors?: boolean;
2794
- publishCode?: PublishCode;
2795
2789
  defaultMapIcon?: Icon;
2796
- scale?: number;
2797
- label?: string;
2790
+ publishCode?: PublishCode;
2791
+ defaultRegularIcon?: Icon;
2792
+ compounds?: Compound[];
2798
2793
  }
2799
2794
 
2800
2795
  export interface Error {
@@ -2816,8 +2811,8 @@ export interface FieldMaskingConfigDTO {
2816
2811
  export interface Icon {
2817
2812
  id?: number;
2818
2813
  type?: IconType;
2819
- imageType?: IconImageType;
2820
2814
  imageLocation?: string;
2815
+ imageType?: IconImageType;
2821
2816
  }
2822
2817
 
2823
2818
  export interface LinkBulkOperationResult {
@@ -2850,27 +2845,27 @@ export interface ReferenceListSummary {
2850
2845
 
2851
2846
  export interface Relationship extends DataObject {
2852
2847
  type?: RelationshipType;
2853
- cardinality?: RelationshipCardinality;
2854
- previousCardinality?: RelationshipCardinality;
2855
- symmetric?: boolean;
2856
- reverseName?: string;
2857
- reverseLabel?: string;
2858
- dashType?: string;
2859
- styles?: LinkStyleDTO[];
2848
+ required?: boolean;
2849
+ width?: number;
2850
+ qualifiedName?: string;
2851
+ managed?: boolean;
2852
+ color?: string;
2860
2853
  fromObjectLabel?: string;
2861
2854
  toObjectLabel?: string;
2862
2855
  toObjectTypeNames?: string[];
2856
+ fromObjectName?: string;
2857
+ toObjectName?: string;
2863
2858
  summaryFields?: SortableNameReference[];
2864
2859
  heterogeneousLink?: boolean;
2865
2860
  linkFields?: { [index: string]: string }[];
2866
2861
  joinTableName?: string;
2867
- fromObjectName?: string;
2868
- toObjectName?: string;
2869
- required?: boolean;
2870
- qualifiedName?: string;
2871
- managed?: boolean;
2872
- width?: number;
2873
- color?: string;
2862
+ cardinality?: RelationshipCardinality;
2863
+ previousCardinality?: RelationshipCardinality;
2864
+ symmetric?: boolean;
2865
+ reverseName?: string;
2866
+ reverseLabel?: string;
2867
+ dashType?: string;
2868
+ styles?: LinkStyleDTO[];
2874
2869
  }
2875
2870
 
2876
2871
  export interface SheetCopySelection {
@@ -2891,38 +2886,38 @@ export interface SortableNameReference {
2891
2886
 
2892
2887
  export interface StoredDataObject extends DataObject {
2893
2888
  type?: DataObjectType;
2894
- defaultRegularIcon?: Icon;
2889
+ scale?: number;
2890
+ parentName?: string;
2891
+ nodeDecoration?: NodeDecorationDTO;
2892
+ nodeColor?: string;
2895
2893
  nodeShape?: string;
2896
2894
  markerColor?: string;
2897
- nodeColor?: string;
2898
- borderColor?: string;
2899
- borderWidth?: number;
2900
2895
  relationshipsTo?: Relationship[];
2901
2896
  fileCategories?: FileCategory[];
2897
+ borderColor?: string;
2898
+ borderWidth?: number;
2899
+ defaultMapIcon?: Icon;
2902
2900
  attachmentsIndexedForSearch?: boolean;
2903
2901
  enableCasDistributedDataLoad?: boolean;
2904
2902
  elementGroupRoot?: boolean;
2905
2903
  requireSearchBeforeCreate?: boolean;
2906
2904
  mobileOfflineEnabled?: boolean;
2907
- styles?: EntityStyleDTO[];
2908
- defaultMapIcon?: Icon;
2909
- nodeDecoration?: NodeDecorationDTO;
2905
+ defaultRegularIcon?: Icon;
2910
2906
  relationshipsFrom?: Relationship[];
2911
- scale?: number;
2912
- parentName?: string;
2907
+ styles?: EntityStyleDTO[];
2913
2908
  }
2914
2909
 
2915
2910
  export interface Transaction extends DataObject {
2916
- toObjectTypeFieldName?: string;
2911
+ fromObjectName?: string;
2912
+ toObjectName?: string;
2913
+ lineWidthFunctionType?: AggregateFunctionType;
2914
+ lineColorFieldName?: string;
2915
+ lineColorFunctionType?: AggregateFunctionType;
2917
2916
  fromObjectTypeFieldName?: string;
2918
2917
  fromObjectRefFieldName?: string;
2919
2918
  toObjectRefFieldName?: string;
2920
2919
  lineWidthFieldName?: string;
2921
- lineWidthFunctionType?: AggregateFunctionType;
2922
- lineColorFieldName?: string;
2923
- lineColorFunctionType?: AggregateFunctionType;
2924
- fromObjectName?: string;
2925
- toObjectName?: string;
2920
+ toObjectTypeFieldName?: string;
2926
2921
  }
2927
2922
 
2928
2923
  export interface Version extends VersionSummary {
@@ -2982,9 +2977,9 @@ export interface EntityImpl extends Entity {
2982
2977
  export interface FileCategory {
2983
2978
  name?: string;
2984
2979
  displayName?: string;
2980
+ required?: boolean;
2985
2981
  allowMultiple?: boolean;
2986
2982
  documentLockRequired?: boolean;
2987
- required?: boolean;
2988
2983
  }
2989
2984
 
2990
2985
  export interface FileCategoryImpl extends FileCategory {
@@ -3027,8 +3022,8 @@ export interface ResourceSummary {
3027
3022
  }
3028
3023
 
3029
3024
  export interface ResourcedString {
3030
- defaultText?: string;
3031
3025
  resourceKey?: string;
3026
+ defaultText?: string;
3032
3027
  }
3033
3028
 
3034
3029
  export interface Solution {
@@ -3098,8 +3093,8 @@ export interface CommentUser {
3098
3093
  export interface AbstractFieldConditionMetadata<Y, T> {
3099
3094
  cycleDetector?: CycleDetector;
3100
3095
  owner?: Y;
3101
- parentObjectName?: string;
3102
3096
  ownerName?: string;
3097
+ parentObjectName?: string;
3103
3098
  }
3104
3099
 
3105
3100
  export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
@@ -3261,12 +3256,12 @@ export interface EventMetadata {
3261
3256
 
3262
3257
  export interface ValidatableContextMapping extends SolutionAssignedDTO {
3263
3258
  tag?: string;
3264
- docType?: string;
3265
- uuid?: string;
3259
+ templateId?: any;
3266
3260
  toolbarEnabled?: boolean;
3267
3261
  evaluateOrder?: number;
3268
3262
  fallbackToEvent?: string;
3269
- templateId?: any;
3263
+ uuid?: string;
3264
+ docType?: string;
3270
3265
  event?: string;
3271
3266
  }
3272
3267
 
@@ -3773,18 +3768,6 @@ export interface UpdatedEvent extends JobEvent {
3773
3768
  updateAllParentStatus?: boolean;
3774
3769
  }
3775
3770
 
3776
- export interface LineageRelationship extends TrackedResource, ETaggable {
3777
- resourceUri?: string;
3778
- type?: string;
3779
- relatedResourceUri?: string;
3780
- source?: string;
3781
- id?: string;
3782
- referenceId?: string;
3783
- relatedReferenceId?: string;
3784
- version?: number;
3785
- links?: RestRepresentationsLink[];
3786
- }
3787
-
3788
3771
  export interface ObjectContent extends ObjectId {
3789
3772
  fields?: { [index: string]: any };
3790
3773
  }
@@ -3830,14 +3813,44 @@ export interface RecordLevelAccessResponse {
3830
3813
  export interface Serializable {
3831
3814
  }
3832
3815
 
3816
+ export interface JavaType extends ResolvedType, Serializable, Type {
3817
+ interfaces?: JavaType[];
3818
+ genericSignature?: string;
3819
+ superClass?: JavaType;
3820
+ keyType?: JavaType;
3821
+ typeHandler?: any;
3822
+ recordType?: boolean;
3823
+ valueHandler?: any;
3824
+ referencedType?: JavaType;
3825
+ javaLangObject?: boolean;
3826
+ contentValueHandler?: any;
3827
+ contentTypeHandler?: any;
3828
+ erasedSignature?: string;
3829
+ enumImplType?: boolean;
3830
+ bindings?: TypeBindings;
3831
+ contentType?: JavaType;
3832
+ }
3833
+
3834
+ export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement, OfField<Class<any>>, Constable {
3835
+ }
3836
+
3837
+ export interface ValueInstantiator {
3838
+ valueClass?: Class<any>;
3839
+ arrayDelegateCreator?: AnnotatedWithParams;
3840
+ delegateCreator?: AnnotatedWithParams;
3841
+ valueTypeDesc?: string;
3842
+ defaultCreator?: AnnotatedWithParams;
3843
+ withArgsCreator?: AnnotatedWithParams;
3844
+ }
3845
+
3833
3846
  export interface JsonDeserializer<T> extends NullValueProvider {
3847
+ cachable?: boolean;
3834
3848
  delegatee?: JsonDeserializer<any>;
3835
3849
  knownPropertyNames?: any[];
3850
+ objectIdReader?: ObjectIdReader;
3851
+ emptyValue?: any;
3836
3852
  nullValue?: T;
3837
3853
  emptyAccessPattern?: AccessPattern;
3838
- emptyValue?: any;
3839
- objectIdReader?: ObjectIdReader;
3840
- cachable?: boolean;
3841
3854
  }
3842
3855
 
3843
3856
  export interface ObjectIdReader extends Serializable {
@@ -3845,8 +3858,8 @@ export interface ObjectIdReader extends Serializable {
3845
3858
  generator?: ObjectIdGenerator<any>;
3846
3859
  resolver?: ObjectIdResolver;
3847
3860
  idProperty?: SettableBeanProperty;
3848
- idType?: JavaType;
3849
3861
  deserializer?: JsonDeserializer<any>;
3862
+ idType?: JavaType;
3850
3863
  }
3851
3864
 
3852
3865
  export interface JsonSerializer<T> extends JsonFormatVisitable {
@@ -3868,11 +3881,8 @@ export interface LocalizedLocale {
3868
3881
  }
3869
3882
 
3870
3883
  export interface ResponseEntity<T> extends HttpEntity<T> {
3871
- statusCodeValue?: number;
3872
3884
  statusCode?: HttpStatus;
3873
- }
3874
-
3875
- export interface CacheStats {
3885
+ statusCodeValue?: number;
3876
3886
  }
3877
3887
 
3878
3888
  export interface Throwable extends Serializable {
@@ -3955,9 +3965,6 @@ export interface PathMetadata extends Serializable {
3955
3965
  root?: boolean;
3956
3966
  }
3957
3967
 
3958
- export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement, OfField<Class<any>>, Constable {
3959
- }
3960
-
3961
3968
  export interface SetPath<E, Q> extends CollectionPathBase<E[], E, Q> {
3962
3969
  }
3963
3970
 
@@ -4033,8 +4040,49 @@ export interface KeyDeserializer {
4033
4040
  }
4034
4041
 
4035
4042
  export interface TypedPayload {
4036
- payloadType?: string;
4037
4043
  eventType?: string;
4044
+ payloadType?: string;
4045
+ }
4046
+
4047
+ export interface TypeBindings extends Serializable {
4048
+ empty?: boolean;
4049
+ typeParameters?: JavaType[];
4050
+ }
4051
+
4052
+ export interface ResolvedType {
4053
+ interface?: boolean;
4054
+ primitive?: boolean;
4055
+ final?: boolean;
4056
+ abstract?: boolean;
4057
+ referenceType?: boolean;
4058
+ rawClass?: Class<any>;
4059
+ keyType?: ResolvedType;
4060
+ containerType?: boolean;
4061
+ mapLikeType?: boolean;
4062
+ collectionLikeType?: boolean;
4063
+ arrayType?: boolean;
4064
+ throwable?: boolean;
4065
+ enumType?: boolean;
4066
+ concrete?: boolean;
4067
+ referencedType?: ResolvedType;
4068
+ parameterSource?: Class<any>;
4069
+ contentType?: ResolvedType;
4070
+ }
4071
+
4072
+ export interface Type {
4073
+ typeName?: string;
4074
+ }
4075
+
4076
+ export interface GenericDeclaration extends AnnotatedElement {
4077
+ typeParameters?: TypeVariable<any>[];
4078
+ }
4079
+
4080
+ export interface Constable {
4081
+ }
4082
+
4083
+ export interface AnnotatedWithParams extends AnnotatedMember {
4084
+ parameterCount?: number;
4085
+ annotationCount?: number;
4038
4086
  }
4039
4087
 
4040
4088
  export interface NullValueProvider {
@@ -4057,36 +4105,27 @@ export interface ObjectIdResolver {
4057
4105
  export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
4058
4106
  objectIdInfo?: ObjectIdInfo;
4059
4107
  managedReferenceName?: string;
4060
- valueDeserializer?: JsonDeserializer<any>;
4061
4108
  valueTypeDeserializer?: TypeDeserializer;
4062
4109
  nullValueProvider?: NullValueProvider;
4063
4110
  propertyIndex?: number;
4064
4111
  creatorIndex?: number;
4065
4112
  injectableValueId?: any;
4066
4113
  injectionOnly?: boolean;
4114
+ valueDeserializer?: JsonDeserializer<any>;
4067
4115
  ignorable?: boolean;
4068
4116
  }
4069
4117
 
4070
- export interface JavaType extends ResolvedType, Serializable, Type {
4071
- interfaces?: JavaType[];
4072
- genericSignature?: string;
4073
- javaLangObject?: boolean;
4074
- valueHandler?: any;
4075
- typeHandler?: any;
4076
- referencedType?: JavaType;
4077
- enumImplType?: boolean;
4078
- contentValueHandler?: any;
4079
- contentTypeHandler?: any;
4080
- erasedSignature?: string;
4081
- superClass?: JavaType;
4082
- keyType?: JavaType;
4083
- bindings?: TypeBindings;
4084
- contentType?: JavaType;
4118
+ export interface StdDeserializer<T> extends JsonDeserializer<T>, Serializable, Gettable {
4119
+ valueType?: JavaType;
4120
+ valueClass?: Class<any>;
4085
4121
  }
4086
4122
 
4087
4123
  export interface JsonFormatVisitable {
4088
4124
  }
4089
4125
 
4126
+ export interface StdSerializer<T> extends JsonSerializer<T>, JsonFormatVisitable, SchemaAware, Serializable {
4127
+ }
4128
+
4090
4129
  export interface ConditionEntity extends Mergable<ConditionEntity> {
4091
4130
  id?: string;
4092
4131
  name?: string;
@@ -4121,17 +4160,6 @@ export interface DslTypesDslStringExpression extends LiteralExpression<string> {
4121
4160
  export interface Annotation {
4122
4161
  }
4123
4162
 
4124
- export interface GenericDeclaration extends AnnotatedElement {
4125
- typeParameters?: TypeVariable<any>[];
4126
- }
4127
-
4128
- export interface Type {
4129
- typeName?: string;
4130
- }
4131
-
4132
- export interface Constable {
4133
- }
4134
-
4135
4163
  export interface EntityPathBase<T> extends BeanPath<T>, EntityPath<T> {
4136
4164
  }
4137
4165
 
@@ -4203,6 +4231,39 @@ export interface BiFunction<T, U, R> {
4203
4231
  export interface Function<T, R> {
4204
4232
  }
4205
4233
 
4234
+ export interface TypeVariable<D> extends Type, AnnotatedElement {
4235
+ name?: string;
4236
+ bounds?: Type[];
4237
+ genericDeclaration?: D;
4238
+ annotatedBounds?: AnnotatedType[];
4239
+ }
4240
+
4241
+ export interface OfField<F> extends TypeDescriptor {
4242
+ array?: boolean;
4243
+ primitive?: boolean;
4244
+ }
4245
+
4246
+ export interface AnnotationMap extends Annotations {
4247
+ }
4248
+
4249
+ export interface Member {
4250
+ modifiers?: number;
4251
+ name?: string;
4252
+ synthetic?: boolean;
4253
+ declaringClass?: Class<any>;
4254
+ }
4255
+
4256
+ export interface TypeResolutionContext {
4257
+ }
4258
+
4259
+ export interface AnnotatedMember extends Annotated, Serializable {
4260
+ declaringClass?: Class<any>;
4261
+ fullName?: string;
4262
+ allAnnotations?: AnnotationMap;
4263
+ member?: Member;
4264
+ typeContext?: TypeResolutionContext;
4265
+ }
4266
+
4206
4267
  export interface ObjectIdInfo {
4207
4268
  generatorType?: Class<ObjectIdGenerator<any>>;
4208
4269
  resolverType?: Class<ObjectIdResolver>;
@@ -4212,56 +4273,30 @@ export interface ObjectIdInfo {
4212
4273
  }
4213
4274
 
4214
4275
  export interface TypeDeserializer {
4215
- typeIdResolver?: TypeIdResolver;
4216
- typeInclusion?: As;
4217
4276
  defaultImpl?: Class<any>;
4277
+ typeInclusion?: As;
4278
+ typeIdResolver?: TypeIdResolver;
4218
4279
  propertyName?: string;
4219
4280
  }
4220
4281
 
4221
- export interface AnnotatedMember extends Annotated, Serializable {
4222
- declaringClass?: Class<any>;
4223
- fullName?: string;
4224
- typeContext?: TypeResolutionContext;
4225
- member?: Member;
4226
- allAnnotations?: AnnotationMap;
4227
- }
4228
-
4229
4282
  export interface PropertyMetadata extends Serializable {
4230
4283
  defaultValue?: string;
4231
4284
  index?: number;
4285
+ required?: boolean;
4232
4286
  mergeInfo?: MergeInfo;
4233
4287
  valueNulls?: Nulls;
4234
4288
  contentNulls?: Nulls;
4235
- required?: boolean;
4236
4289
  description?: string;
4237
4290
  }
4238
4291
 
4239
4292
  export interface ConcreteBeanPropertyBase extends BeanProperty, Serializable {
4240
4293
  }
4241
4294
 
4242
- export interface TypeBindings extends Serializable {
4243
- empty?: boolean;
4244
- typeParameters?: JavaType[];
4295
+ export interface Gettable {
4296
+ valueInstantiator?: ValueInstantiator;
4245
4297
  }
4246
4298
 
4247
- export interface ResolvedType {
4248
- interface?: boolean;
4249
- primitive?: boolean;
4250
- final?: boolean;
4251
- abstract?: boolean;
4252
- referenceType?: boolean;
4253
- containerType?: boolean;
4254
- throwable?: boolean;
4255
- enumType?: boolean;
4256
- concrete?: boolean;
4257
- collectionLikeType?: boolean;
4258
- arrayType?: boolean;
4259
- referencedType?: ResolvedType;
4260
- mapLikeType?: boolean;
4261
- parameterSource?: Class<any>;
4262
- rawClass?: Class<any>;
4263
- keyType?: ResolvedType;
4264
- contentType?: ResolvedType;
4299
+ export interface SchemaAware {
4265
4300
  }
4266
4301
 
4267
4302
  export interface HttpEntity<T> {
@@ -4289,18 +4324,6 @@ export interface DslTypesExpression<T> extends Serializable {
4289
4324
  type?: Class<T>;
4290
4325
  }
4291
4326
 
4292
- export interface TypeVariable<D> extends Type, AnnotatedElement {
4293
- name?: string;
4294
- bounds?: Type[];
4295
- genericDeclaration?: D;
4296
- annotatedBounds?: AnnotatedType[];
4297
- }
4298
-
4299
- export interface OfField<F> extends TypeDescriptor {
4300
- array?: boolean;
4301
- primitive?: boolean;
4302
- }
4303
-
4304
4327
  export interface CollectionPathBase<C, E, Q> extends CollectionExpressionBase<C, E>, Path<C> {
4305
4328
  }
4306
4329
 
@@ -4381,22 +4404,15 @@ export interface StandardEntity {
4381
4404
  export interface BaseVisitor extends ExpressionVisitor {
4382
4405
  }
4383
4406
 
4384
- export interface TypeIdResolver {
4385
- mechanism?: Id;
4386
- descForKnownTypeIds?: string;
4387
- }
4388
-
4389
- export interface TypeResolutionContext {
4407
+ export interface AnnotatedType extends AnnotatedElement {
4408
+ type?: Type;
4409
+ annotatedOwnerType?: AnnotatedType;
4390
4410
  }
4391
4411
 
4392
- export interface Member {
4393
- modifiers?: number;
4394
- name?: string;
4395
- synthetic?: boolean;
4396
- declaringClass?: Class<any>;
4412
+ export interface TypeDescriptor {
4397
4413
  }
4398
4414
 
4399
- export interface AnnotationMap extends Annotations {
4415
+ export interface Annotations {
4400
4416
  }
4401
4417
 
4402
4418
  export interface Annotated {
@@ -4407,6 +4423,11 @@ export interface Annotated {
4407
4423
  annotated?: AnnotatedElement;
4408
4424
  }
4409
4425
 
4426
+ export interface TypeIdResolver {
4427
+ descForKnownTypeIds?: string;
4428
+ mechanism?: Id;
4429
+ }
4430
+
4410
4431
  export interface MergeInfo {
4411
4432
  getter?: AnnotatedMember;
4412
4433
  fromDefaults?: boolean;
@@ -4416,9 +4437,9 @@ export interface BeanProperty extends Named {
4416
4437
  type?: JavaType;
4417
4438
  fullName?: PropertyName;
4418
4439
  virtual?: boolean;
4419
- wrapperName?: PropertyName;
4420
4440
  required?: boolean;
4421
4441
  member?: AnnotatedMember;
4442
+ wrapperName?: PropertyName;
4422
4443
  metadata?: PropertyMetadata;
4423
4444
  }
4424
4445
 
@@ -4429,14 +4450,6 @@ export interface Mergable<E> {
4429
4450
  export interface LiteralExpression<T> extends ComparableExpression<T> {
4430
4451
  }
4431
4452
 
4432
- export interface AnnotatedType extends AnnotatedElement {
4433
- type?: Type;
4434
- annotatedOwnerType?: AnnotatedType;
4435
- }
4436
-
4437
- export interface TypeDescriptor {
4438
- }
4439
-
4440
4453
  export interface EntityPath<T> extends Path<T> {
4441
4454
  }
4442
4455
 
@@ -4457,9 +4470,6 @@ export interface TemplateFileCategoryAssociation extends Serializable {
4457
4470
  export interface ExpressionVisitor {
4458
4471
  }
4459
4472
 
4460
- export interface Annotations {
4461
- }
4462
-
4463
4473
  export interface Named {
4464
4474
  name?: string;
4465
4475
  }
@@ -4626,7 +4636,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
4626
4636
 
4627
4637
  export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4628
4638
 
4629
- 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" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "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" | "DH1539" | "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" | "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" | "icon_svg_invalid" | "icon_invalid_image_type" | "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" | "media_type_mismatch" | "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" | "condition_id_required" | "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" | "system_field_cannot_be_masked" | "field_used_in_join_condition_cannot_be_masked" | "field_used_in_txn_join_condition_cannot_be_masked" | "txn_field_used_in_txn_join_condition_cannot_be_masked" | "heterogeneous_external_join_key_field_cannot_be_masked" | "txn_field_used_in_ref_join_cannot_be_masked" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body" | "entity_type_not_found" | "template_type_not_found";
4639
+ 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" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "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" | "DH1539" | "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" | "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" | "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" | "icon_svg_invalid" | "icon_invalid_image_type" | "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" | "media_type_mismatch" | "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" | "condition_id_required" | "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" | "system_field_cannot_be_masked" | "field_used_in_join_condition_cannot_be_masked" | "field_used_in_txn_join_condition_cannot_be_masked" | "txn_field_used_in_txn_join_condition_cannot_be_masked" | "heterogeneous_external_join_key_field_cannot_be_masked" | "txn_field_used_in_ref_join_cannot_be_masked" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body" | "entity_type_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "invalid_control_solution_id";
4630
4640
 
4631
4641
  export type DataStoreType = "RELATIONAL";
4632
4642
 
@@ -4646,7 +4656,7 @@ export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PRO
4646
4656
 
4647
4657
  export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
4648
4658
 
4649
- export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "CUSTOM";
4659
+ export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "DEDUCTION" | "CUSTOM";
4650
4660
 
4651
4661
  export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
4652
4662