@sassoftware/vi-api 1.9.0 → 1.15.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.
- package/alert-reps/index.d.ts +6 -6
- package/alert-reps/package.json +1 -1
- package/api.module.js +60 -72
- package/component/bindings.d.ts +44 -0
- package/config/config-api.d.ts +56 -0
- package/control/control-api.d.ts +5 -6
- package/control/events.d.ts +1 -0
- package/control/page.d.ts +2 -2
- package/index.d.ts +70 -67
- package/index.js +1 -1
- package/init/index.d.ts +54 -0
- package/init/index.js +17 -0
- package/init/init-api.d.ts +26 -0
- package/init/init-api.js +83 -0
- package/init/package.json +9 -0
- package/init/public-api.d.ts +1 -0
- package/init/public-api.js +1 -0
- package/localization/localization-api.d.ts +75 -0
- package/metadata/metadata-api.d.ts +37 -3
- package/object/object-api.d.ts +22 -8
- package/object/object-api.js +5 -0
- package/package.json +1 -1
- package/property/property-api.d.ts +71 -1
- package/public-api.d.ts +1 -1
- package/public-api.js +1 -1
- package/resource/resource-api.d.ts +1 -0
- package/score-reps/index.d.ts +1 -1
- package/score-reps/package.json +1 -1
- package/search/client/client-search-api.d.ts +4 -9
- package/sheet/sheet-api.d.ts +7 -7
- package/svi-datahub/index.d.ts +208 -132
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +17 -2
- package/svi-sand/package.json +1 -1
package/svi-datahub/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 2.15.527 on 2023-
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2023-11-29 22:36:32.
|
|
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
|
-
sourceId?: string;
|
|
17
16
|
buildVersion?: string;
|
|
18
|
-
|
|
17
|
+
sourceId?: string;
|
|
19
18
|
sourceTimeStamp?: string;
|
|
19
|
+
applicationVersion?: string;
|
|
20
20
|
timeStamp?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -47,8 +47,8 @@ export interface ResourceMediaTypes {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export interface Build extends Serializable {
|
|
50
|
-
sourceId?: string;
|
|
51
50
|
buildVersion?: string;
|
|
51
|
+
sourceId?: string;
|
|
52
52
|
sourceTimeStamp?: string;
|
|
53
53
|
applicationVersion?: string;
|
|
54
54
|
timeStamp?: string;
|
|
@@ -71,8 +71,8 @@ export interface ErrorResponse extends Serializable {
|
|
|
71
71
|
id?: string;
|
|
72
72
|
links?: RestRepresentationsLink[];
|
|
73
73
|
version?: number;
|
|
74
|
-
httpStatusCode?: number;
|
|
75
74
|
targetUri?: string;
|
|
75
|
+
httpStatusCode?: number;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
export interface RestRepresentationsLink extends Serializable {
|
|
@@ -238,11 +238,12 @@ export interface ActionSummary {
|
|
|
238
238
|
export interface ActionTableValue {
|
|
239
239
|
value?: any;
|
|
240
240
|
type?: ActionTableValueType;
|
|
241
|
+
fieldRestriction?: { [index: string]: any };
|
|
241
242
|
}
|
|
242
243
|
|
|
243
244
|
export interface ActionType {
|
|
244
|
-
actionType?: string;
|
|
245
245
|
localizedMessage?: string;
|
|
246
|
+
actionType?: string;
|
|
246
247
|
}
|
|
247
248
|
|
|
248
249
|
export interface LabelActionItem extends ActionItem {
|
|
@@ -324,6 +325,7 @@ export interface CommonsDataRelationship extends DataContent {
|
|
|
324
325
|
toObjectId?: string;
|
|
325
326
|
toObjectDisplayLabel?: string;
|
|
326
327
|
fieldValues?: { [index: string]: any };
|
|
328
|
+
restrictedFields?: { [index: string]: any };
|
|
327
329
|
}
|
|
328
330
|
|
|
329
331
|
export interface RelationshipIdentifier {
|
|
@@ -618,9 +620,6 @@ export interface ActionHistoryColumns {
|
|
|
618
620
|
export interface ConfigPropertyName {
|
|
619
621
|
}
|
|
620
622
|
|
|
621
|
-
export interface Length {
|
|
622
|
-
}
|
|
623
|
-
|
|
624
623
|
export interface QueryName {
|
|
625
624
|
}
|
|
626
625
|
|
|
@@ -657,9 +656,9 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
|
|
|
657
656
|
redacted?: boolean;
|
|
658
657
|
useObjectAuthorization?: boolean;
|
|
659
658
|
allowedRedactedFieldGroups?: RedactionRuleEntity[];
|
|
660
|
-
userGroupSelectionField?: boolean;
|
|
661
|
-
masked?: boolean;
|
|
662
659
|
owner?: O;
|
|
660
|
+
masked?: boolean;
|
|
661
|
+
userGroupSelectionField?: boolean;
|
|
663
662
|
constrained?: boolean;
|
|
664
663
|
}
|
|
665
664
|
|
|
@@ -676,8 +675,8 @@ export interface CoreDataObject extends LocalizableObject, Versioned, NamedObjec
|
|
|
676
675
|
validToFieldName?: string;
|
|
677
676
|
allowedRedactedFieldGroups?: RedactionRuleEntity[];
|
|
678
677
|
displayTextFields?: SortableNameReference[];
|
|
679
|
-
cached?: boolean;
|
|
680
678
|
fields?: CoreDataField<any>[];
|
|
679
|
+
cached?: boolean;
|
|
681
680
|
}
|
|
682
681
|
|
|
683
682
|
export interface CoreDataObjectWithHistory extends CoreDataObject {
|
|
@@ -762,8 +761,9 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
|
|
|
762
761
|
width?: number;
|
|
763
762
|
dashType?: string;
|
|
764
763
|
styles?: LinkStyleEntity[];
|
|
765
|
-
|
|
764
|
+
readOnly?: boolean;
|
|
766
765
|
primaryKeyFields?: CoreRelationshipField[];
|
|
766
|
+
reverseLabel?: string;
|
|
767
767
|
heterogeneous?: boolean;
|
|
768
768
|
internalHeterogeneous?: boolean;
|
|
769
769
|
foreignKeyFieldNames?: string[];
|
|
@@ -771,7 +771,6 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
|
|
|
771
771
|
nonAttributeFieldNames?: string[];
|
|
772
772
|
qualifiedName?: string;
|
|
773
773
|
link?: boolean;
|
|
774
|
-
readOnly?: boolean;
|
|
775
774
|
}
|
|
776
775
|
|
|
777
776
|
export interface CoreRelationshipField extends CoreDataField<CoreRelationship> {
|
|
@@ -812,10 +811,10 @@ export interface CoreStoredObject extends CoreDataObjectWithHistory {
|
|
|
812
811
|
additionalLabel?: string;
|
|
813
812
|
publishCode?: PublishCode;
|
|
814
813
|
fieldMap?: { [index: string]: CoreStoredObjectField };
|
|
814
|
+
readOnly?: boolean;
|
|
815
815
|
primaryKeyFields?: CoreStoredObjectField[];
|
|
816
816
|
quotedDeleteTableName?: string;
|
|
817
817
|
urnsequential?: boolean;
|
|
818
|
-
readOnly?: boolean;
|
|
819
818
|
}
|
|
820
819
|
|
|
821
820
|
export interface CoreStoredObjectField extends CoreDataField<CoreStoredObject> {
|
|
@@ -846,14 +845,14 @@ export interface CoreTransaction extends CoreDataObject {
|
|
|
846
845
|
lineWidthFunctionType?: AggregateFunctionType;
|
|
847
846
|
lineColorFieldName?: string;
|
|
848
847
|
lineColorFunctionType?: AggregateFunctionType;
|
|
848
|
+
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
849
849
|
primaryKeyFields?: CoreDataField<any>[];
|
|
850
850
|
heterogeneous?: boolean;
|
|
851
851
|
fullHeterogeneous?: boolean;
|
|
852
|
+
toHeterogeneous?: boolean;
|
|
852
853
|
fromHeterogeneous?: boolean;
|
|
853
|
-
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
854
854
|
fromHeterogeneousAndToObjectIsIndexable?: boolean;
|
|
855
855
|
nonHeterogeneousAndBothSidesAreIndexable?: boolean;
|
|
856
|
-
toHeterogeneous?: boolean;
|
|
857
856
|
}
|
|
858
857
|
|
|
859
858
|
export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
|
|
@@ -875,9 +874,9 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject {
|
|
|
875
874
|
poolMinIdle?: number;
|
|
876
875
|
poolMaxIdle?: number;
|
|
877
876
|
poolMaxActive?: number;
|
|
877
|
+
defaultDataStore?: boolean;
|
|
878
878
|
testOnBorrow?: boolean;
|
|
879
879
|
defaultSchemaName?: string;
|
|
880
|
-
defaultDataStore?: boolean;
|
|
881
880
|
}
|
|
882
881
|
|
|
883
882
|
export interface FeatureConstants {
|
|
@@ -1969,6 +1968,7 @@ export interface EntityDTO extends LocalizableObjectDTO, Entity, Versioned, Name
|
|
|
1969
1968
|
|
|
1970
1969
|
export interface FieldValueDTO {
|
|
1971
1970
|
raw?: any;
|
|
1971
|
+
fieldName?: string;
|
|
1972
1972
|
}
|
|
1973
1973
|
|
|
1974
1974
|
export interface FileCategoryDTO extends InjectableResource, FileCategory {
|
|
@@ -2354,7 +2354,10 @@ export interface ObjectTypeOperations {
|
|
|
2354
2354
|
export interface ReferenceListCoreMetadataInternalAdapter extends ReferenceListOperations {
|
|
2355
2355
|
}
|
|
2356
2356
|
|
|
2357
|
-
export interface
|
|
2357
|
+
export interface ReferenceListFieldCoreMetadataInternalAdapter extends ReferenceListFieldOperations {
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
export interface ReferenceListFieldOperations {
|
|
2358
2361
|
}
|
|
2359
2362
|
|
|
2360
2363
|
export interface ReferenceListOperations {
|
|
@@ -2367,8 +2370,8 @@ export interface RelationshipTypeCoreMetadataInternalAdapter extends Relationshi
|
|
|
2367
2370
|
}
|
|
2368
2371
|
|
|
2369
2372
|
export interface RelationshipTypeOperations {
|
|
2370
|
-
allHeterogeneousRelationshipTypes?: RelationshipDTO[];
|
|
2371
2373
|
all?: RelationshipDTO[];
|
|
2374
|
+
allHeterogeneousRelationshipTypes?: RelationshipDTO[];
|
|
2372
2375
|
}
|
|
2373
2376
|
|
|
2374
2377
|
export interface RelationshipTypeUtils {
|
|
@@ -2378,8 +2381,8 @@ export interface TransactionTypeCoreMetadataInternalAdapter extends TransactionT
|
|
|
2378
2381
|
}
|
|
2379
2382
|
|
|
2380
2383
|
export interface TransactionTypeOperations {
|
|
2381
|
-
allHeterogeneousTransactionTypes?: TransactionDTO[];
|
|
2382
2384
|
all?: TransactionDTO[];
|
|
2385
|
+
allHeterogeneousTransactionTypes?: TransactionDTO[];
|
|
2383
2386
|
}
|
|
2384
2387
|
|
|
2385
2388
|
export interface TransactionTypeUtils {
|
|
@@ -2429,6 +2432,9 @@ export interface RuleSourceTypeGroup<T> {
|
|
|
2429
2432
|
export interface DataMaskingStrategy {
|
|
2430
2433
|
}
|
|
2431
2434
|
|
|
2435
|
+
export interface DataMaskingStrategyFactory {
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2432
2438
|
export interface DatahubQuery {
|
|
2433
2439
|
filterCriteria?: FilterCriteria;
|
|
2434
2440
|
sortCriteria?: SortCriteria;
|
|
@@ -2486,6 +2492,9 @@ export interface HistoryOptions {
|
|
|
2486
2492
|
where?: { [index: string]: any };
|
|
2487
2493
|
}
|
|
2488
2494
|
|
|
2495
|
+
export interface MinimallyMaskingDataMaskingStrategy extends DataMaskingStrategy {
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2489
2498
|
export interface PagingOptions {
|
|
2490
2499
|
start?: number;
|
|
2491
2500
|
limit?: number;
|
|
@@ -2506,6 +2515,9 @@ export interface RemoveValuesDataMaskingStrategy extends DataMaskingStrategy {
|
|
|
2506
2515
|
export interface ReplaceWithDotsDataMaskingStrategy extends DataMaskingStrategy {
|
|
2507
2516
|
}
|
|
2508
2517
|
|
|
2518
|
+
export interface SelectiveMaskingDataMaskingStrategy extends DataMaskingStrategy {
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2509
2521
|
export interface SortCriteria {
|
|
2510
2522
|
field?: FieldReference;
|
|
2511
2523
|
sortOrder?: SortOrder;
|
|
@@ -2595,6 +2607,12 @@ export interface StringExpression extends Expression {
|
|
|
2595
2607
|
operator?: StringOperator;
|
|
2596
2608
|
}
|
|
2597
2609
|
|
|
2610
|
+
export interface ApiConstant {
|
|
2611
|
+
}
|
|
2612
|
+
|
|
2613
|
+
export interface Length {
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2598
2616
|
export interface BaseDocumentCollectionRequest extends Serializable {
|
|
2599
2617
|
start?: number;
|
|
2600
2618
|
limit?: number;
|
|
@@ -2632,28 +2650,29 @@ export interface ChildVersionSummary extends VersionSummary {
|
|
|
2632
2650
|
}
|
|
2633
2651
|
|
|
2634
2652
|
export interface Compound {
|
|
2635
|
-
elements?: Element[];
|
|
2636
2653
|
id?: number;
|
|
2654
|
+
elements?: Element[];
|
|
2637
2655
|
}
|
|
2638
2656
|
|
|
2639
2657
|
export interface ConditionalRule {
|
|
2640
|
-
objectState?: string;
|
|
2641
2658
|
conditionId?: string;
|
|
2659
|
+
objectState?: string;
|
|
2642
2660
|
}
|
|
2643
2661
|
|
|
2644
2662
|
export interface DataField {
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2663
|
+
length?: number;
|
|
2664
|
+
name?: string;
|
|
2665
|
+
id?: number;
|
|
2666
|
+
readOnly?: boolean;
|
|
2667
|
+
precision?: number;
|
|
2649
2668
|
dataType?: any;
|
|
2650
2669
|
primaryKeyField?: boolean;
|
|
2651
2670
|
displayIndex?: number;
|
|
2652
2671
|
primaryKeySeqNo?: number;
|
|
2672
|
+
allowMultipleSelections?: boolean;
|
|
2653
2673
|
unique?: boolean;
|
|
2654
2674
|
autoGenerated?: boolean;
|
|
2655
2675
|
systemReserved?: boolean;
|
|
2656
|
-
allowMultipleSelections?: boolean;
|
|
2657
2676
|
userSelectionStrategy?: UserSelectionStrategyType;
|
|
2658
2677
|
constrainingListName?: string;
|
|
2659
2678
|
indexedForSearch?: boolean;
|
|
@@ -2662,21 +2681,23 @@ export interface DataField {
|
|
|
2662
2681
|
showTimeZone?: boolean;
|
|
2663
2682
|
masked?: boolean;
|
|
2664
2683
|
authorizedToRevealMasked?: UserGroupChooserSelection[];
|
|
2684
|
+
redacted?: AbstractRedactionRuleUnion;
|
|
2685
|
+
requiredConditionally?: ConditionalRule;
|
|
2686
|
+
readOnlyConditionally?: ConditionalRule;
|
|
2687
|
+
ownerName?: string;
|
|
2688
|
+
required?: boolean;
|
|
2665
2689
|
columnName?: string;
|
|
2666
2690
|
scale?: number;
|
|
2667
2691
|
label?: string;
|
|
2668
|
-
length?: number;
|
|
2669
|
-
name?: string;
|
|
2670
|
-
id?: number;
|
|
2671
|
-
readOnly?: boolean;
|
|
2672
2692
|
description?: string;
|
|
2673
|
-
precision?: number;
|
|
2674
|
-
required?: boolean;
|
|
2675
2693
|
}
|
|
2676
2694
|
|
|
2677
2695
|
export interface DataObject extends SolutionAssignedDTO {
|
|
2678
|
-
|
|
2679
|
-
|
|
2696
|
+
name?: string;
|
|
2697
|
+
fields?: DataField[];
|
|
2698
|
+
id?: number;
|
|
2699
|
+
readOnly?: boolean;
|
|
2700
|
+
version?: number;
|
|
2680
2701
|
historyEnabled?: boolean;
|
|
2681
2702
|
createdAtTimeFieldName?: string;
|
|
2682
2703
|
validFromFieldName?: string;
|
|
@@ -2686,13 +2707,10 @@ export interface DataObject extends SolutionAssignedDTO {
|
|
|
2686
2707
|
lastUpdatedAtTimeFieldName?: string;
|
|
2687
2708
|
displayTextFields?: SortableNameReference[];
|
|
2688
2709
|
dataStoreName?: string;
|
|
2710
|
+
dataStoreDefaultSchemaName?: string;
|
|
2711
|
+
dataStoreAssignedTimeZone?: string;
|
|
2689
2712
|
tableName?: string;
|
|
2690
2713
|
label?: string;
|
|
2691
|
-
name?: string;
|
|
2692
|
-
fields?: DataField[];
|
|
2693
|
-
id?: number;
|
|
2694
|
-
readOnly?: boolean;
|
|
2695
|
-
version?: number;
|
|
2696
2714
|
description?: string;
|
|
2697
2715
|
}
|
|
2698
2716
|
|
|
@@ -2710,12 +2728,12 @@ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
|
|
|
2710
2728
|
}
|
|
2711
2729
|
|
|
2712
2730
|
export interface Element {
|
|
2731
|
+
name?: string;
|
|
2732
|
+
id?: number;
|
|
2713
2733
|
dataType?: any;
|
|
2714
2734
|
mappedFields?: DataField[];
|
|
2715
2735
|
displayable?: boolean;
|
|
2716
2736
|
label?: string;
|
|
2717
|
-
name?: string;
|
|
2718
|
-
id?: number;
|
|
2719
2737
|
}
|
|
2720
2738
|
|
|
2721
2739
|
export interface EnrichedDocument {
|
|
@@ -2737,24 +2755,24 @@ export interface EnrichedDocument {
|
|
|
2737
2755
|
}
|
|
2738
2756
|
|
|
2739
2757
|
export interface Entity extends SolutionAssignedDTO {
|
|
2740
|
-
|
|
2758
|
+
name?: string;
|
|
2759
|
+
id?: number;
|
|
2741
2760
|
defaultRegularIcon?: Icon;
|
|
2742
2761
|
nodeColor?: string;
|
|
2743
2762
|
nodeShape?: string;
|
|
2744
2763
|
markerColor?: string;
|
|
2745
2764
|
borderColor?: string;
|
|
2765
|
+
compounds?: Compound[];
|
|
2746
2766
|
borderWidth?: number;
|
|
2747
2767
|
useForNetworkBuild?: boolean;
|
|
2748
2768
|
temporalSplitting?: boolean;
|
|
2749
2769
|
displayTextElements?: SortableNameReference[];
|
|
2750
2770
|
linkDisplayTextElements?: SortableNameReference[];
|
|
2751
2771
|
requiresMultipleContributors?: boolean;
|
|
2752
|
-
compounds?: Compound[];
|
|
2753
2772
|
publishCode?: PublishCode;
|
|
2773
|
+
defaultMapIcon?: Icon;
|
|
2754
2774
|
scale?: number;
|
|
2755
2775
|
label?: string;
|
|
2756
|
-
name?: string;
|
|
2757
|
-
id?: number;
|
|
2758
2776
|
}
|
|
2759
2777
|
|
|
2760
2778
|
export interface Error {
|
|
@@ -2770,13 +2788,14 @@ export interface Error {
|
|
|
2770
2788
|
|
|
2771
2789
|
export interface FieldMaskingConfigDTO {
|
|
2772
2790
|
currentUserIsAuthorizedToReveal?: boolean;
|
|
2791
|
+
revealUrl?: string;
|
|
2773
2792
|
}
|
|
2774
2793
|
|
|
2775
2794
|
export interface Icon {
|
|
2776
|
-
imageLocation?: string;
|
|
2777
|
-
imageType?: IconImageType;
|
|
2778
2795
|
id?: number;
|
|
2779
2796
|
type?: IconType;
|
|
2797
|
+
imageType?: IconImageType;
|
|
2798
|
+
imageLocation?: string;
|
|
2780
2799
|
}
|
|
2781
2800
|
|
|
2782
2801
|
export interface LinkBulkOperationResult {
|
|
@@ -2808,28 +2827,28 @@ export interface ReferenceListSummary {
|
|
|
2808
2827
|
}
|
|
2809
2828
|
|
|
2810
2829
|
export interface Relationship extends DataObject {
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
linkFields?: { [index: string]: string }[];
|
|
2815
|
-
joinTableName?: string;
|
|
2830
|
+
type?: RelationshipType;
|
|
2831
|
+
fromObjectName?: string;
|
|
2832
|
+
toObjectName?: string;
|
|
2816
2833
|
reverseName?: string;
|
|
2817
2834
|
reverseLabel?: string;
|
|
2818
2835
|
fromObjectLabel?: string;
|
|
2819
2836
|
toObjectLabel?: string;
|
|
2820
|
-
fromObjectName?: string;
|
|
2821
|
-
toObjectName?: string;
|
|
2822
2837
|
cardinality?: RelationshipCardinality;
|
|
2823
2838
|
previousCardinality?: RelationshipCardinality;
|
|
2824
2839
|
symmetric?: boolean;
|
|
2825
2840
|
dashType?: string;
|
|
2826
2841
|
styles?: LinkStyleDTO[];
|
|
2842
|
+
toObjectTypeNames?: string[];
|
|
2843
|
+
summaryFields?: SortableNameReference[];
|
|
2844
|
+
heterogeneousLink?: boolean;
|
|
2845
|
+
linkFields?: { [index: string]: string }[];
|
|
2846
|
+
joinTableName?: string;
|
|
2847
|
+
required?: boolean;
|
|
2827
2848
|
qualifiedName?: string;
|
|
2828
2849
|
managed?: boolean;
|
|
2829
|
-
width?: number;
|
|
2830
2850
|
color?: string;
|
|
2831
|
-
|
|
2832
|
-
required?: boolean;
|
|
2851
|
+
width?: number;
|
|
2833
2852
|
}
|
|
2834
2853
|
|
|
2835
2854
|
export interface SheetCopySelection {
|
|
@@ -2849,13 +2868,12 @@ export interface SortableNameReference {
|
|
|
2849
2868
|
}
|
|
2850
2869
|
|
|
2851
2870
|
export interface StoredDataObject extends DataObject {
|
|
2852
|
-
|
|
2853
|
-
|
|
2871
|
+
type?: DataObjectType;
|
|
2872
|
+
relationshipsFrom?: Relationship[];
|
|
2854
2873
|
defaultRegularIcon?: Icon;
|
|
2855
2874
|
nodeColor?: string;
|
|
2856
2875
|
nodeShape?: string;
|
|
2857
2876
|
markerColor?: string;
|
|
2858
|
-
relationshipsFrom?: Relationship[];
|
|
2859
2877
|
borderColor?: string;
|
|
2860
2878
|
borderWidth?: number;
|
|
2861
2879
|
attachmentsIndexedForSearch?: boolean;
|
|
@@ -2866,22 +2884,23 @@ export interface StoredDataObject extends DataObject {
|
|
|
2866
2884
|
mobileOfflineEnabled?: boolean;
|
|
2867
2885
|
fileCategories?: FileCategory[];
|
|
2868
2886
|
styles?: EntityStyleDTO[];
|
|
2887
|
+
defaultMapIcon?: Icon;
|
|
2888
|
+
nodeDecoration?: NodeDecorationDTO;
|
|
2869
2889
|
scale?: number;
|
|
2870
2890
|
parentName?: string;
|
|
2871
|
-
type?: DataObjectType;
|
|
2872
2891
|
}
|
|
2873
2892
|
|
|
2874
2893
|
export interface Transaction extends DataObject {
|
|
2875
2894
|
fromObjectName?: string;
|
|
2876
2895
|
toObjectName?: string;
|
|
2877
2896
|
toObjectTypeFieldName?: string;
|
|
2878
|
-
lineWidthFunctionType?: AggregateFunctionType;
|
|
2879
|
-
lineColorFieldName?: string;
|
|
2880
|
-
lineColorFunctionType?: AggregateFunctionType;
|
|
2881
2897
|
fromObjectTypeFieldName?: string;
|
|
2882
2898
|
fromObjectRefFieldName?: string;
|
|
2883
2899
|
toObjectRefFieldName?: string;
|
|
2884
2900
|
lineWidthFieldName?: string;
|
|
2901
|
+
lineWidthFunctionType?: AggregateFunctionType;
|
|
2902
|
+
lineColorFieldName?: string;
|
|
2903
|
+
lineColorFunctionType?: AggregateFunctionType;
|
|
2885
2904
|
}
|
|
2886
2905
|
|
|
2887
2906
|
export interface Version extends VersionSummary {
|
|
@@ -2906,6 +2925,8 @@ export interface VersionValue {
|
|
|
2906
2925
|
value?: any;
|
|
2907
2926
|
type?: string;
|
|
2908
2927
|
valueChanged?: boolean;
|
|
2928
|
+
fieldRestriction?: { [index: string]: any };
|
|
2929
|
+
previousValueFieldRestriction?: { [index: string]: any };
|
|
2909
2930
|
}
|
|
2910
2931
|
|
|
2911
2932
|
export interface CompoundImpl extends Compound {
|
|
@@ -2937,10 +2958,10 @@ export interface EntityImpl extends Entity {
|
|
|
2937
2958
|
}
|
|
2938
2959
|
|
|
2939
2960
|
export interface FileCategory {
|
|
2940
|
-
allowMultiple?: boolean;
|
|
2941
|
-
documentLockRequired?: boolean;
|
|
2942
2961
|
name?: string;
|
|
2943
2962
|
displayName?: string;
|
|
2963
|
+
allowMultiple?: boolean;
|
|
2964
|
+
documentLockRequired?: boolean;
|
|
2944
2965
|
required?: boolean;
|
|
2945
2966
|
}
|
|
2946
2967
|
|
|
@@ -3054,9 +3075,9 @@ export interface CommentUser {
|
|
|
3054
3075
|
|
|
3055
3076
|
export interface AbstractFieldConditionMetadata<Y, T> {
|
|
3056
3077
|
cycleDetector?: CycleDetector;
|
|
3078
|
+
owner?: Y;
|
|
3057
3079
|
ownerName?: string;
|
|
3058
3080
|
parentObjectName?: string;
|
|
3059
|
-
owner?: Y;
|
|
3060
3081
|
}
|
|
3061
3082
|
|
|
3062
3083
|
export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
|
|
@@ -3146,8 +3167,8 @@ export interface PresenceComparatorSerializer extends JsonSerializer<PresenceCom
|
|
|
3146
3167
|
}
|
|
3147
3168
|
|
|
3148
3169
|
export interface AbstractCondition<T> extends Serializable {
|
|
3149
|
-
parameters?: T[];
|
|
3150
3170
|
type?: string;
|
|
3171
|
+
parameters?: T[];
|
|
3151
3172
|
}
|
|
3152
3173
|
|
|
3153
3174
|
export interface AbstractFieldCondition<T> extends AbstractCondition<T> {
|
|
@@ -3217,13 +3238,13 @@ export interface EventMetadata {
|
|
|
3217
3238
|
}
|
|
3218
3239
|
|
|
3219
3240
|
export interface ValidatableContextMapping extends SolutionAssignedDTO {
|
|
3241
|
+
tag?: string;
|
|
3242
|
+
docType?: string;
|
|
3243
|
+
uuid?: string;
|
|
3220
3244
|
fallbackToEvent?: string;
|
|
3221
3245
|
templateId?: any;
|
|
3222
3246
|
toolbarEnabled?: boolean;
|
|
3223
3247
|
evaluateOrder?: number;
|
|
3224
|
-
docType?: string;
|
|
3225
|
-
uuid?: string;
|
|
3226
|
-
tag?: string;
|
|
3227
3248
|
event?: string;
|
|
3228
3249
|
}
|
|
3229
3250
|
|
|
@@ -3445,6 +3466,7 @@ export interface Record {
|
|
|
3445
3466
|
type?: string;
|
|
3446
3467
|
typeVersion?: number;
|
|
3447
3468
|
typeId?: number;
|
|
3469
|
+
restrictedFields?: { [index: string]: any };
|
|
3448
3470
|
}
|
|
3449
3471
|
|
|
3450
3472
|
export interface RecordFilter extends ObjectTypeIdentifier {
|
|
@@ -3460,8 +3482,8 @@ export interface RelationshipId {
|
|
|
3460
3482
|
relationshipName?: string;
|
|
3461
3483
|
fromObjectTypeName?: string;
|
|
3462
3484
|
toObjectTypeName?: string;
|
|
3463
|
-
relationshipQName?: string;
|
|
3464
3485
|
id?: string;
|
|
3486
|
+
relationshipQName?: string;
|
|
3465
3487
|
}
|
|
3466
3488
|
|
|
3467
3489
|
export interface RelationshipIdBuilder {
|
|
@@ -3650,12 +3672,27 @@ export interface CellValidator {
|
|
|
3650
3672
|
export interface CommentValidator {
|
|
3651
3673
|
}
|
|
3652
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
|
+
|
|
3653
3687
|
export interface EncodingRenderer extends HtmlStreamEventReceiver {
|
|
3654
3688
|
}
|
|
3655
3689
|
|
|
3656
3690
|
export interface EnrichedDocumentValidator {
|
|
3657
3691
|
}
|
|
3658
3692
|
|
|
3693
|
+
export interface FieldValidationUtil {
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3659
3696
|
export interface HtmlEncoder<T> {
|
|
3660
3697
|
wrappedRenderer?: HtmlStreamEventReceiver;
|
|
3661
3698
|
wrappedPolicy?: Policy;
|
|
@@ -3673,9 +3710,15 @@ export interface HtmlEncodingAppender extends Appendable {
|
|
|
3673
3710
|
export interface HtmlValidatorFactory {
|
|
3674
3711
|
}
|
|
3675
3712
|
|
|
3713
|
+
export interface IdentifierTextValidator {
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3676
3716
|
export interface ImageCellValidator {
|
|
3677
3717
|
}
|
|
3678
3718
|
|
|
3719
|
+
export interface JsonMapWithNoHtmlValidator extends ConstraintValidator<JsonMapWithNoHtml, { [index: string]: any }> {
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3679
3722
|
export interface LiveVisualizationCellValidator {
|
|
3680
3723
|
}
|
|
3681
3724
|
|
|
@@ -3694,22 +3737,22 @@ export interface SheetCopySelectionValidator {
|
|
|
3694
3737
|
export interface SheetValidator {
|
|
3695
3738
|
}
|
|
3696
3739
|
|
|
3697
|
-
export interface
|
|
3740
|
+
export interface SortByQueryParamValidator extends ConstraintValidator<SortByQueryParam, string> {
|
|
3698
3741
|
}
|
|
3699
3742
|
|
|
3700
|
-
export interface
|
|
3743
|
+
export interface StaticVisualizationCellValidator {
|
|
3701
3744
|
}
|
|
3702
3745
|
|
|
3703
|
-
export interface
|
|
3746
|
+
export interface StringWithNoHtmlValidator extends ConstraintValidator<StringWithNoHtml, string> {
|
|
3704
3747
|
}
|
|
3705
3748
|
|
|
3706
|
-
export interface
|
|
3749
|
+
export interface TextCellValidator {
|
|
3707
3750
|
}
|
|
3708
3751
|
|
|
3709
|
-
export interface
|
|
3752
|
+
export interface ValidationFeatureFlagChecker {
|
|
3710
3753
|
}
|
|
3711
3754
|
|
|
3712
|
-
export interface
|
|
3755
|
+
export interface ValidatorHtmlChangeListener extends HtmlChangeListener<string> {
|
|
3713
3756
|
}
|
|
3714
3757
|
|
|
3715
3758
|
export interface HtmlSanitizerConfig {
|
|
@@ -3720,6 +3763,16 @@ export interface AdditionalHtmlSanitizerProperties {
|
|
|
3720
3763
|
tags?: string;
|
|
3721
3764
|
}
|
|
3722
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
|
+
|
|
3723
3776
|
export interface Job {
|
|
3724
3777
|
version?: number;
|
|
3725
3778
|
id?: string;
|
|
@@ -3882,8 +3935,8 @@ export interface ObjectIdReader extends Serializable {
|
|
|
3882
3935
|
}
|
|
3883
3936
|
|
|
3884
3937
|
export interface JsonSerializer<T> extends JsonFormatVisitable {
|
|
3885
|
-
unwrappingSerializer?: boolean;
|
|
3886
3938
|
delegatee?: JsonSerializer<any>;
|
|
3939
|
+
unwrappingSerializer?: boolean;
|
|
3887
3940
|
}
|
|
3888
3941
|
|
|
3889
3942
|
export interface HandlerExceptionResolver {
|
|
@@ -3922,8 +3975,8 @@ export interface StackTraceElement extends Serializable {
|
|
|
3922
3975
|
methodName?: string;
|
|
3923
3976
|
fileName?: string;
|
|
3924
3977
|
lineNumber?: number;
|
|
3925
|
-
className?: string;
|
|
3926
3978
|
nativeMethod?: boolean;
|
|
3979
|
+
className?: string;
|
|
3927
3980
|
}
|
|
3928
3981
|
|
|
3929
3982
|
export interface DataHubException extends RuntimeException {
|
|
@@ -3967,27 +4020,27 @@ export interface StringPath extends DslTypesDslStringExpression, Path<string> {
|
|
|
3967
4020
|
export interface NumberPath<T> extends NumberExpression<T>, Path<T> {
|
|
3968
4021
|
}
|
|
3969
4022
|
|
|
3970
|
-
export interface AnnotatedElement {
|
|
3971
|
-
annotations?: Annotation[];
|
|
3972
|
-
declaredAnnotations?: Annotation[];
|
|
3973
|
-
}
|
|
3974
|
-
|
|
3975
4023
|
export interface Path<T> extends DslTypesExpression<T> {
|
|
3976
|
-
annotatedElement?: AnnotatedElement;
|
|
3977
4024
|
root?: Path<any>;
|
|
4025
|
+
annotatedElement?: AnnotatedElement;
|
|
3978
4026
|
metadata?: PathMetadata;
|
|
3979
4027
|
}
|
|
3980
4028
|
|
|
4029
|
+
export interface AnnotatedElement {
|
|
4030
|
+
annotations?: Annotation[];
|
|
4031
|
+
declaredAnnotations?: Annotation[];
|
|
4032
|
+
}
|
|
4033
|
+
|
|
3981
4034
|
export interface PathMetadata extends Serializable {
|
|
3982
4035
|
element?: any;
|
|
3983
4036
|
parent?: Path<any>;
|
|
3984
4037
|
rootPath?: Path<any>;
|
|
3985
4038
|
pathType?: PathType;
|
|
3986
|
-
root?: boolean;
|
|
3987
4039
|
name?: string;
|
|
4040
|
+
root?: boolean;
|
|
3988
4041
|
}
|
|
3989
4042
|
|
|
3990
|
-
export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement {
|
|
4043
|
+
export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement, OfField<Class<any>>, Constable {
|
|
3991
4044
|
}
|
|
3992
4045
|
|
|
3993
4046
|
export interface SetPath<E, Q> extends CollectionPathBase<E[], E, Q> {
|
|
@@ -4083,9 +4136,9 @@ export interface NullValueProvider {
|
|
|
4083
4136
|
}
|
|
4084
4137
|
|
|
4085
4138
|
export interface PropertyName extends Serializable {
|
|
4086
|
-
namespace?: string;
|
|
4087
4139
|
empty?: boolean;
|
|
4088
4140
|
simpleName?: string;
|
|
4141
|
+
namespace?: string;
|
|
4089
4142
|
}
|
|
4090
4143
|
|
|
4091
4144
|
export interface ObjectIdGenerator<T> extends Serializable {
|
|
@@ -4098,30 +4151,30 @@ export interface ObjectIdResolver {
|
|
|
4098
4151
|
export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
|
|
4099
4152
|
objectIdInfo?: ObjectIdInfo;
|
|
4100
4153
|
managedReferenceName?: string;
|
|
4154
|
+
valueDeserializer?: JsonDeserializer<any>;
|
|
4101
4155
|
valueTypeDeserializer?: TypeDeserializer;
|
|
4102
4156
|
nullValueProvider?: NullValueProvider;
|
|
4103
4157
|
propertyIndex?: number;
|
|
4104
4158
|
creatorIndex?: number;
|
|
4105
4159
|
injectableValueId?: any;
|
|
4106
4160
|
injectionOnly?: boolean;
|
|
4107
|
-
valueDeserializer?: JsonDeserializer<any>;
|
|
4108
4161
|
ignorable?: boolean;
|
|
4109
4162
|
}
|
|
4110
4163
|
|
|
4111
4164
|
export interface JavaType extends ResolvedType, Serializable, Type {
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
valueHandler?: any;
|
|
4115
|
-
enumImplType?: boolean;
|
|
4165
|
+
interfaces?: JavaType[];
|
|
4166
|
+
genericSignature?: string;
|
|
4116
4167
|
javaLangObject?: boolean;
|
|
4168
|
+
valueHandler?: any;
|
|
4169
|
+
typeHandler?: any;
|
|
4117
4170
|
referencedType?: JavaType;
|
|
4171
|
+
enumImplType?: boolean;
|
|
4118
4172
|
contentValueHandler?: any;
|
|
4119
4173
|
contentTypeHandler?: any;
|
|
4120
4174
|
erasedSignature?: string;
|
|
4121
4175
|
superClass?: JavaType;
|
|
4176
|
+
keyType?: JavaType;
|
|
4122
4177
|
contentType?: JavaType;
|
|
4123
|
-
interfaces?: JavaType[];
|
|
4124
|
-
genericSignature?: string;
|
|
4125
4178
|
bindings?: TypeBindings;
|
|
4126
4179
|
}
|
|
4127
4180
|
|
|
@@ -4170,6 +4223,9 @@ export interface Type {
|
|
|
4170
4223
|
typeName?: string;
|
|
4171
4224
|
}
|
|
4172
4225
|
|
|
4226
|
+
export interface Constable {
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4173
4229
|
export interface EntityPathBase<T> extends BeanPath<T>, EntityPath<T> {
|
|
4174
4230
|
}
|
|
4175
4231
|
|
|
@@ -4235,10 +4291,19 @@ export interface BiFunction<T, U, R> {
|
|
|
4235
4291
|
export interface Function<T, R> {
|
|
4236
4292
|
}
|
|
4237
4293
|
|
|
4238
|
-
export interface
|
|
4294
|
+
export interface ConstraintValidator<A, T> {
|
|
4239
4295
|
}
|
|
4240
4296
|
|
|
4241
|
-
export interface
|
|
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 {
|
|
4242
4307
|
}
|
|
4243
4308
|
|
|
4244
4309
|
export interface JsonMapWithNoHtml extends Annotation {
|
|
@@ -4250,10 +4315,13 @@ export interface SortByQueryParam extends Annotation {
|
|
|
4250
4315
|
export interface StringWithNoHtml extends Annotation {
|
|
4251
4316
|
}
|
|
4252
4317
|
|
|
4318
|
+
export interface HtmlChangeListener<T> {
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4253
4321
|
export interface ObjectIdInfo {
|
|
4322
|
+
alwaysAsId?: boolean;
|
|
4254
4323
|
generatorType?: Class<ObjectIdGenerator<any>>;
|
|
4255
4324
|
resolverType?: Class<ObjectIdResolver>;
|
|
4256
|
-
alwaysAsId?: boolean;
|
|
4257
4325
|
scope?: Class<any>;
|
|
4258
4326
|
propertyName?: PropertyName;
|
|
4259
4327
|
}
|
|
@@ -4261,25 +4329,25 @@ export interface ObjectIdInfo {
|
|
|
4261
4329
|
export interface TypeDeserializer {
|
|
4262
4330
|
typeInclusion?: As;
|
|
4263
4331
|
typeIdResolver?: TypeIdResolver;
|
|
4264
|
-
propertyName?: string;
|
|
4265
4332
|
defaultImpl?: Class<any>;
|
|
4333
|
+
propertyName?: string;
|
|
4266
4334
|
}
|
|
4267
4335
|
|
|
4268
4336
|
export interface AnnotatedMember extends Annotated, Serializable {
|
|
4337
|
+
declaringClass?: Class<any>;
|
|
4338
|
+
fullName?: string;
|
|
4269
4339
|
typeContext?: TypeResolutionContext;
|
|
4270
|
-
allAnnotations?: AnnotationMap;
|
|
4271
4340
|
member?: Member;
|
|
4272
|
-
|
|
4273
|
-
declaringClass?: Class<any>;
|
|
4341
|
+
allAnnotations?: AnnotationMap;
|
|
4274
4342
|
}
|
|
4275
4343
|
|
|
4276
4344
|
export interface PropertyMetadata extends Serializable {
|
|
4345
|
+
defaultValue?: string;
|
|
4346
|
+
index?: number;
|
|
4277
4347
|
mergeInfo?: MergeInfo;
|
|
4278
4348
|
valueNulls?: Nulls;
|
|
4279
4349
|
contentNulls?: Nulls;
|
|
4280
4350
|
required?: boolean;
|
|
4281
|
-
defaultValue?: string;
|
|
4282
|
-
index?: number;
|
|
4283
4351
|
description?: string;
|
|
4284
4352
|
}
|
|
4285
4353
|
|
|
@@ -4292,23 +4360,23 @@ export interface TypeBindings extends Serializable {
|
|
|
4292
4360
|
}
|
|
4293
4361
|
|
|
4294
4362
|
export interface ResolvedType {
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4363
|
+
interface?: boolean;
|
|
4364
|
+
primitive?: boolean;
|
|
4365
|
+
final?: boolean;
|
|
4366
|
+
abstract?: boolean;
|
|
4367
|
+
referenceType?: boolean;
|
|
4299
4368
|
throwable?: boolean;
|
|
4300
4369
|
enumType?: boolean;
|
|
4370
|
+
concrete?: boolean;
|
|
4301
4371
|
collectionLikeType?: boolean;
|
|
4302
|
-
|
|
4372
|
+
arrayType?: boolean;
|
|
4303
4373
|
referencedType?: ResolvedType;
|
|
4374
|
+
mapLikeType?: boolean;
|
|
4304
4375
|
parameterSource?: Class<any>;
|
|
4305
|
-
|
|
4376
|
+
containerType?: boolean;
|
|
4306
4377
|
rawClass?: Class<any>;
|
|
4378
|
+
keyType?: ResolvedType;
|
|
4307
4379
|
contentType?: ResolvedType;
|
|
4308
|
-
interface?: boolean;
|
|
4309
|
-
primitive?: boolean;
|
|
4310
|
-
final?: boolean;
|
|
4311
|
-
abstract?: boolean;
|
|
4312
4380
|
}
|
|
4313
4381
|
|
|
4314
4382
|
export interface HttpEntity<T> {
|
|
@@ -4337,10 +4405,15 @@ export interface DslTypesExpression<T> extends Serializable {
|
|
|
4337
4405
|
}
|
|
4338
4406
|
|
|
4339
4407
|
export interface TypeVariable<D> extends Type, AnnotatedElement {
|
|
4408
|
+
name?: string;
|
|
4409
|
+
bounds?: Type[];
|
|
4340
4410
|
genericDeclaration?: D;
|
|
4341
4411
|
annotatedBounds?: AnnotatedType[];
|
|
4342
|
-
|
|
4343
|
-
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
export interface OfField<F> extends TypeDescriptor {
|
|
4415
|
+
array?: boolean;
|
|
4416
|
+
primitive?: boolean;
|
|
4344
4417
|
}
|
|
4345
4418
|
|
|
4346
4419
|
export interface CollectionPathBase<C, E, Q> extends CollectionExpressionBase<C, E>, Path<C> {
|
|
@@ -4424,16 +4497,13 @@ export interface BaseVisitor extends ExpressionVisitor {
|
|
|
4424
4497
|
}
|
|
4425
4498
|
|
|
4426
4499
|
export interface TypeIdResolver {
|
|
4427
|
-
descForKnownTypeIds?: string;
|
|
4428
4500
|
mechanism?: Id;
|
|
4501
|
+
descForKnownTypeIds?: string;
|
|
4429
4502
|
}
|
|
4430
4503
|
|
|
4431
4504
|
export interface TypeResolutionContext {
|
|
4432
4505
|
}
|
|
4433
4506
|
|
|
4434
|
-
export interface AnnotationMap extends Annotations {
|
|
4435
|
-
}
|
|
4436
|
-
|
|
4437
4507
|
export interface Member {
|
|
4438
4508
|
modifiers?: number;
|
|
4439
4509
|
name?: string;
|
|
@@ -4441,12 +4511,15 @@ export interface Member {
|
|
|
4441
4511
|
declaringClass?: Class<any>;
|
|
4442
4512
|
}
|
|
4443
4513
|
|
|
4514
|
+
export interface AnnotationMap extends Annotations {
|
|
4515
|
+
}
|
|
4516
|
+
|
|
4444
4517
|
export interface Annotated {
|
|
4445
|
-
annotated?: AnnotatedElement;
|
|
4446
4518
|
name?: string;
|
|
4447
4519
|
public?: boolean;
|
|
4448
4520
|
type?: JavaType;
|
|
4449
4521
|
rawType?: Class<any>;
|
|
4522
|
+
annotated?: AnnotatedElement;
|
|
4450
4523
|
}
|
|
4451
4524
|
|
|
4452
4525
|
export interface MergeInfo {
|
|
@@ -4455,13 +4528,13 @@ export interface MergeInfo {
|
|
|
4455
4528
|
}
|
|
4456
4529
|
|
|
4457
4530
|
export interface BeanProperty extends Named {
|
|
4531
|
+
type?: JavaType;
|
|
4532
|
+
fullName?: PropertyName;
|
|
4533
|
+
virtual?: boolean;
|
|
4458
4534
|
wrapperName?: PropertyName;
|
|
4535
|
+
required?: boolean;
|
|
4459
4536
|
member?: AnnotatedMember;
|
|
4460
|
-
fullName?: PropertyName;
|
|
4461
|
-
type?: JavaType;
|
|
4462
4537
|
metadata?: PropertyMetadata;
|
|
4463
|
-
required?: boolean;
|
|
4464
|
-
virtual?: boolean;
|
|
4465
4538
|
}
|
|
4466
4539
|
|
|
4467
4540
|
export interface Mergable<E> {
|
|
@@ -4472,8 +4545,11 @@ export interface LiteralExpression<T> extends ComparableExpression<T> {
|
|
|
4472
4545
|
}
|
|
4473
4546
|
|
|
4474
4547
|
export interface AnnotatedType extends AnnotatedElement {
|
|
4475
|
-
annotatedOwnerType?: AnnotatedType;
|
|
4476
4548
|
type?: Type;
|
|
4549
|
+
annotatedOwnerType?: AnnotatedType;
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4552
|
+
export interface TypeDescriptor {
|
|
4477
4553
|
}
|
|
4478
4554
|
|
|
4479
4555
|
export interface EntityPath<T> extends Path<T> {
|
|
@@ -4549,6 +4625,8 @@ export type ActionTableValueType = "BOOLEAN" | "STRING" | "INTEGER" | "DECIMAL"
|
|
|
4549
4625
|
|
|
4550
4626
|
export type LabelValueType = "STRING" | "HTML" | "MIME_TYPE";
|
|
4551
4627
|
|
|
4628
|
+
export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "masked" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
|
|
4629
|
+
|
|
4552
4630
|
export type MethodType = "CREATE" | "UPDATE" | "DELETE";
|
|
4553
4631
|
|
|
4554
4632
|
export type PublishItemType = "CONTEXT_MAPPING" | "ENTITY_TYPE" | "FLOW" | "PAGE_TEMPLATE" | "WORKFLOW_TEMPLATE";
|
|
@@ -4635,8 +4713,6 @@ export type CardinalityStatus = "SATURATED" | "UNSATURATED" | "UNKNOWN";
|
|
|
4635
4713
|
|
|
4636
4714
|
export type ActionItemState = "ENABLED" | "DISABLED" | "REMOVED";
|
|
4637
4715
|
|
|
4638
|
-
export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "masked" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
|
|
4639
|
-
|
|
4640
4716
|
export type RestrictionType = "required" | "requiresDocumentLock" | "allowMultipleFiles";
|
|
4641
4717
|
|
|
4642
4718
|
export type PageMode = "V" | "C" | "E";
|
|
@@ -4665,7 +4741,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
|
|
|
4665
4741
|
|
|
4666
4742
|
export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
|
|
4667
4743
|
|
|
4668
|
-
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3369" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4169" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json" | "authorized_to_reveal_masked_length" | "authorized_to_reveal_masked_should_be_null" | "authorized_to_reveal_masked_should_have_contents" | "authorized_to_reveal_masked_cannot_be_primary_key_field" | "user_group_not_authorized_to_reveal_masked_field" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body";
|
|
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";
|
|
4669
4745
|
|
|
4670
4746
|
export type DataStoreType = "RELATIONAL";
|
|
4671
4747
|
|