@sassoftware/vi-api 0.0.29 → 1.5.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/LICENSE.txt +333 -0
- package/README.md +9 -0
- package/alert-reps/index.d.ts +5 -1
- package/api-init.service.js +86 -0
- package/api.module.js +72 -0
- package/component/bindings.d.ts +5 -3
- package/component/component-api.service.js +161 -0
- package/config/config-api.d.ts +2 -1
- package/config/config-api.service.js +54 -0
- package/control/control-api.d.ts +21 -9
- package/control/data-types.d.ts +6 -1
- package/control/page.d.ts +14 -0
- package/control/toolbar-property-api.d.ts +2 -1
- package/current-user/currentUser-api.service.js +49 -0
- package/event/event-api.d.ts +1 -0
- package/event/event-api.js +1 -0
- package/event/event-api.service.js +32 -0
- package/file/file-api.service.js +24 -0
- package/http/http-api.service.js +64 -0
- package/localization/localization-api.service.js +38 -0
- package/metadata/admin/admin-metadata-api.service.js +30 -0
- package/metadata/metadata-api.d.ts +3 -0
- package/metadata/metadata-api.service.js +85 -0
- package/object/object-api.d.ts +9 -20
- package/object/object-api.service.js +207 -0
- package/package.json +24 -2
- package/page-admin/page-admin-api.service.js +25 -0
- package/page-model/page-model-api.d.ts +21 -13
- package/page-model/page-model-api.service.js +25 -0
- package/page-state/page-state-api.d.ts +23 -0
- package/page-state/page-state-api.service.js +70 -0
- package/property/property-api.d.ts +62 -2
- package/property/property-api.service.js +34 -0
- package/reference-data/refData.service.js +40 -0
- package/resource/resource-api.service.js +24 -0
- package/score-reps/index.d.ts +1 -1
- package/search/client/client-search-api.d.ts +8 -4
- package/search/client/client-search-api.js +1 -1
- package/search/client/client-search-api.service.js +111 -0
- package/search/search-api.d.ts +6 -6
- package/search/search-api.service.js +28 -0
- package/sheet/network-menu-handler.service.js +39 -0
- package/sheet/sheet-api.d.ts +35 -3
- package/sheet/sheet-api.js +9 -1
- package/sheet/sheet-api.service.js +140 -0
- package/svi-datahub/index.d.ts +203 -171
- package/svi-sand/index.d.ts +10 -10
- package/tab/tab-api.service.js +35 -0
- package/theme/theme-api.d.ts +1 -1
- package/theme/theme-api.js +1 -1
- package/theme/theme-api.service.js +35 -0
- package/time-slider/index.d.ts +6 -0
- package/traversal/traversal-api.d.ts +7 -1
- package/traversal/traversal-api.service.js +77 -0
- package/alert-reps/package.json +0 -5
- package/component/package.json +0 -9
- package/config/package.json +0 -9
- package/control/package.json +0 -9
- package/current-user/package.json +0 -9
- package/event/package.json +0 -9
- package/file/package.json +0 -9
- package/http/package.json +0 -9
- package/localization/package.json +0 -9
- package/metadata/package.json +0 -9
- package/object/package.json +0 -9
- package/page-admin/package.json +0 -9
- package/page-model/package.json +0 -9
- package/page-state/package.json +0 -9
- package/property/package.json +0 -9
- package/reference-data/package.json +0 -9
- package/resource/package.json +0 -9
- package/score-reps/package.json +0 -5
- package/search/package.json +0 -9
- package/sheet/package.json +0 -9
- package/svi-datahub/package.json +0 -5
- package/svi-sand/package.json +0 -5
- package/tab/package.json +0 -9
- package/theme/package.json +0 -9
- package/traversal/package.json +0 -9
package/svi-datahub/index.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
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 15:24:45.
|
|
4
4
|
|
|
5
5
|
export interface SecuredApiMeta {
|
|
6
|
+
build?: SecuredBuild;
|
|
7
|
+
apiVersion?: number;
|
|
6
8
|
experimental?: boolean;
|
|
7
9
|
developmentStartYear?: number;
|
|
8
10
|
developmentEndYear?: number;
|
|
9
11
|
applicationVersion?: string;
|
|
10
12
|
serviceId?: string;
|
|
11
|
-
build?: SecuredBuild;
|
|
12
|
-
apiVersion?: number;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export interface SecuredBuild {
|
|
16
|
+
timeStamp?: string;
|
|
16
17
|
buildVersion?: string;
|
|
17
|
-
sourceId?: string;
|
|
18
18
|
sourceTimeStamp?: string;
|
|
19
19
|
applicationVersion?: string;
|
|
20
|
-
|
|
20
|
+
sourceId?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export interface Api extends Serializable {
|
|
@@ -27,11 +27,11 @@ export interface Api extends Serializable {
|
|
|
27
27
|
|
|
28
28
|
export interface ApiMeta extends Serializable {
|
|
29
29
|
build?: Build;
|
|
30
|
+
apiVersion?: number;
|
|
30
31
|
experimental?: boolean;
|
|
31
32
|
developmentStartYear?: number;
|
|
32
33
|
developmentEndYear?: number;
|
|
33
34
|
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;
|
|
50
51
|
buildVersion?: string;
|
|
51
|
-
sourceId?: string;
|
|
52
52
|
sourceTimeStamp?: string;
|
|
53
53
|
applicationVersion?: string;
|
|
54
|
-
|
|
54
|
+
sourceId?: string;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
export interface Count extends Serializable {
|
|
@@ -266,7 +266,7 @@ export interface TableActionItem extends ActionItem {
|
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
export interface DataContent {
|
|
269
|
-
"@type": "Document" | "ResolvedEntity" | "DocumentIdentifier" | "DocumentLink" | "TransactionLink"
|
|
269
|
+
"@type": "Document" | "ResolvedEntity" | "DocumentIdentifier" | "DocumentLink" | "TransactionLink";
|
|
270
270
|
}
|
|
271
271
|
|
|
272
272
|
export interface Document extends DataContent {
|
|
@@ -326,6 +326,13 @@ export interface CommonsDataRelationship extends DataContent {
|
|
|
326
326
|
fieldValues?: { [index: string]: any };
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
+
export interface RelationshipIdentifier {
|
|
330
|
+
fullyQualifiedId?: string;
|
|
331
|
+
relationshipName?: string;
|
|
332
|
+
fromObjectName?: string;
|
|
333
|
+
toObjectName?: string;
|
|
334
|
+
}
|
|
335
|
+
|
|
329
336
|
export interface DataResolvedEntity extends Document {
|
|
330
337
|
"@type": "ResolvedEntity";
|
|
331
338
|
label?: string;
|
|
@@ -333,17 +340,6 @@ export interface DataResolvedEntity extends Document {
|
|
|
333
340
|
references?: EntityReference[];
|
|
334
341
|
}
|
|
335
342
|
|
|
336
|
-
export interface ResolvedEntityChanges extends DataContent {
|
|
337
|
-
"@type": "ResolvedEntityChanges";
|
|
338
|
-
deletedCompoundValues?: string[];
|
|
339
|
-
entities?: DataResolvedEntity[];
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
export interface StringData extends DataContent {
|
|
343
|
-
"@type": "StringData";
|
|
344
|
-
data?: string;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
343
|
export interface TransactionLink extends CommonsDataRelationship {
|
|
348
344
|
"@type": "TransactionLink";
|
|
349
345
|
}
|
|
@@ -364,6 +360,7 @@ export interface FileAssociation {
|
|
|
364
360
|
version?: number;
|
|
365
361
|
id?: string;
|
|
366
362
|
name?: string;
|
|
363
|
+
originalName?: string;
|
|
367
364
|
category?: string;
|
|
368
365
|
location?: string;
|
|
369
366
|
type?: string;
|
|
@@ -374,6 +371,8 @@ export interface FileAssociation {
|
|
|
374
371
|
uploadedBy?: string;
|
|
375
372
|
extractedContent?: string;
|
|
376
373
|
displayOrder?: number;
|
|
374
|
+
link?: boolean;
|
|
375
|
+
isLink?: boolean;
|
|
377
376
|
}
|
|
378
377
|
|
|
379
378
|
export interface UpdateFileOperation extends AbstractFileOperation {
|
|
@@ -409,10 +408,6 @@ export interface SolutionPublishResultDTO {
|
|
|
409
408
|
export interface AttachmentController {
|
|
410
409
|
}
|
|
411
410
|
|
|
412
|
-
export interface InnerFileAssociationResponse extends FileAssociation {
|
|
413
|
-
links?: RestRepresentationsLink[];
|
|
414
|
-
}
|
|
415
|
-
|
|
416
411
|
export interface CommentController {
|
|
417
412
|
}
|
|
418
413
|
|
|
@@ -473,6 +468,9 @@ export interface LinkWithBody<T> extends RestRepresentationsLink {
|
|
|
473
468
|
export interface LockController {
|
|
474
469
|
}
|
|
475
470
|
|
|
471
|
+
export interface MetadataActivityRecorder {
|
|
472
|
+
}
|
|
473
|
+
|
|
476
474
|
export interface MetahubSharedExceptionHandler {
|
|
477
475
|
}
|
|
478
476
|
|
|
@@ -505,8 +503,8 @@ export interface TraversalController {
|
|
|
505
503
|
}
|
|
506
504
|
|
|
507
505
|
export interface UtilityServicesController {
|
|
508
|
-
supportedLocales?: LocalizedLocale[];
|
|
509
506
|
defaultLocale?: LocalizedLocale;
|
|
507
|
+
supportedLocales?: LocalizedLocale[];
|
|
510
508
|
}
|
|
511
509
|
|
|
512
510
|
export interface ActionController {
|
|
@@ -527,6 +525,11 @@ export interface AdminControlController {
|
|
|
527
525
|
export interface AdminDataStoreController {
|
|
528
526
|
}
|
|
529
527
|
|
|
528
|
+
export interface DataStoreCredentials {
|
|
529
|
+
username?: string;
|
|
530
|
+
password?: string;
|
|
531
|
+
}
|
|
532
|
+
|
|
530
533
|
export interface AdminElementBagController {
|
|
531
534
|
}
|
|
532
535
|
|
|
@@ -546,8 +549,11 @@ export interface AdminIconController {
|
|
|
546
549
|
|
|
547
550
|
export interface AdminMetadataCacheController {
|
|
548
551
|
metadataCacheStatistics?: ResponseEntity<{ [index: string]: any }>;
|
|
549
|
-
clientMetadataCacheStatistics?: ResponseEntity<
|
|
550
|
-
|
|
552
|
+
clientMetadataCacheStatistics?: ResponseEntity<CacheStats>;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
export interface AdminNldStylingRuleController {
|
|
556
|
+
rulesFromAllSources?: { [index: string]: any };
|
|
551
557
|
}
|
|
552
558
|
|
|
553
559
|
export interface AdminPageBuilderController {
|
|
@@ -596,6 +602,9 @@ export interface AuditableObject extends IdentifiableObject {
|
|
|
596
602
|
lastUpdatedAt?: Date;
|
|
597
603
|
}
|
|
598
604
|
|
|
605
|
+
export interface CapabilityConstants {
|
|
606
|
+
}
|
|
607
|
+
|
|
599
608
|
export interface ConfigProperty extends Identifiable, NamedObject {
|
|
600
609
|
values?: string[];
|
|
601
610
|
}
|
|
@@ -609,9 +618,6 @@ export interface ActionHistoryColumns {
|
|
|
609
618
|
export interface ConfigPropertyName {
|
|
610
619
|
}
|
|
611
620
|
|
|
612
|
-
export interface Feature {
|
|
613
|
-
}
|
|
614
|
-
|
|
615
621
|
export interface Length {
|
|
616
622
|
}
|
|
617
623
|
|
|
@@ -651,9 +657,9 @@ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObj
|
|
|
651
657
|
redacted?: boolean;
|
|
652
658
|
useObjectAuthorization?: boolean;
|
|
653
659
|
allowedRedactedFieldGroups?: RedactionRuleEntity[];
|
|
654
|
-
userGroupSelectionField?: boolean;
|
|
655
|
-
owner?: O;
|
|
656
660
|
constrained?: boolean;
|
|
661
|
+
owner?: O;
|
|
662
|
+
userGroupSelectionField?: boolean;
|
|
657
663
|
}
|
|
658
664
|
|
|
659
665
|
export interface CoreDataObject extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity, Serializable {
|
|
@@ -755,6 +761,8 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
|
|
|
755
761
|
width?: number;
|
|
756
762
|
dashType?: string;
|
|
757
763
|
styles?: LinkStyleEntity[];
|
|
764
|
+
link?: boolean;
|
|
765
|
+
qualifiedName?: string;
|
|
758
766
|
primaryKeyFields?: CoreRelationshipField[];
|
|
759
767
|
heterogeneous?: boolean;
|
|
760
768
|
internalHeterogeneous?: boolean;
|
|
@@ -762,8 +770,6 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
|
|
|
762
770
|
foreignKeyFieldNames?: string[];
|
|
763
771
|
attributeFields?: CoreRelationshipField[];
|
|
764
772
|
nonAttributeFieldNames?: string[];
|
|
765
|
-
qualifiedName?: string;
|
|
766
|
-
link?: boolean;
|
|
767
773
|
readOnly?: boolean;
|
|
768
774
|
}
|
|
769
775
|
|
|
@@ -839,10 +845,10 @@ export interface CoreTransaction extends CoreDataObject {
|
|
|
839
845
|
lineColorFunctionType?: AggregateFunctionType;
|
|
840
846
|
primaryKeyFields?: CoreDataField<any>[];
|
|
841
847
|
heterogeneous?: boolean;
|
|
842
|
-
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
843
848
|
fullHeterogeneous?: boolean;
|
|
844
849
|
toHeterogeneous?: boolean;
|
|
845
850
|
fromHeterogeneous?: boolean;
|
|
851
|
+
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
846
852
|
fromHeterogeneousAndToObjectIsIndexable?: boolean;
|
|
847
853
|
nonHeterogeneousAndBothSidesAreIndexable?: boolean;
|
|
848
854
|
}
|
|
@@ -865,9 +871,12 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject {
|
|
|
865
871
|
poolMinIdle?: number;
|
|
866
872
|
poolMaxIdle?: number;
|
|
867
873
|
poolMaxActive?: number;
|
|
868
|
-
defaultSchemaName?: string;
|
|
869
874
|
defaultDataStore?: boolean;
|
|
870
875
|
testOnBorrow?: boolean;
|
|
876
|
+
defaultSchemaName?: string;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
export interface FeatureConstants {
|
|
871
880
|
}
|
|
872
881
|
|
|
873
882
|
export interface FileCategoryEntity extends Serializable {
|
|
@@ -902,8 +911,8 @@ export interface InjectableResource {
|
|
|
902
911
|
export interface LocalizableObject extends AuditableObject {
|
|
903
912
|
localizedLabels?: LocalizedLabel[];
|
|
904
913
|
localizedDescriptions?: LocalizedDescription[];
|
|
905
|
-
description?: string;
|
|
906
914
|
label?: string;
|
|
915
|
+
description?: string;
|
|
907
916
|
}
|
|
908
917
|
|
|
909
918
|
export interface LocalizedDescription extends AuditableObject, Versioned {
|
|
@@ -1659,7 +1668,6 @@ export interface TransactionTypeFieldConverter extends AbstractCoreFieldConverte
|
|
|
1659
1668
|
export interface AsyncJobDTO {
|
|
1660
1669
|
id?: string;
|
|
1661
1670
|
type?: JobType;
|
|
1662
|
-
status?: ExecutionStatus;
|
|
1663
1671
|
submittedBy?: string;
|
|
1664
1672
|
submittedAt?: Date;
|
|
1665
1673
|
parameters?: { [index: string]: any };
|
|
@@ -1671,7 +1679,6 @@ export interface AsyncTaskDTO {
|
|
|
1671
1679
|
name?: string;
|
|
1672
1680
|
description?: string;
|
|
1673
1681
|
type?: TaskType;
|
|
1674
|
-
status?: ExecutionStatus;
|
|
1675
1682
|
queuedAt?: Date;
|
|
1676
1683
|
properties?: { [index: string]: any };
|
|
1677
1684
|
}
|
|
@@ -1786,8 +1793,8 @@ export interface DTOUtil {
|
|
|
1786
1793
|
|
|
1787
1794
|
export interface DataFieldDTO extends LocalizableObjectDTO, DataField, Versioned, NamedObject {
|
|
1788
1795
|
dataType?: string;
|
|
1789
|
-
userGroupSelection?: boolean;
|
|
1790
1796
|
constrained?: boolean;
|
|
1797
|
+
userGroupSelection?: boolean;
|
|
1791
1798
|
}
|
|
1792
1799
|
|
|
1793
1800
|
export interface DataObjectDTO extends LocalizableObjectDTO, DataObject, Versioned, NamedObject {
|
|
@@ -1827,12 +1834,11 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
|
|
|
1827
1834
|
maxIdle?: number;
|
|
1828
1835
|
minIdle?: number;
|
|
1829
1836
|
maxActive?: number;
|
|
1830
|
-
handle?: string;
|
|
1831
1837
|
username?: string;
|
|
1832
1838
|
connectionError?: string;
|
|
1833
|
-
defaultSchemaName?: string;
|
|
1834
|
-
password?: string;
|
|
1835
1839
|
url?: string;
|
|
1840
|
+
password?: string;
|
|
1841
|
+
defaultSchemaName?: string;
|
|
1836
1842
|
reindexRequired?: boolean;
|
|
1837
1843
|
postedTimestamp?: number;
|
|
1838
1844
|
casDistributedDataLoadSupported?: boolean;
|
|
@@ -2097,13 +2103,13 @@ export interface ControlConfigurationDTO extends NamedObject, SolutionAssignedDT
|
|
|
2097
2103
|
directive?: string;
|
|
2098
2104
|
controlAttributes?: { [index: string]: any };
|
|
2099
2105
|
controlCategory?: string;
|
|
2100
|
-
requiredFeatures?: string[];
|
|
2101
2106
|
customControl?: boolean;
|
|
2107
|
+
requiredCapabilities?: string[];
|
|
2102
2108
|
}
|
|
2103
2109
|
|
|
2104
2110
|
export interface DocumentTypeWithClientApplication {
|
|
2105
|
-
documentType?: string;
|
|
2106
2111
|
clientApplication?: string;
|
|
2112
|
+
documentType?: string;
|
|
2107
2113
|
}
|
|
2108
2114
|
|
|
2109
2115
|
export interface ElementExportDTO extends ElementDTO {
|
|
@@ -2249,8 +2255,8 @@ export interface RelationshipTypeCoreMetadataInternalAdapter extends Relationshi
|
|
|
2249
2255
|
}
|
|
2250
2256
|
|
|
2251
2257
|
export interface RelationshipTypeOperations {
|
|
2252
|
-
allHeterogeneousRelationshipTypes?: RelationshipDTO[];
|
|
2253
2258
|
all?: RelationshipDTO[];
|
|
2259
|
+
allHeterogeneousRelationshipTypes?: RelationshipDTO[];
|
|
2254
2260
|
}
|
|
2255
2261
|
|
|
2256
2262
|
export interface RelationshipTypeUtils {
|
|
@@ -2260,8 +2266,8 @@ export interface TransactionTypeCoreMetadataInternalAdapter extends TransactionT
|
|
|
2260
2266
|
}
|
|
2261
2267
|
|
|
2262
2268
|
export interface TransactionTypeOperations {
|
|
2263
|
-
allHeterogeneousTransactionTypes?: TransactionDTO[];
|
|
2264
2269
|
all?: TransactionDTO[];
|
|
2270
|
+
allHeterogeneousTransactionTypes?: TransactionDTO[];
|
|
2265
2271
|
}
|
|
2266
2272
|
|
|
2267
2273
|
export interface TransactionTypeUtils {
|
|
@@ -2288,11 +2294,17 @@ export interface DataObjectRuleSourceTypeGroup extends RuleSourceTypeGroup<DataO
|
|
|
2288
2294
|
export interface HomepageRuleSourceTypeGroup extends RuleSourceTypeGroup<RuleSource> {
|
|
2289
2295
|
}
|
|
2290
2296
|
|
|
2291
|
-
export interface RuleSetKey extends Serializable {
|
|
2297
|
+
export interface RuleSetKey extends Serializable, Comparable<RuleSetKey> {
|
|
2292
2298
|
type?: RuleKeyType;
|
|
2293
2299
|
key?: string;
|
|
2294
2300
|
}
|
|
2295
2301
|
|
|
2302
|
+
export interface RuleSetKeyDeserializer extends KeyDeserializer {
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
export interface RuleSetKeySerializer extends JsonSerializer<RuleSetKey> {
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2296
2308
|
export interface RuleSource {
|
|
2297
2309
|
key?: RuleSetKey;
|
|
2298
2310
|
}
|
|
@@ -2502,10 +2514,17 @@ export interface ConditionalRule {
|
|
|
2502
2514
|
}
|
|
2503
2515
|
|
|
2504
2516
|
export interface DataField {
|
|
2505
|
-
|
|
2517
|
+
required?: boolean;
|
|
2518
|
+
label?: string;
|
|
2519
|
+
columnName?: string;
|
|
2520
|
+
precision?: number;
|
|
2521
|
+
scale?: number;
|
|
2522
|
+
description?: string;
|
|
2523
|
+
dataType?: any;
|
|
2506
2524
|
primaryKeyField?: boolean;
|
|
2507
2525
|
displayIndex?: number;
|
|
2508
2526
|
primaryKeySeqNo?: number;
|
|
2527
|
+
unique?: boolean;
|
|
2509
2528
|
autoGenerated?: boolean;
|
|
2510
2529
|
systemReserved?: boolean;
|
|
2511
2530
|
allowMultipleSelections?: boolean;
|
|
@@ -2519,13 +2538,6 @@ export interface DataField {
|
|
|
2519
2538
|
requiredConditionally?: ConditionalRule;
|
|
2520
2539
|
readOnlyConditionally?: ConditionalRule;
|
|
2521
2540
|
ownerName?: string;
|
|
2522
|
-
dataType?: any;
|
|
2523
|
-
description?: string;
|
|
2524
|
-
label?: string;
|
|
2525
|
-
columnName?: string;
|
|
2526
|
-
precision?: number;
|
|
2527
|
-
scale?: number;
|
|
2528
|
-
required?: boolean;
|
|
2529
2541
|
length?: number;
|
|
2530
2542
|
name?: string;
|
|
2531
2543
|
id?: number;
|
|
@@ -2533,21 +2545,21 @@ export interface DataField {
|
|
|
2533
2545
|
}
|
|
2534
2546
|
|
|
2535
2547
|
export interface DataObject extends SolutionAssignedDTO {
|
|
2548
|
+
label?: string;
|
|
2549
|
+
tableName?: string;
|
|
2550
|
+
description?: string;
|
|
2551
|
+
version?: number;
|
|
2536
2552
|
historyEnabled?: boolean;
|
|
2537
2553
|
createdAtTimeFieldName?: string;
|
|
2538
2554
|
validFromFieldName?: string;
|
|
2539
|
-
systemReserved?: boolean;
|
|
2540
|
-
allowedRedactedFieldGroups?: string[];
|
|
2541
2555
|
validToFieldName?: string;
|
|
2542
2556
|
lastUpdatedAtTimeFieldName?: string;
|
|
2543
2557
|
displayTextFields?: SortableNameReference[];
|
|
2558
|
+
systemReserved?: boolean;
|
|
2559
|
+
allowedRedactedFieldGroups?: string[];
|
|
2544
2560
|
dataStoreName?: string;
|
|
2545
2561
|
dataStoreDefaultSchemaName?: string;
|
|
2546
2562
|
dataStoreAssignedTimeZone?: string;
|
|
2547
|
-
version?: number;
|
|
2548
|
-
description?: string;
|
|
2549
|
-
label?: string;
|
|
2550
|
-
tableName?: string;
|
|
2551
2563
|
name?: string;
|
|
2552
2564
|
fields?: DataField[];
|
|
2553
2565
|
id?: number;
|
|
@@ -2568,10 +2580,10 @@ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
|
|
|
2568
2580
|
}
|
|
2569
2581
|
|
|
2570
2582
|
export interface Element {
|
|
2571
|
-
displayable?: boolean;
|
|
2572
|
-
mappedFields?: DataField[];
|
|
2573
|
-
dataType?: any;
|
|
2574
2583
|
label?: string;
|
|
2584
|
+
dataType?: any;
|
|
2585
|
+
mappedFields?: DataField[];
|
|
2586
|
+
displayable?: boolean;
|
|
2575
2587
|
name?: string;
|
|
2576
2588
|
id?: number;
|
|
2577
2589
|
}
|
|
@@ -2594,11 +2606,12 @@ export interface EnrichedDocument {
|
|
|
2594
2606
|
}
|
|
2595
2607
|
|
|
2596
2608
|
export interface Entity extends SolutionAssignedDTO {
|
|
2609
|
+
label?: string;
|
|
2610
|
+
scale?: number;
|
|
2597
2611
|
defaultRegularIcon?: Icon;
|
|
2612
|
+
nodeColor?: string;
|
|
2598
2613
|
nodeShape?: string;
|
|
2599
2614
|
markerColor?: string;
|
|
2600
|
-
nodeColor?: string;
|
|
2601
|
-
compounds?: Compound[];
|
|
2602
2615
|
borderColor?: string;
|
|
2603
2616
|
borderWidth?: number;
|
|
2604
2617
|
useForNetworkBuild?: boolean;
|
|
@@ -2606,10 +2619,9 @@ export interface Entity extends SolutionAssignedDTO {
|
|
|
2606
2619
|
displayTextElements?: SortableNameReference[];
|
|
2607
2620
|
linkDisplayTextElements?: SortableNameReference[];
|
|
2608
2621
|
requiresMultipleContributors?: boolean;
|
|
2622
|
+
compounds?: Compound[];
|
|
2609
2623
|
publishCode?: PublishCode;
|
|
2610
2624
|
defaultMapIcon?: Icon;
|
|
2611
|
-
label?: string;
|
|
2612
|
-
scale?: number;
|
|
2613
2625
|
name?: string;
|
|
2614
2626
|
id?: number;
|
|
2615
2627
|
}
|
|
@@ -2632,6 +2644,17 @@ export interface Icon {
|
|
|
2632
2644
|
type?: IconType;
|
|
2633
2645
|
}
|
|
2634
2646
|
|
|
2647
|
+
export interface LinkBulkOperationResult {
|
|
2648
|
+
id?: string;
|
|
2649
|
+
relationshipTypeName?: string;
|
|
2650
|
+
fromEntityType?: string;
|
|
2651
|
+
fromId?: string;
|
|
2652
|
+
toEntityType?: string;
|
|
2653
|
+
toId?: string;
|
|
2654
|
+
operation?: MessageAction;
|
|
2655
|
+
error?: ErrorResponse;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2635
2658
|
export interface MediaTypeConstants {
|
|
2636
2659
|
}
|
|
2637
2660
|
|
|
@@ -2650,8 +2673,11 @@ export interface ReferenceListSummary {
|
|
|
2650
2673
|
}
|
|
2651
2674
|
|
|
2652
2675
|
export interface Relationship extends DataObject {
|
|
2653
|
-
|
|
2654
|
-
|
|
2676
|
+
qualifiedName?: string;
|
|
2677
|
+
required?: boolean;
|
|
2678
|
+
managed?: boolean;
|
|
2679
|
+
width?: number;
|
|
2680
|
+
color?: string;
|
|
2655
2681
|
cardinality?: RelationshipCardinality;
|
|
2656
2682
|
previousCardinality?: RelationshipCardinality;
|
|
2657
2683
|
symmetric?: boolean;
|
|
@@ -2659,18 +2685,15 @@ export interface Relationship extends DataObject {
|
|
|
2659
2685
|
reverseLabel?: string;
|
|
2660
2686
|
dashType?: string;
|
|
2661
2687
|
styles?: LinkStyleDTO[];
|
|
2688
|
+
fromObjectName?: string;
|
|
2689
|
+
toObjectName?: string;
|
|
2690
|
+
toObjectLabel?: string;
|
|
2691
|
+
fromObjectLabel?: string;
|
|
2692
|
+
toObjectTypeNames?: string[];
|
|
2662
2693
|
summaryFields?: SortableNameReference[];
|
|
2663
2694
|
heterogeneousLink?: boolean;
|
|
2664
2695
|
linkFields?: { [index: string]: string }[];
|
|
2665
2696
|
joinTableName?: string;
|
|
2666
|
-
toObjectLabel?: string;
|
|
2667
|
-
fromObjectLabel?: string;
|
|
2668
|
-
toObjectTypeNames?: string[];
|
|
2669
|
-
width?: number;
|
|
2670
|
-
color?: string;
|
|
2671
|
-
managed?: boolean;
|
|
2672
|
-
qualifiedName?: string;
|
|
2673
|
-
required?: boolean;
|
|
2674
2697
|
type?: RelationshipType;
|
|
2675
2698
|
}
|
|
2676
2699
|
|
|
@@ -2691,31 +2714,29 @@ export interface SortableNameReference {
|
|
|
2691
2714
|
}
|
|
2692
2715
|
|
|
2693
2716
|
export interface StoredDataObject extends DataObject {
|
|
2717
|
+
parentName?: string;
|
|
2718
|
+
scale?: number;
|
|
2694
2719
|
defaultRegularIcon?: Icon;
|
|
2695
2720
|
relationshipsFrom?: Relationship[];
|
|
2696
2721
|
relationshipsTo?: Relationship[];
|
|
2722
|
+
nodeColor?: string;
|
|
2697
2723
|
nodeShape?: string;
|
|
2698
2724
|
markerColor?: string;
|
|
2699
|
-
nodeColor?: string;
|
|
2700
2725
|
borderColor?: string;
|
|
2701
2726
|
borderWidth?: number;
|
|
2702
|
-
styles?: EntityStyleDTO[];
|
|
2703
2727
|
attachmentsIndexedForSearch?: boolean;
|
|
2704
2728
|
enableCasDistributedDataLoad?: boolean;
|
|
2705
2729
|
elementGroupRoot?: boolean;
|
|
2706
2730
|
requireSearchBeforeCreate?: boolean;
|
|
2707
2731
|
mobileOfflineEnabled?: boolean;
|
|
2708
2732
|
fileCategories?: FileCategory[];
|
|
2733
|
+
styles?: EntityStyleDTO[];
|
|
2709
2734
|
defaultMapIcon?: Icon;
|
|
2710
2735
|
nodeDecoration?: NodeDecorationDTO;
|
|
2711
|
-
scale?: number;
|
|
2712
|
-
parentName?: string;
|
|
2713
2736
|
type?: DataObjectType;
|
|
2714
2737
|
}
|
|
2715
2738
|
|
|
2716
2739
|
export interface Transaction extends DataObject {
|
|
2717
|
-
fromObjectName?: string;
|
|
2718
|
-
toObjectName?: string;
|
|
2719
2740
|
toObjectTypeFieldName?: string;
|
|
2720
2741
|
fromObjectTypeFieldName?: string;
|
|
2721
2742
|
fromObjectRefFieldName?: string;
|
|
@@ -2724,6 +2745,8 @@ export interface Transaction extends DataObject {
|
|
|
2724
2745
|
lineWidthFunctionType?: AggregateFunctionType;
|
|
2725
2746
|
lineColorFieldName?: string;
|
|
2726
2747
|
lineColorFunctionType?: AggregateFunctionType;
|
|
2748
|
+
fromObjectName?: string;
|
|
2749
|
+
toObjectName?: string;
|
|
2727
2750
|
}
|
|
2728
2751
|
|
|
2729
2752
|
export interface Version extends VersionSummary {
|
|
@@ -2779,9 +2802,9 @@ export interface EntityImpl extends Entity {
|
|
|
2779
2802
|
}
|
|
2780
2803
|
|
|
2781
2804
|
export interface FileCategory {
|
|
2805
|
+
required?: boolean;
|
|
2782
2806
|
allowMultiple?: boolean;
|
|
2783
2807
|
documentLockRequired?: boolean;
|
|
2784
|
-
required?: boolean;
|
|
2785
2808
|
name?: string;
|
|
2786
2809
|
displayName?: string;
|
|
2787
2810
|
}
|
|
@@ -2806,14 +2829,6 @@ export interface NodeDecorationDTO {
|
|
|
2806
2829
|
icons?: IconDecorationDTO[];
|
|
2807
2830
|
}
|
|
2808
2831
|
|
|
2809
|
-
export interface ObjectLock {
|
|
2810
|
-
id?: string;
|
|
2811
|
-
key?: string;
|
|
2812
|
-
lockType?: ObjectLockType;
|
|
2813
|
-
expiresAt?: Date;
|
|
2814
|
-
sessionId?: string;
|
|
2815
|
-
}
|
|
2816
|
-
|
|
2817
2832
|
export interface Paging {
|
|
2818
2833
|
start?: number;
|
|
2819
2834
|
count?: number;
|
|
@@ -2904,9 +2919,9 @@ export interface CommentUser {
|
|
|
2904
2919
|
|
|
2905
2920
|
export interface AbstractFieldConditionMetadata<Y, T> {
|
|
2906
2921
|
cycleDetector?: CycleDetector;
|
|
2922
|
+
owner?: Y;
|
|
2907
2923
|
ownerName?: string;
|
|
2908
2924
|
parentObjectName?: string;
|
|
2909
|
-
owner?: Y;
|
|
2910
2925
|
}
|
|
2911
2926
|
|
|
2912
2927
|
export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
|
|
@@ -2968,15 +2983,33 @@ export interface ReferencedFact {
|
|
|
2968
2983
|
export interface ArithmeticComparator<T> extends Serializable, BiFunction<T, T, boolean> {
|
|
2969
2984
|
}
|
|
2970
2985
|
|
|
2971
|
-
export interface
|
|
2986
|
+
export interface EqualityComparator extends ArithmeticComparator<any> {
|
|
2972
2987
|
}
|
|
2973
2988
|
|
|
2974
|
-
export interface
|
|
2989
|
+
export interface InequalityComparator extends ArithmeticComparator<any> {
|
|
2975
2990
|
}
|
|
2976
2991
|
|
|
2977
2992
|
export interface PresenceComparator extends Serializable, Function<any, boolean> {
|
|
2978
2993
|
}
|
|
2979
2994
|
|
|
2995
|
+
export interface EqualityComparatorDeserializer extends JsonDeserializer<EqualityComparator> {
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
export interface EqualityComparatorSerializer extends JsonSerializer<EqualityComparator> {
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
export interface InequalityComparatorDeserializer extends JsonDeserializer<InequalityComparator> {
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
export interface InequalityComparatorSerializer extends JsonSerializer<InequalityComparator> {
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
export interface PresenceComparatorDeserializer extends JsonDeserializer<PresenceComparator> {
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
export interface PresenceComparatorSerializer extends JsonSerializer<PresenceComparator> {
|
|
3011
|
+
}
|
|
3012
|
+
|
|
2980
3013
|
export interface AbstractCondition<T> extends Serializable {
|
|
2981
3014
|
parameters?: T[];
|
|
2982
3015
|
type?: string;
|
|
@@ -3049,14 +3082,14 @@ export interface EventMetadata {
|
|
|
3049
3082
|
}
|
|
3050
3083
|
|
|
3051
3084
|
export interface ValidatableContextMapping extends SolutionAssignedDTO {
|
|
3085
|
+
tag?: string;
|
|
3086
|
+
event?: string;
|
|
3052
3087
|
docType?: string;
|
|
3053
3088
|
uuid?: string;
|
|
3054
3089
|
fallbackToEvent?: string;
|
|
3055
3090
|
templateId?: any;
|
|
3056
3091
|
toolbarEnabled?: boolean;
|
|
3057
3092
|
evaluateOrder?: number;
|
|
3058
|
-
tag?: string;
|
|
3059
|
-
event?: string;
|
|
3060
3093
|
}
|
|
3061
3094
|
|
|
3062
3095
|
export interface Control extends ControlMetadata {
|
|
@@ -3087,9 +3120,9 @@ export interface ControlMetadata extends SolutionAssignedDTO {
|
|
|
3087
3120
|
controlDescription?: ResourcedString;
|
|
3088
3121
|
propertiesTitle?: ResourcedString;
|
|
3089
3122
|
controlAttributes?: { [index: string]: any };
|
|
3090
|
-
requiredFeatures?: string[];
|
|
3091
3123
|
customControl?: boolean;
|
|
3092
3124
|
solutionLabel?: string;
|
|
3125
|
+
requiredCapabilities?: string[];
|
|
3093
3126
|
}
|
|
3094
3127
|
|
|
3095
3128
|
export interface RelateLinkDTO {
|
|
@@ -3233,7 +3266,7 @@ export interface ActionItemRule {
|
|
|
3233
3266
|
id?: number;
|
|
3234
3267
|
actionName?: string;
|
|
3235
3268
|
disableRules?: QueryUnion;
|
|
3236
|
-
|
|
3269
|
+
requiredCapabilities?: string[];
|
|
3237
3270
|
}
|
|
3238
3271
|
|
|
3239
3272
|
export interface ArithmeticQuery extends Query, FieldCondition {
|
|
@@ -3580,57 +3613,49 @@ export interface Task {
|
|
|
3580
3613
|
}
|
|
3581
3614
|
|
|
3582
3615
|
export interface TaskV1 extends Task {
|
|
3583
|
-
endedTimeStamp?: Date;
|
|
3584
3616
|
startedTimeStamp?: Date;
|
|
3617
|
+
endedTimeStamp?: Date;
|
|
3585
3618
|
}
|
|
3586
3619
|
|
|
3587
3620
|
export interface CreatedEvent extends JobEvent {
|
|
3588
|
-
type: "job.monitor.job.created" | "job.monitor.task.created";
|
|
3589
3621
|
name?: string;
|
|
3590
3622
|
description?: string;
|
|
3591
3623
|
parameters?: { [index: string]: any };
|
|
3592
3624
|
}
|
|
3593
3625
|
|
|
3594
3626
|
export interface JobCreatedEvent extends CreatedEvent {
|
|
3595
|
-
type: "job.monitor.job.created";
|
|
3596
3627
|
tags?: string[];
|
|
3597
3628
|
startedBy?: string;
|
|
3598
3629
|
tasks?: TaskCreatedEvent[];
|
|
3599
3630
|
}
|
|
3600
3631
|
|
|
3601
|
-
export interface JobEvent {
|
|
3602
|
-
type: "job.monitor.job.created" | "job.monitor.task.created" | "job.monitor.job.updated" | "job.monitor.task.updated";
|
|
3632
|
+
export interface JobEvent extends TypedPayload {
|
|
3603
3633
|
version?: number;
|
|
3604
3634
|
id?: string;
|
|
3605
3635
|
status?: Status;
|
|
3606
3636
|
startedAt?: Date;
|
|
3607
3637
|
links?: RestRepresentationsLink[];
|
|
3608
|
-
eventType?: string;
|
|
3609
3638
|
eventTopic?: string;
|
|
3610
3639
|
eventSubject?: string;
|
|
3611
3640
|
job?: boolean;
|
|
3612
3641
|
}
|
|
3613
3642
|
|
|
3614
3643
|
export interface JobUpdatedEvent extends UpdatedEvent {
|
|
3615
|
-
type: "job.monitor.job.updated";
|
|
3616
3644
|
startedBy?: string;
|
|
3617
3645
|
tasks?: TaskUpdatedEvent[];
|
|
3618
3646
|
}
|
|
3619
3647
|
|
|
3620
3648
|
export interface TaskCreatedEvent extends CreatedEvent {
|
|
3621
|
-
type: "job.monitor.task.created";
|
|
3622
3649
|
parent?: string;
|
|
3623
3650
|
subTasks?: TaskCreatedEvent[];
|
|
3624
3651
|
}
|
|
3625
3652
|
|
|
3626
3653
|
export interface TaskUpdatedEvent extends UpdatedEvent {
|
|
3627
|
-
type: "job.monitor.task.updated";
|
|
3628
3654
|
parent?: string;
|
|
3629
3655
|
subTasks?: TaskUpdatedEvent[];
|
|
3630
3656
|
}
|
|
3631
3657
|
|
|
3632
3658
|
export interface UpdatedEvent extends JobEvent {
|
|
3633
|
-
type: "job.monitor.job.updated" | "job.monitor.task.updated";
|
|
3634
3659
|
endedAt?: Date;
|
|
3635
3660
|
message?: string;
|
|
3636
3661
|
updateAllParentStatus?: boolean;
|
|
@@ -3694,13 +3719,13 @@ export interface Serializable {
|
|
|
3694
3719
|
}
|
|
3695
3720
|
|
|
3696
3721
|
export interface JsonDeserializer<T> extends NullValueProvider {
|
|
3722
|
+
cachable?: boolean;
|
|
3697
3723
|
delegatee?: JsonDeserializer<any>;
|
|
3698
3724
|
knownPropertyNames?: any[];
|
|
3699
3725
|
nullValue?: T;
|
|
3700
3726
|
emptyAccessPattern?: AccessPattern;
|
|
3701
3727
|
emptyValue?: any;
|
|
3702
3728
|
objectIdReader?: ObjectIdReader;
|
|
3703
|
-
cachable?: boolean;
|
|
3704
3729
|
}
|
|
3705
3730
|
|
|
3706
3731
|
export interface ObjectIdReader extends Serializable {
|
|
@@ -3708,8 +3733,8 @@ export interface ObjectIdReader extends Serializable {
|
|
|
3708
3733
|
generator?: ObjectIdGenerator<any>;
|
|
3709
3734
|
resolver?: ObjectIdResolver;
|
|
3710
3735
|
idProperty?: SettableBeanProperty;
|
|
3711
|
-
idType?: JavaType;
|
|
3712
3736
|
deserializer?: JsonDeserializer<any>;
|
|
3737
|
+
idType?: JavaType;
|
|
3713
3738
|
}
|
|
3714
3739
|
|
|
3715
3740
|
export interface JsonSerializer<T> extends JsonFormatVisitable {
|
|
@@ -3732,6 +3757,10 @@ export interface LocalizedLocale {
|
|
|
3732
3757
|
|
|
3733
3758
|
export interface ResponseEntity<T> extends HttpEntity<T> {
|
|
3734
3759
|
statusCode?: HttpStatus;
|
|
3760
|
+
statusCodeValue?: number;
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3763
|
+
export interface CacheStats {
|
|
3735
3764
|
}
|
|
3736
3765
|
|
|
3737
3766
|
export interface Throwable extends Serializable {
|
|
@@ -3791,11 +3820,6 @@ export interface StringPath extends DslTypesDslStringExpression, Path<string> {
|
|
|
3791
3820
|
export interface NumberPath<T> extends NumberExpression<T>, Path<T> {
|
|
3792
3821
|
}
|
|
3793
3822
|
|
|
3794
|
-
export interface AnnotatedElement {
|
|
3795
|
-
annotations?: Annotation[];
|
|
3796
|
-
declaredAnnotations?: Annotation[];
|
|
3797
|
-
}
|
|
3798
|
-
|
|
3799
3823
|
export interface PathMetadata extends Serializable {
|
|
3800
3824
|
element?: any;
|
|
3801
3825
|
parent?: Path<any>;
|
|
@@ -3805,9 +3829,14 @@ export interface PathMetadata extends Serializable {
|
|
|
3805
3829
|
name?: string;
|
|
3806
3830
|
}
|
|
3807
3831
|
|
|
3832
|
+
export interface AnnotatedElement {
|
|
3833
|
+
annotations?: Annotation[];
|
|
3834
|
+
declaredAnnotations?: Annotation[];
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3808
3837
|
export interface Path<T> extends DslTypesExpression<T> {
|
|
3809
|
-
annotatedElement?: AnnotatedElement;
|
|
3810
3838
|
metadata?: PathMetadata;
|
|
3839
|
+
annotatedElement?: AnnotatedElement;
|
|
3811
3840
|
root?: Path<any>;
|
|
3812
3841
|
}
|
|
3813
3842
|
|
|
@@ -3885,6 +3914,9 @@ export interface DefaultResponseErrorHandler extends ResponseErrorHandler {
|
|
|
3885
3914
|
export interface RuntimeException extends Exception {
|
|
3886
3915
|
}
|
|
3887
3916
|
|
|
3917
|
+
export interface KeyDeserializer {
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3888
3920
|
export interface HtmlStreamEventReceiver {
|
|
3889
3921
|
}
|
|
3890
3922
|
|
|
@@ -3894,6 +3926,11 @@ export interface Policy extends HtmlStreamEventReceiver {
|
|
|
3894
3926
|
export interface Appendable {
|
|
3895
3927
|
}
|
|
3896
3928
|
|
|
3929
|
+
export interface TypedPayload {
|
|
3930
|
+
eventType?: string;
|
|
3931
|
+
payloadType?: string;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3897
3934
|
export interface NullValueProvider {
|
|
3898
3935
|
nullAccessPattern?: AccessPattern;
|
|
3899
3936
|
}
|
|
@@ -3912,6 +3949,7 @@ export interface ObjectIdResolver {
|
|
|
3912
3949
|
}
|
|
3913
3950
|
|
|
3914
3951
|
export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
|
|
3952
|
+
ignorable?: boolean;
|
|
3915
3953
|
objectIdInfo?: ObjectIdInfo;
|
|
3916
3954
|
managedReferenceName?: string;
|
|
3917
3955
|
valueDeserializer?: JsonDeserializer<any>;
|
|
@@ -3920,21 +3958,22 @@ export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializ
|
|
|
3920
3958
|
propertyIndex?: number;
|
|
3921
3959
|
creatorIndex?: number;
|
|
3922
3960
|
injectableValueId?: any;
|
|
3923
|
-
|
|
3961
|
+
injectionOnly?: boolean;
|
|
3924
3962
|
}
|
|
3925
3963
|
|
|
3926
3964
|
export interface JavaType extends ResolvedType, Serializable, Type {
|
|
3927
3965
|
keyType?: JavaType;
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
valueHandler?: any;
|
|
3966
|
+
superClass?: JavaType;
|
|
3967
|
+
contentType?: JavaType;
|
|
3968
|
+
bindings?: TypeBindings;
|
|
3932
3969
|
typeHandler?: any;
|
|
3970
|
+
valueHandler?: any;
|
|
3971
|
+
enumImplType?: boolean;
|
|
3933
3972
|
javaLangObject?: boolean;
|
|
3934
3973
|
referencedType?: JavaType;
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3974
|
+
contentValueHandler?: any;
|
|
3975
|
+
contentTypeHandler?: any;
|
|
3976
|
+
erasedSignature?: string;
|
|
3938
3977
|
interfaces?: JavaType[];
|
|
3939
3978
|
genericSignature?: string;
|
|
3940
3979
|
}
|
|
@@ -4052,36 +4091,36 @@ export interface Function<T, R> {
|
|
|
4052
4091
|
export interface HtmlChangeListener<T> {
|
|
4053
4092
|
}
|
|
4054
4093
|
|
|
4094
|
+
export interface AnnotatedMember extends Annotated, Serializable {
|
|
4095
|
+
allAnnotations?: AnnotationMap;
|
|
4096
|
+
fullName?: string;
|
|
4097
|
+
member?: Member;
|
|
4098
|
+
typeContext?: TypeResolutionContext;
|
|
4099
|
+
declaringClass?: Class<any>;
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4055
4102
|
export interface ObjectIdInfo {
|
|
4103
|
+
scope?: Class<any>;
|
|
4104
|
+
propertyName?: PropertyName;
|
|
4056
4105
|
generatorType?: Class<ObjectIdGenerator<any>>;
|
|
4057
4106
|
resolverType?: Class<ObjectIdResolver>;
|
|
4058
4107
|
alwaysAsId?: boolean;
|
|
4059
|
-
scope?: Class<any>;
|
|
4060
|
-
propertyName?: PropertyName;
|
|
4061
4108
|
}
|
|
4062
4109
|
|
|
4063
4110
|
export interface TypeDeserializer {
|
|
4111
|
+
defaultImpl?: Class<any>;
|
|
4112
|
+
propertyName?: string;
|
|
4064
4113
|
typeInclusion?: As;
|
|
4065
4114
|
typeIdResolver?: TypeIdResolver;
|
|
4066
|
-
propertyName?: string;
|
|
4067
|
-
defaultImpl?: Class<any>;
|
|
4068
|
-
}
|
|
4069
|
-
|
|
4070
|
-
export interface AnnotatedMember extends Annotated, Serializable {
|
|
4071
|
-
allAnnotations?: AnnotationMap;
|
|
4072
|
-
typeContext?: TypeResolutionContext;
|
|
4073
|
-
fullName?: string;
|
|
4074
|
-
member?: Member;
|
|
4075
|
-
declaringClass?: Class<any>;
|
|
4076
4115
|
}
|
|
4077
4116
|
|
|
4078
4117
|
export interface PropertyMetadata extends Serializable {
|
|
4079
4118
|
required?: boolean;
|
|
4119
|
+
index?: number;
|
|
4120
|
+
description?: string;
|
|
4080
4121
|
mergeInfo?: MergeInfo;
|
|
4081
4122
|
valueNulls?: Nulls;
|
|
4082
4123
|
contentNulls?: Nulls;
|
|
4083
|
-
index?: number;
|
|
4084
|
-
description?: string;
|
|
4085
4124
|
defaultValue?: string;
|
|
4086
4125
|
}
|
|
4087
4126
|
|
|
@@ -4095,18 +4134,18 @@ export interface TypeBindings extends Serializable {
|
|
|
4095
4134
|
|
|
4096
4135
|
export interface ResolvedType {
|
|
4097
4136
|
keyType?: ResolvedType;
|
|
4137
|
+
rawClass?: Class<any>;
|
|
4138
|
+
contentType?: ResolvedType;
|
|
4098
4139
|
containerType?: boolean;
|
|
4099
4140
|
arrayType?: boolean;
|
|
4100
4141
|
concrete?: boolean;
|
|
4101
4142
|
throwable?: boolean;
|
|
4102
4143
|
enumType?: boolean;
|
|
4103
|
-
parameterSource?: Class<any>;
|
|
4104
|
-
referenceType?: boolean;
|
|
4105
|
-
mapLikeType?: boolean;
|
|
4106
4144
|
collectionLikeType?: boolean;
|
|
4145
|
+
mapLikeType?: boolean;
|
|
4107
4146
|
referencedType?: ResolvedType;
|
|
4108
|
-
|
|
4109
|
-
|
|
4147
|
+
parameterSource?: Class<any>;
|
|
4148
|
+
referenceType?: boolean;
|
|
4110
4149
|
interface?: boolean;
|
|
4111
4150
|
primitive?: boolean;
|
|
4112
4151
|
abstract?: boolean;
|
|
@@ -4225,17 +4264,9 @@ export interface StandardEntity {
|
|
|
4225
4264
|
export interface BaseVisitor extends ExpressionVisitor {
|
|
4226
4265
|
}
|
|
4227
4266
|
|
|
4228
|
-
export interface TypeIdResolver {
|
|
4229
|
-
mechanism?: Id;
|
|
4230
|
-
descForKnownTypeIds?: string;
|
|
4231
|
-
}
|
|
4232
|
-
|
|
4233
4267
|
export interface AnnotationMap extends Annotations {
|
|
4234
4268
|
}
|
|
4235
4269
|
|
|
4236
|
-
export interface TypeResolutionContext {
|
|
4237
|
-
}
|
|
4238
|
-
|
|
4239
4270
|
export interface Member {
|
|
4240
4271
|
modifiers?: number;
|
|
4241
4272
|
name?: string;
|
|
@@ -4243,27 +4274,34 @@ export interface Member {
|
|
|
4243
4274
|
declaringClass?: Class<any>;
|
|
4244
4275
|
}
|
|
4245
4276
|
|
|
4277
|
+
export interface TypeResolutionContext {
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4246
4280
|
export interface Annotated {
|
|
4247
4281
|
annotated?: AnnotatedElement;
|
|
4248
4282
|
name?: string;
|
|
4249
4283
|
type?: JavaType;
|
|
4250
|
-
genericType?: Type;
|
|
4251
4284
|
public?: boolean;
|
|
4252
4285
|
rawType?: Class<any>;
|
|
4253
4286
|
}
|
|
4254
4287
|
|
|
4288
|
+
export interface TypeIdResolver {
|
|
4289
|
+
mechanism?: Id;
|
|
4290
|
+
descForKnownTypeIds?: string;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4255
4293
|
export interface MergeInfo {
|
|
4256
4294
|
getter?: AnnotatedMember;
|
|
4257
4295
|
fromDefaults?: boolean;
|
|
4258
4296
|
}
|
|
4259
4297
|
|
|
4260
4298
|
export interface BeanProperty extends Named {
|
|
4261
|
-
wrapperName?: PropertyName;
|
|
4262
4299
|
fullName?: PropertyName;
|
|
4263
|
-
virtual?: boolean;
|
|
4264
4300
|
member?: AnnotatedMember;
|
|
4265
|
-
metadata?: PropertyMetadata;
|
|
4266
4301
|
required?: boolean;
|
|
4302
|
+
virtual?: boolean;
|
|
4303
|
+
metadata?: PropertyMetadata;
|
|
4304
|
+
wrapperName?: PropertyName;
|
|
4267
4305
|
type?: JavaType;
|
|
4268
4306
|
}
|
|
4269
4307
|
|
|
@@ -4401,8 +4439,6 @@ export type DataObjectType = "MANAGED" | "SOURCE";
|
|
|
4401
4439
|
|
|
4402
4440
|
export type DisplayInTimeZone = "DEFAULT" | "AS_STORED" | "LOCAL";
|
|
4403
4441
|
|
|
4404
|
-
export type ExecutionStatus = "SCHEDULED" | "PENDING" | "RUNNING" | "COMPLETE" | "CANCELLED" | "FAILED";
|
|
4405
|
-
|
|
4406
4442
|
export type IconImageType = "GIF" | "JPEG" | "PNG" | "SVG";
|
|
4407
4443
|
|
|
4408
4444
|
export type IconType = "REGULAR" | "MAP";
|
|
@@ -4421,16 +4457,14 @@ export type RelationshipType = "DIRECT_CHILD" | "INDIRECT_CHILD" | "LINK";
|
|
|
4421
4457
|
|
|
4422
4458
|
export type TaskType = "LOAD_DOCUMENT" | "LOAD_LINK" | "DELETE_INDEX" | "LOAD_TRANSACTION" | "PROCESS_ATTACHMENTS";
|
|
4423
4459
|
|
|
4424
|
-
export type ObjectLockType = "Document";
|
|
4425
|
-
|
|
4426
4460
|
export type ConditionAssociationType = "REQUIRED_FIELD" | "READ_ONLY_FIELD" | "TEMPLATE_CONTROL" | "NLD_STYLING" | "CONDITION";
|
|
4427
4461
|
|
|
4428
4462
|
export type ReferencedFactType = "FIELD" | "MEMBERSHIP" | "CONDITION_REFERENCE";
|
|
4429
4463
|
|
|
4430
|
-
export type ComparisonOperator = "gt" | "gte" | "lt" | "lte";
|
|
4431
|
-
|
|
4432
4464
|
export type EqualityOperator = "eq" | "neq";
|
|
4433
4465
|
|
|
4466
|
+
export type InequalityOperator = "gt" | "gte" | "lt" | "lte";
|
|
4467
|
+
|
|
4434
4468
|
export type LogicalOperator = "and" | "or" | "not";
|
|
4435
4469
|
|
|
4436
4470
|
export type MembershipOperator = "current_user_is_member_of" | "current_user_is_not_member_of";
|
|
@@ -4471,19 +4505,19 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
|
|
|
4471
4505
|
|
|
4472
4506
|
export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
|
|
4473
4507
|
|
|
4474
|
-
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" | "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" | "DH3028" | "DH3029" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "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" | "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" | "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" | "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" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "DH6224" | "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";
|
|
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";
|
|
4475
4509
|
|
|
4476
4510
|
export type DataStoreType = "RELATIONAL";
|
|
4477
4511
|
|
|
4478
|
-
export type TYPE = "internal_postgres" | "postgres" | "oracle" | "
|
|
4512
|
+
export type TYPE = "internal_postgres" | "postgres" | "oracle" | "teradata" | "db2" | "MySQL" | "SQL Server";
|
|
4479
4513
|
|
|
4480
|
-
export type MessageAction = "CREATE" | "UPDATE" | "DELETE"
|
|
4514
|
+
export type MessageAction = "CREATE" | "UPDATE" | "DELETE";
|
|
4481
4515
|
|
|
4482
4516
|
export type CommonsSecurityBootStrapModelTypesUserGroupType = "user" | "group";
|
|
4483
4517
|
|
|
4484
4518
|
export type AccessType = "create" | "read" | "update" | "delete" | "search";
|
|
4485
4519
|
|
|
4486
|
-
export type HttpStatus = "100" | "101" | "102" | "103" | "200" | "201" | "202" | "203" | "204" | "205" | "206" | "207" | "208" | "226" | "300" | "301" | "302" | "303" | "304" | "305" | "307" | "308" | "400" | "401" | "402" | "403" | "404" | "405" | "406" | "407" | "408" | "409" | "410" | "411" | "412" | "413" | "414" | "415" | "416" | "417" | "418" | "419" | "420" | "421" | "422" | "423" | "424" | "426" | "428" | "429" | "431" | "500" | "501" | "502" | "503" | "504" | "505" | "506" | "507" | "508" | "509" | "510" | "511";
|
|
4520
|
+
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";
|
|
4487
4521
|
|
|
4488
4522
|
export type PathType = "ARRAYVALUE" | "ARRAYVALUE_CONSTANT" | "COLLECTION_ANY" | "DELEGATE" | "LISTVALUE" | "LISTVALUE_CONSTANT" | "MAPVALUE" | "MAPVALUE_CONSTANT" | "PROPERTY" | "VARIABLE";
|
|
4489
4523
|
|
|
@@ -4493,7 +4527,7 @@ export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
|
|
|
4493
4527
|
|
|
4494
4528
|
export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "CUSTOM";
|
|
4495
4529
|
|
|
4496
|
-
export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity
|
|
4530
|
+
export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
|
|
4497
4531
|
|
|
4498
4532
|
export type AbstractFileOperationUnion = CreateFileOperation | UpdateFileOperation | DeleteFileOperation;
|
|
4499
4533
|
|
|
@@ -4510,5 +4544,3 @@ export type QueryUnion = CompositeQuery | ArithmeticQuery | CurrentUserMembershi
|
|
|
4510
4544
|
export type AbstractRedactionRuleUnion = FullRedactionRule;
|
|
4511
4545
|
|
|
4512
4546
|
export type CellUnion = LiveVisualizationCell | StaticVisualizationCell | ImageCell | TextCell;
|
|
4513
|
-
|
|
4514
|
-
export type JobEventUnion = JobCreatedEvent | JobUpdatedEvent | TaskCreatedEvent | TaskUpdatedEvent;
|