@sassoftware/vi-api 1.42.0 → 1.46.0
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 +18 -5
- package/alert-reps/package.json +1 -1
- package/component/bindings.d.ts +109 -2
- package/component/bindings.js +7 -1
- package/component/index.d.ts +2 -2
- package/config/config-api.d.ts +21 -16
- package/config/config-api.js +10 -0
- package/config/control-attribute-types.d.ts +168 -0
- package/config/control-attribute-types.js +1 -0
- package/config/index.d.ts +3 -0
- package/config/index.js +3 -0
- package/config/standardPropertyTypes.d.ts +50 -0
- package/config/standardPropertyTypes.js +52 -0
- package/config/status.d.ts +7 -0
- package/config/status.js +8 -0
- package/control/control-api.d.ts +41 -6
- package/control/events.d.ts +1 -1
- package/control/masking-api.d.ts +187 -0
- package/control/masking-api.js +3 -0
- package/control/page.d.ts +1 -1
- package/control/page.js +8 -1
- package/control/restrictions.d.ts +7 -1
- package/current-user/currentUser-api.d.ts +10 -1
- package/current-user/currentUser-api.js +2 -0
- package/elements/bindings.d.ts +25 -0
- package/elements/identity-select.d.ts +274 -0
- package/elements/identity-select.js +24 -0
- package/elements/index.d.ts +24 -5
- package/elements/index.js +23 -4
- package/elements/labelled-control.d.ts +47 -0
- package/elements/labelled-control.js +1 -0
- package/elements/mask-toggle-button.d.ts +37 -0
- package/elements/mask-toggle-button.js +1 -0
- package/event/event-api.d.ts +3 -2
- package/event/event-api.js +3 -2
- package/object/object-api.d.ts +6 -4
- package/package.json +1 -1
- package/page-model/page-model-api.d.ts +1 -1
- package/page-model/page-model-api.js +10 -0
- package/property/property-api.d.ts +2 -15
- package/score-reps/index.d.ts +11 -2
- package/score-reps/package.json +1 -1
- package/svi-datahub/index.d.ts +248 -216
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +44 -8
- package/svi-sand/package.json +1 -1
- package/elements/properties.d.ts +0 -89
- /package/elements/{properties.js → bindings.js} +0 -0
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
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2025-02-05 16:08:26.
|
|
4
4
|
|
|
5
5
|
export interface SecuredApiMeta {
|
|
6
|
-
build?: SecuredBuild;
|
|
7
|
-
apiVersion?: number;
|
|
8
|
-
developmentStartYear?: number;
|
|
9
|
-
serviceId?: string;
|
|
10
6
|
experimental?: boolean;
|
|
7
|
+
developmentStartYear?: number;
|
|
11
8
|
developmentEndYear?: number;
|
|
12
9
|
applicationVersion?: string;
|
|
10
|
+
serviceId?: string;
|
|
11
|
+
build?: SecuredBuild;
|
|
12
|
+
apiVersion?: number;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export interface SecuredBuild {
|
|
16
16
|
buildVersion?: string;
|
|
17
|
+
applicationVersion?: string;
|
|
17
18
|
sourceId?: string;
|
|
18
19
|
sourceTimeStamp?: string;
|
|
19
|
-
applicationVersion?: string;
|
|
20
20
|
timeStamp?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -27,11 +27,11 @@ export interface Api extends Serializable {
|
|
|
27
27
|
|
|
28
28
|
export interface ApiMeta extends Serializable {
|
|
29
29
|
build?: Build;
|
|
30
|
-
apiVersion?: number;
|
|
31
|
-
developmentStartYear?: number;
|
|
32
|
-
serviceId?: string;
|
|
33
30
|
experimental?: boolean;
|
|
31
|
+
developmentStartYear?: number;
|
|
34
32
|
developmentEndYear?: number;
|
|
33
|
+
serviceId?: string;
|
|
34
|
+
apiVersion?: number;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export interface ResourceMediaType {
|
|
@@ -47,11 +47,11 @@ export interface ResourceMediaTypes {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export interface Build extends Serializable {
|
|
50
|
-
timeStamp?: string;
|
|
51
50
|
buildVersion?: string;
|
|
51
|
+
applicationVersion?: string;
|
|
52
52
|
sourceId?: string;
|
|
53
53
|
sourceTimeStamp?: string;
|
|
54
|
-
|
|
54
|
+
timeStamp?: string;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
export interface Count extends Serializable {
|
|
@@ -74,7 +74,7 @@ export interface ErrorResponse extends Serializable {
|
|
|
74
74
|
httpStatusCode?: number;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
export interface RestRepresentationsLink extends Serializable {
|
|
77
|
+
export interface RestRepresentationsLink extends Serializable, Comparable<RestRepresentationsLink> {
|
|
78
78
|
method?: string;
|
|
79
79
|
rel?: string;
|
|
80
80
|
href?: string;
|
|
@@ -236,8 +236,8 @@ export interface ActionTableValue {
|
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
export interface ActionType {
|
|
239
|
-
localizedMessage?: string;
|
|
240
239
|
actionType?: string;
|
|
240
|
+
localizedMessage?: string;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
export interface LabelActionItem extends ActionItem {
|
|
@@ -352,7 +352,7 @@ export interface DeleteFileOperation extends AbstractFileOperation {
|
|
|
352
352
|
id?: string;
|
|
353
353
|
}
|
|
354
354
|
|
|
355
|
-
export interface FileAssociation {
|
|
355
|
+
export interface FileAssociation extends ETaggable {
|
|
356
356
|
version?: number;
|
|
357
357
|
id?: string;
|
|
358
358
|
name?: string;
|
|
@@ -485,6 +485,9 @@ export interface ReferenceListController {
|
|
|
485
485
|
export interface RelationshipsController {
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
+
export interface LinkETaggable extends ETaggable {
|
|
489
|
+
}
|
|
490
|
+
|
|
488
491
|
export interface ResolvedEntityController {
|
|
489
492
|
}
|
|
490
493
|
|
|
@@ -495,15 +498,15 @@ export interface TransactionDataController {
|
|
|
495
498
|
}
|
|
496
499
|
|
|
497
500
|
export interface TransactionMetadataController {
|
|
498
|
-
allTransactions?: TransactionDTO[]
|
|
501
|
+
allTransactions?: ResponseEntity<TransactionDTO[]>;
|
|
499
502
|
}
|
|
500
503
|
|
|
501
504
|
export interface TraversalController {
|
|
502
505
|
}
|
|
503
506
|
|
|
504
507
|
export interface UtilityServicesController {
|
|
505
|
-
defaultLocale?: LocalizedLocale;
|
|
506
508
|
supportedLocales?: LocalizedLocale[];
|
|
509
|
+
defaultLocale?: LocalizedLocale;
|
|
507
510
|
}
|
|
508
511
|
|
|
509
512
|
export interface ActionController {
|
|
@@ -543,7 +546,7 @@ export interface AdminEntityUtilController {
|
|
|
543
546
|
}
|
|
544
547
|
|
|
545
548
|
export interface AdminIconController {
|
|
546
|
-
allIcons?: IconDTO[]
|
|
549
|
+
allIcons?: ResponseEntity<IconDTO[]>;
|
|
547
550
|
}
|
|
548
551
|
|
|
549
552
|
export interface AdminMetadataCacheController {
|
|
@@ -558,10 +561,14 @@ export interface AdminNldStylingRuleController {
|
|
|
558
561
|
export interface AdminPageBuilderController {
|
|
559
562
|
}
|
|
560
563
|
|
|
564
|
+
export interface contextMappingListWrapper extends ETagAndLastModifiedProvider {
|
|
565
|
+
}
|
|
566
|
+
|
|
561
567
|
export interface AdminReferenceListController {
|
|
562
568
|
}
|
|
563
569
|
|
|
564
570
|
export interface AdminRelationshipController {
|
|
571
|
+
allRelationships?: ResponseEntity<RelationshipDTO[]>;
|
|
565
572
|
}
|
|
566
573
|
|
|
567
574
|
export interface AdminRulesCacheController {
|
|
@@ -653,10 +660,12 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
|
|
|
653
660
|
redacted?: boolean;
|
|
654
661
|
useObjectAuthorization?: boolean;
|
|
655
662
|
allowedRedactedFieldGroups?: RedactionRuleEntity[];
|
|
656
|
-
owner?: O;
|
|
657
|
-
constrained?: boolean;
|
|
658
|
-
userGroupSelectionField?: boolean;
|
|
659
663
|
masked?: boolean;
|
|
664
|
+
userGroupSelectionField?: boolean;
|
|
665
|
+
writeOnlyAtCreate?: boolean;
|
|
666
|
+
constrained?: boolean;
|
|
667
|
+
hidden?: boolean;
|
|
668
|
+
owner?: O;
|
|
660
669
|
}
|
|
661
670
|
|
|
662
671
|
export interface CoreDataObject extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity, Serializable {
|
|
@@ -758,16 +767,16 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
|
|
|
758
767
|
width?: number;
|
|
759
768
|
dashType?: string;
|
|
760
769
|
styles?: LinkStyleEntity[];
|
|
761
|
-
readOnly?: boolean;
|
|
762
|
-
qualifiedName?: string;
|
|
763
|
-
link?: boolean;
|
|
764
770
|
heterogeneous?: boolean;
|
|
765
771
|
primaryKeyFields?: CoreRelationshipField[];
|
|
772
|
+
internalHeterogeneous?: boolean;
|
|
766
773
|
attributeFields?: CoreRelationshipField[];
|
|
767
774
|
nonAttributeFieldNames?: string[];
|
|
768
775
|
foreignKeyFieldNames?: string[];
|
|
769
|
-
internalHeterogeneous?: boolean;
|
|
770
776
|
reverseLabel?: string;
|
|
777
|
+
link?: boolean;
|
|
778
|
+
qualifiedName?: string;
|
|
779
|
+
readOnly?: boolean;
|
|
771
780
|
}
|
|
772
781
|
|
|
773
782
|
export interface CoreRelationshipField extends CoreDataField<CoreRelationship> {
|
|
@@ -808,10 +817,10 @@ export interface CoreStoredObject extends CoreDataObjectWithHistory {
|
|
|
808
817
|
additionalLabel?: string;
|
|
809
818
|
publishCode?: PublishCode;
|
|
810
819
|
fieldMap?: { [index: string]: CoreStoredObjectField };
|
|
811
|
-
readOnly?: boolean;
|
|
812
820
|
primaryKeyFields?: CoreStoredObjectField[];
|
|
813
821
|
quotedDeleteTableName?: string;
|
|
814
822
|
urnsequential?: boolean;
|
|
823
|
+
readOnly?: boolean;
|
|
815
824
|
}
|
|
816
825
|
|
|
817
826
|
export interface CoreStoredObjectField extends CoreDataField<CoreStoredObject> {
|
|
@@ -825,6 +834,7 @@ export interface CoreStoredObjectField extends CoreDataField<CoreStoredObject> {
|
|
|
825
834
|
cascadingReferenceDataFilterByListName?: string;
|
|
826
835
|
cascadingReferenceDataFilterByCode?: string;
|
|
827
836
|
cascadingReferenceDataFilterByField?: string;
|
|
837
|
+
primaryKeyUserSelected?: boolean;
|
|
828
838
|
authorizedToRevealMasked?: MaskRevealAuthorizationEntityStoredObject[];
|
|
829
839
|
}
|
|
830
840
|
|
|
@@ -842,7 +852,6 @@ export interface CoreTransaction extends CoreDataObject {
|
|
|
842
852
|
lineWidthFunctionType?: AggregateFunctionType;
|
|
843
853
|
lineColorFieldName?: string;
|
|
844
854
|
lineColorFunctionType?: AggregateFunctionType;
|
|
845
|
-
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
846
855
|
heterogeneous?: boolean;
|
|
847
856
|
primaryKeyFields?: CoreDataField<any>[];
|
|
848
857
|
toHeterogeneous?: boolean;
|
|
@@ -850,6 +859,7 @@ export interface CoreTransaction extends CoreDataObject {
|
|
|
850
859
|
fullHeterogeneous?: boolean;
|
|
851
860
|
fromHeterogeneousAndToObjectIsIndexable?: boolean;
|
|
852
861
|
nonHeterogeneousAndBothSidesAreIndexable?: boolean;
|
|
862
|
+
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
853
863
|
}
|
|
854
864
|
|
|
855
865
|
export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
|
|
@@ -857,7 +867,7 @@ export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
|
|
|
857
867
|
authorizedToRevealMasked?: MaskRevealAuthorizationEntityTransaction[];
|
|
858
868
|
}
|
|
859
869
|
|
|
860
|
-
export interface DataStore extends AuditableObject, Versioned, NamedObject {
|
|
870
|
+
export interface DataStore extends AuditableObject, Versioned, NamedObject, ETagAndLastModifiedProvider {
|
|
861
871
|
type?: DataStoreType;
|
|
862
872
|
schemaName?: string;
|
|
863
873
|
assignedTimeZone?: string;
|
|
@@ -876,6 +886,9 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject {
|
|
|
876
886
|
defaultSchemaName?: string;
|
|
877
887
|
}
|
|
878
888
|
|
|
889
|
+
export interface DatahubPrePersistEventListener extends PersistEventListener {
|
|
890
|
+
}
|
|
891
|
+
|
|
879
892
|
export interface EntityTypeNameAndVersion {
|
|
880
893
|
name?: string;
|
|
881
894
|
id?: number;
|
|
@@ -922,7 +935,7 @@ export interface Identifiable {
|
|
|
922
935
|
id?: number;
|
|
923
936
|
}
|
|
924
937
|
|
|
925
|
-
export interface IdentifiableObject extends Identifiable {
|
|
938
|
+
export interface IdentifiableObject extends Identifiable, HasGeneratedId {
|
|
926
939
|
}
|
|
927
940
|
|
|
928
941
|
export interface InjectableResource {
|
|
@@ -1278,6 +1291,7 @@ export interface QCoreRelationshipField extends EntityPathBase<CoreRelationshipF
|
|
|
1278
1291
|
dataType?: EnumPath<any>;
|
|
1279
1292
|
displayIndex?: NumberPath<number>;
|
|
1280
1293
|
displayInTimeZone?: StringPath;
|
|
1294
|
+
hidden?: BooleanPath;
|
|
1281
1295
|
id?: NumberPath<number>;
|
|
1282
1296
|
indexedForSearch?: BooleanPath;
|
|
1283
1297
|
isMasked?: BooleanPath;
|
|
@@ -1302,6 +1316,7 @@ export interface QCoreRelationshipField extends EntityPathBase<CoreRelationshipF
|
|
|
1302
1316
|
useObjectAuthorization?: BooleanPath;
|
|
1303
1317
|
userSelectionStrategy?: EnumPath<UserSelectionStrategyType>;
|
|
1304
1318
|
version?: NumberPath<number>;
|
|
1319
|
+
writeOnlyAtCreate?: BooleanPath;
|
|
1305
1320
|
}
|
|
1306
1321
|
|
|
1307
1322
|
export interface QCoreStoredObject extends EntityPathBase<CoreStoredObject> {
|
|
@@ -1396,6 +1411,7 @@ export interface QCoreStoredObjectField extends EntityPathBase<CoreStoredObjectF
|
|
|
1396
1411
|
precision?: NumberPath<number>;
|
|
1397
1412
|
primaryKeyField?: BooleanPath;
|
|
1398
1413
|
primaryKeySeqNo?: NumberPath<number>;
|
|
1414
|
+
primaryKeyUserSelected?: BooleanPath;
|
|
1399
1415
|
readOnly?: BooleanPath;
|
|
1400
1416
|
readOnlyCondition?: StringPath;
|
|
1401
1417
|
readOnlyConditionType?: EnumPath<ObjectStateType>;
|
|
@@ -1654,9 +1670,6 @@ export interface RelationshipTypeName {
|
|
|
1654
1670
|
qualifiedName?: string;
|
|
1655
1671
|
}
|
|
1656
1672
|
|
|
1657
|
-
export interface ShortBooleanType extends UserType {
|
|
1658
|
-
}
|
|
1659
|
-
|
|
1660
1673
|
export interface SolutionAssignedEntity {
|
|
1661
1674
|
assignedSolution?: SolutionEntity;
|
|
1662
1675
|
}
|
|
@@ -1792,7 +1805,7 @@ export interface AuditableObjectDTO extends Identifiable {
|
|
|
1792
1805
|
lastUpdatedAt?: Date;
|
|
1793
1806
|
}
|
|
1794
1807
|
|
|
1795
|
-
export interface CascadingReferenceDataDTO extends LocalizableObjectDTO, NamedObject, Comparable<CascadingReferenceDataDTO>, SolutionAssignedDTO {
|
|
1808
|
+
export interface CascadingReferenceDataDTO extends LocalizableObjectDTO, NamedObject, Comparable<CascadingReferenceDataDTO>, SolutionAssignedDTO, ETagAndLastModifiedProvider {
|
|
1796
1809
|
levels?: ReferenceListDTO[];
|
|
1797
1810
|
links?: RestRepresentationsLink[];
|
|
1798
1811
|
version?: number;
|
|
@@ -1895,8 +1908,10 @@ export interface DTOUtil {
|
|
|
1895
1908
|
|
|
1896
1909
|
export interface DataFieldDTO extends LocalizableObjectDTO, DataField, Versioned, NamedObject {
|
|
1897
1910
|
dataType?: string;
|
|
1898
|
-
|
|
1911
|
+
writeOnlyAtCreate?: boolean;
|
|
1899
1912
|
userGroupSelection?: boolean;
|
|
1913
|
+
constrained?: boolean;
|
|
1914
|
+
hidden?: boolean;
|
|
1900
1915
|
}
|
|
1901
1916
|
|
|
1902
1917
|
export interface DataObjectDTO extends LocalizableObjectDTO, DataObject, Versioned, NamedObject {
|
|
@@ -1921,7 +1936,7 @@ export interface DataObjectWithHistoryDTO extends DataObjectDTO {
|
|
|
1921
1936
|
historyManaged?: boolean;
|
|
1922
1937
|
}
|
|
1923
1938
|
|
|
1924
|
-
export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject {
|
|
1939
|
+
export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject, ETaggable {
|
|
1925
1940
|
type?: DataStoreType;
|
|
1926
1941
|
connectionType?: TYPE;
|
|
1927
1942
|
schema?: string;
|
|
@@ -1938,9 +1953,9 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
|
|
|
1938
1953
|
maxActive?: number;
|
|
1939
1954
|
username?: string;
|
|
1940
1955
|
connectionError?: string;
|
|
1956
|
+
defaultSchemaName?: string;
|
|
1941
1957
|
url?: string;
|
|
1942
1958
|
password?: string;
|
|
1943
|
-
defaultSchemaName?: string;
|
|
1944
1959
|
reindexRequired?: boolean;
|
|
1945
1960
|
postedTimestamp?: number;
|
|
1946
1961
|
casDistributedDataLoadSupported?: boolean;
|
|
@@ -2006,7 +2021,7 @@ export interface HistoryInfoDTO {
|
|
|
2006
2021
|
ownerVersion?: string;
|
|
2007
2022
|
}
|
|
2008
2023
|
|
|
2009
|
-
export interface IconDTO extends AuditableObjectDTO, Versioned, Icon, NamedObject, Comparable<IconDTO>, SolutionAssignedDTO {
|
|
2024
|
+
export interface IconDTO extends AuditableObjectDTO, Versioned, Icon, NamedObject, Comparable<IconDTO>, SolutionAssignedDTO, ETagAndLastModifiedProvider {
|
|
2010
2025
|
bytes?: any;
|
|
2011
2026
|
solutionLabel?: string;
|
|
2012
2027
|
}
|
|
@@ -2060,7 +2075,7 @@ export interface ObjectDeletionWarningDTO {
|
|
|
2060
2075
|
name?: string;
|
|
2061
2076
|
}
|
|
2062
2077
|
|
|
2063
|
-
export interface ReferenceListDTO extends LocalizableObjectDTO, NamedObject, Comparable<ReferenceListDTO>, SolutionAssignedDTO {
|
|
2078
|
+
export interface ReferenceListDTO extends LocalizableObjectDTO, NamedObject, Comparable<ReferenceListDTO>, SolutionAssignedDTO, ETagAndLastModifiedProvider {
|
|
2064
2079
|
archived?: boolean;
|
|
2065
2080
|
maxCodeLength?: number;
|
|
2066
2081
|
alphabeticalSort?: boolean;
|
|
@@ -2083,7 +2098,7 @@ export interface RelatedEntityDTO extends NamedObject {
|
|
|
2083
2098
|
relationshipTypes?: string[];
|
|
2084
2099
|
}
|
|
2085
2100
|
|
|
2086
|
-
export interface RelationshipDTO extends DataObjectWithHistoryDTO, Relationship, Comparable<RelationshipDTO
|
|
2101
|
+
export interface RelationshipDTO extends DataObjectWithHistoryDTO, Relationship, Comparable<RelationshipDTO>, ETagAndLastModifiedProvider {
|
|
2087
2102
|
cascadeType?: CascadeType;
|
|
2088
2103
|
sortCriteria?: SortCriteria;
|
|
2089
2104
|
toObjectTypeFieldName?: string;
|
|
@@ -2099,14 +2114,14 @@ export interface RelationshipDTO extends DataObjectWithHistoryDTO, Relationship,
|
|
|
2099
2114
|
export interface RelationshipFieldDTO extends DataFieldDTO, Comparable<RelationshipFieldDTO> {
|
|
2100
2115
|
}
|
|
2101
2116
|
|
|
2102
|
-
export interface SolutionDTO extends LocalizableObjectDTO, NamedObject, Comparable<SolutionDTO
|
|
2117
|
+
export interface SolutionDTO extends LocalizableObjectDTO, NamedObject, Comparable<SolutionDTO>, ETagAndLastModifiedProvider {
|
|
2103
2118
|
archived?: boolean;
|
|
2104
2119
|
resourceVersion?: number;
|
|
2105
2120
|
version?: number;
|
|
2106
2121
|
links?: RestRepresentationsLink[];
|
|
2107
2122
|
}
|
|
2108
2123
|
|
|
2109
|
-
export interface StoredObjectDTO extends DataObjectWithHistoryDTO, StoredDataObject, Comparable<StoredObjectDTO
|
|
2124
|
+
export interface StoredObjectDTO extends DataObjectWithHistoryDTO, StoredDataObject, Comparable<StoredObjectDTO>, ETagAndLastModifiedProvider {
|
|
2110
2125
|
indexedForSearch?: boolean;
|
|
2111
2126
|
reindexRequired?: boolean;
|
|
2112
2127
|
fields?: StoredObjectFieldDTO[];
|
|
@@ -2149,7 +2164,7 @@ export interface TableDTO extends NamedObject {
|
|
|
2149
2164
|
columns?: ColumnDTO[];
|
|
2150
2165
|
}
|
|
2151
2166
|
|
|
2152
|
-
export interface TransactionDTO extends DataObjectDTO, Transaction, Comparable<TransactionDTO
|
|
2167
|
+
export interface TransactionDTO extends DataObjectDTO, Transaction, Comparable<TransactionDTO>, ETagAndLastModifiedProvider {
|
|
2153
2168
|
fromObjJoinCondition?: BooleanExpressionUnion;
|
|
2154
2169
|
toObjJoinCondition?: BooleanExpressionUnion;
|
|
2155
2170
|
fields?: TransactionFieldDTO[];
|
|
@@ -2164,7 +2179,7 @@ export interface ActionConfigurationDTO extends Comparable<ActionConfigurationDT
|
|
|
2164
2179
|
items?: ActionItemConfigurationDTO[];
|
|
2165
2180
|
}
|
|
2166
2181
|
|
|
2167
|
-
export interface ActionItemConfigurationDTO extends Comparable<ActionItemConfigurationDTO
|
|
2182
|
+
export interface ActionItemConfigurationDTO extends Comparable<ActionItemConfigurationDTO>, Versioned, ETaggable {
|
|
2168
2183
|
documentType?: string;
|
|
2169
2184
|
uuid?: string;
|
|
2170
2185
|
attributes?: { [index: string]: any };
|
|
@@ -2379,8 +2394,8 @@ export interface RelationshipTypeCoreMetadataInternalAdapter extends Relationshi
|
|
|
2379
2394
|
}
|
|
2380
2395
|
|
|
2381
2396
|
export interface RelationshipTypeOperations {
|
|
2382
|
-
all?: RelationshipDTO[];
|
|
2383
2397
|
allHeterogeneousRelationshipTypes?: RelationshipDTO[];
|
|
2398
|
+
all?: RelationshipDTO[];
|
|
2384
2399
|
}
|
|
2385
2400
|
|
|
2386
2401
|
export interface RelationshipTypeUtils {
|
|
@@ -2390,8 +2405,8 @@ export interface TransactionTypeCoreMetadataInternalAdapter extends TransactionT
|
|
|
2390
2405
|
}
|
|
2391
2406
|
|
|
2392
2407
|
export interface TransactionTypeOperations {
|
|
2393
|
-
all?: TransactionDTO[];
|
|
2394
2408
|
allHeterogeneousTransactionTypes?: TransactionDTO[];
|
|
2409
|
+
all?: TransactionDTO[];
|
|
2395
2410
|
}
|
|
2396
2411
|
|
|
2397
2412
|
export interface TransactionTypeUtils {
|
|
@@ -2666,8 +2681,8 @@ export interface ChildVersionSummary extends VersionSummary {
|
|
|
2666
2681
|
}
|
|
2667
2682
|
|
|
2668
2683
|
export interface Compound {
|
|
2669
|
-
id?: number;
|
|
2670
2684
|
elements?: Element[];
|
|
2685
|
+
id?: number;
|
|
2671
2686
|
}
|
|
2672
2687
|
|
|
2673
2688
|
export interface ConditionalRule {
|
|
@@ -2676,23 +2691,14 @@ export interface ConditionalRule {
|
|
|
2676
2691
|
}
|
|
2677
2692
|
|
|
2678
2693
|
export interface DataField {
|
|
2679
|
-
length?: number;
|
|
2680
|
-
name?: string;
|
|
2681
|
-
id?: number;
|
|
2682
|
-
readOnly?: boolean;
|
|
2683
|
-
precision?: number;
|
|
2684
|
-
required?: boolean;
|
|
2685
|
-
columnName?: string;
|
|
2686
|
-
scale?: number;
|
|
2687
|
-
label?: string;
|
|
2688
2694
|
dataType?: any;
|
|
2689
2695
|
primaryKeyField?: boolean;
|
|
2690
|
-
allowMultipleSelections?: boolean;
|
|
2691
2696
|
displayIndex?: number;
|
|
2692
2697
|
primaryKeySeqNo?: number;
|
|
2693
2698
|
unique?: boolean;
|
|
2694
2699
|
autoGenerated?: boolean;
|
|
2695
2700
|
systemReserved?: boolean;
|
|
2701
|
+
allowMultipleSelections?: boolean;
|
|
2696
2702
|
userSelectionStrategy?: UserSelectionStrategyType;
|
|
2697
2703
|
constrainingListName?: string;
|
|
2698
2704
|
indexedForSearch?: boolean;
|
|
@@ -2701,33 +2707,43 @@ export interface DataField {
|
|
|
2701
2707
|
showTimeZone?: boolean;
|
|
2702
2708
|
masked?: boolean;
|
|
2703
2709
|
authorizedToRevealMasked?: UserGroupChooserSelection[];
|
|
2710
|
+
primaryKeyUserSelected?: boolean;
|
|
2704
2711
|
redacted?: AbstractRedactionRuleUnion;
|
|
2705
2712
|
requiredConditionally?: ConditionalRule;
|
|
2706
2713
|
readOnlyConditionally?: ConditionalRule;
|
|
2707
2714
|
ownerName?: string;
|
|
2708
2715
|
currentUserIsAuthorizedToReveal?: boolean;
|
|
2716
|
+
required?: boolean;
|
|
2717
|
+
columnName?: string;
|
|
2718
|
+
scale?: number;
|
|
2719
|
+
label?: string;
|
|
2720
|
+
name?: string;
|
|
2721
|
+
length?: number;
|
|
2722
|
+
id?: number;
|
|
2723
|
+
readOnly?: boolean;
|
|
2724
|
+
precision?: number;
|
|
2709
2725
|
description?: string;
|
|
2710
2726
|
}
|
|
2711
2727
|
|
|
2712
2728
|
export interface DataObject extends SolutionAssignedDTO {
|
|
2713
|
-
|
|
2714
|
-
fields?: DataField[];
|
|
2715
|
-
id?: number;
|
|
2716
|
-
readOnly?: boolean;
|
|
2717
|
-
version?: number;
|
|
2718
|
-
tableName?: string;
|
|
2719
|
-
label?: string;
|
|
2729
|
+
historyEnabled?: boolean;
|
|
2720
2730
|
createdAtTimeFieldName?: string;
|
|
2721
2731
|
validFromFieldName?: string;
|
|
2732
|
+
lastUpdatedAtTimeFieldName?: string;
|
|
2722
2733
|
systemReserved?: boolean;
|
|
2723
2734
|
allowedRedactedFieldGroups?: string[];
|
|
2724
2735
|
validToFieldName?: string;
|
|
2725
|
-
lastUpdatedAtTimeFieldName?: string;
|
|
2726
2736
|
displayTextFields?: SortableNameReference[];
|
|
2727
2737
|
dataStoreName?: string;
|
|
2728
2738
|
dataStoreDefaultSchemaName?: string;
|
|
2729
2739
|
dataStoreAssignedTimeZone?: string;
|
|
2730
|
-
|
|
2740
|
+
tableName?: string;
|
|
2741
|
+
label?: string;
|
|
2742
|
+
name?: string;
|
|
2743
|
+
fields?: DataField[];
|
|
2744
|
+
id?: number;
|
|
2745
|
+
readOnly?: boolean;
|
|
2746
|
+
version?: number;
|
|
2731
2747
|
description?: string;
|
|
2732
2748
|
}
|
|
2733
2749
|
|
|
@@ -2745,12 +2761,12 @@ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
|
|
|
2745
2761
|
}
|
|
2746
2762
|
|
|
2747
2763
|
export interface Element {
|
|
2748
|
-
name?: string;
|
|
2749
|
-
id?: number;
|
|
2750
|
-
label?: string;
|
|
2751
2764
|
dataType?: any;
|
|
2752
2765
|
mappedFields?: DataField[];
|
|
2753
2766
|
displayable?: boolean;
|
|
2767
|
+
label?: string;
|
|
2768
|
+
name?: string;
|
|
2769
|
+
id?: number;
|
|
2754
2770
|
}
|
|
2755
2771
|
|
|
2756
2772
|
export interface EnrichedDocument {
|
|
@@ -2772,24 +2788,24 @@ export interface EnrichedDocument {
|
|
|
2772
2788
|
}
|
|
2773
2789
|
|
|
2774
2790
|
export interface Entity extends SolutionAssignedDTO {
|
|
2775
|
-
name?: string;
|
|
2776
|
-
id?: number;
|
|
2777
|
-
scale?: number;
|
|
2778
|
-
label?: string;
|
|
2779
2791
|
defaultRegularIcon?: Icon;
|
|
2780
2792
|
nodeColor?: string;
|
|
2781
2793
|
nodeShape?: string;
|
|
2782
2794
|
markerColor?: string;
|
|
2783
2795
|
borderColor?: string;
|
|
2784
2796
|
borderWidth?: number;
|
|
2785
|
-
compounds?: Compound[];
|
|
2786
2797
|
useForNetworkBuild?: boolean;
|
|
2798
|
+
compounds?: Compound[];
|
|
2787
2799
|
temporalSplitting?: boolean;
|
|
2788
2800
|
displayTextElements?: SortableNameReference[];
|
|
2789
2801
|
linkDisplayTextElements?: SortableNameReference[];
|
|
2790
2802
|
requiresMultipleContributors?: boolean;
|
|
2791
2803
|
publishCode?: PublishCode;
|
|
2792
2804
|
defaultMapIcon?: Icon;
|
|
2805
|
+
scale?: number;
|
|
2806
|
+
label?: string;
|
|
2807
|
+
name?: string;
|
|
2808
|
+
id?: number;
|
|
2793
2809
|
}
|
|
2794
2810
|
|
|
2795
2811
|
export interface Error {
|
|
@@ -2809,10 +2825,10 @@ export interface FieldMaskingConfigDTO {
|
|
|
2809
2825
|
}
|
|
2810
2826
|
|
|
2811
2827
|
export interface Icon {
|
|
2812
|
-
id?: number;
|
|
2813
|
-
type?: IconType;
|
|
2814
2828
|
imageType?: IconImageType;
|
|
2815
2829
|
imageLocation?: string;
|
|
2830
|
+
id?: number;
|
|
2831
|
+
type?: IconType;
|
|
2816
2832
|
}
|
|
2817
2833
|
|
|
2818
2834
|
export interface LinkBulkOperationResult {
|
|
@@ -2844,14 +2860,8 @@ export interface ReferenceListSummary {
|
|
|
2844
2860
|
}
|
|
2845
2861
|
|
|
2846
2862
|
export interface Relationship extends DataObject {
|
|
2847
|
-
type?: RelationshipType;
|
|
2848
|
-
required?: boolean;
|
|
2849
|
-
qualifiedName?: string;
|
|
2850
|
-
managed?: boolean;
|
|
2851
|
-
width?: number;
|
|
2852
2863
|
fromObjectName?: string;
|
|
2853
2864
|
toObjectName?: string;
|
|
2854
|
-
color?: string;
|
|
2855
2865
|
cardinality?: RelationshipCardinality;
|
|
2856
2866
|
previousCardinality?: RelationshipCardinality;
|
|
2857
2867
|
symmetric?: boolean;
|
|
@@ -2862,10 +2872,16 @@ export interface Relationship extends DataObject {
|
|
|
2862
2872
|
fromObjectLabel?: string;
|
|
2863
2873
|
toObjectLabel?: string;
|
|
2864
2874
|
toObjectTypeNames?: string[];
|
|
2865
|
-
summaryFields?: SortableNameReference[];
|
|
2866
2875
|
heterogeneousLink?: boolean;
|
|
2867
2876
|
linkFields?: { [index: string]: string }[];
|
|
2868
2877
|
joinTableName?: string;
|
|
2878
|
+
required?: boolean;
|
|
2879
|
+
qualifiedName?: string;
|
|
2880
|
+
color?: string;
|
|
2881
|
+
managed?: boolean;
|
|
2882
|
+
summaryFields?: SortableNameReference[];
|
|
2883
|
+
width?: number;
|
|
2884
|
+
type?: RelationshipType;
|
|
2869
2885
|
}
|
|
2870
2886
|
|
|
2871
2887
|
export interface SheetCopySelection {
|
|
@@ -2885,10 +2901,7 @@ export interface SortableNameReference {
|
|
|
2885
2901
|
}
|
|
2886
2902
|
|
|
2887
2903
|
export interface StoredDataObject extends DataObject {
|
|
2888
|
-
|
|
2889
|
-
scale?: number;
|
|
2890
|
-
parentName?: string;
|
|
2891
|
-
nodeDecoration?: NodeDecorationDTO;
|
|
2904
|
+
relationshipsFrom?: Relationship[];
|
|
2892
2905
|
defaultRegularIcon?: Icon;
|
|
2893
2906
|
nodeColor?: string;
|
|
2894
2907
|
nodeShape?: string;
|
|
@@ -2904,7 +2917,10 @@ export interface StoredDataObject extends DataObject {
|
|
|
2904
2917
|
mobileOfflineEnabled?: boolean;
|
|
2905
2918
|
styles?: EntityStyleDTO[];
|
|
2906
2919
|
defaultMapIcon?: Icon;
|
|
2907
|
-
|
|
2920
|
+
nodeDecoration?: NodeDecorationDTO;
|
|
2921
|
+
scale?: number;
|
|
2922
|
+
parentName?: string;
|
|
2923
|
+
type?: DataObjectType;
|
|
2908
2924
|
}
|
|
2909
2925
|
|
|
2910
2926
|
export interface Transaction extends DataObject {
|
|
@@ -2975,11 +2991,11 @@ export interface EntityImpl extends Entity {
|
|
|
2975
2991
|
}
|
|
2976
2992
|
|
|
2977
2993
|
export interface FileCategory {
|
|
2978
|
-
name?: string;
|
|
2979
|
-
displayName?: string;
|
|
2980
2994
|
required?: boolean;
|
|
2981
2995
|
allowMultiple?: boolean;
|
|
2982
2996
|
documentLockRequired?: boolean;
|
|
2997
|
+
name?: string;
|
|
2998
|
+
displayName?: string;
|
|
2983
2999
|
}
|
|
2984
3000
|
|
|
2985
3001
|
export interface FileCategoryImpl extends FileCategory {
|
|
@@ -3059,10 +3075,11 @@ export interface TemplateResourceSummary extends ResourceSummary {
|
|
|
3059
3075
|
export interface TransactionImpl extends DataObjectImpl, Transaction {
|
|
3060
3076
|
}
|
|
3061
3077
|
|
|
3062
|
-
export interface Traversal extends SolutionAssignedDTO {
|
|
3078
|
+
export interface Traversal extends SolutionAssignedDTO, ETagAndLastModifiedProvider {
|
|
3063
3079
|
id?: number;
|
|
3064
3080
|
uuid?: string;
|
|
3065
3081
|
name?: string;
|
|
3082
|
+
lastUpdatedAt?: Date;
|
|
3066
3083
|
traversalDefinition?: { [index: string]: any };
|
|
3067
3084
|
solutionLabel?: string;
|
|
3068
3085
|
}
|
|
@@ -3070,7 +3087,7 @@ export interface Traversal extends SolutionAssignedDTO {
|
|
|
3070
3087
|
export interface Versions {
|
|
3071
3088
|
}
|
|
3072
3089
|
|
|
3073
|
-
export interface Comment {
|
|
3090
|
+
export interface Comment extends ETagAndLastModifiedProvider {
|
|
3074
3091
|
id?: number;
|
|
3075
3092
|
category?: string;
|
|
3076
3093
|
author?: CommentUser;
|
|
@@ -3092,9 +3109,9 @@ export interface CommentUser {
|
|
|
3092
3109
|
|
|
3093
3110
|
export interface AbstractFieldConditionMetadata<Y, T> {
|
|
3094
3111
|
cycleDetector?: CycleDetector;
|
|
3095
|
-
owner?: Y;
|
|
3096
3112
|
ownerName?: string;
|
|
3097
3113
|
parentObjectName?: string;
|
|
3114
|
+
owner?: Y;
|
|
3098
3115
|
}
|
|
3099
3116
|
|
|
3100
3117
|
export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
|
|
@@ -3108,7 +3125,7 @@ export interface ConditionAssociationDTO {
|
|
|
3108
3125
|
association?: string;
|
|
3109
3126
|
}
|
|
3110
3127
|
|
|
3111
|
-
export interface ConditionDTO extends Comparable<ConditionDTO>, ImplIdentifiable<string
|
|
3128
|
+
export interface ConditionDTO extends Comparable<ConditionDTO>, ImplIdentifiable<string>, ETaggable {
|
|
3112
3129
|
id?: string;
|
|
3113
3130
|
version?: number;
|
|
3114
3131
|
name?: string;
|
|
@@ -3184,8 +3201,8 @@ export interface PresenceComparatorSerializer extends JsonSerializer<PresenceCom
|
|
|
3184
3201
|
}
|
|
3185
3202
|
|
|
3186
3203
|
export interface AbstractCondition<T> extends Serializable {
|
|
3187
|
-
type?: string;
|
|
3188
3204
|
parameters?: T[];
|
|
3205
|
+
type?: string;
|
|
3189
3206
|
}
|
|
3190
3207
|
|
|
3191
3208
|
export interface AbstractFieldCondition<T> extends AbstractCondition<T> {
|
|
@@ -3226,11 +3243,12 @@ export interface ReferencedCondition extends AbstractCondition<string> {
|
|
|
3226
3243
|
parameters?: string[];
|
|
3227
3244
|
}
|
|
3228
3245
|
|
|
3229
|
-
export interface ContextMapping extends ImplIdentifiable<number>, ValidatableContextMapping {
|
|
3246
|
+
export interface ContextMapping extends ImplIdentifiable<number>, ValidatableContextMapping, ETaggable {
|
|
3230
3247
|
id?: number;
|
|
3231
3248
|
conditions?: QueryUnion;
|
|
3232
3249
|
templateId?: number;
|
|
3233
3250
|
mode?: PageMode;
|
|
3251
|
+
version?: number;
|
|
3234
3252
|
clientApplication?: string;
|
|
3235
3253
|
publishCode?: PublishCode;
|
|
3236
3254
|
solutionLabel?: string;
|
|
@@ -3255,13 +3273,13 @@ export interface EventMetadata {
|
|
|
3255
3273
|
}
|
|
3256
3274
|
|
|
3257
3275
|
export interface ValidatableContextMapping extends SolutionAssignedDTO {
|
|
3258
|
-
tag?: string;
|
|
3259
3276
|
docType?: string;
|
|
3260
3277
|
uuid?: string;
|
|
3261
3278
|
toolbarEnabled?: boolean;
|
|
3262
3279
|
evaluateOrder?: number;
|
|
3263
3280
|
fallbackToEvent?: string;
|
|
3264
3281
|
templateId?: any;
|
|
3282
|
+
tag?: string;
|
|
3265
3283
|
event?: string;
|
|
3266
3284
|
}
|
|
3267
3285
|
|
|
@@ -3274,7 +3292,6 @@ export interface Control extends ControlMetadata {
|
|
|
3274
3292
|
propertiesTitleResource?: string;
|
|
3275
3293
|
directiveTemplate?: string;
|
|
3276
3294
|
directive?: string;
|
|
3277
|
-
version?: number;
|
|
3278
3295
|
}
|
|
3279
3296
|
|
|
3280
3297
|
export interface ControlCategory {
|
|
@@ -3295,6 +3312,7 @@ export interface ControlMetadata extends SolutionAssignedDTO {
|
|
|
3295
3312
|
controlAttributes?: { [index: string]: any };
|
|
3296
3313
|
customControl?: boolean;
|
|
3297
3314
|
solutionLabel?: string;
|
|
3315
|
+
version?: number;
|
|
3298
3316
|
requiredCapabilities?: string[];
|
|
3299
3317
|
}
|
|
3300
3318
|
|
|
@@ -3329,7 +3347,7 @@ export interface BulkOperationsOutcome<T> {
|
|
|
3329
3347
|
affectedDocumentTypes?: string[];
|
|
3330
3348
|
}
|
|
3331
3349
|
|
|
3332
|
-
export interface PageAction extends Comparable<PageAction>, SolutionAssignedDTO {
|
|
3350
|
+
export interface PageAction extends Comparable<PageAction>, SolutionAssignedDTO, ETaggable {
|
|
3333
3351
|
actionName?: string;
|
|
3334
3352
|
controlName?: string;
|
|
3335
3353
|
displayName?: ResourcedString;
|
|
@@ -3344,7 +3362,7 @@ export interface PageActionItem {
|
|
|
3344
3362
|
attrs?: ActionItemDetails;
|
|
3345
3363
|
}
|
|
3346
3364
|
|
|
3347
|
-
export interface ActionItemConfig extends ImplIdentifiable<number
|
|
3365
|
+
export interface ActionItemConfig extends ImplIdentifiable<number>, ETaggable {
|
|
3348
3366
|
id?: number;
|
|
3349
3367
|
uuid?: string;
|
|
3350
3368
|
actionName?: string;
|
|
@@ -3353,6 +3371,7 @@ export interface ActionItemConfig extends ImplIdentifiable<number> {
|
|
|
3353
3371
|
resources?: { [index: string]: any };
|
|
3354
3372
|
conditions?: QueryUnion;
|
|
3355
3373
|
order?: number;
|
|
3374
|
+
version?: number;
|
|
3356
3375
|
usedFields?: string[];
|
|
3357
3376
|
usedGroups?: string[];
|
|
3358
3377
|
}
|
|
@@ -3499,8 +3518,8 @@ export interface RelationshipId {
|
|
|
3499
3518
|
relationshipName?: string;
|
|
3500
3519
|
fromObjectTypeName?: string;
|
|
3501
3520
|
toObjectTypeName?: string;
|
|
3502
|
-
id?: string;
|
|
3503
3521
|
relationshipQName?: string;
|
|
3522
|
+
id?: string;
|
|
3504
3523
|
}
|
|
3505
3524
|
|
|
3506
3525
|
export interface RelationshipIdBuilder {
|
|
@@ -3602,7 +3621,7 @@ export interface TextCell extends Cell {
|
|
|
3602
3621
|
contents?: string;
|
|
3603
3622
|
}
|
|
3604
3623
|
|
|
3605
|
-
export interface ActiveHomepage {
|
|
3624
|
+
export interface ActiveHomepage extends ETagAndLastModifiedProvider {
|
|
3606
3625
|
id?: number;
|
|
3607
3626
|
clientApplication?: string;
|
|
3608
3627
|
templateUUID?: string;
|
|
@@ -3625,9 +3644,10 @@ export interface LinkedTemplate {
|
|
|
3625
3644
|
traversal?: { [index: string]: any };
|
|
3626
3645
|
}
|
|
3627
3646
|
|
|
3628
|
-
export interface Template extends SolutionAssignedDTO {
|
|
3647
|
+
export interface Template extends SolutionAssignedDTO, ETagAndLastModifiedProvider {
|
|
3629
3648
|
id?: number;
|
|
3630
3649
|
uuid?: string;
|
|
3650
|
+
lastUpdatedAt?: Date;
|
|
3631
3651
|
name?: string;
|
|
3632
3652
|
template?: { [index: string]: any };
|
|
3633
3653
|
metadata?: TemplateMetadata;
|
|
@@ -3683,8 +3703,7 @@ export interface TemplateType extends Comparable<TemplateType> {
|
|
|
3683
3703
|
label?: string;
|
|
3684
3704
|
}
|
|
3685
3705
|
|
|
3686
|
-
export interface
|
|
3687
|
-
version?: number;
|
|
3706
|
+
export interface JobV1 {
|
|
3688
3707
|
id?: string;
|
|
3689
3708
|
name?: string;
|
|
3690
3709
|
description?: string;
|
|
@@ -3692,36 +3711,33 @@ export interface Job {
|
|
|
3692
3711
|
tags?: string[];
|
|
3693
3712
|
status?: Status;
|
|
3694
3713
|
startedBy?: string;
|
|
3695
|
-
|
|
3696
|
-
|
|
3714
|
+
startedTimeStamp?: Date;
|
|
3715
|
+
endedTimeStamp?: Date;
|
|
3697
3716
|
message?: string;
|
|
3698
|
-
tasks?:
|
|
3717
|
+
tasks?: TaskV1[];
|
|
3699
3718
|
links?: RestRepresentationsLink[];
|
|
3719
|
+
version?: number;
|
|
3700
3720
|
}
|
|
3701
3721
|
|
|
3702
|
-
export interface
|
|
3703
|
-
startedTimeStamp?: Date;
|
|
3704
|
-
endedTimeStamp?: Date;
|
|
3722
|
+
export interface JobV1Builder {
|
|
3705
3723
|
}
|
|
3706
3724
|
|
|
3707
|
-
export interface
|
|
3708
|
-
version?: number;
|
|
3725
|
+
export interface TaskV1 {
|
|
3709
3726
|
parent?: string;
|
|
3710
3727
|
id?: string;
|
|
3711
3728
|
name?: string;
|
|
3712
3729
|
description?: string;
|
|
3713
3730
|
parameters?: { [index: string]: any };
|
|
3714
3731
|
status?: Status;
|
|
3715
|
-
|
|
3716
|
-
|
|
3732
|
+
startedTimeStamp?: Date;
|
|
3733
|
+
endedTimeStamp?: Date;
|
|
3717
3734
|
message?: string;
|
|
3718
|
-
subTasks?:
|
|
3735
|
+
subTasks?: TaskV1[];
|
|
3719
3736
|
links?: RestRepresentationsLink[];
|
|
3737
|
+
version?: number;
|
|
3720
3738
|
}
|
|
3721
3739
|
|
|
3722
|
-
export interface
|
|
3723
|
-
startedTimeStamp?: Date;
|
|
3724
|
-
endedTimeStamp?: Date;
|
|
3740
|
+
export interface TaskV1Builder {
|
|
3725
3741
|
}
|
|
3726
3742
|
|
|
3727
3743
|
export interface CreatedEvent extends JobEvent {
|
|
@@ -3730,6 +3746,12 @@ export interface CreatedEvent extends JobEvent {
|
|
|
3730
3746
|
parameters?: { [index: string]: any };
|
|
3731
3747
|
}
|
|
3732
3748
|
|
|
3749
|
+
export interface EventSourceConfiguration {
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
export interface EventSubjectGenerator {
|
|
3753
|
+
}
|
|
3754
|
+
|
|
3733
3755
|
export interface JobCreatedEvent extends CreatedEvent {
|
|
3734
3756
|
tags?: string[];
|
|
3735
3757
|
startedBy?: string;
|
|
@@ -3742,6 +3764,7 @@ export interface JobEvent extends TypedPayload {
|
|
|
3742
3764
|
status?: Status;
|
|
3743
3765
|
startedAt?: Date;
|
|
3744
3766
|
links?: RestRepresentationsLink[];
|
|
3767
|
+
eventAction?: string;
|
|
3745
3768
|
eventTopic?: string;
|
|
3746
3769
|
eventSubject?: string;
|
|
3747
3770
|
job?: boolean;
|
|
@@ -3813,24 +3836,6 @@ export interface RecordLevelAccessResponse {
|
|
|
3813
3836
|
export interface Serializable {
|
|
3814
3837
|
}
|
|
3815
3838
|
|
|
3816
|
-
export interface JavaType extends ResolvedType, Serializable, Type {
|
|
3817
|
-
interfaces?: JavaType[];
|
|
3818
|
-
genericSignature?: string;
|
|
3819
|
-
superClass?: JavaType;
|
|
3820
|
-
keyType?: JavaType;
|
|
3821
|
-
javaLangObject?: boolean;
|
|
3822
|
-
valueHandler?: any;
|
|
3823
|
-
typeHandler?: any;
|
|
3824
|
-
referencedType?: JavaType;
|
|
3825
|
-
recordType?: boolean;
|
|
3826
|
-
enumImplType?: boolean;
|
|
3827
|
-
contentValueHandler?: any;
|
|
3828
|
-
contentTypeHandler?: any;
|
|
3829
|
-
erasedSignature?: string;
|
|
3830
|
-
contentType?: JavaType;
|
|
3831
|
-
bindings?: TypeBindings;
|
|
3832
|
-
}
|
|
3833
|
-
|
|
3834
3839
|
export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement, OfField<Class<any>>, Constable {
|
|
3835
3840
|
}
|
|
3836
3841
|
|
|
@@ -3843,14 +3848,32 @@ export interface ValueInstantiator {
|
|
|
3843
3848
|
withArgsCreator?: AnnotatedWithParams;
|
|
3844
3849
|
}
|
|
3845
3850
|
|
|
3851
|
+
export interface JavaType extends ResolvedType, Serializable, Type {
|
|
3852
|
+
recordType?: boolean;
|
|
3853
|
+
typeHandler?: any;
|
|
3854
|
+
valueHandler?: any;
|
|
3855
|
+
enumImplType?: boolean;
|
|
3856
|
+
referencedType?: JavaType;
|
|
3857
|
+
contentValueHandler?: any;
|
|
3858
|
+
contentTypeHandler?: any;
|
|
3859
|
+
erasedSignature?: string;
|
|
3860
|
+
superClass?: JavaType;
|
|
3861
|
+
javaLangObject?: boolean;
|
|
3862
|
+
keyType?: JavaType;
|
|
3863
|
+
interfaces?: JavaType[];
|
|
3864
|
+
genericSignature?: string;
|
|
3865
|
+
bindings?: TypeBindings;
|
|
3866
|
+
contentType?: JavaType;
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3846
3869
|
export interface JsonDeserializer<T> extends NullValueProvider {
|
|
3847
|
-
cachable?: boolean;
|
|
3848
3870
|
emptyValue?: any;
|
|
3849
3871
|
nullValue?: T;
|
|
3850
3872
|
emptyAccessPattern?: AccessPattern;
|
|
3851
3873
|
delegatee?: JsonDeserializer<any>;
|
|
3852
|
-
knownPropertyNames?: any[];
|
|
3853
3874
|
objectIdReader?: ObjectIdReader;
|
|
3875
|
+
cachable?: boolean;
|
|
3876
|
+
knownPropertyNames?: any[];
|
|
3854
3877
|
}
|
|
3855
3878
|
|
|
3856
3879
|
export interface ObjectIdReader extends Serializable {
|
|
@@ -3863,8 +3886,8 @@ export interface ObjectIdReader extends Serializable {
|
|
|
3863
3886
|
}
|
|
3864
3887
|
|
|
3865
3888
|
export interface JsonSerializer<T> extends JsonFormatVisitable {
|
|
3866
|
-
delegatee?: JsonSerializer<any>;
|
|
3867
3889
|
unwrappingSerializer?: boolean;
|
|
3890
|
+
delegatee?: JsonSerializer<any>;
|
|
3868
3891
|
}
|
|
3869
3892
|
|
|
3870
3893
|
export interface HandlerExceptionResolver {
|
|
@@ -3874,17 +3897,17 @@ export interface Ordered {
|
|
|
3874
3897
|
order?: number;
|
|
3875
3898
|
}
|
|
3876
3899
|
|
|
3900
|
+
export interface ResponseEntity<T> extends HttpEntity<T> {
|
|
3901
|
+
statusCodeValue?: number;
|
|
3902
|
+
statusCode?: HttpStatusCode;
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3877
3905
|
export interface LocalizedLocale {
|
|
3878
3906
|
localeCd?: string;
|
|
3879
3907
|
label?: string;
|
|
3880
3908
|
default?: boolean;
|
|
3881
3909
|
}
|
|
3882
3910
|
|
|
3883
|
-
export interface ResponseEntity<T> extends HttpEntity<T> {
|
|
3884
|
-
statusCode?: HttpStatus;
|
|
3885
|
-
statusCodeValue?: number;
|
|
3886
|
-
}
|
|
3887
|
-
|
|
3888
3911
|
export interface Throwable extends Serializable {
|
|
3889
3912
|
cause?: Throwable;
|
|
3890
3913
|
stackTrace?: StackTraceElement[];
|
|
@@ -3933,6 +3956,13 @@ export interface EntityStyleEntity extends AbstractStyleEntity {
|
|
|
3933
3956
|
indicatorIcon?: string;
|
|
3934
3957
|
}
|
|
3935
3958
|
|
|
3959
|
+
export interface PersistEventListener {
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
export interface HasGeneratedId {
|
|
3963
|
+
id?: number;
|
|
3964
|
+
}
|
|
3965
|
+
|
|
3936
3966
|
export interface Locale extends Cloneable, Serializable {
|
|
3937
3967
|
}
|
|
3938
3968
|
|
|
@@ -3945,17 +3975,17 @@ export interface StringPath extends DslTypesDslStringExpression, Path<string> {
|
|
|
3945
3975
|
export interface NumberPath<T> extends NumberExpression<T>, Path<T> {
|
|
3946
3976
|
}
|
|
3947
3977
|
|
|
3948
|
-
export interface Path<T> extends DslTypesExpression<T> {
|
|
3949
|
-
root?: Path<any>;
|
|
3950
|
-
annotatedElement?: AnnotatedElement;
|
|
3951
|
-
metadata?: PathMetadata;
|
|
3952
|
-
}
|
|
3953
|
-
|
|
3954
3978
|
export interface AnnotatedElement {
|
|
3955
3979
|
annotations?: Annotation[];
|
|
3956
3980
|
declaredAnnotations?: Annotation[];
|
|
3957
3981
|
}
|
|
3958
3982
|
|
|
3983
|
+
export interface Path<T> extends DslTypesExpression<T> {
|
|
3984
|
+
annotatedElement?: AnnotatedElement;
|
|
3985
|
+
root?: Path<any>;
|
|
3986
|
+
metadata?: PathMetadata;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3959
3989
|
export interface PathMetadata extends Serializable {
|
|
3960
3990
|
element?: any;
|
|
3961
3991
|
parent?: Path<any>;
|
|
@@ -4018,10 +4048,6 @@ export interface MapPath<K, V, E> extends MapExpressionBase<K, V, E>, Path<{ [in
|
|
|
4018
4048
|
valueType?: Class<V>;
|
|
4019
4049
|
}
|
|
4020
4050
|
|
|
4021
|
-
export interface UserType {
|
|
4022
|
-
mutable?: boolean;
|
|
4023
|
-
}
|
|
4024
|
-
|
|
4025
4051
|
export interface ConfigTransportObject {
|
|
4026
4052
|
handlerName?: string;
|
|
4027
4053
|
schemaVersion?: string;
|
|
@@ -4040,49 +4066,52 @@ export interface KeyDeserializer {
|
|
|
4040
4066
|
}
|
|
4041
4067
|
|
|
4042
4068
|
export interface TypedPayload {
|
|
4043
|
-
eventType?: string;
|
|
4044
4069
|
payloadType?: string;
|
|
4070
|
+
eventType?: string;
|
|
4045
4071
|
}
|
|
4046
4072
|
|
|
4047
|
-
export interface
|
|
4048
|
-
empty?: boolean;
|
|
4049
|
-
typeParameters?: JavaType[];
|
|
4073
|
+
export interface Comparable<T> {
|
|
4050
4074
|
}
|
|
4051
4075
|
|
|
4052
|
-
export interface
|
|
4053
|
-
|
|
4054
|
-
primitive?: boolean;
|
|
4055
|
-
final?: boolean;
|
|
4056
|
-
abstract?: boolean;
|
|
4057
|
-
referenceType?: boolean;
|
|
4058
|
-
rawClass?: Class<any>;
|
|
4059
|
-
keyType?: ResolvedType;
|
|
4060
|
-
containerType?: boolean;
|
|
4061
|
-
throwable?: boolean;
|
|
4062
|
-
enumType?: boolean;
|
|
4063
|
-
concrete?: boolean;
|
|
4064
|
-
collectionLikeType?: boolean;
|
|
4065
|
-
arrayType?: boolean;
|
|
4066
|
-
referencedType?: ResolvedType;
|
|
4067
|
-
mapLikeType?: boolean;
|
|
4068
|
-
parameterSource?: Class<any>;
|
|
4069
|
-
contentType?: ResolvedType;
|
|
4076
|
+
export interface GenericDeclaration extends AnnotatedElement {
|
|
4077
|
+
typeParameters?: TypeVariable<any>[];
|
|
4070
4078
|
}
|
|
4071
4079
|
|
|
4072
4080
|
export interface Type {
|
|
4073
4081
|
typeName?: string;
|
|
4074
4082
|
}
|
|
4075
4083
|
|
|
4076
|
-
export interface GenericDeclaration extends AnnotatedElement {
|
|
4077
|
-
typeParameters?: TypeVariable<any>[];
|
|
4078
|
-
}
|
|
4079
|
-
|
|
4080
4084
|
export interface Constable {
|
|
4081
4085
|
}
|
|
4082
4086
|
|
|
4083
4087
|
export interface AnnotatedWithParams extends AnnotatedMember {
|
|
4084
|
-
parameterCount?: number;
|
|
4085
4088
|
annotationCount?: number;
|
|
4089
|
+
parameterCount?: number;
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
export interface TypeBindings extends Serializable {
|
|
4093
|
+
empty?: boolean;
|
|
4094
|
+
typeParameters?: JavaType[];
|
|
4095
|
+
}
|
|
4096
|
+
|
|
4097
|
+
export interface ResolvedType {
|
|
4098
|
+
containerType?: boolean;
|
|
4099
|
+
arrayType?: boolean;
|
|
4100
|
+
concrete?: boolean;
|
|
4101
|
+
throwable?: boolean;
|
|
4102
|
+
enumType?: boolean;
|
|
4103
|
+
collectionLikeType?: boolean;
|
|
4104
|
+
mapLikeType?: boolean;
|
|
4105
|
+
referencedType?: ResolvedType;
|
|
4106
|
+
parameterSource?: Class<any>;
|
|
4107
|
+
rawClass?: Class<any>;
|
|
4108
|
+
keyType?: ResolvedType;
|
|
4109
|
+
interface?: boolean;
|
|
4110
|
+
primitive?: boolean;
|
|
4111
|
+
final?: boolean;
|
|
4112
|
+
abstract?: boolean;
|
|
4113
|
+
referenceType?: boolean;
|
|
4114
|
+
contentType?: ResolvedType;
|
|
4086
4115
|
}
|
|
4087
4116
|
|
|
4088
4117
|
export interface NullValueProvider {
|
|
@@ -4090,9 +4119,9 @@ export interface NullValueProvider {
|
|
|
4090
4119
|
}
|
|
4091
4120
|
|
|
4092
4121
|
export interface PropertyName extends Serializable {
|
|
4122
|
+
namespace?: string;
|
|
4093
4123
|
empty?: boolean;
|
|
4094
4124
|
simpleName?: string;
|
|
4095
|
-
namespace?: string;
|
|
4096
4125
|
}
|
|
4097
4126
|
|
|
4098
4127
|
export interface ObjectIdGenerator<T> extends Serializable {
|
|
@@ -4103,21 +4132,21 @@ export interface ObjectIdResolver {
|
|
|
4103
4132
|
}
|
|
4104
4133
|
|
|
4105
4134
|
export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
|
|
4106
|
-
objectIdInfo?: ObjectIdInfo;
|
|
4107
4135
|
valueDeserializer?: JsonDeserializer<any>;
|
|
4136
|
+
objectIdInfo?: ObjectIdInfo;
|
|
4108
4137
|
managedReferenceName?: string;
|
|
4138
|
+
ignorable?: boolean;
|
|
4109
4139
|
valueTypeDeserializer?: TypeDeserializer;
|
|
4110
4140
|
nullValueProvider?: NullValueProvider;
|
|
4111
4141
|
propertyIndex?: number;
|
|
4112
4142
|
creatorIndex?: number;
|
|
4113
4143
|
injectableValueId?: any;
|
|
4114
4144
|
injectionOnly?: boolean;
|
|
4115
|
-
ignorable?: boolean;
|
|
4116
4145
|
}
|
|
4117
4146
|
|
|
4118
4147
|
export interface StdDeserializer<T> extends JsonDeserializer<T>, Serializable, Gettable {
|
|
4119
|
-
valueType?: JavaType;
|
|
4120
4148
|
valueClass?: Class<any>;
|
|
4149
|
+
valueType?: JavaType;
|
|
4121
4150
|
}
|
|
4122
4151
|
|
|
4123
4152
|
export interface JsonFormatVisitable {
|
|
@@ -4126,6 +4155,15 @@ export interface JsonFormatVisitable {
|
|
|
4126
4155
|
export interface StdSerializer<T> extends JsonSerializer<T>, JsonFormatVisitable, SchemaAware, Serializable {
|
|
4127
4156
|
}
|
|
4128
4157
|
|
|
4158
|
+
export interface HttpStatusCode extends Serializable {
|
|
4159
|
+
"4xxClientError"?: boolean;
|
|
4160
|
+
"5xxServerError"?: boolean;
|
|
4161
|
+
"1xxInformational"?: boolean;
|
|
4162
|
+
"2xxSuccessful"?: boolean;
|
|
4163
|
+
"3xxRedirection"?: boolean;
|
|
4164
|
+
error?: boolean;
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4129
4167
|
export interface ConditionEntity extends Mergable<ConditionEntity> {
|
|
4130
4168
|
id?: string;
|
|
4131
4169
|
name?: string;
|
|
@@ -4191,7 +4229,7 @@ export interface QConditionEntity extends EntityPathBase<ConditionEntity> {
|
|
|
4191
4229
|
export interface BeanPath<T> extends SimpleExpression<T>, Path<T> {
|
|
4192
4230
|
}
|
|
4193
4231
|
|
|
4194
|
-
export interface ActiveHomepageEntity extends Serializable, StandardEntity {
|
|
4232
|
+
export interface ActiveHomepageEntity extends Serializable, HasGeneratedId, StandardEntity {
|
|
4195
4233
|
clientApplication?: ClientApplicationEntity;
|
|
4196
4234
|
template?: TemplateEntity;
|
|
4197
4235
|
createdBy?: string;
|
|
@@ -4201,9 +4239,6 @@ export interface ActiveHomepageEntity extends Serializable, StandardEntity {
|
|
|
4201
4239
|
version?: number;
|
|
4202
4240
|
}
|
|
4203
4241
|
|
|
4204
|
-
export interface Comparable<T> {
|
|
4205
|
-
}
|
|
4206
|
-
|
|
4207
4242
|
export interface ResourceStringAccumulator {
|
|
4208
4243
|
resourceStringsBySolution?: { [index: string]: { [index: string]: string } };
|
|
4209
4244
|
transportResourceStrings?: { [index: string]: string };
|
|
@@ -4243,49 +4278,49 @@ export interface OfField<F> extends TypeDescriptor {
|
|
|
4243
4278
|
primitive?: boolean;
|
|
4244
4279
|
}
|
|
4245
4280
|
|
|
4246
|
-
export interface Member {
|
|
4247
|
-
modifiers?: number;
|
|
4248
|
-
name?: string;
|
|
4249
|
-
synthetic?: boolean;
|
|
4250
|
-
declaringClass?: Class<any>;
|
|
4251
|
-
}
|
|
4252
|
-
|
|
4253
4281
|
export interface AnnotationMap extends Annotations {
|
|
4254
4282
|
}
|
|
4255
4283
|
|
|
4256
4284
|
export interface TypeResolutionContext {
|
|
4257
4285
|
}
|
|
4258
4286
|
|
|
4259
|
-
export interface
|
|
4287
|
+
export interface Member {
|
|
4288
|
+
name?: string;
|
|
4289
|
+
modifiers?: number;
|
|
4290
|
+
synthetic?: boolean;
|
|
4260
4291
|
declaringClass?: Class<any>;
|
|
4261
|
-
|
|
4262
|
-
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
export interface AnnotatedMember extends Annotated, Serializable {
|
|
4263
4295
|
allAnnotations?: AnnotationMap;
|
|
4264
4296
|
typeContext?: TypeResolutionContext;
|
|
4297
|
+
member?: Member;
|
|
4298
|
+
declaringClass?: Class<any>;
|
|
4299
|
+
fullName?: string;
|
|
4265
4300
|
}
|
|
4266
4301
|
|
|
4267
4302
|
export interface ObjectIdInfo {
|
|
4268
4303
|
generatorType?: Class<ObjectIdGenerator<any>>;
|
|
4269
4304
|
resolverType?: Class<ObjectIdResolver>;
|
|
4270
4305
|
alwaysAsId?: boolean;
|
|
4271
|
-
scope?: Class<any>;
|
|
4272
4306
|
propertyName?: PropertyName;
|
|
4307
|
+
scope?: Class<any>;
|
|
4273
4308
|
}
|
|
4274
4309
|
|
|
4275
4310
|
export interface TypeDeserializer {
|
|
4276
|
-
defaultImpl?: Class<any>;
|
|
4277
4311
|
typeInclusion?: As;
|
|
4278
4312
|
typeIdResolver?: TypeIdResolver;
|
|
4313
|
+
defaultImpl?: Class<any>;
|
|
4279
4314
|
propertyName?: string;
|
|
4280
4315
|
}
|
|
4281
4316
|
|
|
4282
4317
|
export interface PropertyMetadata extends Serializable {
|
|
4283
|
-
defaultValue?: string;
|
|
4284
|
-
index?: number;
|
|
4285
|
-
required?: boolean;
|
|
4286
|
-
contentNulls?: Nulls;
|
|
4287
4318
|
valueNulls?: Nulls;
|
|
4319
|
+
contentNulls?: Nulls;
|
|
4288
4320
|
mergeInfo?: MergeInfo;
|
|
4321
|
+
required?: boolean;
|
|
4322
|
+
defaultValue?: string;
|
|
4323
|
+
index?: number;
|
|
4289
4324
|
description?: string;
|
|
4290
4325
|
}
|
|
4291
4326
|
|
|
@@ -4405,8 +4440,8 @@ export interface BaseVisitor extends ExpressionVisitor {
|
|
|
4405
4440
|
}
|
|
4406
4441
|
|
|
4407
4442
|
export interface AnnotatedType extends AnnotatedElement {
|
|
4408
|
-
type?: Type;
|
|
4409
4443
|
annotatedOwnerType?: AnnotatedType;
|
|
4444
|
+
type?: Type;
|
|
4410
4445
|
}
|
|
4411
4446
|
|
|
4412
4447
|
export interface TypeDescriptor {
|
|
@@ -4416,11 +4451,11 @@ export interface Annotations {
|
|
|
4416
4451
|
}
|
|
4417
4452
|
|
|
4418
4453
|
export interface Annotated {
|
|
4454
|
+
annotated?: AnnotatedElement;
|
|
4419
4455
|
name?: string;
|
|
4420
4456
|
public?: boolean;
|
|
4421
4457
|
type?: JavaType;
|
|
4422
4458
|
rawType?: Class<any>;
|
|
4423
|
-
annotated?: AnnotatedElement;
|
|
4424
4459
|
}
|
|
4425
4460
|
|
|
4426
4461
|
export interface TypeIdResolver {
|
|
@@ -4434,12 +4469,12 @@ export interface MergeInfo {
|
|
|
4434
4469
|
}
|
|
4435
4470
|
|
|
4436
4471
|
export interface BeanProperty extends Named {
|
|
4437
|
-
|
|
4438
|
-
fullName?: PropertyName;
|
|
4439
|
-
virtual?: boolean;
|
|
4472
|
+
wrapperName?: PropertyName;
|
|
4440
4473
|
required?: boolean;
|
|
4441
4474
|
member?: AnnotatedMember;
|
|
4442
|
-
|
|
4475
|
+
type?: JavaType;
|
|
4476
|
+
virtual?: boolean;
|
|
4477
|
+
fullName?: PropertyName;
|
|
4443
4478
|
metadata?: PropertyMetadata;
|
|
4444
4479
|
}
|
|
4445
4480
|
|
|
@@ -4502,8 +4537,7 @@ export interface LinkedPageTemplateIdEntity extends Serializable {
|
|
|
4502
4537
|
export interface ComparableExpression<T> extends ComparableExpressionBase<T> {
|
|
4503
4538
|
}
|
|
4504
4539
|
|
|
4505
|
-
export interface TraversalDefinitionEntity extends Serializable, SolutionAssignedEntity, Mergable<TraversalDefinitionEntity> {
|
|
4506
|
-
id?: number;
|
|
4540
|
+
export interface TraversalDefinitionEntity extends Serializable, HasGeneratedId, SolutionAssignedEntity, Mergable<TraversalDefinitionEntity> {
|
|
4507
4541
|
uuid?: string;
|
|
4508
4542
|
displayName?: string;
|
|
4509
4543
|
traversal?: { [index: string]: any };
|
|
@@ -4578,7 +4612,7 @@ export type IconType = "REGULAR" | "MAP";
|
|
|
4578
4612
|
|
|
4579
4613
|
export type JobType = "SEARCH_INDEX_LOADER" | "PROCESS_ATTACHMENTS" | "IMPORT_CONFIG";
|
|
4580
4614
|
|
|
4581
|
-
export type MetadataObjectType = "ICON" | "DOCUMENT" | "LINK" | "TRANSACTION" | "ELEMENT" | "ENTITY" | "TEMPLATE" | "TRAVERSAL" | "CONTROL" | "CONTROL_CATEGORY" | "CONTEXT_MAPPING" | "ACTION" | "ACTION_ITEM" | "REFERENCE_LIST" | "HIERARCHICAL_REFERENCE_DATA" | "CLIENT_APPLICATION" | "TEMPLATE_TYPE" | "CONDITION" | "DATA_STORE" | "SOLUTION" | "ACTIVE_HOMEPAGE";
|
|
4615
|
+
export type MetadataObjectType = "ICON" | "DOCUMENT" | "LINK" | "TRANSACTION" | "ELEMENT" | "ENTITY" | "TEMPLATE" | "TRAVERSAL" | "CONTROL" | "CONTROL_CATEGORY" | "CONTEXT_MAPPING" | "ACTION" | "ACTION_ITEM" | "REFERENCE_LIST" | "HIERARCHICAL_REFERENCE_DATA" | "CLIENT_APPLICATION" | "TEMPLATE_TYPE" | "CONDITION" | "DATA_STORE" | "SOLUTION" | "ACTIVE_HOMEPAGE" | "ENTITY_LEVEL_RULES";
|
|
4582
4616
|
|
|
4583
4617
|
export type NodeShape = "CIRCLE" | "SQUARE" | "DIAMOND" | "ELLIPSE" | "HEXAGON" | "PENTAGON" | "TRIANGLE";
|
|
4584
4618
|
|
|
@@ -4636,7 +4670,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
|
|
|
4636
4670
|
|
|
4637
4671
|
export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
|
|
4638
4672
|
|
|
4639
|
-
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1539" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "icon_svg_invalid" | "icon_invalid_image_type" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "media_type_mismatch" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "condition_id_required" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json" | "authorized_to_reveal_masked_length" | "authorized_to_reveal_masked_should_be_null" | "authorized_to_reveal_masked_should_have_contents" | "authorized_to_reveal_masked_cannot_be_primary_key_field" | "user_group_not_authorized_to_reveal_masked_field" | "system_field_cannot_be_masked" | "field_used_in_join_condition_cannot_be_masked" | "field_used_in_txn_join_condition_cannot_be_masked" | "txn_field_used_in_txn_join_condition_cannot_be_masked" | "heterogeneous_external_join_key_field_cannot_be_masked" | "txn_field_used_in_ref_join_cannot_be_masked" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body" | "entity_type_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "invalid_control_solution_id";
|
|
4673
|
+
export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1539" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "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" | "write_only_at_create_for_relationship_requires_read_only" | "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_values_must_not_exceed_max_int_value" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "condition_id_required" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9014" | "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" | "condition_owner_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "entity.type.mismatch" | "empty.rules" | "missing.types" | "invalid.access.combination" | "rules.do.not.exist" | "version.mismatch" | "rules.already.exist" | "version.should.be.null" | "error.removing.rule.group" | "error.adding.group" | "invalid_control_solution_id";
|
|
4640
4674
|
|
|
4641
4675
|
export type DataStoreType = "RELATIONAL";
|
|
4642
4676
|
|
|
@@ -4648,8 +4682,6 @@ export type CommonsSecurityBootStrapModelTypesUserGroupType = "user" | "group";
|
|
|
4648
4682
|
|
|
4649
4683
|
export type AccessType = "create" | "read" | "update" | "delete" | "search";
|
|
4650
4684
|
|
|
4651
|
-
export type HttpStatus = "100 CONTINUE" | "101 SWITCHING_PROTOCOLS" | "102 PROCESSING" | "103 CHECKPOINT" | "200 OK" | "201 CREATED" | "202 ACCEPTED" | "203 NON_AUTHORITATIVE_INFORMATION" | "204 NO_CONTENT" | "205 RESET_CONTENT" | "206 PARTIAL_CONTENT" | "207 MULTI_STATUS" | "208 ALREADY_REPORTED" | "226 IM_USED" | "300 MULTIPLE_CHOICES" | "301 MOVED_PERMANENTLY" | "302 FOUND" | "302 MOVED_TEMPORARILY" | "303 SEE_OTHER" | "304 NOT_MODIFIED" | "305 USE_PROXY" | "307 TEMPORARY_REDIRECT" | "308 PERMANENT_REDIRECT" | "400 BAD_REQUEST" | "401 UNAUTHORIZED" | "402 PAYMENT_REQUIRED" | "403 FORBIDDEN" | "404 NOT_FOUND" | "405 METHOD_NOT_ALLOWED" | "406 NOT_ACCEPTABLE" | "407 PROXY_AUTHENTICATION_REQUIRED" | "408 REQUEST_TIMEOUT" | "409 CONFLICT" | "410 GONE" | "411 LENGTH_REQUIRED" | "412 PRECONDITION_FAILED" | "413 PAYLOAD_TOO_LARGE" | "413 REQUEST_ENTITY_TOO_LARGE" | "414 URI_TOO_LONG" | "414 REQUEST_URI_TOO_LONG" | "415 UNSUPPORTED_MEDIA_TYPE" | "416 REQUESTED_RANGE_NOT_SATISFIABLE" | "417 EXPECTATION_FAILED" | "418 I_AM_A_TEAPOT" | "419 INSUFFICIENT_SPACE_ON_RESOURCE" | "420 METHOD_FAILURE" | "421 DESTINATION_LOCKED" | "422 UNPROCESSABLE_ENTITY" | "423 LOCKED" | "424 FAILED_DEPENDENCY" | "425 TOO_EARLY" | "426 UPGRADE_REQUIRED" | "428 PRECONDITION_REQUIRED" | "429 TOO_MANY_REQUESTS" | "431 REQUEST_HEADER_FIELDS_TOO_LARGE" | "451 UNAVAILABLE_FOR_LEGAL_REASONS" | "500 INTERNAL_SERVER_ERROR" | "501 NOT_IMPLEMENTED" | "502 BAD_GATEWAY" | "503 SERVICE_UNAVAILABLE" | "504 GATEWAY_TIMEOUT" | "505 HTTP_VERSION_NOT_SUPPORTED" | "506 VARIANT_ALSO_NEGOTIATES" | "507 INSUFFICIENT_STORAGE" | "508 LOOP_DETECTED" | "509 BANDWIDTH_LIMIT_EXCEEDED" | "510 NOT_EXTENDED" | "511 NETWORK_AUTHENTICATION_REQUIRED";
|
|
4652
|
-
|
|
4653
4685
|
export type PathType = "ARRAYVALUE" | "ARRAYVALUE_CONSTANT" | "COLLECTION_ANY" | "DELEGATE" | "LISTVALUE" | "LISTVALUE_CONSTANT" | "MAPVALUE" | "MAPVALUE_CONSTANT" | "PROPERTY" | "VARIABLE" | "TREATED_PATH";
|
|
4654
4686
|
|
|
4655
4687
|
export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PROPERTY" | "EXISTING_PROPERTY";
|