@sassoftware/vi-api 1.15.3 → 1.40.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.
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2023-11-29 22:36:32.
3
+ // Generated using typescript-generator version 2.15.527 on 2024-02-13 19:39:35.
4
4
 
5
5
  export interface SecuredApiMeta {
6
6
  experimental?: boolean;
@@ -13,10 +13,10 @@ export interface SecuredApiMeta {
13
13
  }
14
14
 
15
15
  export interface SecuredBuild {
16
+ applicationVersion?: string;
16
17
  buildVersion?: string;
17
- sourceId?: string;
18
18
  sourceTimeStamp?: string;
19
- applicationVersion?: string;
19
+ sourceId?: string;
20
20
  timeStamp?: string;
21
21
  }
22
22
 
@@ -47,10 +47,10 @@ export interface ResourceMediaTypes {
47
47
  }
48
48
 
49
49
  export interface Build extends Serializable {
50
+ applicationVersion?: string;
50
51
  buildVersion?: string;
51
52
  sourceId?: string;
52
53
  sourceTimeStamp?: string;
53
- applicationVersion?: string;
54
54
  timeStamp?: string;
55
55
  }
56
56
 
@@ -71,8 +71,8 @@ export interface ErrorResponse extends Serializable {
71
71
  id?: string;
72
72
  links?: RestRepresentationsLink[];
73
73
  version?: number;
74
- targetUri?: string;
75
74
  httpStatusCode?: number;
75
+ targetUri?: string;
76
76
  }
77
77
 
78
78
  export interface RestRepresentationsLink extends Serializable {
@@ -419,6 +419,9 @@ export interface CommentController {
419
419
  export interface ConditionController {
420
420
  }
421
421
 
422
+ export interface ConditionEvaluationController {
423
+ }
424
+
422
425
  export interface ConfigServiceController {
423
426
  }
424
427
 
@@ -657,8 +660,8 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
657
660
  useObjectAuthorization?: boolean;
658
661
  allowedRedactedFieldGroups?: RedactionRuleEntity[];
659
662
  owner?: O;
660
- masked?: boolean;
661
663
  userGroupSelectionField?: boolean;
664
+ masked?: boolean;
662
665
  constrained?: boolean;
663
666
  }
664
667
 
@@ -762,13 +765,13 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
762
765
  dashType?: string;
763
766
  styles?: LinkStyleEntity[];
764
767
  readOnly?: boolean;
765
- primaryKeyFields?: CoreRelationshipField[];
766
- reverseLabel?: string;
767
768
  heterogeneous?: boolean;
768
- internalHeterogeneous?: boolean;
769
- foreignKeyFieldNames?: string[];
769
+ primaryKeyFields?: CoreRelationshipField[];
770
770
  attributeFields?: CoreRelationshipField[];
771
771
  nonAttributeFieldNames?: string[];
772
+ foreignKeyFieldNames?: string[];
773
+ internalHeterogeneous?: boolean;
774
+ reverseLabel?: string;
772
775
  qualifiedName?: string;
773
776
  link?: boolean;
774
777
  }
@@ -845,12 +848,12 @@ export interface CoreTransaction extends CoreDataObject {
845
848
  lineWidthFunctionType?: AggregateFunctionType;
846
849
  lineColorFieldName?: string;
847
850
  lineColorFunctionType?: AggregateFunctionType;
848
- toHeterogeneousAndFromObjectIsIndexable?: boolean;
849
- primaryKeyFields?: CoreDataField<any>[];
850
851
  heterogeneous?: boolean;
851
- fullHeterogeneous?: boolean;
852
+ primaryKeyFields?: CoreDataField<any>[];
852
853
  toHeterogeneous?: boolean;
853
854
  fromHeterogeneous?: boolean;
855
+ fullHeterogeneous?: boolean;
856
+ toHeterogeneousAndFromObjectIsIndexable?: boolean;
854
857
  fromHeterogeneousAndToObjectIsIndexable?: boolean;
855
858
  nonHeterogeneousAndBothSidesAreIndexable?: boolean;
856
859
  }
@@ -879,6 +882,18 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject {
879
882
  defaultSchemaName?: string;
880
883
  }
881
884
 
885
+ export interface EntityTypeNameAndVersion {
886
+ name?: string;
887
+ id?: number;
888
+ version?: number;
889
+ }
890
+
891
+ export interface EntityTypeNameAndVersionDTO {
892
+ id?: number;
893
+ name?: string;
894
+ version?: number;
895
+ }
896
+
882
897
  export interface FeatureConstants {
883
898
  }
884
899
 
@@ -2220,8 +2235,8 @@ export interface ControlConfigurationDTO extends NamedObject, SolutionAssignedDT
2220
2235
  }
