@sassoftware/vi-api 1.5.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/alert-reps/package.json +5 -0
- package/component/bindings.d.ts +10 -4
- package/component/index.d.ts +11 -10
- package/component/index.js +1 -1
- package/component/package.json +9 -0
- package/config/config-api.d.ts +20 -2
- package/config/package.json +9 -0
- package/control/control-api.d.ts +25 -15
- package/control/package.json +9 -0
- package/current-user/package.json +9 -0
- package/event/package.json +9 -0
- package/file/package.json +9 -0
- package/http/package.json +9 -0
- package/index.d.ts +2 -2
- package/localization/package.json +9 -0
- package/metadata/metadata-api.d.ts +12 -12
- package/metadata/package.json +9 -0
- package/object/object-api.d.ts +20 -20
- package/object/package.json +9 -0
- package/package.json +2 -1
- package/page-admin/package.json +9 -0
- package/page-admin/page-admin-api.d.ts +2 -2
- package/page-model/package.json +9 -0
- package/page-model/page-model-api.d.ts +92 -1
- package/page-state/package.json +9 -0
- package/page-state/page-state-api.d.ts +1 -1
- package/property/package.json +9 -0
- package/property/property-api.d.ts +6 -6
- package/property/property-api.js +2 -2
- package/reference-data/package.json +9 -0
- package/resource/package.json +9 -0
- package/score-reps/package.json +5 -0
- package/search/client/client-search-api.d.ts +8 -8
- package/search/package.json +9 -0
- package/search/search-api.d.ts +1 -1
- package/sheet/package.json +9 -0
- package/sheet/sheet-api.d.ts +6 -6
- package/svi-datahub/index.d.ts +37 -24
- package/svi-datahub/package.json +5 -0
- package/svi-sand/index.d.ts +31 -24
- package/svi-sand/package.json +5 -0
- package/tab/package.json +9 -0
- package/tab/tab-api.d.ts +1 -1
- package/theme/package.json +9 -0
- package/time-slider/index.d.ts +9 -0
- package/traversal/package.json +9 -0
- package/api-init.service.js +0 -86
- package/component/component-api.service.js +0 -161
- package/config/config-api.service.js +0 -54
- package/current-user/currentUser-api.service.js +0 -49
- package/event/event-api.service.js +0 -32
- package/file/file-api.service.js +0 -24
- package/http/http-api.service.js +0 -64
- package/localization/localization-api.service.js +0 -38
- package/metadata/admin/admin-metadata-api.service.js +0 -30
- package/metadata/metadata-api.service.js +0 -85
- package/object/object-api.service.js +0 -207
- package/page-admin/page-admin-api.service.js +0 -25
- package/page-model/page-model-api.service.js +0 -25
- package/page-state/page-state-api.service.js +0 -70
- package/property/property-api.service.js +0 -34
- package/reference-data/refData.service.js +0 -40
- package/resource/resource-api.service.js +0 -24
- package/search/client/client-search-api.service.js +0 -111
- package/search/search-api.service.js +0 -28
- package/sheet/network-menu-handler.service.js +0 -39
- package/sheet/sheet-api.service.js +0 -140
- package/tab/tab-api.service.js +0 -35
- package/theme/theme-api.service.js +0 -35
- package/traversal/traversal-api.service.js +0 -77
package/svi-datahub/index.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
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-02-14 18:23:36.
|
|
4
4
|
|
|
5
5
|
export interface SecuredApiMeta {
|
|
6
6
|
build?: SecuredBuild;
|
|
7
7
|
apiVersion?: number;
|
|
8
8
|
experimental?: boolean;
|
|
9
|
-
developmentStartYear?: number;
|
|
10
|
-
developmentEndYear?: number;
|
|
11
9
|
applicationVersion?: string;
|
|
12
10
|
serviceId?: string;
|
|
11
|
+
developmentStartYear?: number;
|
|
12
|
+
developmentEndYear?: number;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export interface SecuredBuild {
|
|
16
|
-
timeStamp?: string;
|
|
17
16
|
buildVersion?: string;
|
|
18
17
|
sourceTimeStamp?: string;
|
|
19
18
|
applicationVersion?: string;
|
|
19
|
+
timeStamp?: string;
|
|
20
20
|
sourceId?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -29,9 +29,9 @@ export interface ApiMeta extends Serializable {
|
|
|
29
29
|
build?: Build;
|
|
30
30
|
apiVersion?: number;
|
|
31
31
|
experimental?: boolean;
|
|
32
|
+
serviceId?: string;
|
|
32
33
|
developmentStartYear?: number;
|
|
33
34
|
developmentEndYear?: number;
|
|
34
|
-
serviceId?: string;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export interface ResourceMediaType {
|
|
@@ -408,6 +408,9 @@ export interface SolutionPublishResultDTO {
|
|
|
408
408
|
export interface AttachmentController {
|
|
409
409
|
}
|
|
410
410
|
|
|
411
|
+
export interface CatalogController {
|
|
412
|
+
}
|
|
413
|
+
|
|
411
414
|
export interface CommentController {
|
|
412
415
|
}
|
|
413
416
|
|
|
@@ -489,9 +492,6 @@ export interface ResolvedEntityController {
|
|
|
489
492
|
export interface ResolvedEntityUtilController {
|
|
490
493
|
}
|
|
491
494
|
|
|
492
|
-
export interface StoredObjectRelationshipsController {
|
|
493
|
-
}
|
|
494
|
-
|
|
495
495
|
export interface TransactionDataController {
|
|
496
496
|
}
|
|
497
497
|
|
|
@@ -845,10 +845,10 @@ export interface CoreTransaction extends CoreDataObject {
|
|
|
845
845
|
lineColorFunctionType?: AggregateFunctionType;
|
|
846
846
|
primaryKeyFields?: CoreDataField<any>[];
|
|
847
847
|
heterogeneous?: boolean;
|
|
848
|
+
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
848
849
|
fullHeterogeneous?: boolean;
|
|
849
850
|
toHeterogeneous?: boolean;
|
|
850
851
|
fromHeterogeneous?: boolean;
|
|
851
|
-
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
852
852
|
fromHeterogeneousAndToObjectIsIndexable?: boolean;
|
|
853
853
|
nonHeterogeneousAndBothSidesAreIndexable?: boolean;
|
|
854
854
|
}
|
|
@@ -1917,6 +1917,16 @@ export interface JobFilter {
|
|
|
1917
1917
|
type?: string;
|
|
1918
1918
|
}
|
|
1919
1919
|
|
|
1920
|
+
export interface LinkSummaryDTO {
|
|
1921
|
+
relationshipId?: number;
|
|
1922
|
+
relationshipName?: string;
|
|
1923
|
+
fromEntityTypeName?: string;
|
|
1924
|
+
fromEntityTypeLabel?: string;
|
|
1925
|
+
toEntityTypeName?: string;
|
|
1926
|
+
toEntityTypeLabel?: string;
|
|
1927
|
+
linkCount?: number;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1920
1930
|
export interface LocalizableObjectDTO extends AuditableObjectDTO, InjectableResource {
|
|
1921
1931
|
label?: string;
|
|
1922
1932
|
description?: string;
|
|
@@ -2375,6 +2385,9 @@ export interface PagingOptions {
|
|
|
2375
2385
|
limit?: number;
|
|
2376
2386
|
}
|
|
2377
2387
|
|
|
2388
|
+
export interface PartitionUtil {
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2378
2391
|
export interface QueryResults<T> {
|
|
2379
2392
|
totalResultCount?: number;
|
|
2380
2393
|
items?: T[];
|
|
@@ -2552,11 +2565,11 @@ export interface DataObject extends SolutionAssignedDTO {
|
|
|
2552
2565
|
historyEnabled?: boolean;
|
|
2553
2566
|
createdAtTimeFieldName?: string;
|
|
2554
2567
|
validFromFieldName?: string;
|
|
2568
|
+
systemReserved?: boolean;
|
|
2569
|
+
allowedRedactedFieldGroups?: string[];
|
|
2555
2570
|
validToFieldName?: string;
|
|
2556
2571
|
lastUpdatedAtTimeFieldName?: string;
|
|
2557
2572
|
displayTextFields?: SortableNameReference[];
|
|
2558
|
-
systemReserved?: boolean;
|
|
2559
|
-
allowedRedactedFieldGroups?: string[];
|
|
2560
2573
|
dataStoreName?: string;
|
|
2561
2574
|
dataStoreDefaultSchemaName?: string;
|
|
2562
2575
|
dataStoreAssignedTimeZone?: string;
|
|
@@ -2678,6 +2691,8 @@ export interface Relationship extends DataObject {
|
|
|
2678
2691
|
managed?: boolean;
|
|
2679
2692
|
width?: number;
|
|
2680
2693
|
color?: string;
|
|
2694
|
+
fromObjectLabel?: string;
|
|
2695
|
+
toObjectLabel?: string;
|
|
2681
2696
|
cardinality?: RelationshipCardinality;
|
|
2682
2697
|
previousCardinality?: RelationshipCardinality;
|
|
2683
2698
|
symmetric?: boolean;
|
|
@@ -2685,15 +2700,13 @@ export interface Relationship extends DataObject {
|
|
|
2685
2700
|
reverseLabel?: string;
|
|
2686
2701
|
dashType?: string;
|
|
2687
2702
|
styles?: LinkStyleDTO[];
|
|
2688
|
-
fromObjectName?: string;
|
|
2689
|
-
toObjectName?: string;
|
|
2690
|
-
toObjectLabel?: string;
|
|
2691
|
-
fromObjectLabel?: string;
|
|
2692
2703
|
toObjectTypeNames?: string[];
|
|
2693
2704
|
summaryFields?: SortableNameReference[];
|
|
2694
2705
|
heterogeneousLink?: boolean;
|
|
2695
2706
|
linkFields?: { [index: string]: string }[];
|
|
2696
2707
|
joinTableName?: string;
|
|
2708
|
+
fromObjectName?: string;
|
|
2709
|
+
toObjectName?: string;
|
|
2697
2710
|
type?: RelationshipType;
|
|
2698
2711
|
}
|
|
2699
2712
|
|
|
@@ -2717,22 +2730,22 @@ export interface StoredDataObject extends DataObject {
|
|
|
2717
2730
|
parentName?: string;
|
|
2718
2731
|
scale?: number;
|
|
2719
2732
|
defaultRegularIcon?: Icon;
|
|
2720
|
-
relationshipsFrom?: Relationship[];
|
|
2721
|
-
relationshipsTo?: Relationship[];
|
|
2722
2733
|
nodeColor?: string;
|
|
2723
2734
|
nodeShape?: string;
|
|
2724
2735
|
markerColor?: string;
|
|
2725
2736
|
borderColor?: string;
|
|
2726
2737
|
borderWidth?: number;
|
|
2738
|
+
styles?: EntityStyleDTO[];
|
|
2727
2739
|
attachmentsIndexedForSearch?: boolean;
|
|
2728
2740
|
enableCasDistributedDataLoad?: boolean;
|
|
2741
|
+
relationshipsTo?: Relationship[];
|
|
2729
2742
|
elementGroupRoot?: boolean;
|
|
2730
2743
|
requireSearchBeforeCreate?: boolean;
|
|
2731
2744
|
mobileOfflineEnabled?: boolean;
|
|
2732
2745
|
fileCategories?: FileCategory[];
|
|
2733
|
-
styles?: EntityStyleDTO[];
|
|
2734
2746
|
defaultMapIcon?: Icon;
|
|
2735
2747
|
nodeDecoration?: NodeDecorationDTO;
|
|
2748
|
+
relationshipsFrom?: Relationship[];
|
|
2736
2749
|
type?: DataObjectType;
|
|
2737
2750
|
}
|
|
2738
2751
|
|
|
@@ -3522,8 +3535,8 @@ export interface EnrichedDocumentValidator {
|
|
|
3522
3535
|
}
|
|
3523
3536
|
|
|
3524
3537
|
export interface HtmlEncoder<T> {
|
|
3525
|
-
wrappedRenderer?: HtmlStreamEventReceiver;
|
|
3526
3538
|
wrappedPolicy?: Policy;
|
|
3539
|
+
wrappedRenderer?: HtmlStreamEventReceiver;
|
|
3527
3540
|
}
|
|
3528
3541
|
|
|
3529
3542
|
export interface InputChannel<T> extends Policy {
|
|
@@ -3962,8 +3975,8 @@ export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializ
|
|
|
3962
3975
|
}
|
|
3963
3976
|
|
|
3964
3977
|
export interface JavaType extends ResolvedType, Serializable, Type {
|
|
3965
|
-
keyType?: JavaType;
|
|
3966
3978
|
superClass?: JavaType;
|
|
3979
|
+
keyType?: JavaType;
|
|
3967
3980
|
contentType?: JavaType;
|
|
3968
3981
|
bindings?: TypeBindings;
|
|
3969
3982
|
typeHandler?: any;
|
|
@@ -4133,11 +4146,12 @@ export interface TypeBindings extends Serializable {
|
|
|
4133
4146
|
}
|
|
4134
4147
|
|
|
4135
4148
|
export interface ResolvedType {
|
|
4136
|
-
keyType?: ResolvedType;
|
|
4137
4149
|
rawClass?: Class<any>;
|
|
4150
|
+
keyType?: ResolvedType;
|
|
4138
4151
|
contentType?: ResolvedType;
|
|
4139
4152
|
containerType?: boolean;
|
|
4140
4153
|
arrayType?: boolean;
|
|
4154
|
+
referenceType?: boolean;
|
|
4141
4155
|
concrete?: boolean;
|
|
4142
4156
|
throwable?: boolean;
|
|
4143
4157
|
enumType?: boolean;
|
|
@@ -4145,7 +4159,6 @@ export interface ResolvedType {
|
|
|
4145
4159
|
mapLikeType?: boolean;
|
|
4146
4160
|
referencedType?: ResolvedType;
|
|
4147
4161
|
parameterSource?: Class<any>;
|
|
4148
|
-
referenceType?: boolean;
|
|
4149
4162
|
interface?: boolean;
|
|
4150
4163
|
primitive?: boolean;
|
|
4151
4164
|
abstract?: boolean;
|
|
@@ -4286,8 +4299,8 @@ export interface Annotated {
|
|
|
4286
4299
|
}
|
|
4287
4300
|
|
|
4288
4301
|
export interface TypeIdResolver {
|
|
4289
|
-
mechanism?: Id;
|
|
4290
4302
|
descForKnownTypeIds?: string;
|
|
4303
|
+
mechanism?: Id;
|
|
4291
4304
|
}
|
|
4292
4305
|
|
|
4293
4306
|
export interface MergeInfo {
|
|
@@ -4505,7 +4518,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
|
|
|
4505
4518
|
|
|
4506
4519
|
export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
|
|
4507
4520
|
|
|
4508
|
-
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3369" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4169" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json";
|
|
4521
|
+
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3369" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4169" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json";
|
|
4509
4522
|
|
|
4510
4523
|
export type DataStoreType = "RELATIONAL";
|
|
4511
4524
|
|
package/svi-sand/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
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2023-01-24 10:53:58.
|
|
4
4
|
|
|
5
5
|
export interface ApplicationSetting extends ResponsesErrorResponse {
|
|
6
6
|
name?: string;
|
|
@@ -264,6 +264,10 @@ export interface TypeBucket {
|
|
|
264
264
|
selected?: boolean;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
+
export interface MaskedFieldConfiguration {
|
|
268
|
+
type?: MaskedFieldType;
|
|
269
|
+
}
|
|
270
|
+
|
|
267
271
|
export interface AbstractCompositeFilter extends AbstractFilter {
|
|
268
272
|
type: "and" | "or";
|
|
269
273
|
filters?: AbstractFilterUnion[];
|
|
@@ -297,8 +301,8 @@ export interface FilterVisitor<T> {
|
|
|
297
301
|
export interface MapBoundedBoxFilter extends AbstractFilter {
|
|
298
302
|
type: "box";
|
|
299
303
|
coordinates?: number[][];
|
|
300
|
-
bottomRight?: Coordinate;
|
|
301
304
|
topLeft?: Coordinate;
|
|
305
|
+
bottomRight?: Coordinate;
|
|
302
306
|
}
|
|
303
307
|
|
|
304
308
|
export interface MapBoundedPolygonFilter extends AbstractFilter {
|
|
@@ -377,8 +381,8 @@ export interface Edge extends Endpoint {
|
|
|
377
381
|
endpoints?: EndpointUnion[];
|
|
378
382
|
subtype?: string;
|
|
379
383
|
label?: string;
|
|
380
|
-
validFrom?:
|
|
381
|
-
validTo?:
|
|
384
|
+
validFrom?: string;
|
|
385
|
+
validTo?: string;
|
|
382
386
|
fields?: SummaryFieldValue[];
|
|
383
387
|
style?: RelationshipStyle;
|
|
384
388
|
}
|
|
@@ -422,8 +426,8 @@ export interface Vertex extends Endpoint {
|
|
|
422
426
|
typeLabel?: string;
|
|
423
427
|
label?: string;
|
|
424
428
|
attachmentsCount?: number;
|
|
425
|
-
validFrom?:
|
|
426
|
-
validTo?:
|
|
429
|
+
validFrom?: string;
|
|
430
|
+
validTo?: string;
|
|
427
431
|
style?: EntityStyle;
|
|
428
432
|
}
|
|
429
433
|
|
|
@@ -441,6 +445,7 @@ export interface ChildObjectHighlighting {
|
|
|
441
445
|
id?: string;
|
|
442
446
|
name?: string;
|
|
443
447
|
highlighting?: { [index: string]: any[] };
|
|
448
|
+
maskedFields?: { [index: string]: MaskedFieldConfiguration };
|
|
444
449
|
}
|
|
445
450
|
|
|
446
451
|
export interface ObjectId extends Serializable {
|
|
@@ -681,6 +686,7 @@ export interface HighlightResponse extends ResponsesErrorResponse {
|
|
|
681
686
|
defaultChildEntityLimit?: number;
|
|
682
687
|
fieldHighlighting?: { [index: string]: any[] };
|
|
683
688
|
childEntityHighlighting?: { [index: string]: ChildEntityHighlighting };
|
|
689
|
+
maskedFields?: { [index: string]: MaskedFieldConfiguration };
|
|
684
690
|
}
|
|
685
691
|
|
|
686
692
|
export interface OperationResponse extends OperationRepresentation {
|
|
@@ -757,12 +763,14 @@ export interface SummaryFieldValue {
|
|
|
757
763
|
name?: string;
|
|
758
764
|
type?: FieldType;
|
|
759
765
|
value?: any;
|
|
766
|
+
masked?: MaskedFieldConfiguration;
|
|
760
767
|
}
|
|
761
768
|
|
|
762
769
|
export interface TableColumnHeading {
|
|
763
770
|
field?: string;
|
|
764
771
|
label?: string;
|
|
765
772
|
type?: FieldType;
|
|
773
|
+
masked?: MaskedFieldConfiguration;
|
|
766
774
|
}
|
|
767
775
|
|
|
768
776
|
export interface ClusterSwimLaneEntry extends SwimLaneEntry {
|
|
@@ -779,7 +787,7 @@ export interface ObjectSwimLaneEntry extends SwimLaneEntry {
|
|
|
779
787
|
}
|
|
780
788
|
|
|
781
789
|
export interface SwimLane {
|
|
782
|
-
id?:
|
|
790
|
+
id?: string;
|
|
783
791
|
label?: string;
|
|
784
792
|
description?: string;
|
|
785
793
|
attachmentsCount?: number;
|
|
@@ -789,18 +797,15 @@ export interface SwimLane {
|
|
|
789
797
|
objectType?: string;
|
|
790
798
|
}
|
|
791
799
|
|
|
792
|
-
export interface Id extends ObjectId {
|
|
793
|
-
}
|
|
794
|
-
|
|
795
800
|
export interface SwimLaneEntry {
|
|
796
801
|
entryType: "cluster" | "object";
|
|
797
|
-
group?:
|
|
798
|
-
startTimestamp?:
|
|
799
|
-
endTimestamp?:
|
|
802
|
+
group?: string;
|
|
803
|
+
startTimestamp?: string;
|
|
804
|
+
endTimestamp?: string;
|
|
800
805
|
}
|
|
801
806
|
|
|
802
807
|
export interface TimebarInterval {
|
|
803
|
-
start?:
|
|
808
|
+
start?: string;
|
|
804
809
|
hitCount?: number;
|
|
805
810
|
}
|
|
806
811
|
|
|
@@ -914,8 +919,8 @@ export interface TableVisualizationResponse extends PagedVisualizationResponse {
|
|
|
914
919
|
|
|
915
920
|
export interface TimebarVisualizationRepresentation extends VisualizationRepresentation {
|
|
916
921
|
type: "timebar";
|
|
917
|
-
startTimestamp?:
|
|
918
|
-
endTimestamp?:
|
|
922
|
+
startTimestamp?: string;
|
|
923
|
+
endTimestamp?: string;
|
|
919
924
|
intervalCount?: number;
|
|
920
925
|
geoEventsRequired?: boolean;
|
|
921
926
|
}
|
|
@@ -926,8 +931,8 @@ export interface TimebarVisualizationResponse extends VisualizationResponse {
|
|
|
926
931
|
geoEventsRequired?: boolean;
|
|
927
932
|
hitCount?: number;
|
|
928
933
|
eventCount?: number;
|
|
929
|
-
globalMinTime?:
|
|
930
|
-
globalMaxTime?:
|
|
934
|
+
globalMinTime?: string;
|
|
935
|
+
globalMaxTime?: string;
|
|
931
936
|
interval?: string;
|
|
932
937
|
intervalSize?: number;
|
|
933
938
|
timebarIntervals?: TimebarInterval[];
|
|
@@ -935,8 +940,8 @@ export interface TimebarVisualizationResponse extends VisualizationResponse {
|
|
|
935
940
|
|
|
936
941
|
export interface TimelineVisualizationRepresentation extends PagedVisualizationRepresentation {
|
|
937
942
|
type: "timeline";
|
|
938
|
-
startTimestamp?:
|
|
939
|
-
endTimestamp?:
|
|
943
|
+
startTimestamp?: string;
|
|
944
|
+
endTimestamp?: string;
|
|
940
945
|
intervalCount?: number;
|
|
941
946
|
minimumClusterSize?: number;
|
|
942
947
|
paddingFactor?: number;
|
|
@@ -948,10 +953,10 @@ export interface TimelineVisualizationResponse extends PagedVisualizationRespons
|
|
|
948
953
|
minimumClusterSize?: number;
|
|
949
954
|
paddingFactor?: number;
|
|
950
955
|
eventCount?: number;
|
|
951
|
-
globalMinTime?:
|
|
952
|
-
globalMaxTime?:
|
|
953
|
-
minTime?:
|
|
954
|
-
maxTime?:
|
|
956
|
+
globalMinTime?: string;
|
|
957
|
+
globalMaxTime?: string;
|
|
958
|
+
minTime?: string;
|
|
959
|
+
maxTime?: string;
|
|
955
960
|
interval?: DateTimeInterval;
|
|
956
961
|
swimLanes?: SwimLane[];
|
|
957
962
|
swimLaneEntries?: SwimLaneEntryUnion[];
|
|
@@ -1020,6 +1025,8 @@ export type DateTimeInterval = "oneHundredYear" | "fiftyYear" | "tenYear" | "yea
|
|
|
1020
1025
|
|
|
1021
1026
|
export type FieldType = "boolean" | "date" | "double" | "float" | "geoPoint" | "geoShape" | "integer" | "long" | "nested" | "object" | "text";
|
|
1022
1027
|
|
|
1028
|
+
export type MaskedFieldType = "full" | "partial" | "none";
|
|
1029
|
+
|
|
1023
1030
|
export type TextFieldFeature = "search" | "facet" | "sort" | "html" | "email";
|
|
1024
1031
|
|
|
1025
1032
|
export type MapRelation = "contains" | "disjoint" | "intersects" | "within";
|
package/tab/package.json
ADDED
package/tab/tab-api.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface TabApi {
|
|
|
11
11
|
* @param objectId {string} ID of the object to be opened.
|
|
12
12
|
* @param [suppressNavigation = false] {boolean} Allows the tab to be opened without navigating to it.
|
|
13
13
|
* @param [mode = PageModeEvent.OPEN] {PageModeEvent} Mode to open the tab in.
|
|
14
|
-
* @return A
|
|
14
|
+
* @return A Promise that resolves when the tab is opened.
|
|
15
15
|
*/
|
|
16
16
|
openTab(objectType: string, objectId: string, suppressNavigation?: boolean, mode?: PageModeEvent): Promise<void>;
|
|
17
17
|
/**
|
package/time-slider/index.d.ts
CHANGED
|
@@ -39,3 +39,12 @@ export interface TimeSliderContextMenuHideOptions {
|
|
|
39
39
|
showHistogram?: boolean;
|
|
40
40
|
closeTimeSlider?: boolean;
|
|
41
41
|
}
|
|
42
|
+
export interface MinMaxDates {
|
|
43
|
+
min: Date;
|
|
44
|
+
max: Date;
|
|
45
|
+
}
|
|
46
|
+
export interface TimeSliderRangeChangedEvent {
|
|
47
|
+
start: Date;
|
|
48
|
+
end: Date;
|
|
49
|
+
rangeChangedOutsideTimeSlider: boolean;
|
|
50
|
+
}
|
package/api-init.service.js
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
import { Injectable } from "@angular/core";
|
|
8
|
-
let ApiInitService = class ApiInitService {
|
|
9
|
-
/*
|
|
10
|
-
This loads Angular specific services/functions to the api that won't be downgraded
|
|
11
|
-
*/
|
|
12
|
-
constructor(adminMetadataApiService, componentApiService, configApiService, configurationService, currentUserApiService, clientSearchApiService, eventApiService, fileApiService, httpApiService, localizationApiService, metadataApiService, objectApiService, pageAdminApiService, pageModelApiService, pageStateApiService, propertyApiService, refDataApiService, resourceApiService, searchApiService, sheetApiService, tabApiService, themeApiService, traversalApiService) {
|
|
13
|
-
this.adminMetadataApiService = adminMetadataApiService;
|
|
14
|
-
this.componentApiService = componentApiService;
|
|
15
|
-
this.configApiService = configApiService;
|
|
16
|
-
this.configurationService = configurationService;
|
|
17
|
-
this.currentUserApiService = currentUserApiService;
|
|
18
|
-
this.clientSearchApiService = clientSearchApiService;
|
|
19
|
-
this.eventApiService = eventApiService;
|
|
20
|
-
this.fileApiService = fileApiService;
|
|
21
|
-
this.httpApiService = httpApiService;
|
|
22
|
-
this.localizationApiService = localizationApiService;
|
|
23
|
-
this.metadataApiService = metadataApiService;
|
|
24
|
-
this.objectApiService = objectApiService;
|
|
25
|
-
this.pageAdminApiService = pageAdminApiService;
|
|
26
|
-
this.pageModelApiService = pageModelApiService;
|
|
27
|
-
this.pageStateApiService = pageStateApiService;
|
|
28
|
-
this.propertyApiService = propertyApiService;
|
|
29
|
-
this.refDataApiService = refDataApiService;
|
|
30
|
-
this.resourceApiService = resourceApiService;
|
|
31
|
-
this.searchApiService = searchApiService;
|
|
32
|
-
this.sheetApiService = sheetApiService;
|
|
33
|
-
this.tabApiService = tabApiService;
|
|
34
|
-
this.themeApiService = themeApiService;
|
|
35
|
-
this.traversalApiService = traversalApiService;
|
|
36
|
-
}
|
|
37
|
-
createSviApi() {
|
|
38
|
-
const api = {};
|
|
39
|
-
window.sas = window.sas ?? {};
|
|
40
|
-
window.sas.vi = api;
|
|
41
|
-
this.addCommonApiModules(api);
|
|
42
|
-
if (this.isClientApi(api)) {
|
|
43
|
-
this.addClientApiModules(api);
|
|
44
|
-
}
|
|
45
|
-
else {
|
|
46
|
-
this.addAdminApiModules(api);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
addCommonApiModules(api) {
|
|
50
|
-
api.component = this.componentApiService.getApi();
|
|
51
|
-
api.config = this.configApiService.getApi();
|
|
52
|
-
api.currentUser = this.currentUserApiService.getApi();
|
|
53
|
-
api.event = this.eventApiService.getApi();
|
|
54
|
-
api.file = this.fileApiService.getApi();
|
|
55
|
-
api.http = this.httpApiService.getApi();
|
|
56
|
-
api.localization = this.localizationApiService.getApi();
|
|
57
|
-
api.metadata = this.metadataApiService.getApi();
|
|
58
|
-
api.pageAdmin = this.pageAdminApiService.getApi();
|
|
59
|
-
api.pageModel = this.pageModelApiService.getApi();
|
|
60
|
-
api.pageState = this.pageStateApiService.getApi();
|
|
61
|
-
api.property = this.propertyApiService.getApi();
|
|
62
|
-
api.refData = this.refDataApiService.getApi();
|
|
63
|
-
api.resource = this.resourceApiService.getApi();
|
|
64
|
-
api.search = this.searchApiService.getApi();
|
|
65
|
-
api.theme = this.themeApiService.getApi();
|
|
66
|
-
api.traversal = this.traversalApiService.getApi();
|
|
67
|
-
}
|
|
68
|
-
addClientApiModules(api) {
|
|
69
|
-
api.object = this.objectApiService.getApi();
|
|
70
|
-
api.search = this.clientSearchApiService.getApi();
|
|
71
|
-
api.sheet = this.sheetApiService.getApi();
|
|
72
|
-
api.tab = this.tabApiService.getApi();
|
|
73
|
-
}
|
|
74
|
-
addAdminApiModules(api) {
|
|
75
|
-
api.metadata = this.adminMetadataApiService.getApi();
|
|
76
|
-
}
|
|
77
|
-
isClientApi(api) {
|
|
78
|
-
return !this.configurationService.isAdmin() && !!api;
|
|
79
|
-
}
|
|
80
|
-
};
|
|
81
|
-
ApiInitService = __decorate([
|
|
82
|
-
Injectable({
|
|
83
|
-
providedIn: "root"
|
|
84
|
-
})
|
|
85
|
-
], ApiInitService);
|
|
86
|
-
export { ApiInitService };
|