2221
2236
 
2222
2237
  export interface DocumentTypeWithClientApplication {
2223
- documentType?: string;
2224
2238
  clientApplication?: string;
2239
+ documentType?: string;
2225
2240
  }
2226
2241
 
2227
2242
  export interface ElementExportDTO extends ElementDTO {
@@ -2429,6 +2444,9 @@ export interface RuleSourceTypeGroup<T> {
2429
2444
  ruleSources?: T[];
2430
2445
  }
2431
2446
 
2447
+ export interface DatahubExpressionValidator extends ConstraintValidator<ValidExpression, Expression> {
2448
+ }
2449
+
2432
2450
  export interface DataMaskingStrategy {
2433
2451
  }
2434
2452
 
@@ -2448,6 +2466,7 @@ export interface DatahubQuery {
2448
2466
  includeDisplayLabel?: boolean;
2449
2467
  includeAuditObjects?: boolean;
2450
2468
  dataMaskingStrategy?: DataMaskingStrategy;
2469
+ filterInternalChildEntityAuditFields?: boolean;
2451
2470
  selectColumnFields?: string[];
2452
2471
  selectAll?: boolean;
2453
2472
  }
@@ -2613,6 +2632,9 @@ export interface ApiConstant {
2613
2632
  export interface Length {
2614
2633
  }
2615
2634
 
2635
+ export interface Regex {
2636
+ }
2637
+
2616
2638
  export interface BaseDocumentCollectionRequest extends Serializable {
2617
2639
  start?: number;
2618
2640
  limit?: number;
@@ -2669,10 +2691,10 @@ export interface DataField {
2669
2691
  primaryKeyField?: boolean;
2670
2692
  displayIndex?: number;
2671
2693
  primaryKeySeqNo?: number;
2672
- allowMultipleSelections?: boolean;
2673
2694
  unique?: boolean;
2674
2695
  autoGenerated?: boolean;
2675
2696
  systemReserved?: boolean;
2697
+ allowMultipleSelections?: boolean;
2676
2698
  userSelectionStrategy?: UserSelectionStrategyType;
2677
2699
  constrainingListName?: string;
2678
2700
  indexedForSearch?: boolean;
@@ -2686,8 +2708,8 @@ export interface DataField {
2686
2708
  readOnlyConditionally?: ConditionalRule;
2687
2709
  ownerName?: string;
2688
2710
  required?: boolean;
2689
- columnName?: string;
2690
2711
  scale?: number;
2712
+ columnName?: string;
2691
2713
  label?: string;
2692
2714
  description?: string;
2693
2715
  }
@@ -2698,8 +2720,6 @@ export interface DataObject extends SolutionAssignedDTO {
2698
2720
  id?: number;
2699
2721
  readOnly?: boolean;
2700
2722
  version?: number;
2701
- historyEnabled?: boolean;
2702
- createdAtTimeFieldName?: string;
2703
2723
  validFromFieldName?: string;
2704
2724
  systemReserved?: boolean;
2705
2725
  allowedRedactedFieldGroups?: string[];
@@ -2709,6 +2729,8 @@ export interface DataObject extends SolutionAssignedDTO {
2709
2729
  dataStoreName?: string;
2710
2730
  dataStoreDefaultSchemaName?: string;
2711
2731
  dataStoreAssignedTimeZone?: string;
2732
+ historyEnabled?: boolean;
2733
+ createdAtTimeFieldName?: string;
2712
2734
  tableName?: string;
2713
2735
  label?: string;
2714
2736
  description?: string;
@@ -2758,11 +2780,11 @@ export interface Entity extends SolutionAssignedDTO {
2758
2780
  name?: string;
2759
2781
  id?: number;
2760
2782
  defaultRegularIcon?: Icon;
2761
- nodeColor?: string;
2762
2783
  nodeShape?: string;
2763
2784
  markerColor?: string;
2764
- borderColor?: string;
2785
+ nodeColor?: string;
2765
2786
  compounds?: Compound[];
2787
+ borderColor?: string;
2766
2788
  borderWidth?: number;
2767
2789
  useForNetworkBuild?: boolean;
2768
2790
  temporalSplitting?: boolean;
@@ -2828,27 +2850,27 @@ export interface ReferenceListSummary {
2828
2850
 
2829
2851
  export interface Relationship extends DataObject {
2830
2852
  type?: RelationshipType;
2831
- fromObjectName?: string;
2832
- toObjectName?: string;
2833
- reverseName?: string;
2834
- reverseLabel?: string;
2835
- fromObjectLabel?: string;
2836
- toObjectLabel?: string;
2837
2853
  cardinality?: RelationshipCardinality;
2838
2854
  previousCardinality?: RelationshipCardinality;
2839
2855
  symmetric?: boolean;
2856
+ reverseName?: string;
2857
+ reverseLabel?: string;
2840
2858
  dashType?: string;
2841
2859
  styles?: LinkStyleDTO[];
2860
+ fromObjectLabel?: string;
2861
+ toObjectLabel?: string;
2842
2862
  toObjectTypeNames?: string[];
2843
2863
  summaryFields?: SortableNameReference[];
2844
2864
  heterogeneousLink?: boolean;
2845
2865
  linkFields?: { [index: string]: string }[];
2846
2866
  joinTableName?: string;
2867
+ fromObjectName?: string;
2868
+ toObjectName?: string;
2847
2869
  required?: boolean;
2848
2870
  qualifiedName?: string;
2849
2871
  managed?: boolean;
2850
- color?: string;
2851
2872
  width?: number;
2873
+ color?: string;
2852
2874
  }
2853
2875
 
2854
2876
  export interface SheetCopySelection {
@@ -2869,30 +2891,28 @@ export interface SortableNameReference {
2869
2891
 
2870
2892
  export interface StoredDataObject extends DataObject {
2871
2893
  type?: DataObjectType;
2872
- relationshipsFrom?: Relationship[];
2873
2894
  defaultRegularIcon?: Icon;
2874
- nodeColor?: string;
2875
2895
  nodeShape?: string;
2876
2896
  markerColor?: string;
2897
+ nodeColor?: string;
2877
2898
  borderColor?: string;
2878
2899
  borderWidth?: number;
2900
+ relationshipsTo?: Relationship[];
2901
+ fileCategories?: FileCategory[];
2879
2902
  attachmentsIndexedForSearch?: boolean;
2880
2903
  enableCasDistributedDataLoad?: boolean;
2881
- relationshipsTo?: Relationship[];
2882
2904
  elementGroupRoot?: boolean;
2883
2905
  requireSearchBeforeCreate?: boolean;
2884
2906
  mobileOfflineEnabled?: boolean;
2885
- fileCategories?: FileCategory[];
2886
2907
  styles?: EntityStyleDTO[];
2887
2908
  defaultMapIcon?: Icon;
2888
2909
  nodeDecoration?: NodeDecorationDTO;
2910
+ relationshipsFrom?: Relationship[];
2889
2911
  scale?: number;
2890
2912
  parentName?: string;
2891
2913
  }
2892
2914
 
2893
2915
  export interface Transaction extends DataObject {
2894
- fromObjectName?: string;
2895
- toObjectName?: string;
2896
2916
  toObjectTypeFieldName?: string;
2897
2917
  fromObjectTypeFieldName?: string;
2898
2918
  fromObjectRefFieldName?: string;
@@ -2901,6 +2921,8 @@ export interface Transaction extends DataObject {
2901
2921
  lineWidthFunctionType?: AggregateFunctionType;
2902
2922
  lineColorFieldName?: string;
2903
2923
  lineColorFunctionType?: AggregateFunctionType;
2924
+ fromObjectName?: string;
2925
+ toObjectName?: string;
2904
2926
  }
2905
2927
 
2906
2928
  export interface Version extends VersionSummary {
@@ -3076,8 +3098,8 @@ export interface CommentUser {
3076
3098
  export interface AbstractFieldConditionMetadata<Y, T> {
3077
3099
  cycleDetector?: CycleDetector;
3078
3100
  owner?: Y;
3079
- ownerName?: string;
3080
3101
  parentObjectName?: string;
3102
+ ownerName?: string;
3081
3103
  }
3082
3104
 
3083
3105
  export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
@@ -3241,10 +3263,10 @@ export interface ValidatableContextMapping extends SolutionAssignedDTO {
3241
3263
  tag?: string;
3242
3264
  docType?: string;
3243
3265
  uuid?: string;
3244
- fallbackToEvent?: string;
3245
- templateId?: any;
3246
3266
  toolbarEnabled?: boolean;
3247
3267
  evaluateOrder?: number;
3268
+ fallbackToEvent?: string;
3269
+ templateId?: any;
3248
3270
  event?: string;
3249
3271
  }
3250
3272
 
@@ -3666,113 +3688,6 @@ export interface TemplateType extends Comparable<TemplateType> {
3666
3688
  label?: string;
3667
3689
  }
3668
3690
 
3669
- export interface CellValidator {
3670
- }
3671
-
3672
- export interface CommentValidator {
3673
- }
3674
-
3675
- export interface DatahubFreeformTextValidator extends ConstraintValidator<FreeformText, string> {
3676
- }
3677
-
3678
- export interface DatahubIdentifierTextArrayValidator extends ConstraintValidator<IdentifierTextArray, string[]> {
3679
- }
3680
-
3681
- export interface DatahubIdentifierTextValidator extends ConstraintValidator<IdentifierText, string> {
3682
- }
3683
-
3684
- export interface DatahubUuidValidator extends ConstraintValidator<UUID, string> {
3685
- }
3686
-
3687
- export interface EncodingRenderer extends HtmlStreamEventReceiver {
3688
- }
3689
-
3690
- export interface EnrichedDocumentValidator {
3691
- }
3692
-
3693
- export interface FieldValidationUtil {
3694
- }
3695
-
3696
- export interface HtmlEncoder<T> {
3697
- wrappedRenderer?: HtmlStreamEventReceiver;
3698
- wrappedPolicy?: Policy;
3699
- }
3700
-
3701
- export interface InputChannel<T> extends Policy {
3702
- }
3703
-
3704
- export interface OutputChannel extends HtmlStreamEventReceiver {
3705
- }
3706
-
3707
- export interface HtmlEncodingAppender extends Appendable {
3708
- }
3709
-
3710
- export interface HtmlValidatorFactory {
3711
- }
3712
-
3713
- export interface IdentifierTextValidator {
3714
- }
3715
-
3716
- export interface ImageCellValidator {
3717
- }
3718
-
3719
- export interface JsonMapWithNoHtmlValidator extends ConstraintValidator<JsonMapWithNoHtml, { [index: string]: any }> {
3720
- }
3721
-
3722
- export interface LiveVisualizationCellValidator {
3723
- }
3724
-
3725
- export interface RecordFiltersValidator {
3726
- }
3727
-
3728
- export interface RecordIdValidator {
3729
- }
3730
-
3731
- export interface ResolvedEntityValidator {
3732
- }
3733
-
3734
- export interface SheetCopySelectionValidator {
3735
- }
3736
-
3737
- export interface SheetValidator {
3738
- }
3739
-
3740
- export interface SortByQueryParamValidator extends ConstraintValidator<SortByQueryParam, string> {
3741
- }
3742
-
3743
- export interface StaticVisualizationCellValidator {
3744
- }
3745
-
3746
- export interface StringWithNoHtmlValidator extends ConstraintValidator<StringWithNoHtml, string> {
3747
- }
3748
-
3749
- export interface TextCellValidator {
3750
- }
3751
-
3752
- export interface ValidationFeatureFlagChecker {
3753
- }
3754
-
3755
- export interface ValidatorHtmlChangeListener extends HtmlChangeListener<string> {
3756
- }
3757
-
3758
- export interface HtmlSanitizerConfig {
3759
- htmlSanitizerProperties?: AdditionalHtmlSanitizerProperties;
3760
- }
3761
-
3762
- export interface AdditionalHtmlSanitizerProperties {
3763
- tags?: string;
3764
- }
3765
-
3766
- export interface SvgSanitizerConfig {
3767
- svgSanitizerProperties?: Properties;
3768
- }
3769
-
3770
- export interface Properties {
3771
- attributes?: string;
3772
- elements?: string;
3773
- prefixes?: string;
3774
- }
3775
-
3776
3691
  export interface Job {
3777
3692
  version?: number;
3778
3693
  id?: string;
@@ -3930,8 +3845,8 @@ export interface ObjectIdReader extends Serializable {
3930
3845
  generator?: ObjectIdGenerator<any>;
3931
3846
  resolver?: ObjectIdResolver;
3932
3847
  idProperty?: SettableBeanProperty;
3933
- deserializer?: JsonDeserializer<any>;
3934
3848
  idType?: JavaType;
3849
+ deserializer?: JsonDeserializer<any>;
3935
3850
  }
3936
3851
 
3937
3852
  export interface JsonSerializer<T> extends JsonFormatVisitable {
@@ -4117,15 +4032,6 @@ export interface RuntimeException extends Exception {
4117
4032
  export interface KeyDeserializer {
4118
4033
  }
4119
4034
 
4120
- export interface HtmlStreamEventReceiver {
4121
- }
4122
-
4123
- export interface Policy extends HtmlStreamEventReceiver {
4124
- }
4125
-
4126
- export interface Appendable {
4127
- }
4128
-
4129
4035
  export interface TypedPayload {
4130
4036
  payloadType?: string;
4131
4037
  eventType?: string;
@@ -4174,8 +4080,8 @@ export interface JavaType extends ResolvedType, Serializable, Type {
4174
4080
  erasedSignature?: string;
4175
4081
  superClass?: JavaType;
4176
4082
  keyType?: JavaType;
4177
- contentType?: JavaType;
4178
4083
  bindings?: TypeBindings;
4084
+ contentType?: JavaType;
4179
4085
  }
4180
4086
 
4181
4087
  export interface JsonFormatVisitable {
@@ -4281,54 +4187,33 @@ export interface ResponseErrorHandler {
4281
4187
  export interface Exception extends Throwable {
4282
4188
  }
4283
4189
 
4284
- export interface AbstractExpressionVisitor<T> extends BaseVisitor {
4285
- filter?: T;
4286
- }
4287
-
4288
- export interface BiFunction<T, U, R> {
4289
- }
4290
-
4291
- export interface Function<T, R> {
4292
- }
4293
-
4294
4190
  export interface ConstraintValidator<A, T> {
4295
4191
  }
4296
4192
 
4297
- export interface FreeformText extends Annotation {
4298
- }
4299
-
4300
- export interface IdentifierTextArray extends Annotation {
4301
- }
4302
-
4303
- export interface IdentifierText extends Annotation {
4304
- }
4305
-
4306
- export interface UUID extends Annotation {
4307
- }
4308
-
4309
- export interface JsonMapWithNoHtml extends Annotation {
4193
+ export interface ValidExpression extends Annotation {
4310
4194
  }
4311
4195
 
4312
- export interface SortByQueryParam extends Annotation {
4196
+ export interface AbstractExpressionVisitor<T> extends BaseVisitor {
4197
+ filter?: T;
4313
4198
  }
4314
4199
 
4315
- export interface StringWithNoHtml extends Annotation {
4200
+ export interface BiFunction<T, U, R> {
4316
4201
  }
4317
4202
 
4318
- export interface HtmlChangeListener<T> {
4203
+ export interface Function<T, R> {
4319
4204
  }
4320
4205
 
4321
4206
  export interface ObjectIdInfo {
4322
- alwaysAsId?: boolean;
4323
4207
  generatorType?: Class<ObjectIdGenerator<any>>;
4324
4208
  resolverType?: Class<ObjectIdResolver>;
4325
- scope?: Class<any>;
4209
+ alwaysAsId?: boolean;
4326
4210
  propertyName?: PropertyName;
4211
+ scope?: Class<any>;
4327
4212
  }
4328
4213
 
4329
4214
  export interface TypeDeserializer {
4330
- typeInclusion?: As;
4331
4215
  typeIdResolver?: TypeIdResolver;
4216
+ typeInclusion?: As;
4332
4217
  defaultImpl?: Class<any>;
4333
4218
  propertyName?: string;
4334
4219
  }
@@ -4365,6 +4250,7 @@ export interface ResolvedType {
4365
4250
  final?: boolean;
4366
4251
  abstract?: boolean;
4367
4252
  referenceType?: boolean;
4253
+ containerType?: boolean;
4368
4254
  throwable?: boolean;
4369
4255
  enumType?: boolean;
4370
4256
  concrete?: boolean;
@@ -4373,7 +4259,6 @@ export interface ResolvedType {
4373
4259
  referencedType?: ResolvedType;
4374
4260
  mapLikeType?: boolean;
4375
4261
  parameterSource?: Class<any>;
4376
- containerType?: boolean;
4377
4262
  rawClass?: Class<any>;
4378
4263
  keyType?: ResolvedType;
4379
4264
  contentType?: ResolvedType;
@@ -4741,7 +4626,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
4741
4626
 
4742
4627
  export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4743
4628
 
4744
- 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" | "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";
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";
4745
4630
 
4746
4631
  export type DataStoreType = "RELATIONAL";
4747
4632
 
@@ -4755,7 +4640,7 @@ export type AccessType = "create" | "read" | "update" | "delete" | "search";
4755
4640
 
4756
4641
  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";
4757
4642
 
4758
- export type PathType = "ARRAYVALUE" | "ARRAYVALUE_CONSTANT" | "COLLECTION_ANY" | "DELEGATE" | "LISTVALUE" | "LISTVALUE_CONSTANT" | "MAPVALUE" | "MAPVALUE_CONSTANT" | "PROPERTY" | "VARIABLE";
4643
+ export type PathType = "ARRAYVALUE" | "ARRAYVALUE_CONSTANT" | "COLLECTION_ANY" | "DELEGATE" | "LISTVALUE" | "LISTVALUE_CONSTANT" | "MAPVALUE" | "MAPVALUE_CONSTANT" | "PROPERTY" | "VARIABLE" | "TREATED_PATH";
4759
4644
 
4760
4645
  export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PROPERTY" | "EXISTING_PROPERTY";
4761
4646
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-datahub",
3
- "version": "17.21.50",
3
+ "version": "17.23.28",
4
4
  "types": "index.d.ts"
5
5
  }