@sassoftware/vi-api 1.15.2 → 1.15.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4782 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ // Generated using typescript-generator version 2.15.527 on 2023-11-29 22:36:32.
4
+
5
+ export interface SecuredApiMeta {
6
+ experimental?: boolean;
7
+ developmentStartYear?: number;
8
+ developmentEndYear?: number;
9
+ applicationVersion?: string;
10
+ serviceId?: string;
11
+ build?: SecuredBuild;
12
+ apiVersion?: number;
13
+ }
14
+
15
+ export interface SecuredBuild {
16
+ buildVersion?: string;
17
+ sourceId?: string;
18
+ sourceTimeStamp?: string;
19
+ applicationVersion?: string;
20
+ timeStamp?: string;
21
+ }
22
+
23
+ export interface Api extends Serializable {
24
+ version?: number;
25
+ links?: RestRepresentationsLink[];
26
+ }
27
+
28
+ export interface ApiMeta extends Serializable {
29
+ build?: Build;
30
+ experimental?: boolean;
31
+ developmentStartYear?: number;
32
+ developmentEndYear?: number;
33
+ serviceId?: string;
34
+ apiVersion?: number;
35
+ }
36
+
37
+ export interface ResourceMediaType {
38
+ name?: string;
39
+ version?: number;
40
+ deprecated?: boolean;
41
+ docUrl?: string;
42
+ }
43
+
44
+ export interface ResourceMediaTypes {
45
+ mediaTypes?: ResourceMediaType[];
46
+ version?: number;
47
+ }
48
+
49
+ export interface Build extends Serializable {
50
+ buildVersion?: string;
51
+ sourceId?: string;
52
+ sourceTimeStamp?: string;
53
+ applicationVersion?: string;
54
+ timeStamp?: string;
55
+ }
56
+
57
+ export interface Count extends Serializable {
58
+ version?: number;
59
+ value?: number;
60
+ }
61
+
62
+ export interface ErrorCodes {
63
+ }
64
+
65
+ export interface ErrorResponse extends Serializable {
66
+ errorCode?: number;
67
+ message?: string;
68
+ details?: string[];
69
+ remediation?: string;
70
+ errors?: ErrorResponse[];
71
+ id?: string;
72
+ links?: RestRepresentationsLink[];
73
+ version?: number;
74
+ targetUri?: string;
75
+ httpStatusCode?: number;
76
+ }
77
+
78
+ export interface RestRepresentationsLink extends Serializable {
79
+ method?: string;
80
+ rel?: string;
81
+ href?: string;
82
+ uri?: string;
83
+ type?: string;
84
+ responseType?: string;
85
+ itemType?: string;
86
+ responseItemType?: string;
87
+ title?: string;
88
+ }
89
+
90
+ export interface RestRepresentationsLinks extends Serializable {
91
+ version?: number;
92
+ links?: RestRepresentationsLink[];
93
+ }
94
+
95
+ export interface ModelConstants {
96
+ }
97
+
98
+ export interface ResourceAttributes extends Serializable {
99
+ id?: string;
100
+ version?: number;
101
+ label?: string;
102
+ description?: string;
103
+ links?: RestRepresentationsLink[];
104
+ attributes?: { [index: string]: any };
105
+ }
106
+
107
+ export interface Attribute {
108
+ name?: string;
109
+ value?: any;
110
+ valueList?: any[];
111
+ }
112
+
113
+ export interface ResourceCollection<T> extends Serializable {
114
+ links?: RestRepresentationsLink[];
115
+ name?: string;
116
+ accept?: string;
117
+ start?: number;
118
+ count?: number;
119
+ items?: T[];
120
+ limit?: number;
121
+ version?: number;
122
+ }
123
+
124
+ export interface ResourceProperties extends Serializable {
125
+ properties?: ResourceProperty[];
126
+ }
127
+
128
+ export interface ResourceProperty {
129
+ name?: string;
130
+ value?: string;
131
+ }
132
+
133
+ export interface ResourceSelection extends Serializable {
134
+ id?: string;
135
+ type?: string;
136
+ template?: string;
137
+ resources?: string[];
138
+ links?: RestRepresentationsLink[];
139
+ version?: number;
140
+ }
141
+
142
+ export interface RestRepresentationsResourceSummary extends TrackedResource, Serializable {
143
+ id?: string;
144
+ type?: string;
145
+ name?: string;
146
+ description?: string;
147
+ typeDefName?: string;
148
+ iconUri?: string;
149
+ links?: RestRepresentationsLink[];
150
+ version?: number;
151
+ }
152
+
153
+ export interface SASHeaders {
154
+ }
155
+
156
+ export interface ValidationResponse extends Serializable {
157
+ version?: number;
158
+ error?: ErrorResponse;
159
+ links?: RestRepresentationsLink[];
160
+ valid?: boolean;
161
+ }
162
+
163
+ export interface AbstractModifiableResource extends AbstractResource, ETaggable, TimeTrackedResource, ETagAndLastModifiedProvider {
164
+ createdBy?: string;
165
+ modifiedBy?: string;
166
+ }
167
+
168
+ export interface AbstractResource extends Serializable {
169
+ links?: RestRepresentationsLink[];
170
+ version?: number;
171
+ }
172
+
173
+ export interface ETagAndLastModifiedProvider extends ETaggable, LastModifiedProvider {
174
+ }
175
+
176
+ export interface ETaggable extends Preconditionable {
177
+ etag?: string;
178
+ }
179
+
180
+ export interface LastModifiedProvider extends Preconditionable {
181
+ lastModifiedHeaderDate?: Date;
182
+ }
183
+
184
+ export interface LastModifiedProviderFromModifiedTimeStamp extends LastModifiedProvider {
185
+ modifiedTimeStamp?: Date;
186
+ }
187
+
188
+ export interface Preconditionable {
189
+ }
190
+
191
+ export interface TimeTrackedResource extends LastModifiedProviderFromModifiedTimeStamp {
192
+ creationTimeStamp?: Date;
193
+ }
194
+
195
+ export interface TrackedResource extends Serializable, ETaggable, TimeTrackedResource, ETagAndLastModifiedProvider {
196
+ createdBy?: string;
197
+ modifiedBy?: string;
198
+ }
199
+
200
+ export interface DateDeserializer extends JsonDeserializer<Date> {
201
+ }
202
+
203
+ export interface DateSerializer extends JsonSerializer<Date> {
204
+ }
205
+
206
+ export interface InstantDeserializer extends JsonDeserializer<Date> {
207
+ }
208
+
209
+ export interface InstantSerializer extends JsonSerializer<Date> {
210
+ }
211
+
212
+ export interface Timestamp {
213
+ }
214
+
215
+ export interface Action extends ActionSummary {
216
+ items?: ActionItem[];
217
+ }
218
+
219
+ export interface ActionItem {
220
+ }
221
+
222
+ export interface Constants {
223
+ }
224
+
225
+ export interface ActionSummary {
226
+ actionId?: string;
227
+ action?: string;
228
+ actionType?: string;
229
+ objectType?: string;
230
+ objectId?: string;
231
+ objectVersion?: string;
232
+ createdBy?: string;
233
+ createdAt?: string;
234
+ links?: RestRepresentationsLink[];
235
+ version?: number;
236
+ }
237
+
238
+ export interface ActionTableValue {
239
+ value?: any;
240
+ type?: ActionTableValueType;
241
+ fieldRestriction?: { [index: string]: any };
242
+ }
243
+
244
+ export interface ActionType {
245
+ localizedMessage?: string;
246
+ actionType?: string;
247
+ }
248
+
249
+ export interface LabelActionItem extends ActionItem {
250
+ type?: ActionItemType;
251
+ label?: string;
252
+ items?: ActionItem[];
253
+ labelType?: LabelValueType;
254
+ }
255
+
256
+ export interface SubActionItem extends ActionItem {
257
+ type?: ActionItemType;
258
+ action?: string;
259
+ items?: ActionItem[];
260
+ }
261
+
262
+ export interface TableActionItem extends ActionItem {
263
+ type?: ActionItemType;
264
+ action?: string;
265
+ headings?: string[];
266
+ rows?: ActionTableValue[][];
267
+ }
268
+
269
+ export interface DataContent {
270
+ "@type": "Document" | "ResolvedEntity" | "DocumentIdentifier" | "DocumentLink" | "TransactionLink";
271
+ }
272
+
273
+ export interface Document extends DataContent {
274
+ "@type": "Document" | "ResolvedEntity";
275
+ objectTypeName?: string;
276
+ objectTypeId?: number;
277
+ objectTypeVersion?: number;
278
+ id?: string;
279
+ createdAt?: Date;
280
+ lastUpdatedAt?: Date;
281
+ validFrom?: Date;
282
+ validTo?: Date;
283
+ fieldValues?: { [index: string]: any };
284
+ fileOperations?: AbstractFileOperationUnion[];
285
+ displayLabel?: string;
286
+ }
287
+
288
+ export interface DocumentIdentifier extends DataContent {
289
+ "@type": "DocumentIdentifier";
290
+ objectTypeName?: string;
291
+ id?: string;
292
+ }
293
+
294
+ export interface DocumentLink extends CommonsDataRelationship {
295
+ "@type": "DocumentLink";
296
+ qualifiedTypeName?: string;
297
+ }
298
+
299
+ export interface EntityReference {
300
+ documentType?: string;
301
+ documentId?: string;
302
+ validFrom?: Date;
303
+ validTo?: Date;
304
+ compoundValues?: string[];
305
+ label?: string;
306
+ }
307
+
308
+ export interface CommonsDataRelationship extends DataContent {
309
+ "@type": "DocumentLink" | "TransactionLink";
310
+ relationshipTypeName?: string;
311
+ relationshipTypeVersion?: number;
312
+ relationshipTypeLabel?: string;
313
+ id?: string;
314
+ createdAt?: Date;
315
+ lastUpdatedAt?: Date;
316
+ validFrom?: Date;
317
+ validTo?: Date;
318
+ displayLabel?: string;
319
+ fromObjectTypeName?: string;
320
+ fromObjectTypeVersion?: number;
321
+ fromObjectId?: string;
322
+ fromObjectDisplayLabel?: string;
323
+ toObjectTypeName?: string;
324
+ toObjectTypeVersion?: number;
325
+ toObjectId?: string;
326
+ toObjectDisplayLabel?: string;
327
+ fieldValues?: { [index: string]: any };
328
+ restrictedFields?: { [index: string]: any };
329
+ }
330
+
331
+ export interface RelationshipIdentifier {
332
+ fullyQualifiedId?: string;
333
+ relationshipName?: string;
334
+ fromObjectName?: string;
335
+ toObjectName?: string;
336
+ }
337
+
338
+ export interface DataResolvedEntity extends Document {
339
+ "@type": "ResolvedEntity";
340
+ label?: string;
341
+ compoundValues?: string[];
342
+ references?: EntityReference[];
343
+ }
344
+
345
+ export interface TransactionLink extends CommonsDataRelationship {
346
+ "@type": "TransactionLink";
347
+ }
348
+
349
+ export interface AbstractFileOperation {
350
+ method?: MethodType;
351
+ }
352
+
353
+ export interface CreateFileOperation extends AbstractFileOperation {
354
+ body?: FileAssociation;
355
+ }
356
+
357
+ export interface DeleteFileOperation extends AbstractFileOperation {
358
+ id?: string;
359
+ }
360
+
361
+ export interface FileAssociation {
362
+ version?: number;
363
+ id?: string;
364
+ name?: string;
365
+ originalName?: string;
366
+ category?: string;
367
+ location?: string;
368
+ type?: string;
369
+ size?: number;
370
+ description?: string;
371
+ properties?: { [index: string]: any };
372
+ uploadedAt?: Date;
373
+ uploadedBy?: string;
374
+ extractedContent?: string;
375
+ displayOrder?: number;
376
+ link?: boolean;
377
+ isLink?: boolean;
378
+ }
379
+
380
+ export interface UpdateFileOperation extends AbstractFileOperation {
381
+ body?: FileAssociation;
382
+ }
383
+
384
+ export interface ItemPublishResultDTO {
385
+ type?: PublishItemType;
386
+ label?: string;
387
+ successful?: number;
388
+ failed?: number;
389
+ errors?: PublishErrorDTO[];
390
+ }
391
+
392
+ export interface PublishErrorDTO {
393
+ name?: string;
394
+ label?: string;
395
+ message?: string;
396
+ }
397
+
398
+ export interface PublishResolution {
399
+ }
400
+
401
+ export interface SolutionPublishResultDTO {
402
+ solutionName?: string;
403
+ solutionLabel?: string;
404
+ successful?: number;
405
+ failed?: number;
406
+ results?: ItemPublishResultDTO[];
407
+ links?: RestRepresentationsLink[];
408
+ }
409
+
410
+ export interface AttachmentController {
411
+ }
412
+
413
+ export interface CatalogController {
414
+ }
415
+
416
+ export interface CommentController {
417
+ }
418
+
419
+ export interface ConditionController {
420
+ }
421
+
422
+ export interface ConfigServiceController {
423
+ }
424
+
425
+ export interface ControllerUriConstants {
426
+ }
427
+
428
+ export interface ControllerUtil {
429
+ }
430
+
431
+ export interface DataHubExceptionHandler {
432
+ }
433
+
434
+ export interface DataServicesController {
435
+ }
436
+
437
+ export interface DatahubHandlerExceptionResolver extends HandlerExceptionResolver, Ordered {
438
+ }
439
+
440
+ export interface DocumentController {
441
+ }
442
+
443
+ export interface DocumentControllerFilterUtil {
444
+ }
445
+
446
+ export interface DocumentFilterUtil {
447
+ }
448
+
449
+ export interface DocumentMetadataController {
450
+ }
451
+
452
+ export interface FileAssociationResponse extends FileAssociation {
453
+ links?: RestRepresentationsLink[];
454
+ }
455
+
456
+ export interface FileController {
457
+ }
458
+
459
+ export interface FilterController {
460
+ }
461
+
462
+ export interface IconController {
463
+ allIcons?: IconDTO[];
464
+ }
465
+
466
+ export interface LinkMetadataController {
467
+ }
468
+
469
+ export interface LinkWithBody<T> extends RestRepresentationsLink {
470
+ body?: T;
471
+ }
472
+
473
+ export interface LockController {
474
+ }
475
+
476
+ export interface MetadataActivityRecorder {
477
+ }
478
+
479
+ export interface MetahubSharedExceptionHandler {
480
+ }
481
+
482
+ export interface PageController {
483
+ }
484
+
485
+ export interface ReferenceListController {
486
+ }
487
+
488
+ export interface RelationshipsController {
489
+ }
490
+
491
+ export interface ResolvedEntityController {
492
+ }
493
+
494
+ export interface ResolvedEntityUtilController {
495
+ }
496
+
497
+ export interface TransactionDataController {
498
+ }
499
+
500
+ export interface TransactionMetadataController {
501
+ allTransactions?: TransactionDTO[];
502
+ }
503
+
504
+ export interface TraversalController {
505
+ }
506
+
507
+ export interface UtilityServicesController {
508
+ supportedLocales?: LocalizedLocale[];
509
+ defaultLocale?: LocalizedLocale;
510
+ }
511
+
512
+ export interface ActionController {
513
+ }
514
+
515
+ export interface AdminActiveHomepageController {
516
+ }
517
+
518
+ export interface AdminAsyncJobController {
519
+ }
520
+
521
+ export interface AdminCascadingReferenceDataController {
522
+ }
523
+
524
+ export interface AdminControlController {
525
+ }
526
+
527
+ export interface AdminDataStoreController {
528
+ }
529
+
530
+ export interface DataStoreCredentials {
531
+ username?: string;
532
+ password?: string;
533
+ }
534
+
535
+ export interface AdminElementBagController {
536
+ }
537
+
538
+ export interface AdminElementController {
539
+ allElements?: ElementDTO[];
540
+ }
541
+
542
+ export interface AdminEntityController {
543
+ }
544
+
545
+ export interface AdminEntityUtilController {
546
+ }
547
+
548
+ export interface AdminIconController {
549
+ allIcons?: IconDTO[];
550
+ }
551
+
552
+ export interface AdminMetadataCacheController {
553
+ metadataCacheStatistics?: ResponseEntity<{ [index: string]: any }>;
554
+ clientMetadataCacheStatistics?: ResponseEntity<CacheStats>;
555
+ }
556
+
557
+ export interface AdminNldStylingRuleController {
558
+ rulesFromAllSources?: { [index: string]: any };
559
+ }
560
+
561
+ export interface AdminPageBuilderController {
562
+ }
563
+
564
+ export interface AdminReferenceListController {
565
+ }
566
+
567
+ export interface AdminRelationshipController {
568
+ }
569
+
570
+ export interface AdminRulesCacheController {
571
+ }
572
+
573
+ export interface AdminStoredObjectController {
574
+ }
575
+
576
+ export interface AdminTemplateController {
577
+ }
578
+
579
+ export interface AdminUtilController {
580
+ allDataStoreNames?: string[];
581
+ }
582
+
583
+ export interface ClientApplicationController {
584
+ allClientApplications?: ResourceCollection<ClientApplication>;
585
+ }
586
+
587
+ export interface SolutionController {
588
+ }
589
+
590
+ export interface TemplateTypeController {
591
+ allTemplateTypes?: ResourceCollection<TemplateType>;
592
+ }
593
+
594
+ export interface AsyncJobException extends DataHubException {
595
+ }
596
+
597
+ export interface RestUtil {
598
+ }
599
+
600
+ export interface AuditableObject extends IdentifiableObject {
601
+ createdBy?: string;
602
+ createdAt?: Date;
603
+ lastUpdatedBy?: string;
604
+ lastUpdatedAt?: Date;
605
+ }
606
+
607
+ export interface CapabilityConstants {
608
+ }
609
+
610
+ export interface ConfigProperty extends Identifiable, NamedObject {
611
+ values?: string[];
612
+ }
613
+
614
+ export interface Constant {
615
+ }
616
+
617
+ export interface ActionHistoryColumns {
618
+ }
619
+
620
+ export interface ConfigPropertyName {
621
+ }
622
+
623
+ export interface QueryName {
624
+ }
625
+
626
+ export interface CoreCascadingReferenceData extends LocalizableObject, NamedObject, SolutionAssignedEntity {
627
+ levels?: CoreReferenceList[];
628
+ }
629
+
630
+ export interface CoreCompound extends AuditableObject, Versioned {
631
+ entity?: CoreEntity;
632
+ elements?: CoreElement[];
633
+ }
634
+
635
+ export interface CoreDataField<O> extends LocalizableObject, Versioned, NamedObject {
636
+ primaryKeyField?: boolean;
637
+ displayIndex?: number;
638
+ primaryKeySeqNo?: number;
639
+ dataType?: any;
640
+ columnName?: string;
641
+ length?: number;
642
+ precision?: number;
643
+ scale?: number;
644
+ unique?: boolean;
645
+ autoGenerated?: boolean;
646
+ required?: boolean;
647
+ systemReserved?: boolean;
648
+ constrainingListName?: string;
649
+ allowMultipleSelections?: boolean;
650
+ readOnly?: boolean;
651
+ userSelectionStrategy?: UserSelectionStrategyType;
652
+ indexedForSearch?: boolean;
653
+ assignedTimeZone?: string;
654
+ displayInTimeZone?: string;
655
+ showTimeZone?: boolean;
656
+ redacted?: boolean;
657
+ useObjectAuthorization?: boolean;
658
+ allowedRedactedFieldGroups?: RedactionRuleEntity[];
659
+ owner?: O;
660
+ masked?: boolean;
661
+ userGroupSelectionField?: boolean;
662
+ constrained?: boolean;
663
+ }
664
+
665
+ export interface CoreDataObject extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity, Serializable {
666
+ dataStore?: DataStore;
667
+ tableName?: string;
668
+ tableType?: string;
669
+ cacheTimeoutSecs?: number;
670
+ historyEnabled?: boolean;
671
+ systemReserved?: boolean;
672
+ lastUpdatedAtTimeFieldName?: string;
673
+ createdAtTimeFieldName?: string;
674
+ validFromFieldName?: string;
675
+ validToFieldName?: string;
676
+ allowedRedactedFieldGroups?: RedactionRuleEntity[];
677
+ displayTextFields?: SortableNameReference[];
678
+ fields?: CoreDataField<any>[];
679
+ cached?: boolean;
680
+ }
681
+
682
+ export interface CoreDataObjectWithHistory extends CoreDataObject {
683
+ historyTableName?: string;
684
+ lastUpdatedByUserIdFieldName?: string;
685
+ versionNumberFieldName?: string;
686
+ createFlagHistoryColumnName?: string;
687
+ deleteFlagHistoryColumnName?: string;
688
+ updateFlagHistoryColumnName?: string;
689
+ }
690
+
691
+ export interface CoreElement extends LocalizableObject, Versioned, NamedObject, SolutionAssignedEntity {
692
+ dataType?: any;
693
+ displayable?: boolean;
694
+ compounds?: CoreCompound[];
695
+ mappedFields?: CoreStoredObjectField[];
696
+ }
697
+
698
+ export interface CoreEntity extends LocalizableObject, Versioned, NamedObject, Serializable, SolutionAssignedEntity {
699
+ defaultRegularIcon?: CoreIcon;
700
+ nodeShape?: string;
701
+ nodeColor?: string;
702
+ borderColor?: string;
703
+ borderWidth?: number;
704
+ scale?: number;
705
+ displayTextElements?: SortableNameReference[];
706
+ linkDisplayTextElements?: SortableNameReference[];
707
+ useForNetworkBuild?: boolean;
708
+ temporalSplitting?: boolean;
709
+ compounds?: CoreCompound[];
710
+ nodeDecorations?: NodeDecorationEntity[];
711
+ additionalLabel?: string;
712
+ requiresMultipleContributors?: boolean;
713
+ }
714
+
715
+ export interface CoreIcon extends AuditableObject, Versioned, NamedObject, Serializable, SolutionAssignedEntity {
716
+ type?: IconType;
717
+ bytes?: any;
718
+ imageType?: IconImageType;
719
+ }
720
+
721
+ export interface CoreReferenceList extends LocalizableObject, NamedObject, SolutionAssignedEntity {
722
+ archived?: boolean;
723
+ alphabeticalSort?: boolean;
724
+ maxCodeLength?: number;
725
+ items?: CoreReferenceListField[];
726
+ hierarchyLevel?: number;
727
+ referenceListType?: ReferenceListType;
728
+ parent?: CoreCascadingReferenceData;
729
+ }
730
+
731
+ export interface CoreReferenceListField extends LocalizableObject {
732
+ parentList?: CoreReferenceList;
733
+ code?: string;
734
+ archived?: boolean;
735
+ displayIndex?: number;
736
+ parentCode?: string;
737
+ }
738
+
739
+ export interface CoreRelationship extends CoreDataObjectWithHistory {
740
+ type?: RelationshipType;
741
+ reverseName?: string;
742
+ localizedReverseLabels?: LocalizedLabel[];
743
+ required?: boolean;
744
+ cardinality?: RelationshipCardinality;
745
+ previousCardinality?: RelationshipCardinality;
746
+ jobId?: string;
747
+ fromObject?: CoreStoredObject;
748
+ toObject?: CoreStoredObject;
749
+ toObjectTypeFieldName?: string;
750
+ linkedEntityTypes?: CoreStoredObject[];
751
+ joinKeyFieldName?: string;
752
+ symmetric?: boolean;
753
+ managed?: boolean;
754
+ joinConditions?: BooleanExpressionUnion[];
755
+ cascadeType?: CascadeType;
756
+ sortCriteria?: SortCriteria;
757
+ fields?: CoreRelationshipField[];
758
+ deleteTableName?: string;
759
+ useCustomIndex?: boolean;
760
+ color?: string;
761
+ width?: number;
762
+ dashType?: string;
763
+ styles?: LinkStyleEntity[];
764
+ readOnly?: boolean;
765
+ primaryKeyFields?: CoreRelationshipField[];
766
+ reverseLabel?: string;
767
+ heterogeneous?: boolean;
768
+ internalHeterogeneous?: boolean;
769
+ foreignKeyFieldNames?: string[];
770
+ attributeFields?: CoreRelationshipField[];
771
+ nonAttributeFieldNames?: string[];
772
+ qualifiedName?: string;
773
+ link?: boolean;
774
+ }
775
+
776
+ export interface CoreRelationshipField extends CoreDataField<CoreRelationship> {
777
+ owner?: CoreRelationship;
778
+ summaryDisplayIndex?: number;
779
+ authorizedToRevealMasked?: MaskRevealAuthorizationEntityRelationship[];
780
+ }
781
+
782
+ export interface CoreStoredObject extends CoreDataObjectWithHistory {
783
+ type?: DataObjectType;
784
+ fields?: CoreStoredObjectField[];
785
+ relationshipsFrom?: CoreRelationship[];
786
+ relationshipsTo?: CoreRelationship[];
787
+ transactionsFrom?: CoreTransaction[];
788
+ transactionsTo?: CoreTransaction[];
789
+ linkedRelationshipTypes?: CoreRelationship[];
790
+ defaultRegularIcon?: CoreIcon;
791
+ nodeShape?: string;
792
+ nodeColor?: string;
793
+ markerColor?: string;
794
+ borderColor?: string;
795
+ borderWidth?: number;
796
+ scale?: number;
797
+ elementGroupRoot?: boolean;
798
+ indexedForSearch?: boolean;
799
+ attachmentsIndexedForSearch?: boolean;
800
+ enableCasDistributedDataLoad?: boolean;
801
+ deleteTableName?: string;
802
+ urnFormat?: string;
803
+ urnLength?: number;
804
+ urnStartValue?: number;
805
+ urnType?: UrnType;
806
+ requireSearchBeforeCreate?: boolean;
807
+ mobileOfflineEnabled?: boolean;
808
+ fileCategories?: FileCategoryEntity[];
809
+ styles?: EntityStyleEntity[];
810
+ nodeDecorations?: NodeDecorationEntity[];
811
+ additionalLabel?: string;
812
+ publishCode?: PublishCode;
813
+ fieldMap?: { [index: string]: CoreStoredObjectField };
814
+ readOnly?: boolean;
815
+ primaryKeyFields?: CoreStoredObjectField[];
816
+ quotedDeleteTableName?: string;
817
+ urnsequential?: boolean;
818
+ }
819
+
820
+ export interface CoreStoredObjectField extends CoreDataField<CoreStoredObject> {
821
+ owner?: CoreStoredObject;
822
+ element?: CoreElement;
823
+ requiredCondition?: string;
824
+ requiredConditionType?: ObjectStateType;
825
+ readOnlyCondition?: string;
826
+ readOnlyConditionType?: ObjectStateType;
827
+ cascadingReferenceDataName?: string;
828
+ cascadingReferenceDataFilterByListName?: string;
829
+ cascadingReferenceDataFilterByCode?: string;
830
+ cascadingReferenceDataFilterByField?: string;
831
+ authorizedToRevealMasked?: MaskRevealAuthorizationEntityStoredObject[];
832
+ }
833
+
834
+ export interface CoreTransaction extends CoreDataObject {
835
+ fromObject?: CoreStoredObject;
836
+ toObject?: CoreStoredObject;
837
+ fields?: CoreTransactionField[];
838
+ fromObjJoinCondition?: BooleanExpressionUnion;
839
+ toObjJoinCondition?: BooleanExpressionUnion;
840
+ fromObjectTypeFieldName?: string;
841
+ toObjectTypeFieldName?: string;
842
+ fromObjectRefFieldName?: string;
843
+ toObjectRefFieldName?: string;
844
+ lineWidthFieldName?: string;
845
+ lineWidthFunctionType?: AggregateFunctionType;
846
+ lineColorFieldName?: string;
847
+ lineColorFunctionType?: AggregateFunctionType;
848
+ toHeterogeneousAndFromObjectIsIndexable?: boolean;
849
+ primaryKeyFields?: CoreDataField<any>[];
850
+ heterogeneous?: boolean;
851
+ fullHeterogeneous?: boolean;
852
+ toHeterogeneous?: boolean;
853
+ fromHeterogeneous?: boolean;
854
+ fromHeterogeneousAndToObjectIsIndexable?: boolean;
855
+ nonHeterogeneousAndBothSidesAreIndexable?: boolean;
856
+ }
857
+
858
+ export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
859
+ owner?: CoreTransaction;
860
+ authorizedToRevealMasked?: MaskRevealAuthorizationEntityTransaction[];
861
+ }
862
+
863
+ export interface DataStore extends AuditableObject, Versioned, NamedObject {
864
+ type?: DataStoreType;
865
+ schemaName?: string;
866
+ assignedTimeZone?: string;
867
+ connectionType?: TYPE;
868
+ host?: string;
869
+ port?: string;
870
+ databaseOrServiceName?: string;
871
+ urlAppendedParameters?: string;
872
+ advancedProperties?: { [index: string]: string };
873
+ poolIntialSize?: number;
874
+ poolMinIdle?: number;
875
+ poolMaxIdle?: number;
876
+ poolMaxActive?: number;
877
+ defaultDataStore?: boolean;
878
+ testOnBorrow?: boolean;
879
+ defaultSchemaName?: string;
880
+ }
881
+
882
+ export interface FeatureConstants {
883
+ }
884
+
885
+ export interface FieldHeader {
886
+ fieldId?: number;
887
+ entityTypeId?: number;
888
+ fieldName?: string;
889
+ columnName?: string;
890
+ fieldDataType?: string;
891
+ }
892
+
893
+ export interface FileCategoryEntity extends Serializable {
894
+ name?: string;
895
+ displayName?: string;
896
+ allowMultiple?: boolean;
897
+ required?: boolean;
898
+ documentLockRequired?: boolean;
899
+ }
900
+
901
+ export interface HistoryInfo {
902
+ historyInfoId?: number;
903
+ itemRefId?: string;
904
+ itemType?: ItemType;
905
+ itemLabel?: string;
906
+ operation?: Operation;
907
+ ownerType?: string;
908
+ ownerId?: string;
909
+ ownerVersion?: string;
910
+ }
911
+
912
+ export interface Identifiable {
913
+ id?: number;
914
+ }
915
+
916
+ export interface IdentifiableObject extends Identifiable {
917
+ }
918
+
919
+ export interface InjectableResource {
920
+ }
921
+
922
+ export interface LocalizableObject extends AuditableObject {
923
+ localizedLabels?: LocalizedLabel[];
924
+ localizedDescriptions?: LocalizedDescription[];
925
+ label?: string;
926
+ description?: string;
927
+ }
928
+
929
+ export interface LocalizedDescription extends AuditableObject, Versioned {
930
+ locale?: Locale;
931
+ description?: string;
932
+ }
933
+
934
+ export interface LocalizedLabel extends AuditableObject, Versioned {
935
+ localeCd?: string;
936
+ locale?: Locale;
937
+ label?: string;
938
+ type?: LabelType;
939
+ }
940
+
941
+ export interface MaskRevealAuthorizationEntity {
942
+ uuid?: string;
943
+ selectionTypeCd?: UserGroupType;
944
+ selectionNm?: string;
945
+ }
946
+
947
+ export interface MaskRevealAuthorizationEntityFactory {
948
+ }
949
+
950
+ export interface MaskRevealAuthorizationEntityRelationship extends MaskRevealAuthorizationEntity {
951
+ coreDataField?: CoreRelationshipField;
952
+ }
953
+
954
+ export interface MaskRevealAuthorizationEntityStoredObject extends MaskRevealAuthorizationEntity {
955
+ coreDataField?: CoreStoredObjectField;
956
+ }
957
+
958
+ export interface MaskRevealAuthorizationEntityTransaction extends MaskRevealAuthorizationEntity {
959
+ coreDataField?: CoreTransactionField;
960
+ }
961
+
962
+ export interface NamedObject {
963
+ name?: string;
964
+ }
965
+
966
+ export interface PrimaryKeySeqNoComparators {
967
+ }
968
+
969
+ export interface CoreDataFieldComparator extends Comparator<CoreDataField<any>> {
970
+ }
971
+
972
+ export interface DataFieldDTOComparator extends Comparator<DataField> {
973
+ }
974
+
975
+ export interface QAuditableObject extends EntityPathBase<AuditableObject> {
976
+ _super?: QIdentifiableObject;
977
+ createdAt?: DateTimePath<Date>;
978
+ createdBy?: StringPath;
979
+ id?: NumberPath<number>;
980
+ lastUpdatedAt?: DateTimePath<Date>;
981
+ lastUpdatedBy?: StringPath;
982
+ }
983
+
984
+ export interface QConfigProperty extends EntityPathBase<ConfigProperty> {
985
+ id?: NumberPath<number>;
986
+ name?: StringPath;
987
+ valueString?: StringPath;
988
+ }
989
+
990
+ export interface QCoreCascadingReferenceData extends EntityPathBase<CoreCascadingReferenceData> {
991
+ _super?: QLocalizableObject;
992
+ assignedSolution?: QSolutionEntity;
993
+ createdAt?: DateTimePath<Date>;
994
+ createdBy?: StringPath;
995
+ id?: NumberPath<number>;
996
+ lastUpdatedAt?: DateTimePath<Date>;
997
+ lastUpdatedBy?: StringPath;
998
+ levels?: SetPath<CoreReferenceList, QCoreReferenceList>;
999
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1000
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1001
+ name?: StringPath;
1002
+ }
1003
+
1004
+ export interface QCoreCompound extends EntityPathBase<CoreCompound> {
1005
+ _super?: QAuditableObject;
1006
+ createdAt?: DateTimePath<Date>;
1007
+ createdBy?: StringPath;
1008
+ elements?: ListPath<CoreElement, QCoreElement>;
1009
+ entity?: QCoreEntity;
1010
+ id?: NumberPath<number>;
1011
+ lastUpdatedAt?: DateTimePath<Date>;
1012
+ lastUpdatedBy?: StringPath;
1013
+ version?: NumberPath<number>;
1014
+ }
1015
+
1016
+ export interface QCoreDataField extends EntityPathBase<CoreDataField<CoreDataObject>> {
1017
+ _super?: QLocalizableObject;
1018
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1019
+ allowMultipleSelections?: BooleanPath;
1020
+ assignedTimeZone?: StringPath;
1021
+ autoGenerated?: BooleanPath;
1022
+ columnName?: StringPath;
1023
+ constrainingListName?: StringPath;
1024
+ createdAt?: DateTimePath<Date>;
1025
+ createdBy?: StringPath;
1026
+ dataType?: EnumPath<any>;
1027
+ displayIndex?: NumberPath<number>;
1028
+ displayInTimeZone?: StringPath;
1029
+ id?: NumberPath<number>;
1030
+ indexedForSearch?: BooleanPath;
1031
+ isMasked?: BooleanPath;
1032
+ lastUpdatedAt?: DateTimePath<Date>;
1033
+ lastUpdatedBy?: StringPath;
1034
+ length?: NumberPath<number>;
1035
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1036
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1037
+ name?: StringPath;
1038
+ precision?: NumberPath<number>;
1039
+ primaryKeyField?: BooleanPath;
1040
+ primaryKeySeqNo?: NumberPath<number>;
1041
+ readOnly?: BooleanPath;
1042
+ redacted?: BooleanPath;
1043
+ required?: BooleanPath;
1044
+ scale?: NumberPath<number>;
1045
+ showTimeZone?: BooleanPath;
1046
+ systemReserved?: BooleanPath;
1047
+ unique?: BooleanPath;
1048
+ useObjectAuthorization?: BooleanPath;
1049
+ userSelectionStrategy?: EnumPath<UserSelectionStrategyType>;
1050
+ version?: NumberPath<number>;
1051
+ }
1052
+
1053
+ export interface QCoreDataObject extends EntityPathBase<CoreDataObject> {
1054
+ _super?: QLocalizableObject;
1055
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1056
+ assignedSolution?: QSolutionEntity;
1057
+ cacheTimeoutSecs?: NumberPath<number>;
1058
+ createdAt?: DateTimePath<Date>;
1059
+ createdAtTimeFieldName?: StringPath;
1060
+ createdBy?: StringPath;
1061
+ dataStore?: QDataStore;
1062
+ displayTextString?: StringPath;
1063
+ historyEnabled?: BooleanPath;
1064
+ id?: NumberPath<number>;
1065
+ lastUpdatedAt?: DateTimePath<Date>;
1066
+ lastUpdatedAtTimeFieldName?: StringPath;
1067
+ lastUpdatedBy?: StringPath;
1068
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1069
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1070
+ systemReserved?: BooleanPath;
1071
+ tableName?: StringPath;
1072
+ validFromFieldName?: StringPath;
1073
+ validToFieldName?: StringPath;
1074
+ version?: NumberPath<number>;
1075
+ }
1076
+
1077
+ export interface QCoreDataObjectWithHistory extends EntityPathBase<CoreDataObjectWithHistory> {
1078
+ _super?: QCoreDataObject;
1079
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1080
+ assignedSolution?: QSolutionEntity;
1081
+ cacheTimeoutSecs?: NumberPath<number>;
1082
+ createdAt?: DateTimePath<Date>;
1083
+ createdAtTimeFieldName?: StringPath;
1084
+ createdBy?: StringPath;
1085
+ createFlagHistoryColumnName?: StringPath;
1086
+ dataStore?: QDataStore;
1087
+ deleteFlagHistoryColumnName?: StringPath;
1088
+ displayTextString?: StringPath;
1089
+ historyEnabled?: BooleanPath;
1090
+ historyTableName?: StringPath;
1091
+ id?: NumberPath<number>;
1092
+ lastUpdatedAt?: DateTimePath<Date>;
1093
+ lastUpdatedAtTimeFieldName?: StringPath;
1094
+ lastUpdatedBy?: StringPath;
1095
+ lastUpdatedByUserIdFieldName?: StringPath;
1096
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1097
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1098
+ systemReserved?: BooleanPath;
1099
+ tableName?: StringPath;
1100
+ updateFlagHistoryColumnName?: StringPath;
1101
+ validFromFieldName?: StringPath;
1102
+ validToFieldName?: StringPath;
1103
+ version?: NumberPath<number>;
1104
+ versionNumberFieldName?: StringPath;
1105
+ }
1106
+
1107
+ export interface QCoreElement extends EntityPathBase<CoreElement> {
1108
+ _super?: QLocalizableObject;
1109
+ assignedSolution?: QSolutionEntity;
1110
+ compounds?: ListPath<CoreCompound, QCoreCompound>;
1111
+ createdAt?: DateTimePath<Date>;
1112
+ createdBy?: StringPath;
1113
+ dataType?: EnumPath<any>;
1114
+ displayable?: BooleanPath;
1115
+ id?: NumberPath<number>;
1116
+ lastUpdatedAt?: DateTimePath<Date>;
1117
+ lastUpdatedBy?: StringPath;
1118
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1119
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1120
+ mappedFields?: ListPath<CoreStoredObjectField, QCoreStoredObjectField>;
1121
+ name?: StringPath;
1122
+ version?: NumberPath<number>;
1123
+ }
1124
+
1125
+ export interface QCoreEntity extends EntityPathBase<CoreEntity> {
1126
+ _super?: QLocalizableObject;
1127
+ additionalLabel?: StringPath;
1128
+ assignedSolution?: QSolutionEntity;
1129
+ borderColor?: StringPath;
1130
+ borderWidth?: NumberPath<number>;
1131
+ compounds?: ListPath<CoreCompound, QCoreCompound>;
1132
+ createdAt?: DateTimePath<Date>;
1133
+ createdBy?: StringPath;
1134
+ defaultRegularIcon?: QCoreIcon;
1135
+ displayTextString?: StringPath;
1136
+ id?: NumberPath<number>;
1137
+ lastUpdatedAt?: DateTimePath<Date>;
1138
+ lastUpdatedBy?: StringPath;
1139
+ linkDisplayTextString?: StringPath;
1140
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1141
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1142
+ name?: StringPath;
1143
+ nodeColor?: StringPath;
1144
+ nodeDecorations?: ListPath<NodeDecorationEntity, QNodeDecorationEntity>;
1145
+ nodeShape?: StringPath;
1146
+ requiresMultipleContributors?: BooleanPath;
1147
+ scale?: NumberPath<number>;
1148
+ temporalSplitting?: BooleanPath;
1149
+ useForNetworkBuild?: BooleanPath;
1150
+ version?: NumberPath<number>;
1151
+ }
1152
+
1153
+ export interface QCoreIcon extends EntityPathBase<CoreIcon> {
1154
+ _super?: QAuditableObject;
1155
+ assignedSolution?: QSolutionEntity;
1156
+ bytes?: ArrayPath<any, number>;
1157
+ createdAt?: DateTimePath<Date>;
1158
+ createdBy?: StringPath;
1159
+ id?: NumberPath<number>;
1160
+ imageType?: EnumPath<IconImageType>;
1161
+ lastUpdatedAt?: DateTimePath<Date>;
1162
+ lastUpdatedBy?: StringPath;
1163
+ name?: StringPath;
1164
+ version?: NumberPath<number>;
1165
+ }
1166
+
1167
+ export interface QCoreReferenceList extends EntityPathBase<CoreReferenceList> {
1168
+ _super?: QLocalizableObject;
1169
+ alphabeticalSort?: BooleanPath;
1170
+ archived?: BooleanPath;
1171
+ assignedSolution?: QSolutionEntity;
1172
+ createdAt?: DateTimePath<Date>;
1173
+ createdBy?: StringPath;
1174
+ hierarchyLevel?: NumberPath<number>;
1175
+ id?: NumberPath<number>;
1176
+ items?: ListPath<CoreReferenceListField, QCoreReferenceListField>;
1177
+ lastUpdatedAt?: DateTimePath<Date>;
1178
+ lastUpdatedBy?: StringPath;
1179
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1180
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1181
+ maxCodeLength?: NumberPath<number>;
1182
+ name?: StringPath;
1183
+ parent?: QCoreCascadingReferenceData;
1184
+ referenceListType?: EnumPath<ReferenceListType>;
1185
+ }
1186
+
1187
+ export interface QCoreReferenceListField extends EntityPathBase<CoreReferenceListField> {
1188
+ _super?: QLocalizableObject;
1189
+ archived?: BooleanPath;
1190
+ code?: StringPath;
1191
+ createdAt?: DateTimePath<Date>;
1192
+ createdBy?: StringPath;
1193
+ displayIndex?: NumberPath<number>;
1194
+ id?: NumberPath<number>;
1195
+ lastUpdatedAt?: DateTimePath<Date>;
1196
+ lastUpdatedBy?: StringPath;
1197
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1198
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1199
+ parentCode?: StringPath;
1200
+ parentList?: QCoreReferenceList;
1201
+ }
1202
+
1203
+ export interface QCoreRelationship extends EntityPathBase<CoreRelationship> {
1204
+ _super?: QCoreDataObjectWithHistory;
1205
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1206
+ assignedSolution?: QSolutionEntity;
1207
+ cacheTimeoutSecs?: NumberPath<number>;
1208
+ cardinality?: EnumPath<RelationshipCardinality>;
1209
+ cascadeType?: EnumPath<CascadeType>;
1210
+ color?: StringPath;
1211
+ createdAt?: DateTimePath<Date>;
1212
+ createdAtTimeFieldName?: StringPath;
1213
+ createdBy?: StringPath;
1214
+ createFlagHistoryColumnName?: StringPath;
1215
+ dashType?: StringPath;
1216
+ dataStore?: QDataStore;
1217
+ deleteFlagHistoryColumnName?: StringPath;
1218
+ deleteTableName?: StringPath;
1219
+ displayTextString?: StringPath;
1220
+ fields?: ListPath<CoreRelationshipField, QCoreRelationshipField>;
1221
+ fromObject?: QCoreStoredObject;
1222
+ historyEnabled?: BooleanPath;
1223
+ historyTableName?: StringPath;
1224
+ id?: NumberPath<number>;
1225
+ jobId?: StringPath;
1226
+ joinCondition1String?: StringPath;
1227
+ joinCondition2String?: StringPath;
1228
+ joinKeyFieldName?: StringPath;
1229
+ lastUpdatedAt?: DateTimePath<Date>;
1230
+ lastUpdatedAtTimeFieldName?: StringPath;
1231
+ lastUpdatedBy?: StringPath;
1232
+ lastUpdatedByUserIdFieldName?: StringPath;
1233
+ linkedEntityTypes?: ListPath<CoreStoredObject, QCoreStoredObject>;
1234
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1235
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1236
+ localizedReverseLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1237
+ managed?: BooleanPath;
1238
+ name?: StringPath;
1239
+ previousCardinality?: EnumPath<RelationshipCardinality>;
1240
+ required?: BooleanPath;
1241
+ reverseName?: StringPath;
1242
+ sortCriteriaString?: StringPath;
1243
+ styles?: ListPath<LinkStyleEntity, QLinkStyleEntity>;
1244
+ symmetric?: BooleanPath;
1245
+ systemReserved?: BooleanPath;
1246
+ tableName?: StringPath;
1247
+ toObject?: QCoreStoredObject;
1248
+ toObjectTypeFieldName?: StringPath;
1249
+ updateFlagHistoryColumnName?: StringPath;
1250
+ useCustomIndex?: BooleanPath;
1251
+ validFromFieldName?: StringPath;
1252
+ validToFieldName?: StringPath;
1253
+ version?: NumberPath<number>;
1254
+ versionNumberFieldName?: StringPath;
1255
+ width?: NumberPath<number>;
1256
+ }
1257
+
1258
+ export interface QCoreRelationshipField extends EntityPathBase<CoreRelationshipField> {
1259
+ _super?: QCoreDataField;
1260
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1261
+ allowMultipleSelections?: BooleanPath;
1262
+ assignedTimeZone?: StringPath;
1263
+ authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityRelationship, QMaskRevealAuthorizationEntityRelationship>;
1264
+ autoGenerated?: BooleanPath;
1265
+ columnName?: StringPath;
1266
+ constrainingListName?: StringPath;
1267
+ createdAt?: DateTimePath<Date>;
1268
+ createdBy?: StringPath;
1269
+ dataType?: EnumPath<any>;
1270
+ displayIndex?: NumberPath<number>;
1271
+ displayInTimeZone?: StringPath;
1272
+ id?: NumberPath<number>;
1273
+ indexedForSearch?: BooleanPath;
1274
+ isMasked?: BooleanPath;
1275
+ lastUpdatedAt?: DateTimePath<Date>;
1276
+ lastUpdatedBy?: StringPath;
1277
+ length?: NumberPath<number>;
1278
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1279
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1280
+ name?: StringPath;
1281
+ owner?: QCoreRelationship;
1282
+ precision?: NumberPath<number>;
1283
+ primaryKeyField?: BooleanPath;
1284
+ primaryKeySeqNo?: NumberPath<number>;
1285
+ readOnly?: BooleanPath;
1286
+ redacted?: BooleanPath;
1287
+ required?: BooleanPath;
1288
+ scale?: NumberPath<number>;
1289
+ showTimeZone?: BooleanPath;
1290
+ summaryDisplayIndex?: NumberPath<number>;
1291
+ systemReserved?: BooleanPath;
1292
+ unique?: BooleanPath;
1293
+ useObjectAuthorization?: BooleanPath;
1294
+ userSelectionStrategy?: EnumPath<UserSelectionStrategyType>;
1295
+ version?: NumberPath<number>;
1296
+ }
1297
+
1298
+ export interface QCoreStoredObject extends EntityPathBase<CoreStoredObject> {
1299
+ _super?: QCoreDataObjectWithHistory;
1300
+ additionalLabel?: StringPath;
1301
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1302
+ assignedSolution?: QSolutionEntity;
1303
+ attachmentsIndexedForSearch?: BooleanPath;
1304
+ borderColor?: StringPath;
1305
+ borderWidth?: NumberPath<number>;
1306
+ cacheTimeoutSecs?: NumberPath<number>;
1307
+ createdAt?: DateTimePath<Date>;
1308
+ createdAtTimeFieldName?: StringPath;
1309
+ createdBy?: StringPath;
1310
+ createFlagHistoryColumnName?: StringPath;
1311
+ dataStore?: QDataStore;
1312
+ defaultRegularIcon?: QCoreIcon;
1313
+ deleteFlagHistoryColumnName?: StringPath;
1314
+ deleteTableName?: StringPath;
1315
+ displayTextString?: StringPath;
1316
+ elementGroupRoot?: BooleanPath;
1317
+ enableCasDistributedDataLoad?: BooleanPath;
1318
+ fields?: ListPath<CoreStoredObjectField, QCoreStoredObjectField>;
1319
+ fileCategories?: SetPath<FileCategoryEntity, QFileCategoryEntity>;
1320
+ historyEnabled?: BooleanPath;
1321
+ historyTableName?: StringPath;
1322
+ id?: NumberPath<number>;
1323
+ indexedForSearch?: BooleanPath;
1324
+ lastUpdatedAt?: DateTimePath<Date>;
1325
+ lastUpdatedAtTimeFieldName?: StringPath;
1326
+ lastUpdatedBy?: StringPath;
1327
+ lastUpdatedByUserIdFieldName?: StringPath;
1328
+ linkedRelationshipTypes?: SetPath<CoreRelationship, QCoreRelationship>;
1329
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1330
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1331
+ markerColor?: StringPath;
1332
+ mobileOfflineEnabled?: BooleanPath;
1333
+ name?: StringPath;
1334
+ nodeColor?: StringPath;
1335
+ nodeDecorations?: ListPath<NodeDecorationEntity, QNodeDecorationEntity>;
1336
+ nodeShape?: StringPath;
1337
+ publishCode?: EnumPath<PublishCode>;
1338
+ relationshipsFrom?: ListPath<CoreRelationship, QCoreRelationship>;
1339
+ relationshipsTo?: ListPath<CoreRelationship, QCoreRelationship>;
1340
+ requireSearchBeforeCreate?: BooleanPath;
1341
+ scale?: NumberPath<number>;
1342
+ styles?: ListPath<EntityStyleEntity, QEntityStyleEntity>;
1343
+ systemReserved?: BooleanPath;
1344
+ tableName?: StringPath;
1345
+ transactionsFrom?: ListPath<CoreTransaction, QCoreTransaction>;
1346
+ transactionsTo?: ListPath<CoreTransaction, QCoreTransaction>;
1347
+ updateFlagHistoryColumnName?: StringPath;
1348
+ urnFormat?: StringPath;
1349
+ urnLength?: NumberPath<number>;
1350
+ urnStartValue?: NumberPath<number>;
1351
+ urnType?: EnumPath<UrnType>;
1352
+ validFromFieldName?: StringPath;
1353
+ validToFieldName?: StringPath;
1354
+ version?: NumberPath<number>;
1355
+ versionNumberFieldName?: StringPath;
1356
+ }
1357
+
1358
+ export interface QCoreStoredObjectField extends EntityPathBase<CoreStoredObjectField> {
1359
+ _super?: QCoreDataField;
1360
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1361
+ allowMultipleSelections?: BooleanPath;
1362
+ assignedTimeZone?: StringPath;
1363
+ authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityStoredObject, QMaskRevealAuthorizationEntityStoredObject>;
1364
+ autoGenerated?: BooleanPath;
1365
+ cascadingReferenceDataFilterByCode?: StringPath;
1366
+ cascadingReferenceDataFilterByField?: StringPath;
1367
+ cascadingReferenceDataFilterByListName?: StringPath;
1368
+ cascadingReferenceDataName?: StringPath;
1369
+ columnName?: StringPath;
1370
+ constrainingListName?: StringPath;
1371
+ createdAt?: DateTimePath<Date>;
1372
+ createdBy?: StringPath;
1373
+ dataType?: EnumPath<any>;
1374
+ displayIndex?: NumberPath<number>;
1375
+ displayInTimeZone?: StringPath;
1376
+ element?: QCoreElement;
1377
+ id?: NumberPath<number>;
1378
+ indexedForSearch?: BooleanPath;
1379
+ isMasked?: BooleanPath;
1380
+ lastUpdatedAt?: DateTimePath<Date>;
1381
+ lastUpdatedBy?: StringPath;
1382
+ length?: NumberPath<number>;
1383
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1384
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1385
+ name?: StringPath;
1386
+ owner?: QCoreStoredObject;
1387
+ precision?: NumberPath<number>;
1388
+ primaryKeyField?: BooleanPath;
1389
+ primaryKeySeqNo?: NumberPath<number>;
1390
+ readOnly?: BooleanPath;
1391
+ readOnlyCondition?: StringPath;
1392
+ readOnlyConditionType?: EnumPath<ObjectStateType>;
1393
+ redacted?: BooleanPath;
1394
+ required?: BooleanPath;
1395
+ requiredCondition?: StringPath;
1396
+ requiredConditionType?: EnumPath<ObjectStateType>;
1397
+ scale?: NumberPath<number>;
1398
+ showTimeZone?: BooleanPath;
1399
+ systemReserved?: BooleanPath;
1400
+ unique?: BooleanPath;
1401
+ useObjectAuthorization?: BooleanPath;
1402
+ userSelectionStrategy?: EnumPath<UserSelectionStrategyType>;
1403
+ version?: NumberPath<number>;
1404
+ }
1405
+
1406
+ export interface QCoreTransaction extends EntityPathBase<CoreTransaction> {
1407
+ _super?: QCoreDataObject;
1408
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1409
+ assignedSolution?: QSolutionEntity;
1410
+ cacheTimeoutSecs?: NumberPath<number>;
1411
+ createdAt?: DateTimePath<Date>;
1412
+ createdAtTimeFieldName?: StringPath;
1413
+ createdBy?: StringPath;
1414
+ dataStore?: QDataStore;
1415
+ displayTextString?: StringPath;
1416
+ fields?: ListPath<CoreTransactionField, QCoreTransactionField>;
1417
+ fromObject?: QCoreStoredObject;
1418
+ fromObjectRefFieldName?: StringPath;
1419
+ fromObjectTypeFieldName?: StringPath;
1420
+ fromObjJoinConditionString?: StringPath;
1421
+ historyEnabled?: BooleanPath;
1422
+ id?: NumberPath<number>;
1423
+ lastUpdatedAt?: DateTimePath<Date>;
1424
+ lastUpdatedAtTimeFieldName?: StringPath;
1425
+ lastUpdatedBy?: StringPath;
1426
+ lineColorFieldName?: StringPath;
1427
+ lineColorFunctionType?: EnumPath<AggregateFunctionType>;
1428
+ lineWidthFieldName?: StringPath;
1429
+ lineWidthFunctionType?: EnumPath<AggregateFunctionType>;
1430
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1431
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1432
+ name?: StringPath;
1433
+ systemReserved?: BooleanPath;
1434
+ tableName?: StringPath;
1435
+ toObject?: QCoreStoredObject;
1436
+ toObjectRefFieldName?: StringPath;
1437
+ toObjectTypeFieldName?: StringPath;
1438
+ toObjJoinConditionString?: StringPath;
1439
+ validFromFieldName?: StringPath;
1440
+ validToFieldName?: StringPath;
1441
+ version?: NumberPath<number>;
1442
+ }
1443
+
1444
+ export interface QCoreTransactionField extends EntityPathBase<CoreTransactionField> {
1445
+ _super?: QCoreDataField;
1446
+ allowedRedactedFieldGroups?: ListPath<RedactionRuleEntity, QRedactionRuleEntity>;
1447
+ allowMultipleSelections?: BooleanPath;
1448
+ assignedTimeZone?: StringPath;
1449
+ authorizedToRevealMasked?: ListPath<MaskRevealAuthorizationEntityTransaction, QMaskRevealAuthorizationEntityTransaction>;
1450
+ autoGenerated?: BooleanPath;
1451
+ columnName?: StringPath;
1452
+ constrainingListName?: StringPath;
1453
+ createdAt?: DateTimePath<Date>;
1454
+ createdBy?: StringPath;
1455
+ dataType?: EnumPath<any>;
1456
+ displayIndex?: NumberPath<number>;
1457
+ displayInTimeZone?: StringPath;
1458
+ id?: NumberPath<number>;
1459
+ indexedForSearch?: BooleanPath;
1460
+ isMasked?: BooleanPath;
1461
+ lastUpdatedAt?: DateTimePath<Date>;
1462
+ lastUpdatedBy?: StringPath;
1463
+ length?: NumberPath<number>;
1464
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1465
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1466
+ name?: StringPath;
1467
+ owner?: QCoreTransaction;
1468
+ precision?: NumberPath<number>;
1469
+ primaryKeyField?: BooleanPath;
1470
+ primaryKeySeqNo?: NumberPath<number>;
1471
+ readOnly?: BooleanPath;
1472
+ redacted?: BooleanPath;
1473
+ required?: BooleanPath;
1474
+ scale?: NumberPath<number>;
1475
+ showTimeZone?: BooleanPath;
1476
+ systemReserved?: BooleanPath;
1477
+ unique?: BooleanPath;
1478
+ useObjectAuthorization?: BooleanPath;
1479
+ userSelectionStrategy?: EnumPath<UserSelectionStrategyType>;
1480
+ version?: NumberPath<number>;
1481
+ }
1482
+
1483
+ export interface QDataStore extends EntityPathBase<DataStore> {
1484
+ _super?: QAuditableObject;
1485
+ advancedProperties?: MapPath<string, string, StringPath>;
1486
+ assignedTimeZone?: StringPath;
1487
+ connectionType?: EnumPath<TYPE>;
1488
+ createdAt?: DateTimePath<Date>;
1489
+ createdBy?: StringPath;
1490
+ databaseOrServiceName?: StringPath;
1491
+ host?: StringPath;
1492
+ id?: NumberPath<number>;
1493
+ lastUpdatedAt?: DateTimePath<Date>;
1494
+ lastUpdatedBy?: StringPath;
1495
+ name?: StringPath;
1496
+ poolIntialSize?: NumberPath<number>;
1497
+ poolMaxActive?: NumberPath<number>;
1498
+ poolMaxIdle?: NumberPath<number>;
1499
+ poolMinIdle?: NumberPath<number>;
1500
+ poolTestOnBorrow?: BooleanPath;
1501
+ port?: StringPath;
1502
+ schemaName?: StringPath;
1503
+ urlAppendedParameters?: StringPath;
1504
+ version?: NumberPath<number>;
1505
+ }
1506
+
1507
+ export interface QFieldHeader extends EntityPathBase<FieldHeader> {
1508
+ columnName?: StringPath;
1509
+ entityTypeId?: NumberPath<number>;
1510
+ fieldDataType?: StringPath;
1511
+ fieldId?: NumberPath<number>;
1512
+ fieldName?: StringPath;
1513
+ }
1514
+
1515
+ export interface QFileCategoryEntity extends BeanPath<FileCategoryEntity> {
1516
+ allowMultiple?: BooleanPath;
1517
+ displayName?: StringPath;
1518
+ documentLockRequired?: BooleanPath;
1519
+ name?: StringPath;
1520
+ required?: BooleanPath;
1521
+ }
1522
+
1523
+ export interface QIdentifiableObject extends EntityPathBase<IdentifiableObject> {
1524
+ id?: NumberPath<number>;
1525
+ }
1526
+
1527
+ export interface QLocalizableObject extends EntityPathBase<LocalizableObject> {
1528
+ _super?: QAuditableObject;
1529
+ createdAt?: DateTimePath<Date>;
1530
+ createdBy?: StringPath;
1531
+ id?: NumberPath<number>;
1532
+ lastUpdatedAt?: DateTimePath<Date>;
1533
+ lastUpdatedBy?: StringPath;
1534
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1535
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1536
+ }
1537
+
1538
+ export interface QLocalizedDescription extends EntityPathBase<LocalizedDescription> {
1539
+ _super?: QAuditableObject;
1540
+ createdAt?: DateTimePath<Date>;
1541
+ createdBy?: StringPath;
1542
+ description?: StringPath;
1543
+ id?: NumberPath<number>;
1544
+ lastUpdatedAt?: DateTimePath<Date>;
1545
+ lastUpdatedBy?: StringPath;
1546
+ localeCd?: StringPath;
1547
+ version?: NumberPath<number>;
1548
+ }
1549
+
1550
+ export interface QLocalizedLabel extends EntityPathBase<LocalizedLabel> {
1551
+ _super?: QAuditableObject;
1552
+ createdAt?: DateTimePath<Date>;
1553
+ createdBy?: StringPath;
1554
+ id?: NumberPath<number>;
1555
+ label?: StringPath;
1556
+ lastUpdatedAt?: DateTimePath<Date>;
1557
+ lastUpdatedBy?: StringPath;
1558
+ localeCd?: StringPath;
1559
+ version?: NumberPath<number>;
1560
+ }
1561
+
1562
+ export interface QMaskRevealAuthorizationEntity extends EntityPathBase<MaskRevealAuthorizationEntity> {
1563
+ selectionNm?: StringPath;
1564
+ selectionTypeCd?: EnumPath<UserGroupType>;
1565
+ uuid?: StringPath;
1566
+ }
1567
+
1568
+ export interface QMaskRevealAuthorizationEntityRelationship extends EntityPathBase<MaskRevealAuthorizationEntityRelationship> {
1569
+ _super?: QMaskRevealAuthorizationEntity;
1570
+ coreDataField?: QCoreRelationshipField;
1571
+ selectionNm?: StringPath;
1572
+ selectionTypeCd?: EnumPath<UserGroupType>;
1573
+ uuid?: StringPath;
1574
+ }
1575
+
1576
+ export interface QMaskRevealAuthorizationEntityStoredObject extends EntityPathBase<MaskRevealAuthorizationEntityStoredObject> {
1577
+ _super?: QMaskRevealAuthorizationEntity;
1578
+ coreDataField?: QCoreStoredObjectField;
1579
+ selectionNm?: StringPath;
1580
+ selectionTypeCd?: EnumPath<UserGroupType>;
1581
+ uuid?: StringPath;
1582
+ }
1583
+
1584
+ export interface QMaskRevealAuthorizationEntityTransaction extends EntityPathBase<MaskRevealAuthorizationEntityTransaction> {
1585
+ _super?: QMaskRevealAuthorizationEntity;
1586
+ coreDataField?: QCoreTransactionField;
1587
+ selectionNm?: StringPath;
1588
+ selectionTypeCd?: EnumPath<UserGroupType>;
1589
+ uuid?: StringPath;
1590
+ }
1591
+
1592
+ export interface QRedactionRuleEntity extends EntityPathBase<RedactionRuleEntity> {
1593
+ groupName?: StringPath;
1594
+ ownerId?: NumberPath<number>;
1595
+ uuid?: StringPath;
1596
+ }
1597
+
1598
+ export interface QRelationshipTypeHeader extends EntityPathBase<RelationshipTypeHeader> {
1599
+ fromObjectId?: NumberPath<number>;
1600
+ relationshipId?: NumberPath<number>;
1601
+ relationshipName?: StringPath;
1602
+ reverseRelationshipName?: StringPath;
1603
+ toObjectId?: NumberPath<number>;
1604
+ }
1605
+
1606
+ export interface QSolutionEntity extends EntityPathBase<SolutionEntity> {
1607
+ _super?: QLocalizableObject;
1608
+ archived?: BooleanPath;
1609
+ createdAt?: DateTimePath<Date>;
1610
+ createdBy?: StringPath;
1611
+ id?: NumberPath<number>;
1612
+ lastUpdatedAt?: DateTimePath<Date>;
1613
+ lastUpdatedBy?: StringPath;
1614
+ localizedDescriptions?: ListPath<LocalizedDescription, QLocalizedDescription>;
1615
+ localizedLabels?: ListPath<LocalizedLabel, QLocalizedLabel>;
1616
+ name?: StringPath;
1617
+ resourceVersion?: NumberPath<number>;
1618
+ }
1619
+
1620
+ export interface QTenantFailure extends EntityPathBase<TenantFailure> {
1621
+ dateCreated?: DateTimePath<Date>;
1622
+ dateUpdated?: DateTimePath<Date>;
1623
+ instanceId?: StringPath;
1624
+ stackTrace?: StringPath;
1625
+ tenancyState?: StringPath;
1626
+ tenantId?: StringPath;
1627
+ }
1628
+
1629
+ export interface RedactionRuleEntity {
1630
+ ownerId?: number;
1631
+ groupName?: string;
1632
+ }
1633
+
1634
+ export interface RelationshipTypeHeader {
1635
+ relationshipId?: number;
1636
+ fromObjectId?: number;
1637
+ toObjectId?: number;
1638
+ relationshipName?: string;
1639
+ reverseRelationshipName?: string;
1640
+ }
1641
+
1642
+ export interface RelationshipTypeName {
1643
+ fromObject?: string;
1644
+ relationshipName?: string;
1645
+ qualifiedName?: string;
1646
+ }
1647
+
1648
+ export interface ShortBooleanType extends UserType {
1649
+ }
1650
+
1651
+ export interface SolutionAssignedEntity {
1652
+ assignedSolution?: SolutionEntity;
1653
+ }
1654
+
1655
+ export interface SolutionEntity extends LocalizableObject, Serializable {
1656
+ name?: string;
1657
+ archived?: boolean;
1658
+ resourceVersion?: number;
1659
+ }
1660
+
1661
+ export interface TenantFailure {
1662
+ instanceId?: string;
1663
+ tenantId?: string;
1664
+ tenancyState?: string;
1665
+ stackTrace?: string;
1666
+ dateCreated?: Date;
1667
+ dateUpdated?: Date;
1668
+ }
1669
+
1670
+ export interface Versioned {
1671
+ version?: number;
1672
+ }
1673
+
1674
+ export interface AbstractCoreFieldConverter<T, Y, O> extends LocalizableObjectConversionProcessor<T, Y> {
1675
+ }
1676
+
1677
+ export interface ActiveHomepageConverter extends MetadataConverter<ActiveHomepageEntity, ActiveHomepage> {
1678
+ }
1679
+
1680
+ export interface AuditableObjectConversionProcessor<T, U> {
1681
+ }
1682
+
1683
+ export interface CascadingReferenceDataConverter extends LocalizableObjectConversionProcessor<CoreCascadingReferenceData, CascadingReferenceDataDTO>, MetadataConverter<CoreCascadingReferenceData, CascadingReferenceDataDTO> {
1684
+ }
1685
+
1686
+ export interface CompoundConverter extends AuditableObjectConversionProcessor<CoreCompound, CompoundDTO>, MetadataConverter<CoreCompound, CompoundDTO> {
1687
+ }
1688
+
1689
+ export interface DataObjectConversionProcessor<T, U> extends LocalizableObjectConversionProcessor<T, U> {
1690
+ }
1691
+
1692
+ export interface DataStoreConverter extends AuditableObjectConversionProcessor<DataStore, DataStoreDTO>, MetadataConverter<DataStore, DataStoreDTO> {
1693
+ }
1694
+
1695
+ export interface ElementConverter extends LocalizableObjectConversionProcessor<CoreElement, ElementDTO>, MetadataConverter<CoreElement, ElementDTO> {
1696
+ }
1697
+
1698
+ export interface EntityConverter extends LocalizableObjectConversionProcessor<CoreEntity, EntityDTO>, MetadataConverter<CoreEntity, EntityDTO> {
1699
+ }
1700
+
1701
+ export interface EntityTypeConverter extends DataObjectConversionProcessor<CoreStoredObject, StoredObjectDTO>, MetadataConverter<CoreStoredObject, StoredObjectDTO> {
1702
+ }
1703
+
1704
+ export interface EntityTypeFieldConverter extends AbstractCoreFieldConverter<CoreStoredObjectField, StoredObjectFieldDTO, CoreStoredObject>, MetadataConverter<CoreStoredObjectField, StoredObjectFieldDTO> {
1705
+ }
1706
+
1707
+ export interface FileCategoryConverter extends MetadataConverter<FileCategoryEntity, FileCategoryDTO> {
1708
+ }
1709
+
1710
+ export interface HistoryInfoConverter {
1711
+ }
1712
+
1713
+ export interface IconConverter extends AuditableObjectConversionProcessor<CoreIcon, IconDTO>, MetadataConverter<CoreIcon, IconDTO> {
1714
+ }
1715
+
1716
+ export interface LocalizableObjectConversionProcessor<T, U> extends AuditableObjectConversionProcessor<T, U> {
1717
+ }
1718
+
1719
+ export interface LocalizedDescriptionConverter extends AuditableObjectConversionProcessor<LocalizedDescription, LocalizedDescriptionDTO>, MetadataConverter<LocalizedDescription, LocalizedDescriptionDTO> {
1720
+ }
1721
+
1722
+ export interface LocalizedLabelConverter extends AuditableObjectConversionProcessor<LocalizedLabel, LocalizedLabelDTO>, MetadataConverter<LocalizedLabel, LocalizedLabelDTO> {
1723
+ }
1724
+
1725
+ export interface MetadataConverter<T, U> {
1726
+ }
1727
+
1728
+ export interface MetadataConverterUtils {
1729
+ }
1730
+
1731
+ export interface ReferenceListConverter extends LocalizableObjectConversionProcessor<CoreReferenceList, ReferenceListDTO>, MetadataConverter<CoreReferenceList, ReferenceListDTO> {
1732
+ }
1733
+
1734
+ export interface ReferenceListFieldConverter extends LocalizableObjectConversionProcessor<CoreReferenceListField, ReferenceListFieldDTO>, MetadataConverter<CoreReferenceListField, ReferenceListFieldDTO> {
1735
+ }
1736
+
1737
+ export interface RelationshipTypeConverter extends DataObjectConversionProcessor<CoreRelationship, RelationshipDTO>, MetadataConverter<CoreRelationship, RelationshipDTO> {
1738
+ }
1739
+
1740
+ export interface RelationshipTypeFieldConverter extends AbstractCoreFieldConverter<CoreRelationshipField, RelationshipFieldDTO, CoreRelationship>, MetadataConverter<CoreRelationshipField, RelationshipFieldDTO> {
1741
+ }
1742
+
1743
+ export interface SolutionConverter extends LocalizableObjectConversionProcessor<SolutionEntity, SolutionDTO>, MetadataConverter<SolutionEntity, SolutionDTO> {
1744
+ }
1745
+
1746
+ export interface SummaryCascadingReferenceDataConverter extends CascadingReferenceDataConverter {
1747
+ }
1748
+
1749
+ export interface SummaryReferenceListConverter extends LocalizableObjectConversionProcessor<CoreReferenceList, ReferenceListDTO>, MetadataConverter<CoreReferenceList, ReferenceListDTO> {
1750
+ }
1751
+
1752
+ export interface SvgIconConverter extends AuditableObjectConversionProcessor<CoreIcon, SvgIconDTO>, MetadataConverter<CoreIcon, SvgIconDTO> {
1753
+ }
1754
+
1755
+ export interface TransactionTypeConverter extends DataObjectConversionProcessor<CoreTransaction, TransactionDTO>, MetadataConverter<CoreTransaction, TransactionDTO> {
1756
+ }
1757
+
1758
+ export interface TransactionTypeFieldConverter extends AbstractCoreFieldConverter<CoreTransactionField, TransactionFieldDTO, CoreTransaction>, MetadataConverter<CoreTransactionField, TransactionFieldDTO> {
1759
+ }
1760
+
1761
+ export interface AsyncJobDTO {
1762
+ id?: string;
1763
+ type?: JobType;
1764
+ submittedBy?: string;
1765
+ submittedAt?: Date;
1766
+ parameters?: { [index: string]: any };
1767
+ tasks?: AsyncTaskDTO[];
1768
+ }
1769
+
1770
+ export interface AsyncTaskDTO {
1771
+ id?: string;
1772
+ name?: string;
1773
+ description?: string;
1774
+ type?: TaskType;
1775
+ queuedAt?: Date;
1776
+ properties?: { [index: string]: any };
1777
+ }
1778
+
1779
+ export interface AuditableObjectDTO extends Identifiable {
1780
+ createdBy?: string;
1781
+ createdAt?: Date;
1782
+ lastUpdatedBy?: string;
1783
+ lastUpdatedAt?: Date;
1784
+ }
1785
+
1786
+ export interface CascadingReferenceDataDTO extends LocalizableObjectDTO, NamedObject, Comparable<CascadingReferenceDataDTO>, SolutionAssignedDTO {
1787
+ levels?: ReferenceListDTO[];
1788
+ links?: RestRepresentationsLink[];
1789
+ version?: number;
1790
+ solutionLabel?: string;
1791
+ }
1792
+
1793
+ export interface ClientJSONView {
1794
+ }
1795
+
1796
+ export interface Group {
1797
+ }
1798
+
1799
+ export interface Admin {
1800
+ }
1801
+
1802
+ export interface AdminAudit {
1803
+ }
1804
+
1805
+ export interface AdminList {
1806
+ }
1807
+
1808
+ export interface AdminOnly {
1809
+ }
1810
+
1811
+ export interface Always {
1812
+ }
1813
+
1814
+ export interface ExcludeFromExport {
1815
+ }
1816
+
1817
+ export interface ExcludeFromExportList {
1818
+ }
1819
+
1820
+ export interface ExportOnly {
1821
+ }
1822
+
1823
+ export interface JsonViewGroupId {
1824
+ }
1825
+
1826
+ export interface Localized {
1827
+ }
1828
+
1829
+ export interface Public {
1830
+ }
1831
+
1832
+ export interface PublicAudit {
1833
+ }
1834
+
1835
+ export interface PublicList {
1836
+ }
1837
+
1838
+ export interface Summary {
1839
+ }
1840
+
1841
+ export interface View {
1842
+ }
1843
+
1844
+ export interface AdminListView extends Always, ExcludeFromExportList, JsonViewGroupId, PublicList, AdminList, AdminOnly, Localized {
1845
+ }
1846
+
1847
+ export interface AdminView extends Always, ExcludeFromExportList, ExcludeFromExport, JsonViewGroupId, PublicAudit, AdminAudit, PublicList, Public, AdminList, Admin, AdminOnly, Localized {
1848
+ }
1849
+
1850
+ export interface ExportView extends Always, ExportOnly, PublicList, Public, AdminList, Admin {
1851
+ }
1852
+
1853
+ export interface ExportWithAuditView extends ExportView, PublicAudit, AdminAudit {
1854
+ }
1855
+
1856
+ export interface PublicListView extends Always, ExcludeFromExportList, JsonViewGroupId, PublicList, Localized {
1857
+ }
1858
+
1859
+ export interface PublicView extends Always, ExcludeFromExportList, ExcludeFromExport, JsonViewGroupId, PublicAudit, PublicList, Public, Localized {
1860
+ }
1861
+
1862
+ export interface SummaryView extends Summary {
1863
+ }
1864
+
1865
+ export interface ColumnDTO extends NamedObject {
1866
+ dataType?: ColumnDataType;
1867
+ length?: number;
1868
+ precision?: number;
1869
+ scale?: number;
1870
+ required?: boolean;
1871
+ primaryKeyColumn?: boolean;
1872
+ ordinalPosition?: number;
1873
+ primaryKeySeqNo?: number;
1874
+ }
1875
+
1876
+ export interface CompoundDTO extends AuditableObjectDTO, Compound, Versioned, Comparable<CompoundDTO> {
1877
+ elements?: ElementDTO[];
1878
+ elementNames?: string[];
1879
+ }
1880
+
1881
+ export interface ConditionalFieldRule extends ConditionalRule {
1882
+ }
1883
+
1884
+ export interface DTOUtil {
1885
+ }
1886
+
1887
+ export interface DataFieldDTO extends LocalizableObjectDTO, DataField, Versioned, NamedObject {
1888
+ dataType?: string;
1889
+ userGroupSelection?: boolean;
1890
+ constrained?: boolean;
1891
+ }
1892
+
1893
+ export interface DataObjectDTO extends LocalizableObjectDTO, DataObject, Versioned, NamedObject {
1894
+ tableType?: string;
1895
+ solutionLabel?: string;
1896
+ naturalKey?: string;
1897
+ }
1898
+
1899
+ export interface DataObjectId {
1900
+ type?: MetadataObjectType;
1901
+ name?: string;
1902
+ }
1903
+
1904
+ export interface DataObjectWithHistoryDTO extends DataObjectDTO {
1905
+ historyTableName?: string;
1906
+ lastUpdatedByUserIdFieldName?: string;
1907
+ versionNumberFieldName?: string;
1908
+ createFlagHistoryColumnName?: string;
1909
+ deleteFlagHistoryColumnName?: string;
1910
+ deleteTableName?: string;
1911
+ updateFlagHistoryColumnName?: string;
1912
+ historyManaged?: boolean;
1913
+ }
1914
+
1915
+ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject {
1916
+ type?: DataStoreType;
1917
+ connectionType?: TYPE;
1918
+ schema?: string;
1919
+ host?: string;
1920
+ port?: string;
1921
+ databaseNameOrServiceName?: string;
1922
+ urlAppendedParameters?: string;
1923
+ advancedProperties?: { [index: string]: string };
1924
+ assignedTimeZone?: string;
1925
+ testOnBorrow?: boolean;
1926
+ initialSize?: number;
1927
+ maxIdle?: number;
1928
+ minIdle?: number;
1929
+ maxActive?: number;
1930
+ username?: string;
1931
+ connectionError?: string;
1932
+ defaultSchemaName?: string;
1933
+ url?: string;
1934
+ password?: string;
1935
+ reindexRequired?: boolean;
1936
+ postedTimestamp?: number;
1937
+ casDistributedDataLoadSupported?: boolean;
1938
+ }
1939
+
1940
+ export interface DataStoreSupportedTypeDTO {
1941
+ type?: string;
1942
+ requiredFields?: string[];
1943
+ defaultAdditionalFields?: { [index: string]: string };
1944
+ }
1945
+
1946
+ export interface ElementBagDTO {
1947
+ elements?: ElementDTO[];
1948
+ }
1949
+
1950
+ export interface ElementDTO extends LocalizableObjectDTO, Element, Versioned, NamedObject, Comparable<ElementDTO>, SolutionAssignedDTO {
1951
+ mappedFields?: StoredObjectFieldDTO[];
1952
+ relatedEntities?: RelatedEntityDTO[];
1953
+ solutionLabel?: string;
1954
+ }
1955
+
1956
+ export interface EntityCompoundStringDTO {
1957
+ entityName?: string;
1958
+ compoundOrderedElementsStr?: string;
1959
+ }
1960
+
1961
+ export interface EntityDTO extends LocalizableObjectDTO, Entity, Versioned, NamedObject, Comparable<EntityDTO> {
1962
+ nodeDecoration?: NodeDecorationDTO;
1963
+ defaultRegularIcon?: IconDTO;
1964
+ compounds?: CompoundDTO[];
1965
+ solutionLabel?: string;
1966
+ icons?: IconDTO[];
1967
+ }
1968
+
1969
+ export interface FieldValueDTO {
1970
+ raw?: any;
1971
+ fieldName?: string;
1972
+ }
1973
+
1974
+ export interface FileCategoryDTO extends InjectableResource, FileCategory {
1975
+ filesExist?: boolean;
1976
+ templates?: string[];
1977
+ }
1978
+
1979
+ export interface FileCategoryStatsDTO {
1980
+ fileCategoryName?: string;
1981
+ entityTypeName?: string;
1982
+ maxCountPerDocument?: number;
1983
+ }
1984
+
1985
+ export interface HasLocale {
1986
+ locale?: Locale;
1987
+ }
1988
+
1989
+ export interface HistoryInfoDTO {
1990
+ historyInfoId?: number;
1991
+ itemRefId?: string;
1992
+ itemType?: string;
1993
+ itemLabel?: string;
1994
+ operation?: string;
1995
+ ownerType?: string;
1996
+ ownerId?: string;
1997
+ ownerVersion?: string;
1998
+ }
1999
+
2000
+ export interface IconDTO extends AuditableObjectDTO, Versioned, Icon, NamedObject, Comparable<IconDTO>, SolutionAssignedDTO {
2001
+ bytes?: any;
2002
+ solutionLabel?: string;
2003
+ }
2004
+
2005
+ export interface IdentityRepresentationDTO {
2006
+ userGroupId?: string;
2007
+ userGroupName?: string;
2008
+ }
2009
+
2010
+ export interface IncrementalLoadJobFilter extends JobFilter {
2011
+ startTime?: Date;
2012
+ }
2013
+
2014
+ export interface JobFilter {
2015
+ type?: string;
2016
+ }
2017
+
2018
+ export interface LinkSummaryDTO {
2019
+ relationshipId?: number;
2020
+ relationshipName?: string;
2021
+ relationshipQualifiedName?: string;
2022
+ relationshipLabel?: string;
2023
+ reverseRelationshipName?: string;
2024
+ reverseRelationshipLabel?: string;
2025
+ fromEntityTypeName?: string;
2026
+ fromEntityTypeLabel?: string;
2027
+ toEntityTypeName?: string;
2028
+ toEntityTypeLabel?: string;
2029
+ linkCount?: number;
2030
+ }
2031
+
2032
+ export interface LocalizableObjectDTO extends AuditableObjectDTO, InjectableResource {
2033
+ label?: string;
2034
+ description?: string;
2035
+ localizedLabels?: LocalizedLabelDTO[];
2036
+ localizedDescriptions?: LocalizedDescriptionDTO[];
2037
+ }
2038
+
2039
+ export interface LocalizedDescriptionDTO extends AuditableObjectDTO, HasLocale, Versioned, Comparable<LocalizedDescriptionDTO> {
2040
+ description?: string;
2041
+ localeCd?: string;
2042
+ }
2043
+
2044
+ export interface LocalizedLabelDTO extends AuditableObjectDTO, HasLocale, Versioned, Comparable<LocalizedLabelDTO> {
2045
+ label?: string;
2046
+ localeCd?: string;
2047
+ }
2048
+
2049
+ export interface ObjectDeletionWarningDTO {
2050
+ type?: string;
2051
+ name?: string;
2052
+ }
2053
+
2054
+ export interface ReferenceListDTO extends LocalizableObjectDTO, NamedObject, Comparable<ReferenceListDTO>, SolutionAssignedDTO {
2055
+ archived?: boolean;
2056
+ maxCodeLength?: number;
2057
+ alphabeticalSort?: boolean;
2058
+ items?: ReferenceListFieldDTO[];
2059
+ hierarchyLevel?: number;
2060
+ referenceListType?: ReferenceListType;
2061
+ usedByField?: boolean;
2062
+ solutionLabel?: string;
2063
+ }
2064
+
2065
+ export interface ReferenceListFieldDTO extends LocalizableObjectDTO, NamedObject {
2066
+ code?: string;
2067
+ archived?: boolean;
2068
+ displayIndex?: number;
2069
+ parentCode?: string;
2070
+ }
2071
+
2072
+ export interface RelatedEntityDTO extends NamedObject {
2073
+ id?: number;
2074
+ relationshipTypes?: string[];
2075
+ }
2076
+
2077
+ export interface RelationshipDTO extends DataObjectWithHistoryDTO, Relationship, Comparable<RelationshipDTO> {
2078
+ cascadeType?: CascadeType;
2079
+ sortCriteria?: SortCriteria;
2080
+ toObjectTypeFieldName?: string;
2081
+ joinKeyFieldName?: string;
2082
+ joinConditions?: BooleanExpressionUnion[];
2083
+ fields?: RelationshipFieldDTO[];
2084
+ localizedReverseLabels?: LocalizedLabelDTO[];
2085
+ useCustomIndex?: boolean;
2086
+ conditions?: ConditionDTO[];
2087
+ reindexRequired?: boolean;
2088
+ }
2089
+
2090
+ export interface RelationshipFieldDTO extends DataFieldDTO, Comparable<RelationshipFieldDTO> {
2091
+ }
2092
+
2093
+ export interface SolutionDTO extends LocalizableObjectDTO, NamedObject, Comparable<SolutionDTO> {
2094
+ archived?: boolean;
2095
+ resourceVersion?: number;
2096
+ version?: number;
2097
+ links?: RestRepresentationsLink[];
2098
+ }
2099
+
2100
+ export interface StoredObjectDTO extends DataObjectWithHistoryDTO, StoredDataObject, Comparable<StoredObjectDTO> {
2101
+ indexedForSearch?: boolean;
2102
+ reindexRequired?: boolean;
2103
+ fields?: StoredObjectFieldDTO[];
2104
+ relationshipsFrom?: RelationshipDTO[];
2105
+ relationshipsTo?: RelationshipDTO[];
2106
+ transactionsFrom?: TransactionDTO[];
2107
+ transactionsTo?: TransactionDTO[];
2108
+ defaultRegularIcon?: IconDTO;
2109
+ allowElementGroupRootAssignment?: boolean;
2110
+ urnFormat?: string;
2111
+ urnLength?: number;
2112
+ urnStartValue?: number;
2113
+ urnType?: UrnType;
2114
+ publishCode?: PublishCode;
2115
+ fileCategories?: FileCategoryDTO[];
2116
+ conditions?: ConditionDTO[];
2117
+ icons?: IconDTO[];
2118
+ }
2119
+
2120
+ export interface StoredObjectFieldDTO extends DataFieldDTO, Comparable<StoredObjectFieldDTO> {
2121
+ relatedElementName?: string;
2122
+ requiredConditionally?: ConditionalFieldRule;
2123
+ readOnlyConditionally?: ConditionalFieldRule;
2124
+ cascadingReferenceDataName?: string;
2125
+ cascadingReferenceDataFilterByListName?: string;
2126
+ cascadingReferenceDataFilterByCode?: string;
2127
+ cascadingReferenceDataFilterByField?: string;
2128
+ }
2129
+
2130
+ export interface SvgIconDTO extends AuditableObjectDTO, Versioned, NamedObject {
2131
+ imageType?: IconImageType;
2132
+ xmlContent?: string;
2133
+ solutionName?: string;
2134
+ }
2135
+
2136
+ export interface TableDTO extends NamedObject {
2137
+ schema?: string;
2138
+ type?: string;
2139
+ databaseProductName?: string;
2140
+ columns?: ColumnDTO[];
2141
+ }
2142
+
2143
+ export interface TransactionDTO extends DataObjectDTO, Transaction, Comparable<TransactionDTO> {
2144
+ fromObjJoinCondition?: BooleanExpressionUnion;
2145
+ toObjJoinCondition?: BooleanExpressionUnion;
2146
+ fields?: TransactionFieldDTO[];
2147
+ transactionDateFieldName?: string;
2148
+ }
2149
+
2150
+ export interface TransactionFieldDTO extends DataFieldDTO, Comparable<TransactionFieldDTO> {
2151
+ }
2152
+
2153
+ export interface ActionConfigurationDTO extends Comparable<ActionConfigurationDTO> {
2154
+ documentType?: string;
2155
+ items?: ActionItemConfigurationDTO[];
2156
+ }
2157
+
2158
+ export interface ActionItemConfigurationDTO extends Comparable<ActionItemConfigurationDTO> {
2159
+ documentType?: string;
2160
+ uuid?: string;
2161
+ attributes?: { [index: string]: any };
2162
+ disableRules?: { [index: string]: any };
2163
+ disableConditions?: QueryUnion;
2164
+ resources?: { [index: string]: any };
2165
+ order?: number;
2166
+ action?: string;
2167
+ control?: string;
2168
+ }
2169
+
2170
+ export interface ConditionConfigurationDTO extends Comparable<ConditionConfigurationDTO> {
2171
+ ownerName?: string;
2172
+ items?: ConditionDTO[];
2173
+ }
2174
+
2175
+ export interface ContextMappingConfigurationDTO extends Comparable<ContextMappingConfigurationDTO>, ValidatableContextMapping {
2176
+ documentType?: string;
2177
+ propertyMatch?: { [index: string]: any };
2178
+ conditions?: QueryUnion;
2179
+ templateName?: string;
2180
+ templateUUID?: string;
2181
+ mode?: PageMode;
2182
+ clientApplication?: string;
2183
+ publishCode?: PublishCode;
2184
+ }
2185
+
2186
+ export interface ContextMappingGrouping {
2187
+ documentType?: string;
2188
+ clientApplication?: string;
2189
+ event?: string;
2190
+ }
2191
+
2192
+ export interface ContextMappingNaturalKey {
2193
+ documentType?: string;
2194
+ event?: string;
2195
+ clientApplicationName?: string;
2196
+ conditions?: QueryUnion;
2197
+ }
2198
+
2199
+ export interface ControlCategoryConfigurationDTO extends Comparable<ControlCategoryConfigurationDTO> {
2200
+ type?: string;
2201
+ displayName?: string;
2202
+ resourcedDisplayName?: string;
2203
+ }
2204
+
2205
+ export interface ControlConfigurationDTO extends NamedObject, SolutionAssignedDTO, Comparable<ControlConfigurationDTO> {
2206
+ directiveName?: string;
2207
+ icon?: any;
2208
+ displayName?: string;
2209
+ displayNameResource?: string;
2210
+ controlDescription?: string;
2211
+ controlDescriptionResource?: string;
2212
+ propertiesTitle?: string;
2213
+ propertiesTitleResource?: string;
2214
+ directiveTemplate?: string;
2215
+ directive?: string;
2216
+ controlAttributes?: { [index: string]: any };
2217
+ controlCategory?: string;
2218
+ customControl?: boolean;
2219
+ requiredCapabilities?: string[];
2220
+ }
2221
+
2222
+ export interface DocumentTypeWithClientApplication {
2223
+ documentType?: string;
2224
+ clientApplication?: string;
2225
+ }
2226
+
2227
+ export interface ElementExportDTO extends ElementDTO {
2228
+ }
2229
+
2230
+ export interface EmbeddedElementExportDTO extends ElementDTO {
2231
+ }
2232
+
2233
+ export interface EmbeddedIconExportDTO extends IconDTO {
2234
+ }
2235
+
2236
+ export interface EmbeddedStoredObjectFieldDTO extends StoredObjectFieldDTO {
2237
+ }
2238
+
2239
+ export interface EntityExportDTO extends EntityDTO {
2240
+ iconDecoration?: string;
2241
+ }
2242
+
2243
+ export interface GroupedContextMappingConfigurationDTO extends DocumentTypeWithClientApplication, Comparable<GroupedContextMappingConfigurationDTO>, SolutionAssignedDTO {
2244
+ mappings?: ContextMappingConfigurationDTO[];
2245
+ documentTypeLabel?: string;
2246
+ clientApplicationLabel?: string;
2247
+ }
2248
+
2249
+ export interface IconExportDTO extends IconDTO {
2250
+ }
2251
+
2252
+ export interface MetadataExportDTO extends ConfigTransportObject {
2253
+ solutions?: SolutionDTO[];
2254
+ icons?: IconExportDTO[];
2255
+ referenceLists?: ReferenceListDTO[];
2256
+ documents?: StoredObjectExportDTO[];
2257
+ links?: RelationshipDTO[];
2258
+ transactions?: TransactionDTO[];
2259
+ elements?: ElementExportDTO[];
2260
+ entities?: EntityExportDTO[];
2261
+ templates?: TemplateConfigurationDTO[];
2262
+ contextMappings?: GroupedContextMappingConfigurationDTO[];
2263
+ traversalDefinitions?: TraversalConfigurationDTO[];
2264
+ controlCategories?: ControlCategoryConfigurationDTO[];
2265
+ controls?: ControlConfigurationDTO[];
2266
+ conditions?: ConditionConfigurationDTO[];
2267
+ templateTypes?: TemplateType[];
2268
+ clientApplications?: ClientApplication[];
2269
+ actions?: PageAction[];
2270
+ actionItems?: ActionConfigurationDTO[];
2271
+ hierarchicalReferenceData?: CascadingReferenceDataDTO[];
2272
+ }
2273
+
2274
+ export interface StoredObjectExportDTO extends StoredObjectDTO {
2275
+ iconDecoration?: string;
2276
+ }
2277
+
2278
+ export interface TemplateConfigurationDTO extends NamedObject, Comparable<TemplateConfigurationDTO>, SolutionAssignedDTO {
2279
+ uuid?: string;
2280
+ template?: { [index: string]: any };
2281
+ metadata?: TemplateMetadataExportDTO;
2282
+ documentType?: string;
2283
+ linkedTraversals?: string[];
2284
+ templateType?: string;
2285
+ clientApplication?: string;
2286
+ linkedReferenceLists?: string[];
2287
+ fileCategories?: TemplateFileCategoryAssociationDTO[];
2288
+ conditions?: string[];
2289
+ publishCode?: PublishCode;
2290
+ active?: boolean;
2291
+ }
2292
+
2293
+ export interface TemplateLinkExportDTO {
2294
+ templateUuid?: string;
2295
+ traversalUuid?: string;
2296
+ }
2297
+
2298
+ export interface TemplateMetadataExportDTO {
2299
+ dataSources?: TemplateDataSource[];
2300
+ linkedTemplates?: TemplateLinkExportDTO[];
2301
+ workspaceEnabled?: boolean;
2302
+ insightsEnabled?: boolean;
2303
+ resources?: { [index: string]: string };
2304
+ }
2305
+
2306
+ export interface TraversalConfigurationDTO extends SolutionAssignedDTO, Comparable<TraversalConfigurationDTO> {
2307
+ displayName?: string;
2308
+ uuid?: string;
2309
+ traversal?: { [index: string]: any };
2310
+ }
2311
+
2312
+ export interface ActiveHomepageMetadataInternalAdapter extends ActiveHomepageOperations {
2313
+ }
2314
+
2315
+ export interface ActiveHomepageOperations {
2316
+ all?: ActiveHomepage[];
2317
+ }
2318
+
2319
+ export interface CascadingReferenceDataInternalAdapter extends CascadingReferenceDataOperations {
2320
+ }
2321
+
2322
+ export interface CascadingReferenceDataOperations {
2323
+ all?: CascadingReferenceDataDTO[];
2324
+ }
2325
+
2326
+ export interface DataFieldUtils {
2327
+ }
2328
+
2329
+ export interface EntityTypeCoreMetadataInternalAdapter extends EntityTypeOperations {
2330
+ }
2331
+
2332
+ export interface EntityTypeOperations {
2333
+ all?: StoredObjectDTO[];
2334
+ }
2335
+
2336
+ export interface EntityTypeUtils {
2337
+ }
2338
+
2339
+ export interface MetahubClientConfig {
2340
+ }
2341
+
2342
+ export interface MetahubClientResponseErrorHandler extends DefaultResponseErrorHandler {
2343
+ }
2344
+
2345
+ export interface MetahubClientUtils {
2346
+ }
2347
+
2348
+ export interface ObjectTypeCoreMetadataInternalAdapter extends ObjectTypeOperations {
2349
+ }
2350
+
2351
+ export interface ObjectTypeOperations {
2352
+ }
2353
+
2354
+ export interface ReferenceListCoreMetadataInternalAdapter extends ReferenceListOperations {
2355
+ }
2356
+
2357
+ export interface ReferenceListFieldCoreMetadataInternalAdapter extends ReferenceListFieldOperations {
2358
+ }
2359
+
2360
+ export interface ReferenceListFieldOperations {
2361
+ }
2362
+
2363
+ export interface ReferenceListOperations {
2364
+ }
2365
+
2366
+ export interface ReferenceListUtils {
2367
+ }
2368
+
2369
+ export interface RelationshipTypeCoreMetadataInternalAdapter extends RelationshipTypeOperations {
2370
+ }
2371
+
2372
+ export interface RelationshipTypeOperations {
2373
+ all?: RelationshipDTO[];
2374
+ allHeterogeneousRelationshipTypes?: RelationshipDTO[];
2375
+ }
2376
+
2377
+ export interface RelationshipTypeUtils {
2378
+ }
2379
+
2380
+ export interface TransactionTypeCoreMetadataInternalAdapter extends TransactionTypeOperations {
2381
+ }
2382
+
2383
+ export interface TransactionTypeOperations {
2384
+ all?: TransactionDTO[];
2385
+ allHeterogeneousTransactionTypes?: TransactionDTO[];
2386
+ }
2387
+
2388
+ export interface TransactionTypeUtils {
2389
+ }
2390
+
2391
+ export interface MetahubClientDeserializationException extends MetahubClientException {
2392
+ }
2393
+
2394
+ export interface MetahubClientException extends RuntimeException {
2395
+ }
2396
+
2397
+ export interface MetahubResponseException extends MetahubClientException {
2398
+ error?: Error;
2399
+ }
2400
+
2401
+ export interface DataObjectRuleSource extends RuleSource {
2402
+ dataObject?: DataObjectDTO;
2403
+ fieldConditionMetadataIncludingChildren?: { [index: string]: AbstractFieldConditionMetadata<any, any> };
2404
+ }
2405
+
2406
+ export interface DataObjectRuleSourceTypeGroup extends RuleSourceTypeGroup<DataObjectRuleSource> {
2407
+ }
2408
+
2409
+ export interface HomepageRuleSourceTypeGroup extends RuleSourceTypeGroup<RuleSource> {
2410
+ }
2411
+
2412
+ export interface RuleSetKey extends Serializable, Comparable<RuleSetKey> {
2413
+ type?: RuleKeyType;
2414
+ key?: string;
2415
+ }
2416
+
2417
+ export interface RuleSetKeyDeserializer extends KeyDeserializer {
2418
+ }
2419
+
2420
+ export interface RuleSetKeySerializer extends JsonSerializer<RuleSetKey> {
2421
+ }
2422
+
2423
+ export interface RuleSource {
2424
+ key?: RuleSetKey;
2425
+ }
2426
+
2427
+ export interface RuleSourceTypeGroup<T> {
2428
+ type?: RuleKeyType;
2429
+ ruleSources?: T[];
2430
+ }
2431
+
2432
+ export interface DataMaskingStrategy {
2433
+ }
2434
+
2435
+ export interface DataMaskingStrategyFactory {
2436
+ }
2437
+
2438
+ export interface DatahubQuery {
2439
+ filterCriteria?: FilterCriteria;
2440
+ sortCriteria?: SortCriteria;
2441
+ pagingOptions?: PagingOptions;
2442
+ history?: HistoryOptions;
2443
+ temporalOptions?: TemporalOptions;
2444
+ tableType?: QueryTableType;
2445
+ groupingCriteria?: GroupingCriteria;
2446
+ countRows?: boolean;
2447
+ depth?: number;
2448
+ includeDisplayLabel?: boolean;
2449
+ includeAuditObjects?: boolean;
2450
+ dataMaskingStrategy?: DataMaskingStrategy;
2451
+ selectColumnFields?: string[];
2452
+ selectAll?: boolean;
2453
+ }
2454
+
2455
+ export interface EmptyResultsWherePredicate extends WherePredicate {
2456
+ }
2457
+
2458
+ export interface EmptyWherePredicate extends WherePredicate {
2459
+ }
2460
+
2461
+ export interface EntityKey {
2462
+ id?: string;
2463
+ map?: { [index: string]: any };
2464
+ }
2465
+
2466
+ export interface EntityKeyBuilder {
2467
+ }
2468
+
2469
+ export interface EntityKeyConverter {
2470
+ }
2471
+
2472
+ export interface EntityKeyWithMetadata {
2473
+ entityKey?: EntityKey;
2474
+ entityType?: StoredObjectDTO;
2475
+ }
2476
+
2477
+ export interface FilterCriteria {
2478
+ filters?: WherePredicate;
2479
+ }
2480
+
2481
+ export interface GroupPredicate {
2482
+ fieldName?: string;
2483
+ }
2484
+
2485
+ export interface GroupingCriteria {
2486
+ groupPredicates?: GroupPredicate[];
2487
+ }
2488
+
2489
+ export interface HistoryOptions {
2490
+ version?: number;
2491
+ ownerVersion?: string;
2492
+ where?: { [index: string]: any };
2493
+ }
2494
+
2495
+ export interface MinimallyMaskingDataMaskingStrategy extends DataMaskingStrategy {
2496
+ }
2497
+
2498
+ export interface PagingOptions {
2499
+ start?: number;
2500
+ limit?: number;
2501
+ }
2502
+
2503
+ export interface PartitionUtil {
2504
+ }
2505
+
2506
+ export interface QueryResults<T> {
2507
+ totalResultCount?: number;
2508
+ items?: T[];
2509
+ pagingOptions?: PagingOptions;
2510
+ }
2511
+
2512
+ export interface RemoveValuesDataMaskingStrategy extends DataMaskingStrategy {
2513
+ }
2514
+
2515
+ export interface ReplaceWithDotsDataMaskingStrategy extends DataMaskingStrategy {
2516
+ }
2517
+
2518
+ export interface SelectiveMaskingDataMaskingStrategy extends DataMaskingStrategy {
2519
+ }
2520
+
2521
+ export interface SortCriteria {
2522
+ field?: FieldReference;
2523
+ sortOrder?: SortOrder;
2524
+ next?: SortCriteria;
2525
+ }
2526
+
2527
+ export interface TemporalOptions {
2528
+ earliestValidFrom?: Date;
2529
+ latestValidFrom?: Date;
2530
+ earliestValidTo?: Date;
2531
+ latestValidTo?: Date;
2532
+ dateFieldName?: string;
2533
+ }
2534
+
2535
+ export interface UnmaskedDataMaskingStrategy extends DataMaskingStrategy {
2536
+ }
2537
+
2538
+ export interface WherePredicate {
2539
+ fields?: string[];
2540
+ operator?: PredicateOperator;
2541
+ values?: any;
2542
+ childPredicates?: WherePredicate[];
2543
+ logicalOperator?: PredicateLogicalOperator;
2544
+ rawPredicate?: string;
2545
+ raw?: boolean;
2546
+ }
2547
+
2548
+ export interface WherePredicateExpressionVisitor extends AbstractExpressionVisitor<WherePredicate> {
2549
+ filter?: WherePredicate;
2550
+ }
2551
+
2552
+ export interface ArithmeticExpression extends Expression {
2553
+ type: "ArithExpr";
2554
+ leftOperand?: ExpressionUnion;
2555
+ rightOperand?: ExpressionUnion;
2556
+ operator?: QueryExpressionArithmeticOperator;
2557
+ }
2558
+
2559
+ export interface BooleanExpression extends Expression {
2560
+ type: "BoolExpr" | "Conditional" | "Logical";
2561
+ }
2562
+
2563
+ export interface ConditionalExpression extends BooleanExpression {
2564
+ type: "Conditional";
2565
+ leftOperand?: ExpressionUnion;
2566
+ rightOperands?: ExpressionUnion[];
2567
+ operator?: ConditionalOperator;
2568
+ }
2569
+
2570
+ export interface Expression {
2571
+ type: "ArithExpr" | "BoolExpr" | "Conditional" | "Logical" | "FieldRef" | "Function" | "Literal" | "NamedParam" | "StrExpr";
2572
+ }
2573
+
2574
+ export interface FieldReference extends Expression {
2575
+ type: "FieldRef";
2576
+ objectName?: string;
2577
+ fieldName?: string;
2578
+ }
2579
+
2580
+ export interface FunctionCall extends Expression {
2581
+ type: "Function";
2582
+ functionName?: FunctionName;
2583
+ arguments?: ExpressionUnion[];
2584
+ }
2585
+
2586
+ export interface Literal extends Expression {
2587
+ type: "Literal";
2588
+ value?: any;
2589
+ }
2590
+
2591
+ export interface LogicalExpression extends BooleanExpression {
2592
+ type: "Logical";
2593
+ leftOperand?: ExpressionUnion;
2594
+ rightOperand?: ExpressionUnion;
2595
+ operator?: QueryExpressionLogicalOperator;
2596
+ }
2597
+
2598
+ export interface NamedParameter extends Expression {
2599
+ type: "NamedParam";
2600
+ parameterName?: string;
2601
+ }
2602
+
2603
+ export interface StringExpression extends Expression {
2604
+ type: "StrExpr";
2605
+ leftOperand?: ExpressionUnion;
2606
+ rightOperand?: ExpressionUnion;
2607
+ operator?: StringOperator;
2608
+ }
2609
+
2610
+ export interface ApiConstant {
2611
+ }
2612
+
2613
+ export interface Length {
2614
+ }
2615
+
2616
+ export interface BaseDocumentCollectionRequest extends Serializable {
2617
+ start?: number;
2618
+ limit?: number;
2619
+ includeDisplayLabel?: boolean;
2620
+ depth?: string;
2621
+ sortBy?: string;
2622
+ }
2623
+
2624
+ export interface BulkOperationResult {
2625
+ id?: string;
2626
+ entityType?: string;
2627
+ operation?: MessageAction;
2628
+ error?: ErrorResponse;
2629
+ }
2630
+
2631
+ export interface CascadingReferenceDataSummary {
2632
+ id?: number;
2633
+ name?: string;
2634
+ label?: string;
2635
+ levels?: ReferenceListSummary[];
2636
+ version?: number;
2637
+ links?: RestRepresentationsLink[];
2638
+ solutionName?: string;
2639
+ solutionLabel?: string;
2640
+ }
2641
+
2642
+ export interface ChildVersion extends ChildVersionSummary {
2643
+ values?: VersionValue[];
2644
+ }
2645
+
2646
+ export interface ChildVersionSummary extends VersionSummary {
2647
+ parentTypeName?: string;
2648
+ parentId?: string;
2649
+ parentVersion?: string;
2650
+ }
2651
+
2652
+ export interface Compound {
2653
+ id?: number;
2654
+ elements?: Element[];
2655
+ }
2656
+
2657
+ export interface ConditionalRule {
2658
+ conditionId?: string;
2659
+ objectState?: string;
2660
+ }
2661
+
2662
+ export interface DataField {
2663
+ length?: number;
2664
+ name?: string;
2665
+ id?: number;
2666
+ readOnly?: boolean;
2667
+ precision?: number;
2668
+ dataType?: any;
2669
+ primaryKeyField?: boolean;
2670
+ displayIndex?: number;
2671
+ primaryKeySeqNo?: number;
2672
+ allowMultipleSelections?: boolean;
2673
+ unique?: boolean;
2674
+ autoGenerated?: boolean;
2675
+ systemReserved?: boolean;
2676
+ userSelectionStrategy?: UserSelectionStrategyType;
2677
+ constrainingListName?: string;
2678
+ indexedForSearch?: boolean;
2679
+ assignedTimeZone?: string;
2680
+ displayInTimeZone?: string;
2681
+ showTimeZone?: boolean;
2682
+ masked?: boolean;
2683
+ authorizedToRevealMasked?: UserGroupChooserSelection[];
2684
+ redacted?: AbstractRedactionRuleUnion;
2685
+ requiredConditionally?: ConditionalRule;
2686
+ readOnlyConditionally?: ConditionalRule;
2687
+ ownerName?: string;
2688
+ required?: boolean;
2689
+ columnName?: string;
2690
+ scale?: number;
2691
+ label?: string;
2692
+ description?: string;
2693
+ }
2694
+
2695
+ export interface DataObject extends SolutionAssignedDTO {
2696
+ name?: string;
2697
+ fields?: DataField[];
2698
+ id?: number;
2699
+ readOnly?: boolean;
2700
+ version?: number;
2701
+ historyEnabled?: boolean;
2702
+ createdAtTimeFieldName?: string;
2703
+ validFromFieldName?: string;
2704
+ systemReserved?: boolean;
2705
+ allowedRedactedFieldGroups?: string[];
2706
+ validToFieldName?: string;
2707
+ lastUpdatedAtTimeFieldName?: string;
2708
+ displayTextFields?: SortableNameReference[];
2709
+ dataStoreName?: string;
2710
+ dataStoreDefaultSchemaName?: string;
2711
+ dataStoreAssignedTimeZone?: string;
2712
+ tableName?: string;
2713
+ label?: string;
2714
+ description?: string;
2715
+ }
2716
+
2717
+ export interface DocumentAndLink {
2718
+ document?: EnrichedDocument;
2719
+ documentLink?: DocumentLink;
2720
+ }
2721
+
2722
+ export interface DocumentFilterRequest extends BaseDocumentCollectionRequest {
2723
+ filter?: string;
2724
+ }
2725
+
2726
+ export interface DocumentIdRequest extends BaseDocumentCollectionRequest {
2727
+ documentIds?: string[];
2728
+ }
2729
+
2730
+ export interface Element {
2731
+ name?: string;
2732
+ id?: number;
2733
+ dataType?: any;
2734
+ mappedFields?: DataField[];
2735
+ displayable?: boolean;
2736
+ label?: string;
2737
+ }
2738
+
2739
+ export interface EnrichedDocument {
2740
+ objectTypeName?: string;
2741
+ objectTypeId?: number;
2742
+ objectTypeVersion?: number;
2743
+ id?: string;
2744
+ fieldValues?: { [index: string]: any };
2745
+ displayLabel?: string;
2746
+ createdAt?: Date;
2747
+ lastUpdatedAt?: Date;
2748
+ validFrom?: Date;
2749
+ validTo?: Date;
2750
+ sheets?: Sheet[];
2751
+ comments?: Comment[];
2752
+ fileOperations?: AbstractFileOperationUnion[];
2753
+ fieldRestrictions?: { [index: string]: any };
2754
+ attachmentsCount?: number;
2755
+ }
2756
+
2757
+ export interface Entity extends SolutionAssignedDTO {
2758
+ name?: string;
2759
+ id?: number;
2760
+ defaultRegularIcon?: Icon;
2761
+ nodeColor?: string;
2762
+ nodeShape?: string;
2763
+ markerColor?: string;
2764
+ borderColor?: string;
2765
+ compounds?: Compound[];
2766
+ borderWidth?: number;
2767
+ useForNetworkBuild?: boolean;
2768
+ temporalSplitting?: boolean;
2769
+ displayTextElements?: SortableNameReference[];
2770
+ linkDisplayTextElements?: SortableNameReference[];
2771
+ requiresMultipleContributors?: boolean;
2772
+ publishCode?: PublishCode;
2773
+ defaultMapIcon?: Icon;
2774
+ scale?: number;
2775
+ label?: string;
2776
+ }
2777
+
2778
+ export interface Error {
2779
+ httpStatusCode?: number;
2780
+ errorCode?: string;
2781
+ message?: string;
2782
+ details?: string[];
2783
+ remediation?: string;
2784
+ links?: RestRepresentationsLink[];
2785
+ stackTrace?: string;
2786
+ version?: number;
2787
+ }
2788
+
2789
+ export interface FieldMaskingConfigDTO {
2790
+ currentUserIsAuthorizedToReveal?: boolean;
2791
+ revealUrl?: string;
2792
+ }
2793
+
2794
+ export interface Icon {
2795
+ id?: number;
2796
+ type?: IconType;
2797
+ imageType?: IconImageType;
2798
+ imageLocation?: string;
2799
+ }
2800
+
2801
+ export interface LinkBulkOperationResult {
2802
+ id?: string;
2803
+ relationshipTypeName?: string;
2804
+ fromEntityType?: string;
2805
+ fromId?: string;
2806
+ toEntityType?: string;
2807
+ toId?: string;
2808
+ operation?: MessageAction;
2809
+ error?: ErrorResponse;
2810
+ }
2811
+
2812
+ export interface MediaTypeConstants {
2813
+ }
2814
+
2815
+ export interface ReferenceListSummary {
2816
+ version?: number;
2817
+ id?: number;
2818
+ name?: string;
2819
+ label?: string;
2820
+ maxCodeLength?: number;
2821
+ archived?: boolean;
2822
+ links?: RestRepresentationsLink[];
2823
+ referenceListType?: ReferenceListType;
2824
+ hierarchyLevel?: number;
2825
+ solutionName?: string;
2826
+ solutionLabel?: string;
2827
+ }
2828
+
2829
+ export interface Relationship extends DataObject {
2830
+ type?: RelationshipType;
2831
+ fromObjectName?: string;
2832
+ toObjectName?: string;
2833
+ reverseName?: string;
2834
+ reverseLabel?: string;
2835
+ fromObjectLabel?: string;
2836
+ toObjectLabel?: string;
2837
+ cardinality?: RelationshipCardinality;
2838
+ previousCardinality?: RelationshipCardinality;
2839
+ symmetric?: boolean;
2840
+ dashType?: string;
2841
+ styles?: LinkStyleDTO[];
2842
+ toObjectTypeNames?: string[];
2843
+ summaryFields?: SortableNameReference[];
2844
+ heterogeneousLink?: boolean;
2845
+ linkFields?: { [index: string]: string }[];
2846
+ joinTableName?: string;
2847
+ required?: boolean;
2848
+ qualifiedName?: string;
2849
+ managed?: boolean;
2850
+ color?: string;
2851
+ width?: number;
2852
+ }
2853
+
2854
+ export interface SheetCopySelection {
2855
+ objectTypeName?: string;
2856
+ objectId?: string;
2857
+ sheetIds?: number[];
2858
+ documentId?: DocumentId;
2859
+ }
2860
+
2861
+ export interface SolutionAssignedDTO {
2862
+ solutionName?: string;
2863
+ }
2864
+
2865
+ export interface SortableNameReference {
2866
+ name?: string;
2867
+ displayIndex?: number;
2868
+ }
2869
+
2870
+ export interface StoredDataObject extends DataObject {
2871
+ type?: DataObjectType;
2872
+ relationshipsFrom?: Relationship[];
2873
+ defaultRegularIcon?: Icon;
2874
+ nodeColor?: string;
2875
+ nodeShape?: string;
2876
+ markerColor?: string;
2877
+ borderColor?: string;
2878
+ borderWidth?: number;
2879
+ attachmentsIndexedForSearch?: boolean;
2880
+ enableCasDistributedDataLoad?: boolean;
2881
+ relationshipsTo?: Relationship[];
2882
+ elementGroupRoot?: boolean;
2883
+ requireSearchBeforeCreate?: boolean;
2884
+ mobileOfflineEnabled?: boolean;
2885
+ fileCategories?: FileCategory[];
2886
+ styles?: EntityStyleDTO[];
2887
+ defaultMapIcon?: Icon;
2888
+ nodeDecoration?: NodeDecorationDTO;
2889
+ scale?: number;
2890
+ parentName?: string;
2891
+ }
2892
+
2893
+ export interface Transaction extends DataObject {
2894
+ fromObjectName?: string;
2895
+ toObjectName?: string;
2896
+ toObjectTypeFieldName?: string;
2897
+ fromObjectTypeFieldName?: string;
2898
+ fromObjectRefFieldName?: string;
2899
+ toObjectRefFieldName?: string;
2900
+ lineWidthFieldName?: string;
2901
+ lineWidthFunctionType?: AggregateFunctionType;
2902
+ lineColorFieldName?: string;
2903
+ lineColorFunctionType?: AggregateFunctionType;
2904
+ }
2905
+
2906
+ export interface Version extends VersionSummary {
2907
+ values?: VersionValue[];
2908
+ }
2909
+
2910
+ export interface VersionSummary {
2911
+ typeName?: string;
2912
+ id?: string;
2913
+ version?: string;
2914
+ displayLabel?: string;
2915
+ operation?: string;
2916
+ createdBy?: string;
2917
+ createdAt?: Date;
2918
+ links?: RestRepresentationsLink[];
2919
+ }
2920
+
2921
+ export interface VersionValue {
2922
+ name?: string;
2923
+ label?: string;
2924
+ previousVersionValue?: any;
2925
+ value?: any;
2926
+ type?: string;
2927
+ valueChanged?: boolean;
2928
+ fieldRestriction?: { [index: string]: any };
2929
+ previousValueFieldRestriction?: { [index: string]: any };
2930
+ }
2931
+
2932
+ export interface CompoundImpl extends Compound {
2933
+ }
2934
+
2935
+ export interface ConditionalFieldRuleImpl extends ConditionalRule {
2936
+ }
2937
+
2938
+ export interface DataFieldImpl extends DataField {
2939
+ requiredConditionally?: ConditionalFieldRuleImpl;
2940
+ readOnlyConditionally?: ConditionalFieldRuleImpl;
2941
+ }
2942
+
2943
+ export interface DataFilter {
2944
+ field?: string;
2945
+ value?: any;
2946
+ }
2947
+
2948
+ export interface DataObjectImpl extends DataObject {
2949
+ solutionLabel?: string;
2950
+ indexedForSearch?: boolean;
2951
+ }
2952
+
2953
+ export interface ElementImpl extends Element {
2954
+ }
2955
+
2956
+ export interface EntityImpl extends Entity {
2957
+ solutionLabel?: string;
2958
+ }
2959
+
2960
+ export interface FileCategory {
2961
+ name?: string;
2962
+ displayName?: string;
2963
+ allowMultiple?: boolean;
2964
+ documentLockRequired?: boolean;
2965
+ required?: boolean;
2966
+ }
2967
+
2968
+ export interface FileCategoryImpl extends FileCategory {
2969
+ }
2970
+
2971
+ export interface IconDecorationDTO {
2972
+ field?: string;
2973
+ position?: string;
2974
+ }
2975
+
2976
+ export interface IconImpl extends Icon {
2977
+ }
2978
+
2979
+ export interface ImplIdentifiable<T> {
2980
+ id?: T;
2981
+ }
2982
+
2983
+ export interface NodeDecorationDTO {
2984
+ label?: string;
2985
+ icons?: IconDecorationDTO[];
2986
+ }
2987
+
2988
+ export interface Paging {
2989
+ start?: number;
2990
+ count?: number;
2991
+ }
2992
+
2993
+ export interface RelationshipImpl extends DataObjectImpl, Relationship {
2994
+ }
2995
+
2996
+ export interface ResourceSummary {
2997
+ id?: number;
2998
+ uuid?: string;
2999
+ name?: string;
3000
+ dateCreated?: string;
3001
+ dateModified?: string;
3002
+ documentType?: string;
3003
+ solutionName?: string;
3004
+ solutionLabel?: string;
3005
+ }
3006
+
3007
+ export interface ResourcedString {
3008
+ defaultText?: string;
3009
+ resourceKey?: string;
3010
+ }
3011
+
3012
+ export interface Solution {
3013
+ id?: number;
3014
+ name?: string;
3015
+ solutionVersion?: string;
3016
+ archived?: boolean;
3017
+ resourceVersion?: number;
3018
+ version?: number;
3019
+ links?: RestRepresentationsLink[];
3020
+ label?: string;
3021
+ description?: string;
3022
+ createdBy?: string;
3023
+ lastUpdatedBy?: string;
3024
+ createdAt?: Date;
3025
+ lastUpdatedAt?: Date;
3026
+ }
3027
+
3028
+ export interface Sorting {
3029
+ field?: string;
3030
+ ascending?: boolean;
3031
+ }
3032
+
3033
+ export interface StoredDataObjectImpl extends DataObjectImpl, StoredDataObject {
3034
+ }
3035
+
3036
+ export interface TemplateResourceSummary extends ResourceSummary {
3037
+ clientApplication?: string;
3038
+ templateType?: string;
3039
+ active?: boolean;
3040
+ }
3041
+
3042
+ export interface TransactionImpl extends DataObjectImpl, Transaction {
3043
+ }
3044
+
3045
+ export interface Traversal extends SolutionAssignedDTO {
3046
+ id?: number;
3047
+ uuid?: string;
3048
+ name?: string;
3049
+ traversalDefinition?: { [index: string]: any };
3050
+ solutionLabel?: string;
3051
+ }
3052
+
3053
+ export interface Versions {
3054
+ }
3055
+
3056
+ export interface Comment {
3057
+ id?: number;
3058
+ category?: string;
3059
+ author?: CommentUser;
3060
+ createDate?: Date;
3061
+ lastUpdatedAt?: Date;
3062
+ lastUpdatedBy?: string;
3063
+ detail?: string;
3064
+ }
3065
+
3066
+ export interface CommentCategorySummary {
3067
+ category?: string;
3068
+ count?: number;
3069
+ }
3070
+
3071
+ export interface CommentUser {
3072
+ id?: string;
3073
+ name?: string;
3074
+ }
3075
+
3076
+ export interface AbstractFieldConditionMetadata<Y, T> {
3077
+ cycleDetector?: CycleDetector;
3078
+ owner?: Y;
3079
+ ownerName?: string;
3080
+ parentObjectName?: string;
3081
+ }
3082
+
3083
+ export interface AbstractStyleDTO extends Comparable<AbstractStyleDTO>, Serializable {
3084
+ id?: string;
3085
+ conditionId?: string;
3086
+ evaluationOrder?: number;
3087
+ }
3088
+
3089
+ export interface ConditionAssociationDTO {
3090
+ type?: string;
3091
+ association?: string;
3092
+ }
3093
+
3094
+ export interface ConditionDTO extends Comparable<ConditionDTO>, ImplIdentifiable<string> {
3095
+ id?: string;
3096
+ version?: number;
3097
+ name?: string;
3098
+ description?: string;
3099
+ condition?: AbstractCondition<any>;
3100
+ referencedConditions?: string[];
3101
+ referencedFacts?: ReferencedFact[];
3102
+ ownerName?: string;
3103
+ referencedBy?: ConditionAssociationDTO[];
3104
+ creationTimeStamp?: Date;
3105
+ createdBy?: string;
3106
+ modifiedTimeStamp?: Date;
3107
+ modifiedBy?: string;
3108
+ }
3109
+
3110
+ export interface CycleDetector {
3111
+ cycle?: boolean;
3112
+ }
3113
+
3114
+ export interface EntityStyleDTO extends AbstractStyleDTO {
3115
+ iconName?: string;
3116
+ markerColor?: string;
3117
+ nodeColor?: string;
3118
+ borderColor?: string;
3119
+ borderWidth?: number;
3120
+ shape?: string;
3121
+ scale?: number;
3122
+ indicatorIconName?: string;
3123
+ indicatorIconPosition?: string;
3124
+ additionalLabel?: string;
3125
+ }
3126
+
3127
+ export interface LinkStyleDTO extends AbstractStyleDTO {
3128
+ color?: string;
3129
+ width?: number;
3130
+ dashType?: string;
3131
+ }
3132
+
3133
+ export interface ReferencedFact {
3134
+ factType?: ReferencedFactType;
3135
+ factPlaceholder?: string;
3136
+ factValue?: string;
3137
+ }
3138
+
3139
+ export interface ArithmeticComparator<T> extends Serializable, BiFunction<T, T, boolean> {
3140
+ }
3141
+
3142
+ export interface EqualityComparator extends ArithmeticComparator<any> {
3143
+ }
3144
+
3145
+ export interface InequalityComparator extends ArithmeticComparator<any> {
3146
+ }
3147
+
3148
+ export interface PresenceComparator extends Serializable, Function<any, boolean> {
3149
+ }
3150
+
3151
+ export interface EqualityComparatorDeserializer extends JsonDeserializer<EqualityComparator> {
3152
+ }
3153
+
3154
+ export interface EqualityComparatorSerializer extends JsonSerializer<EqualityComparator> {
3155
+ }
3156
+
3157
+ export interface InequalityComparatorDeserializer extends JsonDeserializer<InequalityComparator> {
3158
+ }
3159
+
3160
+ export interface InequalityComparatorSerializer extends JsonSerializer<InequalityComparator> {
3161
+ }
3162
+
3163
+ export interface PresenceComparatorDeserializer extends JsonDeserializer<PresenceComparator> {
3164
+ }
3165
+
3166
+ export interface PresenceComparatorSerializer extends JsonSerializer<PresenceComparator> {
3167
+ }
3168
+
3169
+ export interface AbstractCondition<T> extends Serializable {
3170
+ type?: string;
3171
+ parameters?: T[];
3172
+ }
3173
+
3174
+ export interface AbstractFieldCondition<T> extends AbstractCondition<T> {
3175
+ }
3176
+
3177
+ export interface ArithmeticCondition extends AbstractFieldCondition<any>, FieldCondition {
3178
+ type: "eq";
3179
+ parameters?: any[];
3180
+ }
3181
+
3182
+ export interface CompositeCondition extends AbstractCondition<AbstractCondition<any>> {
3183
+ type: "and";
3184
+ parameters?: AbstractCondition<any>[];
3185
+ }
3186
+
3187
+ export interface CurrentUserMembershipCondition extends AbstractCondition<string> {
3188
+ type: "current_user_is_member_of";
3189
+ parameters?: string[];
3190
+ }
3191
+
3192
+ export interface FieldCondition {
3193
+ value?: any;
3194
+ field?: string;
3195
+ }
3196
+
3197
+ export interface NegateCondition extends AbstractCondition<AbstractCondition<any>> {
3198
+ type: "not";
3199
+ parameters?: AbstractCondition<any>[];
3200
+ }
3201
+
3202
+ export interface PresenceCondition extends AbstractFieldCondition<any>, FieldCondition {
3203
+ type: "empty";
3204
+ parameters?: any[];
3205
+ }
3206
+
3207
+ export interface ReferencedCondition extends AbstractCondition<string> {
3208
+ type: "cond";
3209
+ parameters?: string[];
3210
+ }
3211
+
3212
+ export interface ContextMapping extends ImplIdentifiable<number>, ValidatableContextMapping {
3213
+ id?: number;
3214
+ conditions?: QueryUnion;
3215
+ templateId?: number;
3216
+ mode?: PageMode;
3217
+ clientApplication?: string;
3218
+ publishCode?: PublishCode;
3219
+ solutionLabel?: string;
3220
+ usedFields?: string[];
3221
+ usedGroups?: string[];
3222
+ }
3223
+
3224
+ export interface ContextMappingOptions {
3225
+ toolbarEnabled?: boolean;
3226
+ templateId?: number;
3227
+ mode?: PageMode;
3228
+ }
3229
+
3230
+ export interface Event {
3231
+ template?: Template;
3232
+ name?: string;
3233
+ metadata?: EventMetadata;
3234
+ }
3235
+
3236
+ export interface EventMetadata {
3237
+ mode?: PageMode;
3238
+ }
3239
+
3240
+ export interface ValidatableContextMapping extends SolutionAssignedDTO {
3241
+ tag?: string;
3242
+ docType?: string;
3243
+ uuid?: string;
3244
+ fallbackToEvent?: string;
3245
+ templateId?: any;
3246
+ toolbarEnabled?: boolean;
3247
+ evaluateOrder?: number;
3248
+ event?: string;
3249
+ }
3250
+
3251
+ export interface Control extends ControlMetadata {
3252
+ createdAt?: Date;
3253
+ lastUpdatedAt?: Date;
3254
+ icon?: any;
3255
+ displayNameResource?: string;
3256
+ controlDescriptionResource?: string;
3257
+ propertiesTitleResource?: string;
3258
+ directiveTemplate?: string;
3259
+ directive?: string;
3260
+ version?: number;
3261
+ }
3262
+
3263
+ export interface ControlCategory {
3264
+ type?: string;
3265
+ displayName?: ResourcedString;
3266
+ controls?: ControlMetadata[];
3267
+ }
3268
+
3269
+ export interface ControlMetadata extends SolutionAssignedDTO {
3270
+ id?: number;
3271
+ category?: string;
3272
+ categoryDisplayName?: ResourcedString;
3273
+ name?: string;
3274
+ directiveName?: string;
3275
+ displayName?: ResourcedString;
3276
+ controlDescription?: ResourcedString;
3277
+ propertiesTitle?: ResourcedString;
3278
+ controlAttributes?: { [index: string]: any };
3279
+ customControl?: boolean;
3280
+ solutionLabel?: string;
3281
+ requiredCapabilities?: string[];
3282
+ }
3283
+
3284
+ export interface RelateLinkDTO {
3285
+ fromDocument?: DocumentId;
3286
+ toDocuments?: RelateTo[];
3287
+ version?: number;
3288
+ }
3289
+
3290
+ export interface RelateTo extends DocumentId {
3291
+ relationships?: string[];
3292
+ }
3293
+
3294
+ export interface RelateOptionDTO {
3295
+ version?: number;
3296
+ relateToOptions?: RelateToOption[];
3297
+ }
3298
+
3299
+ export interface RelateToOption {
3300
+ cardinalityStatus?: CardinalityStatus;
3301
+ relationship?: Relationship;
3302
+ }
3303
+
3304
+ export interface BulkOperation<T, Y> {
3305
+ method?: MethodType;
3306
+ body?: T;
3307
+ id?: Y;
3308
+ }
3309
+
3310
+ export interface BulkOperationsOutcome<T> {
3311
+ changedItems?: T[];
3312
+ affectedDocumentTypes?: string[];
3313
+ }
3314
+
3315
+ export interface PageAction extends Comparable<PageAction>, SolutionAssignedDTO {
3316
+ actionName?: string;
3317
+ controlName?: string;
3318
+ displayName?: ResourcedString;
3319
+ clientApplication?: string;
3320
+ requiredCapabilities?: string[];
3321
+ customAction?: boolean;
3322
+ actionAttributes?: { [index: string]: any };
3323
+ solutionLabel?: string;
3324
+ }
3325
+
3326
+ export interface PageActionItem {
3327
+ attrs?: ActionItemDetails;
3328
+ }
3329
+
3330
+ export interface ActionItemConfig extends ImplIdentifiable<number> {
3331
+ id?: number;
3332
+ uuid?: string;
3333
+ actionName?: string;
3334
+ documentType?: string;
3335
+ attributes?: { [index: string]: any };
3336
+ resources?: { [index: string]: any };
3337
+ conditions?: QueryUnion;
3338
+ order?: number;
3339
+ usedFields?: string[];
3340
+ usedGroups?: string[];
3341
+ }
3342
+
3343
+ export interface ActionItemDetails {
3344
+ uuid?: string;
3345
+ actionId?: number;
3346
+ controlId?: number;
3347
+ attributes?: { [index: string]: any };
3348
+ resources?: { [index: string]: any };
3349
+ actionName?: string;
3350
+ displayName?: string;
3351
+ }
3352
+
3353
+ export interface ActionState extends Serializable {
3354
+ }
3355
+
3356
+ export interface Actions {
3357
+ items?: PageActionItem[];
3358
+ }
3359
+
3360
+ export interface FieldRestrictionTuple {
3361
+ fieldName?: string;
3362
+ restriction?: { [index: string]: any };
3363
+ }
3364
+
3365
+ export interface FileRestrictionTuple {
3366
+ categoryName?: string;
3367
+ restriction?: { [index: string]: any };
3368
+ }
3369
+
3370
+ export interface Page {
3371
+ id?: string;
3372
+ type?: string;
3373
+ typeId?: number;
3374
+ typeVersion?: number;
3375
+ documentVersion?: number;
3376
+ template?: Template;
3377
+ data?: TemplateData;
3378
+ sheetSummaries?: SheetSummary[];
3379
+ commentCount?: number;
3380
+ eventMetadata?: EventMetadata;
3381
+ linkedTemplateData?: LinkedTemplate[];
3382
+ actions?: Actions;
3383
+ fieldRestrictions?: { [index: string]: any };
3384
+ fileRestrictions?: { [index: string]: any };
3385
+ conditions?: ConditionDTO[];
3386
+ }
3387
+
3388
+ export interface PageConfig {
3389
+ id?: number;
3390
+ propertyMatch?: { [index: string]: any };
3391
+ toolbarEnabled?: boolean;
3392
+ templateId?: number;
3393
+ mode?: PageMode;
3394
+ evaluateOrder?: number;
3395
+ }
3396
+
3397
+ export interface PageRequestFlags {
3398
+ pageType?: PageTypeFlag;
3399
+ }
3400
+
3401
+ export interface PageState extends Serializable {
3402
+ templateId?: number;
3403
+ toolbarEnabled?: boolean;
3404
+ actionState?: ActionState;
3405
+ pageMode?: PageMode;
3406
+ }
3407
+
3408
+ export interface RecordMetadata {
3409
+ id?: string;
3410
+ type?: string;
3411
+ typeId?: number;
3412
+ typeVersion?: number;
3413
+ documentVersion?: number;
3414
+ }
3415
+
3416
+ export interface UserGroupChooserSelection {
3417
+ type?: UserGroupType;
3418
+ id?: string;
3419
+ }
3420
+
3421
+ export interface ActionItemRule {
3422
+ id?: number;
3423
+ actionName?: string;
3424
+ disableRules?: QueryUnion;
3425
+ requiredCapabilities?: string[];
3426
+ }
3427
+
3428
+ export interface ArithmeticQuery extends Query, FieldCondition {
3429
+ type: "equals";
3430
+ }
3431
+
3432
+ export interface CompositeQuery extends Query {
3433
+ type: "and";
3434
+ queries?: QueryUnion[];
3435
+ }
3436
+
3437
+ export interface CurrentUserMembershipQuery extends Query {
3438
+ type: "current_user_is_member_of";
3439
+ value?: string;
3440
+ field?: string;
3441
+ }
3442
+
3443
+ export interface Query {
3444
+ type: "equals" | "and" | "current_user_is_member_of";
3445
+ }
3446
+
3447
+ export interface QueryUtils {
3448
+ }
3449
+
3450
+ export interface DocumentId extends Serializable, ObjectTypeIdentifier {
3451
+ id?: string;
3452
+ uniqueId?: string;
3453
+ }
3454
+
3455
+ export interface DocumentLabelSummary extends DocumentId {
3456
+ label?: string;
3457
+ }
3458
+
3459
+ export interface ObjectTypeIdentifier {
3460
+ type?: string;
3461
+ }
3462
+
3463
+ export interface Record {
3464
+ fields?: { [index: string]: any };
3465
+ id?: string;
3466
+ type?: string;
3467
+ typeVersion?: number;
3468
+ typeId?: number;
3469
+ restrictedFields?: { [index: string]: any };
3470
+ }
3471
+
3472
+ export interface RecordFilter extends ObjectTypeIdentifier {
3473
+ ids?: string[];
3474
+ fields?: string[];
3475
+ }
3476
+
3477
+ export interface RecordFilters {
3478
+ recordFilters?: RecordFilter[];
3479
+ }
3480
+
3481
+ export interface RelationshipId {
3482
+ relationshipName?: string;
3483
+ fromObjectTypeName?: string;
3484
+ toObjectTypeName?: string;
3485
+ id?: string;
3486
+ relationshipQName?: string;
3487
+ }
3488
+
3489
+ export interface RelationshipIdBuilder {
3490
+ }
3491
+
3492
+ export interface RelationshipIdByLinkedEntityKeys extends RelationshipId {
3493
+ fromObjectId?: string;
3494
+ toObjectId?: string;
3495
+ }
3496
+
3497
+ export interface RelationshipIdByLinkedEntityRefs extends RelationshipId {
3498
+ fromObjectRef?: string;
3499
+ toObjectRef?: string;
3500
+ compositeKey?: string;
3501
+ }
3502
+
3503
+ export interface RelationshipIdBySurrogateKey extends RelationshipId {
3504
+ surrogateId?: string;
3505
+ }
3506
+
3507
+ export interface AbstractRedactionRule {
3508
+ useObjectAuthorization?: boolean;
3509
+ allowedGroups?: string[];
3510
+ type?: string;
3511
+ }
3512
+
3513
+ export interface FullRedactionRule extends AbstractRedactionRule {
3514
+ }
3515
+
3516
+ export interface Cell extends Serializable {
3517
+ type: "Image" | "Live" | "Static" | "Text";
3518
+ id?: number;
3519
+ row?: number;
3520
+ position?: number;
3521
+ height?: number;
3522
+ width?: number;
3523
+ version?: number;
3524
+ lastModified?: Date;
3525
+ }
3526
+
3527
+ export interface CellTypeValues {
3528
+ }
3529
+
3530
+ export interface ImageCell extends Cell {
3531
+ type: "Image";
3532
+ image?: string;
3533
+ annotations?: { [index: string]: any };
3534
+ }
3535
+
3536
+ export interface LiveVisualizationCell extends Cell {
3537
+ type: "Live";
3538
+ documents?: DocumentId[];
3539
+ entities?: ResolvedEntity[];
3540
+ visualizationType?: VisualizationType;
3541
+ visualizationOptions?: { [index: string]: any };
3542
+ queryOptions?: { [index: string]: any };
3543
+ resultsPerPage?: number;
3544
+ filterModel?: { [index: string]: any };
3545
+ networkData?: { [index: string]: any };
3546
+ }
3547
+
3548
+ export interface ResolvedEntity extends Serializable {
3549
+ type?: string;
3550
+ compound?: string;
3551
+ }
3552
+
3553
+ export interface Sheet {
3554
+ id?: number;
3555
+ type?: SheetType;
3556
+ name?: string;
3557
+ version?: number;
3558
+ created?: Date;
3559
+ createdBy?: string;
3560
+ lastModified?: Date;
3561
+ lastModifiedBy?: string;
3562
+ tabOrder?: number;
3563
+ uxState?: { [index: string]: any };
3564
+ cells?: CellUnion[];
3565
+ }
3566
+
3567
+ export interface SheetSummary {
3568
+ type?: SheetType;
3569
+ name?: string;
3570
+ id?: number;
3571
+ tabOrder?: number;
3572
+ }
3573
+
3574
+ export interface Values {
3575
+ }
3576
+
3577
+ export interface StaticVisualizationCell extends Cell {
3578
+ type: "Static";
3579
+ result?: { [index: string]: any };
3580
+ visualizationType?: VisualizationType;
3581
+ }
3582
+
3583
+ export interface TextCell extends Cell {
3584
+ type: "Text";
3585
+ contents?: string;
3586
+ }
3587
+
3588
+ export interface ActiveHomepage {
3589
+ id?: number;
3590
+ clientApplication?: string;
3591
+ templateUUID?: string;
3592
+ createdBy?: string;
3593
+ createdAt?: Date;
3594
+ lastUpdatedBy?: string;
3595
+ lastUpdatedAt?: Date;
3596
+ version?: number;
3597
+ links?: RestRepresentationsLink[];
3598
+ }
3599
+
3600
+ export interface ClientApplication extends Comparable<ClientApplication> {
3601
+ name?: string;
3602
+ label?: string;
3603
+ }
3604
+
3605
+ export interface LinkedTemplate {
3606
+ templateUuid?: string;
3607
+ traversalUuid?: string;
3608
+ traversal?: { [index: string]: any };
3609
+ }
3610
+
3611
+ export interface Template extends SolutionAssignedDTO {
3612
+ id?: number;
3613
+ uuid?: string;
3614
+ name?: string;
3615
+ template?: { [index: string]: any };
3616
+ metadata?: TemplateMetadata;
3617
+ linkedTraversals?: string[];
3618
+ templateType?: string;
3619
+ clientApplication?: string;
3620
+ linkedReferenceLists?: string[];
3621
+ fileCategories?: TemplateFileCategoryAssociationDTO[];
3622
+ conditions?: string[];
3623
+ publishCode?: PublishCode;
3624
+ solutionLabel?: string;
3625
+ active?: boolean;
3626
+ }
3627
+
3628
+ export interface TemplateData {
3629
+ id?: string;
3630
+ displayLabel?: string;
3631
+ fieldValues?: { [index: string]: any };
3632
+ }
3633
+
3634
+ export interface TemplateDataSource {
3635
+ objectName?: string;
3636
+ fields?: string[];
3637
+ }
3638
+
3639
+ export interface TemplateFileCategoryAssociationDTO {
3640
+ objectName?: string;
3641
+ fileCategories?: string[];
3642
+ }
3643
+
3644
+ export interface TemplateKey {
3645
+ application?: string;
3646
+ name?: string;
3647
+ }
3648
+
3649
+ export interface TemplateLink {
3650
+ templateUuid?: string;
3651
+ traversalUuid?: string;
3652
+ }
3653
+
3654
+ export interface TemplateMetadata {
3655
+ dataSources?: TemplateDataSource[];
3656
+ linkedTemplates?: TemplateLink[];
3657
+ workspaceEnabled?: boolean;
3658
+ insightsEnabled?: boolean;
3659
+ workspaceCreationEnabled?: boolean;
3660
+ insightsCreationEnabled?: boolean;
3661
+ resources?: { [index: string]: string };
3662
+ }
3663
+
3664
+ export interface TemplateType extends Comparable<TemplateType> {
3665
+ name?: string;
3666
+ label?: string;
3667
+ }
3668
+
3669
+ export interface CellValidator {
3670
+ }
3671
+
3672
+ export interface CommentValidator {
3673
+ }
3674
+
3675
+ export interface DatahubFreeformTextValidator extends ConstraintValidator<FreeformText, string> {
3676
+ }
3677
+
3678
+ export interface DatahubIdentifierTextArrayValidator extends ConstraintValidator<IdentifierTextArray, string[]> {
3679
+ }
3680
+
3681
+ export interface DatahubIdentifierTextValidator extends ConstraintValidator<IdentifierText, string> {
3682
+ }
3683
+
3684
+ export interface DatahubUuidValidator extends ConstraintValidator<UUID, string> {
3685
+ }
3686
+
3687
+ export interface EncodingRenderer extends HtmlStreamEventReceiver {
3688
+ }
3689
+
3690
+ export interface EnrichedDocumentValidator {
3691
+ }
3692
+
3693
+ export interface FieldValidationUtil {
3694
+ }
3695
+
3696
+ export interface HtmlEncoder<T> {
3697
+ wrappedRenderer?: HtmlStreamEventReceiver;
3698
+ wrappedPolicy?: Policy;
3699
+ }
3700
+
3701
+ export interface InputChannel<T> extends Policy {
3702
+ }
3703
+
3704
+ export interface OutputChannel extends HtmlStreamEventReceiver {
3705
+ }
3706
+
3707
+ export interface HtmlEncodingAppender extends Appendable {
3708
+ }
3709
+
3710
+ export interface HtmlValidatorFactory {
3711
+ }
3712
+
3713
+ export interface IdentifierTextValidator {
3714
+ }
3715
+
3716
+ export interface ImageCellValidator {
3717
+ }
3718
+
3719
+ export interface JsonMapWithNoHtmlValidator extends ConstraintValidator<JsonMapWithNoHtml, { [index: string]: any }> {
3720
+ }
3721
+
3722
+ export interface LiveVisualizationCellValidator {
3723
+ }
3724
+
3725
+ export interface RecordFiltersValidator {
3726
+ }
3727
+
3728
+ export interface RecordIdValidator {
3729
+ }
3730
+
3731
+ export interface ResolvedEntityValidator {
3732
+ }
3733
+
3734
+ export interface SheetCopySelectionValidator {
3735
+ }
3736
+
3737
+ export interface SheetValidator {
3738
+ }
3739
+
3740
+ export interface SortByQueryParamValidator extends ConstraintValidator<SortByQueryParam, string> {
3741
+ }
3742
+
3743
+ export interface StaticVisualizationCellValidator {
3744
+ }
3745
+
3746
+ export interface StringWithNoHtmlValidator extends ConstraintValidator<StringWithNoHtml, string> {
3747
+ }
3748
+
3749
+ export interface TextCellValidator {
3750
+ }
3751
+
3752
+ export interface ValidationFeatureFlagChecker {
3753
+ }
3754
+
3755
+ export interface ValidatorHtmlChangeListener extends HtmlChangeListener<string> {
3756
+ }
3757
+
3758
+ export interface HtmlSanitizerConfig {
3759
+ htmlSanitizerProperties?: AdditionalHtmlSanitizerProperties;
3760
+ }
3761
+
3762
+ export interface AdditionalHtmlSanitizerProperties {
3763
+ tags?: string;
3764
+ }
3765
+
3766
+ export interface SvgSanitizerConfig {
3767
+ svgSanitizerProperties?: Properties;
3768
+ }
3769
+
3770
+ export interface Properties {
3771
+ attributes?: string;
3772
+ elements?: string;
3773
+ prefixes?: string;
3774
+ }
3775
+
3776
+ export interface Job {
3777
+ version?: number;
3778
+ id?: string;
3779
+ name?: string;
3780
+ description?: string;
3781
+ parameters?: { [index: string]: any };
3782
+ tags?: string[];
3783
+ status?: Status;
3784
+ startedBy?: string;
3785
+ startedAt?: Date;
3786
+ endedAt?: Date;
3787
+ message?: string;
3788
+ tasks?: Task[];
3789
+ links?: RestRepresentationsLink[];
3790
+ }
3791
+
3792
+ export interface JobV1 extends Job {
3793
+ startedTimeStamp?: Date;
3794
+ endedTimeStamp?: Date;
3795
+ }
3796
+
3797
+ export interface Task {
3798
+ version?: number;
3799
+ parent?: string;
3800
+ id?: string;
3801
+ name?: string;
3802
+ description?: string;
3803
+ parameters?: { [index: string]: any };
3804
+ status?: Status;
3805
+ startedAt?: Date;
3806
+ endedAt?: Date;
3807
+ message?: string;
3808
+ subTasks?: Task[];
3809
+ links?: RestRepresentationsLink[];
3810
+ }
3811
+
3812
+ export interface TaskV1 extends Task {
3813
+ startedTimeStamp?: Date;
3814
+ endedTimeStamp?: Date;
3815
+ }
3816
+
3817
+ export interface CreatedEvent extends JobEvent {
3818
+ name?: string;
3819
+ description?: string;
3820
+ parameters?: { [index: string]: any };
3821
+ }
3822
+
3823
+ export interface JobCreatedEvent extends CreatedEvent {
3824
+ tags?: string[];
3825
+ startedBy?: string;
3826
+ tasks?: TaskCreatedEvent[];
3827
+ }
3828
+
3829
+ export interface JobEvent extends TypedPayload {
3830
+ version?: number;
3831
+ id?: string;
3832
+ status?: Status;
3833
+ startedAt?: Date;
3834
+ links?: RestRepresentationsLink[];
3835
+ eventTopic?: string;
3836
+ eventSubject?: string;
3837
+ job?: boolean;
3838
+ }
3839
+
3840
+ export interface JobUpdatedEvent extends UpdatedEvent {
3841
+ startedBy?: string;
3842
+ tasks?: TaskUpdatedEvent[];
3843
+ }
3844
+
3845
+ export interface TaskCreatedEvent extends CreatedEvent {
3846
+ parent?: string;
3847
+ subTasks?: TaskCreatedEvent[];
3848
+ }
3849
+
3850
+ export interface TaskUpdatedEvent extends UpdatedEvent {
3851
+ parent?: string;
3852
+ subTasks?: TaskUpdatedEvent[];
3853
+ }
3854
+
3855
+ export interface UpdatedEvent extends JobEvent {
3856
+ endedAt?: Date;
3857
+ message?: string;
3858
+ updateAllParentStatus?: boolean;
3859
+ }
3860
+
3861
+ export interface LineageRelationship extends TrackedResource, ETaggable {
3862
+ resourceUri?: string;
3863
+ type?: string;
3864
+ relatedResourceUri?: string;
3865
+ source?: string;
3866
+ id?: string;
3867
+ referenceId?: string;
3868
+ relatedReferenceId?: string;
3869
+ version?: number;
3870
+ links?: RestRepresentationsLink[];
3871
+ }
3872
+
3873
+ export interface ObjectContent extends ObjectId {
3874
+ fields?: { [index: string]: any };
3875
+ }
3876
+
3877
+ export interface ObjectId extends Serializable {
3878
+ type?: string;
3879
+ id?: string;
3880
+ }
3881
+
3882
+ export interface User {
3883
+ name?: string;
3884
+ groups?: string[];
3885
+ }
3886
+
3887
+ export interface UserGroup extends Serializable {
3888
+ type?: CommonsSecurityBootStrapModelTypesUserGroupType;
3889
+ name?: string;
3890
+ }
3891
+
3892
+ export interface EntityLevelAccessRequest {
3893
+ userId?: string;
3894
+ accessTypes?: AccessType[];
3895
+ documentTypes?: string[];
3896
+ }
3897
+
3898
+ export interface EntityLevelAccessResponse {
3899
+ documentType?: string;
3900
+ access?: { [index: string]: boolean };
3901
+ }
3902
+
3903
+ export interface RecordLevelAccessRequest {
3904
+ userId?: string;
3905
+ accessTypes?: AccessType[];
3906
+ documents?: ObjectId[];
3907
+ }
3908
+
3909
+ export interface RecordLevelAccessResponse {
3910
+ documentType?: string;
3911
+ id?: string;
3912
+ access?: { [index: string]: boolean };
3913
+ }
3914
+
3915
+ export interface Serializable {
3916
+ }
3917
+
3918
+ export interface JsonDeserializer<T> extends NullValueProvider {
3919
+ delegatee?: JsonDeserializer<any>;
3920
+ knownPropertyNames?: any[];
3921
+ nullValue?: T;
3922
+ emptyAccessPattern?: AccessPattern;
3923
+ emptyValue?: any;
3924
+ objectIdReader?: ObjectIdReader;
3925
+ cachable?: boolean;
3926
+ }
3927
+
3928
+ export interface ObjectIdReader extends Serializable {
3929
+ propertyName?: PropertyName;
3930
+ generator?: ObjectIdGenerator<any>;
3931
+ resolver?: ObjectIdResolver;
3932
+ idProperty?: SettableBeanProperty;
3933
+ deserializer?: JsonDeserializer<any>;
3934
+ idType?: JavaType;
3935
+ }
3936
+
3937
+ export interface JsonSerializer<T> extends JsonFormatVisitable {
3938
+ delegatee?: JsonSerializer<any>;
3939
+ unwrappingSerializer?: boolean;
3940
+ }
3941
+
3942
+ export interface HandlerExceptionResolver {
3943
+ }
3944
+
3945
+ export interface Ordered {
3946
+ order?: number;
3947
+ }
3948
+
3949
+ export interface LocalizedLocale {
3950
+ localeCd?: string;
3951
+ label?: string;
3952
+ default?: boolean;
3953
+ }
3954
+
3955
+ export interface ResponseEntity<T> extends HttpEntity<T> {
3956
+ statusCodeValue?: number;
3957
+ statusCode?: HttpStatus;
3958
+ }
3959
+
3960
+ export interface CacheStats {
3961
+ }
3962
+
3963
+ export interface Throwable extends Serializable {
3964
+ cause?: Throwable;
3965
+ stackTrace?: StackTraceElement[];
3966
+ message?: string;
3967
+ suppressed?: Throwable[];
3968
+ localizedMessage?: string;
3969
+ }
3970
+
3971
+ export interface StackTraceElement extends Serializable {
3972
+ classLoaderName?: string;
3973
+ moduleName?: string;
3974
+ moduleVersion?: string;
3975
+ methodName?: string;
3976
+ fileName?: string;
3977
+ lineNumber?: number;
3978
+ nativeMethod?: boolean;
3979
+ className?: string;
3980
+ }
3981
+
3982
+ export interface DataHubException extends RuntimeException {
3983
+ errorCode?: ErrorCode;
3984
+ placeholderValues?: any[];
3985
+ }
3986
+
3987
+ export interface NodeDecorationEntity extends Serializable {
3988
+ indicatorIconPosition?: string;
3989
+ indicatorIcon?: string;
3990
+ }
3991
+
3992
+ export interface LinkStyleEntity extends AbstractStyleEntity {
3993
+ lineColor?: string;
3994
+ lineWeight?: number;
3995
+ dashType?: string;
3996
+ }
3997
+
3998
+ export interface EntityStyleEntity extends AbstractStyleEntity {
3999
+ icon?: CoreIcon;
4000
+ markerColor?: string;
4001
+ nodeColor?: string;
4002
+ nodeBorderColor?: string;
4003
+ borderWidth?: number;
4004
+ shape?: string;
4005
+ scale?: number;
4006
+ indicatorIconPosition?: string;
4007
+ additionalLabel?: string;
4008
+ indicatorIcon?: string;
4009
+ }
4010
+
4011
+ export interface Locale extends Cloneable, Serializable {
4012
+ }
4013
+
4014
+ export interface DateTimePath<T> extends DateTimeExpression<T>, Path<T> {
4015
+ }
4016
+
4017
+ export interface StringPath extends DslTypesDslStringExpression, Path<string> {
4018
+ }
4019
+
4020
+ export interface NumberPath<T> extends NumberExpression<T>, Path<T> {
4021
+ }
4022
+
4023
+ export interface Path<T> extends DslTypesExpression<T> {
4024
+ root?: Path<any>;
4025
+ annotatedElement?: AnnotatedElement;
4026
+ metadata?: PathMetadata;
4027
+ }
4028
+
4029
+ export interface AnnotatedElement {
4030
+ annotations?: Annotation[];
4031
+ declaredAnnotations?: Annotation[];
4032
+ }
4033
+
4034
+ export interface PathMetadata extends Serializable {
4035
+ element?: any;
4036
+ parent?: Path<any>;
4037
+ rootPath?: Path<any>;
4038
+ pathType?: PathType;
4039
+ name?: string;
4040
+ root?: boolean;
4041
+ }
4042
+
4043
+ export interface Class<T> extends Serializable, GenericDeclaration, Type, AnnotatedElement, OfField<Class<any>>, Constable {
4044
+ }
4045
+
4046
+ export interface SetPath<E, Q> extends CollectionPathBase<E[], E, Q> {
4047
+ }
4048
+
4049
+ export interface ListPath<E, Q> extends CollectionPathBase<E[], E, Q>, ListExpression<E, Q> {
4050
+ }
4051
+
4052
+ export interface BooleanPath extends DslTypesDslBooleanExpression, Path<boolean> {
4053
+ }
4054
+
4055
+ export interface EnumPath<T> extends EnumExpression<T>, Path<T> {
4056
+ }
4057
+
4058
+ export interface QNodeDecorationEntity extends BeanPath<NodeDecorationEntity> {
4059
+ indicatorIcon?: StringPath;
4060
+ indicatorIconPosition?: StringPath;
4061
+ }
4062
+
4063
+ export interface ArrayPath<A, E> extends SimpleExpression<A>, Path<A>, ArrayExpression<A, E> {
4064
+ elementType?: Class<E>;
4065
+ }
4066
+
4067
+ export interface QLinkStyleEntity extends BeanPath<LinkStyleEntity> {
4068
+ _super?: QAbstractStyleEntity;
4069
+ condition?: QConditionEntity;
4070
+ dashType?: StringPath;
4071
+ evaluationOrder?: NumberPath<number>;
4072
+ id?: StringPath;
4073
+ lineColor?: StringPath;
4074
+ lineWeight?: NumberPath<number>;
4075
+ }
4076
+
4077
+ export interface QEntityStyleEntity extends BeanPath<EntityStyleEntity> {
4078
+ _super?: QAbstractStyleEntity;
4079
+ additionalLabel?: StringPath;
4080
+ borderWidth?: NumberPath<number>;
4081
+ condition?: QConditionEntity;
4082
+ evaluationOrder?: NumberPath<number>;
4083
+ icon?: QCoreIcon;
4084
+ id?: StringPath;
4085
+ indicatorIcon?: StringPath;
4086
+ indicatorIconPosition?: StringPath;
4087
+ markerColor?: StringPath;
4088
+ nodeBorderColor?: StringPath;
4089
+ nodeColor?: StringPath;
4090
+ scale?: NumberPath<number>;
4091
+ shape?: StringPath;
4092
+ }
4093
+
4094
+ export interface MapPath<K, V, E> extends MapExpressionBase<K, V, E>, Path<{ [index: string]: V }> {
4095
+ keyType?: Class<K>;
4096
+ valueType?: Class<V>;
4097
+ }
4098
+
4099
+ export interface UserType {
4100
+ mutable?: boolean;
4101
+ }
4102
+
4103
+ export interface ConfigTransportObject {
4104
+ handlerName?: string;
4105
+ schemaVersion?: string;
4106
+ resourceStrings?: { [index: string]: string };
4107
+ transportResourceStrings?: { [index: string]: string };
4108
+ resourceStringAccumulator?: ResourceStringAccumulator;
4109
+ }
4110
+
4111
+ export interface DefaultResponseErrorHandler extends ResponseErrorHandler {
4112
+ }
4113
+
4114
+ export interface RuntimeException extends Exception {
4115
+ }
4116
+
4117
+ export interface KeyDeserializer {
4118
+ }
4119
+
4120
+ export interface HtmlStreamEventReceiver {
4121
+ }
4122
+
4123
+ export interface Policy extends HtmlStreamEventReceiver {
4124
+ }
4125
+
4126
+ export interface Appendable {
4127
+ }
4128
+
4129
+ export interface TypedPayload {
4130
+ payloadType?: string;
4131
+ eventType?: string;
4132
+ }
4133
+
4134
+ export interface NullValueProvider {
4135
+ nullAccessPattern?: AccessPattern;
4136
+ }
4137
+
4138
+ export interface PropertyName extends Serializable {
4139
+ empty?: boolean;
4140
+ simpleName?: string;
4141
+ namespace?: string;
4142
+ }
4143
+
4144
+ export interface ObjectIdGenerator<T> extends Serializable {
4145
+ scope?: Class<any>;
4146
+ }
4147
+
4148
+ export interface ObjectIdResolver {
4149
+ }
4150
+
4151
+ export interface SettableBeanProperty extends ConcreteBeanPropertyBase, Serializable {
4152
+ objectIdInfo?: ObjectIdInfo;
4153
+ managedReferenceName?: string;
4154
+ valueDeserializer?: JsonDeserializer<any>;
4155
+ valueTypeDeserializer?: TypeDeserializer;
4156
+ nullValueProvider?: NullValueProvider;
4157
+ propertyIndex?: number;
4158
+ creatorIndex?: number;
4159
+ injectableValueId?: any;
4160
+ injectionOnly?: boolean;
4161
+ ignorable?: boolean;
4162
+ }
4163
+
4164
+ export interface JavaType extends ResolvedType, Serializable, Type {
4165
+ interfaces?: JavaType[];
4166
+ genericSignature?: string;
4167
+ javaLangObject?: boolean;
4168
+ valueHandler?: any;
4169
+ typeHandler?: any;
4170
+ referencedType?: JavaType;
4171
+ enumImplType?: boolean;
4172
+ contentValueHandler?: any;
4173
+ contentTypeHandler?: any;
4174
+ erasedSignature?: string;
4175
+ superClass?: JavaType;
4176
+ keyType?: JavaType;
4177
+ contentType?: JavaType;
4178
+ bindings?: TypeBindings;
4179
+ }
4180
+
4181
+ export interface JsonFormatVisitable {
4182
+ }
4183
+
4184
+ export interface ConditionEntity extends Mergable<ConditionEntity> {
4185
+ id?: string;
4186
+ name?: string;
4187
+ description?: string;
4188
+ conditionJson?: { [index: string]: any };
4189
+ ownerName?: string;
4190
+ createdBy?: string;
4191
+ createdAt?: Date;
4192
+ lastUpdatedBy?: string;
4193
+ lastUpdatedAt?: Date;
4194
+ version?: number;
4195
+ referencedConditions?: ConditionReferenceEntity[];
4196
+ referencedFacts?: ConditionReferencedFactEntity[];
4197
+ condition?: AbstractCondition<any>;
4198
+ }
4199
+
4200
+ export interface AbstractStyleEntity {
4201
+ id?: string;
4202
+ condition?: ConditionEntity;
4203
+ evaluationOrder?: number;
4204
+ }
4205
+
4206
+ export interface Cloneable {
4207
+ }
4208
+
4209
+ export interface Comparator<T> {
4210
+ }
4211
+
4212
+ export interface DslTypesDslStringExpression extends LiteralExpression<string> {
4213
+ }
4214
+
4215
+ export interface Annotation {
4216
+ }
4217
+
4218
+ export interface GenericDeclaration extends AnnotatedElement {
4219
+ typeParameters?: TypeVariable<any>[];
4220
+ }
4221
+
4222
+ export interface Type {
4223
+ typeName?: string;
4224
+ }
4225
+
4226
+ export interface Constable {
4227
+ }
4228
+
4229
+ export interface EntityPathBase<T> extends BeanPath<T>, EntityPath<T> {
4230
+ }
4231
+
4232
+ export interface DslTypesDslBooleanExpression extends LiteralExpression<boolean>, Predicate {
4233
+ }
4234
+
4235
+ export interface QAbstractStyleEntity extends BeanPath<AbstractStyleEntity> {
4236
+ condition?: QConditionEntity;
4237
+ evaluationOrder?: NumberPath<number>;
4238
+ id?: StringPath;
4239
+ }
4240
+
4241
+ export interface QConditionEntity extends EntityPathBase<ConditionEntity> {
4242
+ associations?: ListPath<ConditionAssociationEntity, QConditionAssociationEntity>;
4243
+ conditionJson?: MapPath<string, any, SimplePath<any>>;
4244
+ createdAt?: DateTimePath<Date>;
4245
+ createdBy?: StringPath;
4246
+ description?: StringPath;
4247
+ id?: StringPath;
4248
+ lastUpdatedAt?: DateTimePath<Date>;
4249
+ lastUpdatedBy?: StringPath;
4250
+ name?: StringPath;
4251
+ ownerName?: StringPath;
4252
+ referencedConditions?: SetPath<ConditionReferenceEntity, QConditionReferenceEntity>;
4253
+ referencedFacts?: SetPath<ConditionReferencedFactEntity, QConditionReferencedFactEntity>;
4254
+ version?: NumberPath<number>;
4255
+ }
4256
+
4257
+ export interface BeanPath<T> extends SimpleExpression<T>, Path<T> {
4258
+ }
4259
+
4260
+ export interface ActiveHomepageEntity extends Serializable, StandardEntity {
4261
+ clientApplication?: ClientApplicationEntity;
4262
+ template?: TemplateEntity;
4263
+ createdBy?: string;
4264
+ createdAt?: Date;
4265
+ lastUpdatedBy?: string;
4266
+ lastUpdatedAt?: Date;
4267
+ version?: number;
4268
+ }
4269
+
4270
+ export interface Comparable<T> {
4271
+ }
4272
+
4273
+ export interface ResourceStringAccumulator {
4274
+ resourceStringsBySolution?: { [index: string]: { [index: string]: string } };
4275
+ transportResourceStrings?: { [index: string]: string };
4276
+ }
4277
+
4278
+ export interface ResponseErrorHandler {
4279
+ }
4280
+
4281
+ export interface Exception extends Throwable {
4282
+ }
4283
+
4284
+ export interface AbstractExpressionVisitor<T> extends BaseVisitor {
4285
+ filter?: T;
4286
+ }
4287
+
4288
+ export interface BiFunction<T, U, R> {
4289
+ }
4290
+
4291
+ export interface Function<T, R> {
4292
+ }
4293
+
4294
+ export interface ConstraintValidator<A, T> {
4295
+ }
4296
+
4297
+ export interface FreeformText extends Annotation {
4298
+ }
4299
+
4300
+ export interface IdentifierTextArray extends Annotation {
4301
+ }
4302
+
4303
+ export interface IdentifierText extends Annotation {
4304
+ }
4305
+
4306
+ export interface UUID extends Annotation {
4307
+ }
4308
+
4309
+ export interface JsonMapWithNoHtml extends Annotation {
4310
+ }
4311
+
4312
+ export interface SortByQueryParam extends Annotation {
4313
+ }
4314
+
4315
+ export interface StringWithNoHtml extends Annotation {
4316
+ }
4317
+
4318
+ export interface HtmlChangeListener<T> {
4319
+ }
4320
+
4321
+ export interface ObjectIdInfo {
4322
+ alwaysAsId?: boolean;
4323
+ generatorType?: Class<ObjectIdGenerator<any>>;
4324
+ resolverType?: Class<ObjectIdResolver>;
4325
+ scope?: Class<any>;
4326
+ propertyName?: PropertyName;
4327
+ }
4328
+
4329
+ export interface TypeDeserializer {
4330
+ typeInclusion?: As;
4331
+ typeIdResolver?: TypeIdResolver;
4332
+ defaultImpl?: Class<any>;
4333
+ propertyName?: string;
4334
+ }
4335
+
4336
+ export interface AnnotatedMember extends Annotated, Serializable {
4337
+ declaringClass?: Class<any>;
4338
+ fullName?: string;
4339
+ typeContext?: TypeResolutionContext;
4340
+ member?: Member;
4341
+ allAnnotations?: AnnotationMap;
4342
+ }
4343
+
4344
+ export interface PropertyMetadata extends Serializable {
4345
+ defaultValue?: string;
4346
+ index?: number;
4347
+ mergeInfo?: MergeInfo;
4348
+ valueNulls?: Nulls;
4349
+ contentNulls?: Nulls;
4350
+ required?: boolean;
4351
+ description?: string;
4352
+ }
4353
+
4354
+ export interface ConcreteBeanPropertyBase extends BeanProperty, Serializable {
4355
+ }
4356
+
4357
+ export interface TypeBindings extends Serializable {
4358
+ empty?: boolean;
4359
+ typeParameters?: JavaType[];
4360
+ }
4361
+
4362
+ export interface ResolvedType {
4363
+ interface?: boolean;
4364
+ primitive?: boolean;
4365
+ final?: boolean;
4366
+ abstract?: boolean;
4367
+ referenceType?: boolean;
4368
+ throwable?: boolean;
4369
+ enumType?: boolean;
4370
+ concrete?: boolean;
4371
+ collectionLikeType?: boolean;
4372
+ arrayType?: boolean;
4373
+ referencedType?: ResolvedType;
4374
+ mapLikeType?: boolean;
4375
+ parameterSource?: Class<any>;
4376
+ containerType?: boolean;
4377
+ rawClass?: Class<any>;
4378
+ keyType?: ResolvedType;
4379
+ contentType?: ResolvedType;
4380
+ }
4381
+
4382
+ export interface HttpEntity<T> {
4383
+ headers?: { [index: string]: any };
4384
+ body?: T;
4385
+ }
4386
+
4387
+ export interface ConditionReferenceEntity {
4388
+ referencedCondition?: string;
4389
+ }
4390
+
4391
+ export interface ConditionReferencedFactEntity {
4392
+ type?: string;
4393
+ placeholder?: string;
4394
+ value?: string;
4395
+ }
4396
+
4397
+ export interface DateTimeExpression<T> extends TemporalExpression<T> {
4398
+ }
4399
+
4400
+ export interface NumberExpression<T> extends ComparableExpressionBase<T> {
4401
+ }
4402
+
4403
+ export interface DslTypesExpression<T> extends Serializable {
4404
+ type?: Class<T>;
4405
+ }
4406
+
4407
+ export interface TypeVariable<D> extends Type, AnnotatedElement {
4408
+ name?: string;
4409
+ bounds?: Type[];
4410
+ genericDeclaration?: D;
4411
+ annotatedBounds?: AnnotatedType[];
4412
+ }
4413
+
4414
+ export interface OfField<F> extends TypeDescriptor {
4415
+ array?: boolean;
4416
+ primitive?: boolean;
4417
+ }
4418
+
4419
+ export interface CollectionPathBase<C, E, Q> extends CollectionExpressionBase<C, E>, Path<C> {
4420
+ }
4421
+
4422
+ export interface ListExpression<E, Q> extends CollectionExpression<E[], E> {
4423
+ }
4424
+
4425
+ export interface Predicate extends DslTypesExpression<boolean> {
4426
+ }
4427
+
4428
+ export interface EnumExpression<T> extends LiteralExpression<T> {
4429
+ }
4430
+
4431
+ export interface SimpleExpression<T> extends DslExpression<T> {
4432
+ }
4433
+
4434
+ export interface ArrayExpression<A, T> extends DslTypesExpression<A> {
4435
+ }
4436
+
4437
+ export interface ConditionAssociationEntity {
4438
+ id?: string;
4439
+ condition?: ConditionEntity;
4440
+ association?: string;
4441
+ type?: string;
4442
+ ownerName?: string;
4443
+ }
4444
+
4445
+ export interface QConditionAssociationEntity extends EntityPathBase<ConditionAssociationEntity> {
4446
+ association?: StringPath;
4447
+ condition?: QConditionEntity;
4448
+ id?: StringPath;
4449
+ ownerName?: StringPath;
4450
+ }
4451
+
4452
+ export interface SimplePath<T> extends SimpleExpression<T>, Path<T> {
4453
+ }
4454
+
4455
+ export interface QConditionReferenceEntity extends BeanPath<ConditionReferenceEntity> {
4456
+ referencedCondition?: StringPath;
4457
+ }
4458
+
4459
+ export interface QConditionReferencedFactEntity extends BeanPath<ConditionReferencedFactEntity> {
4460
+ placeholder?: StringPath;
4461
+ value?: StringPath;
4462
+ }
4463
+
4464
+ export interface MapExpressionBase<K, V, Q> extends DslExpression<{ [index: string]: V }>, MapExpression<K, V> {
4465
+ }
4466
+
4467
+ export interface ClientApplicationEntity extends Mergable<ClientApplicationEntity>, Serializable {
4468
+ name?: string;
4469
+ label?: string;
4470
+ }
4471
+
4472
+ export interface TemplateEntity extends Serializable, StandardEntity, NamedObject, Mergable<TemplateEntity>, SolutionAssignedEntity {
4473
+ uuid?: string;
4474
+ template?: { [index: string]: any };
4475
+ metadata?: { [index: string]: any };
4476
+ documentType?: string;
4477
+ clientApplication?: ClientApplicationEntity;
4478
+ templateType?: TemplateTypeEntity;
4479
+ dateCreated?: Date;
4480
+ dateUpdated?: Date;
4481
+ linkedToTemplates?: LinkedPageTemplateEntity[];
4482
+ linkedFromTemplates?: LinkedPageTemplateEntity[];
4483
+ linkedTraversals?: string[];
4484
+ fileCategories?: TemplateFileCategoryAssociation[];
4485
+ linkedReferenceLists?: string[];
4486
+ conditions?: ConditionAssociationEntity[];
4487
+ publishCode?: PublishCode;
4488
+ activeHomepage?: ActiveHomepageEntity[];
4489
+ active?: boolean;
4490
+ }
4491
+
4492
+ export interface StandardEntity {
4493
+ id?: number;
4494
+ }
4495
+
4496
+ export interface BaseVisitor extends ExpressionVisitor {
4497
+ }
4498
+
4499
+ export interface TypeIdResolver {
4500
+ mechanism?: Id;
4501
+ descForKnownTypeIds?: string;
4502
+ }
4503
+
4504
+ export interface TypeResolutionContext {
4505
+ }
4506
+
4507
+ export interface Member {
4508
+ modifiers?: number;
4509
+ name?: string;
4510
+ synthetic?: boolean;
4511
+ declaringClass?: Class<any>;
4512
+ }
4513
+
4514
+ export interface AnnotationMap extends Annotations {
4515
+ }
4516
+
4517
+ export interface Annotated {
4518
+ name?: string;
4519
+ public?: boolean;
4520
+ type?: JavaType;
4521
+ rawType?: Class<any>;
4522
+ annotated?: AnnotatedElement;
4523
+ }
4524
+
4525
+ export interface MergeInfo {
4526
+ getter?: AnnotatedMember;
4527
+ fromDefaults?: boolean;
4528
+ }
4529
+
4530
+ export interface BeanProperty extends Named {
4531
+ type?: JavaType;
4532
+ fullName?: PropertyName;
4533
+ virtual?: boolean;
4534
+ wrapperName?: PropertyName;
4535
+ required?: boolean;
4536
+ member?: AnnotatedMember;
4537
+ metadata?: PropertyMetadata;
4538
+ }
4539
+
4540
+ export interface Mergable<E> {
4541
+ uniqueIdentifier?: string;
4542
+ }
4543
+
4544
+ export interface LiteralExpression<T> extends ComparableExpression<T> {
4545
+ }
4546
+
4547
+ export interface AnnotatedType extends AnnotatedElement {
4548
+ type?: Type;
4549
+ annotatedOwnerType?: AnnotatedType;
4550
+ }
4551
+
4552
+ export interface TypeDescriptor {
4553
+ }
4554
+
4555
+ export interface EntityPath<T> extends Path<T> {
4556
+ }
4557
+
4558
+ export interface TemplateTypeEntity extends Mergable<TemplateTypeEntity> {
4559
+ name?: string;
4560
+ label?: string;
4561
+ }
4562
+
4563
+ export interface LinkedPageTemplateEntity extends Serializable {
4564
+ pk?: LinkedPageTemplateIdEntity | number;
4565
+ }
4566
+
4567
+ export interface TemplateFileCategoryAssociation extends Serializable {
4568
+ documentType?: string;
4569
+ categoryName?: string;
4570
+ }
4571
+
4572
+ export interface ExpressionVisitor {
4573
+ }
4574
+
4575
+ export interface Annotations {
4576
+ }
4577
+
4578
+ export interface Named {
4579
+ name?: string;
4580
+ }
4581
+
4582
+ export interface TemporalExpression<T> extends LiteralExpression<T> {
4583
+ }
4584
+
4585
+ export interface ComparableExpressionBase<T> extends SimpleExpression<T> {
4586
+ }
4587
+
4588
+ export interface CollectionExpressionBase<T, E> extends DslExpression<T>, CollectionExpression<T, E> {
4589
+ elementType?: Class<E>;
4590
+ }
4591
+
4592
+ export interface CollectionExpression<T, E> extends ParameterizedExpression<T> {
4593
+ }
4594
+
4595
+ export interface DslExpression<T> extends DslTypesExpression<T> {
4596
+ }
4597
+
4598
+ export interface MapExpression<K, V> extends ParameterizedExpression<{ [index: string]: V }> {
4599
+ }
4600
+
4601
+ export interface LinkedPageTemplateIdEntity extends Serializable {
4602
+ linkedFromTemplate?: TemplateEntity;
4603
+ linkedToTemplate?: TemplateEntity;
4604
+ traversal?: TraversalDefinitionEntity;
4605
+ }
4606
+
4607
+ export interface ComparableExpression<T> extends ComparableExpressionBase<T> {
4608
+ }
4609
+
4610
+ export interface TraversalDefinitionEntity extends Serializable, SolutionAssignedEntity, Mergable<TraversalDefinitionEntity> {
4611
+ id?: number;
4612
+ uuid?: string;
4613
+ displayName?: string;
4614
+ traversal?: { [index: string]: any };
4615
+ }
4616
+
4617
+ export interface ParameterizedExpression<T> extends DslTypesExpression<T> {
4618
+ }
4619
+
4620
+ export type TypeSuffix = "JSON" | "XML";
4621
+
4622
+ export type ActionItemType = "subItem" | "labelItem" | "tableItem";
4623
+
4624
+ export type ActionTableValueType = "BOOLEAN" | "STRING" | "INTEGER" | "DECIMAL" | "DATE" | "TIMESTAMP" | "TIMESTAMP_WITH_TIME_ZONE" | "JSON" | "HTML" | "REFERENCE_DATA" | "USER_GROUP" | "MIME_TYPE";
4625
+
4626
+ export type LabelValueType = "STRING" | "HTML" | "MIME_TYPE";
4627
+
4628
+ export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "masked" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
4629
+
4630
+ export type MethodType = "CREATE" | "UPDATE" | "DELETE";
4631
+
4632
+ export type PublishItemType = "CONTEXT_MAPPING" | "ENTITY_TYPE" | "FLOW" | "PAGE_TEMPLATE" | "WORKFLOW_TEMPLATE";
4633
+
4634
+ export type PublishCode = "OPEN" | "PUBLISHED" | "MODIFIED";
4635
+
4636
+ export type Operation = "CREATE" | "UPDATE" | "DELETE" | "OTHER";
4637
+
4638
+ export type ItemType = "IMAGE" | "INSIGHT" | "WORKSPACE";
4639
+
4640
+ export type LabelType = "DEFAULT" | "REVERSE_REL_NAME";
4641
+
4642
+ export type UrnType = "UUID" | "RANDOM_DIGITS" | "SEQUENTIAL";
4643
+
4644
+ export type ColumnDataType = "BOOLEAN" | "STRING" | "SMALLINT" | "INTEGER" | "LONG" | "FLOAT" | "DOUBLE" | "NUMERIC" | "DATE" | "TIMESTAMP" | "TIMESTAMP_WITH_TIME_ZONE" | "JSON" | "OTHER";
4645
+
4646
+ export type ObjectStateType = "SAVED" | "ENTERED";
4647
+
4648
+ export type RuleKeyType = "DATA_OBJECT" | "HOMEPAGE";
4649
+
4650
+ export type ExpressionDataType = "STRING" | "NUMBER" | "DATE" | "TIMESTAMP" | "BOOLEAN";
4651
+
4652
+ export type PredicateLogicalOperator = "AND" | "OR";
4653
+
4654
+ export type SortOrder = "ASC" | "DESC";
4655
+
4656
+ export type QueryTableType = "DATA" | "DELETE" | "HISTORY" | "ACTION_HISTORY" | "HISTORY_INFO";
4657
+
4658
+ export type PredicateOperator = "EQ" | "IN" | "GT" | "NOT_EQ" | "LTE" | "GTE";
4659
+
4660
+ export type QueryExpressionArithmeticOperator = "PLUS" | "MINUS" | "PROD" | "DIV";
4661
+
4662
+ export type ConditionalOperator = "EQ" | "NE" | "GT" | "LT" | "GE" | "LE" | "IN" | "NOT_IN" | "BETWEEN" | "IS_NULL" | "IS_NOT_NULL" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS";
4663
+
4664
+ export type FunctionName = "TO_STRING" | "TO_DATE" | "TO_NUMBER" | "UPPERCASE" | "LOWERCASE" | "MOD" | "POW";
4665
+
4666
+ export type QueryExpressionLogicalOperator = "AND" | "OR" | "NOT";
4667
+
4668
+ export type StringOperator = "CONCAT";
4669
+
4670
+ export type AggregateFunctionType = "SUM" | "COUNT" | "AVERAGE" | "MIN" | "MAX";
4671
+
4672
+ export type AssignedTimeZone = "DEFAULT" | "AS_STORED";
4673
+
4674
+ export type CascadeType = "NONE" | "PERSIST" | "MERGE" | "REMOVE" | "ALL";
4675
+
4676
+ export type DataObjectType = "MANAGED" | "SOURCE";
4677
+
4678
+ export type DisplayInTimeZone = "DEFAULT" | "AS_STORED" | "LOCAL";
4679
+
4680
+ export type IconImageType = "GIF" | "JPEG" | "PNG" | "SVG";
4681
+
4682
+ export type IconType = "REGULAR" | "MAP";
4683
+
4684
+ export type JobType = "SEARCH_INDEX_LOADER" | "PROCESS_ATTACHMENTS" | "IMPORT_CONFIG";
4685
+
4686
+ 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";
4687
+
4688
+ export type NodeShape = "CIRCLE" | "SQUARE" | "DIAMOND" | "ELLIPSE" | "HEXAGON" | "PENTAGON" | "TRIANGLE";
4689
+
4690
+ export type ReferenceListType = "LIST" | "LEVEL";
4691
+
4692
+ export type RelationshipCardinality = "ONE_TO_ONE" | "ONE_TO_MANY" | "MANY_TO_ONE" | "MANY_TO_MANY";
4693
+
4694
+ export type RelationshipType = "DIRECT_CHILD" | "INDIRECT_CHILD" | "LINK";
4695
+
4696
+ export type TaskType = "LOAD_DOCUMENT" | "LOAD_LINK" | "DELETE_INDEX" | "LOAD_TRANSACTION" | "PROCESS_ATTACHMENTS";
4697
+
4698
+ export type ConditionAssociationType = "REQUIRED_FIELD" | "READ_ONLY_FIELD" | "TEMPLATE_CONTROL" | "NLD_STYLING" | "CONDITION";
4699
+
4700
+ export type ReferencedFactType = "FIELD" | "MEMBERSHIP" | "CONDITION_REFERENCE";
4701
+
4702
+ export type EqualityOperator = "eq" | "neq";
4703
+
4704
+ export type InequalityOperator = "gt" | "gte" | "lt" | "lte";
4705
+
4706
+ export type LogicalOperator = "and" | "or" | "not";
4707
+
4708
+ export type MembershipOperator = "current_user_is_member_of" | "current_user_is_not_member_of";
4709
+
4710
+ export type PresenceOperator = "empty" | "not_empty";
4711
+
4712
+ export type CardinalityStatus = "SATURATED" | "UNSATURATED" | "UNKNOWN";
4713
+
4714
+ export type ActionItemState = "ENABLED" | "DISABLED" | "REMOVED";
4715
+
4716
+ export type RestrictionType = "required" | "requiresDocumentLock" | "allowMultipleFiles";
4717
+
4718
+ export type PageMode = "V" | "C" | "E";
4719
+
4720
+ export type PageTypeFlag = "STANDARD_PAGE" | "REPLICATED_PAGE";
4721
+
4722
+ export type UserGroupType = "user" | "group";
4723
+
4724
+ export type UserSelectionStrategyType = "USERS" | "GROUPS" | "USERS_AND_GROUPS";
4725
+
4726
+ export type ArithmeticOperator = "equals" | "not_equals";
4727
+
4728
+ export type QueryOperatorsLogicalOperator = "and" | "or";
4729
+
4730
+ export type CellType = "Live" | "Static" | "Image" | "Text";
4731
+
4732
+ export type SheetType = "WORKSHEET" | "NOTESHEET";
4733
+
4734
+ export type VisualizationType = "Summary" | "Map" | "Table" | "Timeline" | "Network" | "TextAnalytics";
4735
+
4736
+ export type Value = "HOMEPAGE" | "PRINT" | "PAGE";
4737
+
4738
+ export type TableType = "managed" | "source";
4739
+
4740
+ export type Status = "pending" | "running" | "stopping" | "cancelled" | "completed" | "failed" | "reverted" | "invalid";
4741
+
4742
+ export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4743
+
4744
+ export type ErrorCode = "DH0100" | "DH0101" | "DH0102" | "DH0103" | "DH0120" | "DH0121" | "DH0122" | "DH0300" | "DH0301" | "DH0302" | "DH0303" | "DH0304" | "DH0305" | "DH0306" | "DH0307" | "DH0400" | "DH1062" | "DH1063" | "DH1070" | "DH1090" | "DH1200" | "DH1202" | "DH1203" | "DH1204" | "DH1205" | "DH1206" | "DH1207" | "DH1208" | "DH1210" | "DH1219" | "DH1220" | "DH1221" | "DH1300" | "DH1310" | "DH1311" | "DH1312" | "DH1313" | "differing_datatypes_when_sorting_error" | "DH1320" | "DH1321" | "DH1354" | "DH1355" | "DH1356" | "DH1357" | "could_not_apply_json_patch_to_document" | "could_not_apply_json_patch_to_link" | "json_patch_invalid_operation_required" | "json_patch_operation_not_allowed_at_path" | "DH1402" | "DH1405" | "DH1406" | "DH1408" | "DH1409" | "DH1410" | "DH1412" | "DH1413" | "DH1414" | "DH1415" | "DH1416" | "DH1418" | "DH1419" | "DH1420" | "DH1501" | "DH1502" | "DH1503" | "DH1506" | "DH1507" | "DH1508" | "DH1509" | "DH1510" | "DH1511" | "DH1512" | "DH1513" | "DH1515" | "DH1517" | "DH1518" | "DH1519" | "DH1520" | "unable_to_serialize_json" | "DH1521" | "DH1522" | "DH1523" | "DH1524" | "DH1525" | "DH1526" | "DH1528" | "DH1529" | "DH1530" | "DH1531" | "DH1532" | "DH1533" | "DH1534" | "DH1535" | "DH1536" | "DH1537" | "DH1538" | "DH1539" | "DH1540" | "DH1541" | "DH1544" | "DH1545" | "DH1560" | "DH1561" | "DH1562" | "job_already_running" | "import_config_job_already_running" | "DH1563" | "DH1564" | "DH1565" | "DH1566" | "DH2300" | "DH2301" | "DH2302" | "DH2303" | "DH2304" | "DH2305" | "DH2312" | "DH2313" | "DH2320" | "DH2321" | "DH2322" | "DH2323" | "DH2324" | "DH3000" | "DH3003" | "DH3004" | "DH3005" | "DH3006" | "DH3007" | "DH3010" | "DH3011" | "DH3012" | "DH3013" | "DH3014" | "DH3015" | "DH3016" | "DH3017" | "DH3018" | "DH3019" | "DH3020" | "DH3021" | "DH3022" | "DH3023" | "DH3024" | "DH3025" | "DH3026" | "DH3027" | "DH3029" | "DH3030" | "DH3031" | "DH3032" | "DH3033" | "DH3035" | "DH3065" | "DH3066" | "DH3067" | "DH3068" | "DH3070" | "DH3071" | "DH3072" | "DH3073" | "DH3076" | "DH3077" | "DH3078" | "DH3079" | "data_store_credential_create_op_failed" | "data_store_credential_read_op_failed" | "data_store_credential_update_op_failed" | "data_store_credential_delete_op_failed" | "data_store_credential_delete_op_unauthorized" | "data_store_internal_property_not_found" | "data_store_internal_resolved_property_not_found" | "DH3080" | "DH3081" | "DH3082" | "DH3083" | "DH3084" | "DH3085" | "DH3086" | "DH3087" | "DH3088" | "DH3089" | "DH3090" | "DH3100" | "DH3101" | "DH3102" | "DH3103" | "DH3105" | "DH3106" | "DH3107" | "DH3108" | "DH3109" | "DH3110" | "DH3112" | "DH3113" | "DH3114" | "DH3115" | "DH3116" | "DH3118" | "DH3119" | "DH3120" | "DH3122" | "DH3123" | "DH3124" | "DH3125" | "DH3126" | "DH3127" | "DH3129" | "DH3130" | "DH3132" | "DH3133" | "DH3135" | "DH3137" | "DH3138" | "DH3139" | "DH3140" | "DH3141" | "DH3142" | "DH3145" | "DH3146" | "DH3147" | "DH3148" | "DH3150" | "DH3151" | "DH3152" | "DH3153" | "DH3154" | "DH3155" | "DH3156" | "DH3157" | "DH3158" | "missing_primary_key_field_for_transaction" | "DH3160" | "DH3161" | "DH3162" | "DH3163" | "DH3164" | "DH3165" | "DH3166" | "DH3167" | "DH3168" | "DH3169" | "DH3170" | "DH3171" | "DH3172" | "DH3175" | "DH3176" | "DH3177" | "DH3178" | "DH3179" | "DH3180" | "DH3181" | "DH3182" | "DH3183" | "DH3184" | "DH3185" | "DH3186" | "DH3187" | "DH3188" | "DH3189" | "DH3190" | "DH3191" | "DH3192" | "DH3193" | "DH3194" | "DH3195" | "DH3196" | "DH3197" | "DH3198" | "DH3199" | "DH3200" | "DH3201" | "DH3202" | "DH3203" | "DH3205" | "DH3206" | "DH3207" | "DH3208" | "DH3209" | "DH3210" | "DH3211" | "DH3212" | "DH3213" | "DH3214" | "DH3215" | "DH3216" | "DH3217" | "DH3218" | "DH3219" | "DH3220" | "DH3221" | "DH3222" | "DH3223" | "DH3224" | "DH3225" | "DH3226" | "DH3227" | "DH3228" | "DH3229" | "DH3230" | "DH3231" | "DH3232" | "DH3238" | "DH3240" | "DH3261" | "DH3264" | "DH3266" | "DH3267" | "DH3268" | "DH3269" | "DH3272" | "DH3273" | "DH3274" | "DH3275" | "DH3276" | "DH3278" | "DH3279" | "DH3280" | "DH3281" | "DH3282" | "DH3283" | "DH3284" | "DH3285" | "DH3286" | "DH3287" | "DH3288" | "DH3289" | "DH3290" | "DH3291" | "DH3294" | "DH3295" | "DH3296" | "DH3298" | "DH3299" | "DH3300" | "DH3302" | "DH3303" | "DH3304" | "incompatibleColumnDataTypeForConstrainedExternalField" | "DH3310" | "DH3311" | "DH3312" | "DH3313" | "DH3320" | "DH3321" | "DH3324" | "DH3330" | "DH3338" | "DH3339" | "DH3340" | "DH3341" | "DH3342" | "DH3343" | "DH3344" | "DH3345" | "DH3346" | "DH3347" | "DH3348" | "DH3349" | "DH3351" | "DH3352" | "DH3353" | "DH3354" | "DH3355" | "DH3356" | "DH3357" | "DH3358" | "DH3359" | "DH3360" | "DH3361" | "DH3362" | "DH3363" | "DH3364" | "DH3365" | "DH3380" | "DH3381" | "DH3382" | "DH3400" | "DH3401" | "DH3402" | "DH3404" | "DH3405" | "DH3414" | "DH3419" | "DH3420" | "DH3422" | "DH3424" | "DH3425" | "DH3426" | "DH3427" | "DH3428" | "DH3429" | "DH3430" | "DH3431" | "DH3432" | "DH3433" | "DH3440" | "DH3441" | "DH3442" | "DH3443" | "DH3444" | "DH3445" | "DH3446" | "DH3447" | "DH3448" | "DH3450" | "DH3451" | "DH3452" | "DH3453" | "DH3454" | "DH3455" | "DH3456" | "DH3466" | "DH3470" | "DH3471" | "DH3472" | "DH3473" | "DH3474" | "DH3475" | "DH3476" | "DH3477" | "DH3478" | "DH3479" | "DH3480" | "DH3481" | "DH3482" | "DH3483" | "DH3484" | "DH3486" | "DH3487" | "DH3488" | "DH3489" | "DH3490" | "DH3491" | "DH3492" | "DH3493" | "DH3494" | "DH3495" | "DH3497" | "DH3498" | "DH3500" | "DH3501" | "DH3502" | "DH3503" | "DH3504" | "DH3505" | "DH3506" | "DH3507" | "DH3508" | "DH3509" | "DH3510" | "publishCodeCannotBeModifiedForContextMapping" | "invalid_client_application" | "DH3511" | "DH3512" | "DH3513" | "DH3514" | "DH3515" | "DH3516" | "DH3517" | "userGroupMembershipOperatorCanOnlyBeUsedForUserGroupChooserFields" | "userGroupMembershipOperatorMustReferenceFieldOrValueButNotBoth" | "DH3520" | "DH3600" | "DH3601" | "DH3602" | "DH3620" | "DH3621" | "DH3650" | "DH3651" | "DH3652" | "DH3653" | "DH3654" | "DH3655" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4169" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4221" | "DH4222" | "DH4223" | "DH4224" | "DH4225" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "icon_svg_invalid" | "icon_invalid_image_type" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "media_type_mismatch" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsForClientApplication" | "activeHomepageDoesNotExistForClientApplication" | "activeHomepageCanOnlyBeChangedThroughTemplateUpsertWhenImport" | "noMatchingRulesForKey" | "contextMappingUuidMismatch" | "contextMappingInvalidUuid" | "contextMappingEntityOrClientMismatch" | "dataHubClientError" | "DH15000" | "DH15001" | "DH15002" | "DH15003" | "DH15004" | "DH17000" | "DH17001" | "invalid_job_json" | "authorized_to_reveal_masked_length" | "authorized_to_reveal_masked_should_be_null" | "authorized_to_reveal_masked_should_have_contents" | "authorized_to_reveal_masked_cannot_be_primary_key_field" | "user_group_not_authorized_to_reveal_masked_field" | "system_field_cannot_be_masked" | "field_used_in_join_condition_cannot_be_masked" | "field_used_in_txn_join_condition_cannot_be_masked" | "txn_field_used_in_txn_join_condition_cannot_be_masked" | "heterogeneous_external_join_key_field_cannot_be_masked" | "txn_field_used_in_ref_join_cannot_be_masked" | "file_is_quarantined" | "invalid_rest_api_parameter" | "invalid_rest_api_body" | "entity_type_not_found" | "template_type_not_found";
4745
+
4746
+ export type DataStoreType = "RELATIONAL";
4747
+
4748
+ export type TYPE = "internal_postgres" | "postgres" | "oracle" | "teradata" | "db2" | "MySQL" | "SQL Server";
4749
+
4750
+ export type MessageAction = "CREATE" | "UPDATE" | "DELETE";
4751
+
4752
+ export type CommonsSecurityBootStrapModelTypesUserGroupType = "user" | "group";
4753
+
4754
+ export type AccessType = "create" | "read" | "update" | "delete" | "search";
4755
+
4756
+ export type HttpStatus = "100 CONTINUE" | "101 SWITCHING_PROTOCOLS" | "102 PROCESSING" | "103 CHECKPOINT" | "200 OK" | "201 CREATED" | "202 ACCEPTED" | "203 NON_AUTHORITATIVE_INFORMATION" | "204 NO_CONTENT" | "205 RESET_CONTENT" | "206 PARTIAL_CONTENT" | "207 MULTI_STATUS" | "208 ALREADY_REPORTED" | "226 IM_USED" | "300 MULTIPLE_CHOICES" | "301 MOVED_PERMANENTLY" | "302 FOUND" | "302 MOVED_TEMPORARILY" | "303 SEE_OTHER" | "304 NOT_MODIFIED" | "305 USE_PROXY" | "307 TEMPORARY_REDIRECT" | "308 PERMANENT_REDIRECT" | "400 BAD_REQUEST" | "401 UNAUTHORIZED" | "402 PAYMENT_REQUIRED" | "403 FORBIDDEN" | "404 NOT_FOUND" | "405 METHOD_NOT_ALLOWED" | "406 NOT_ACCEPTABLE" | "407 PROXY_AUTHENTICATION_REQUIRED" | "408 REQUEST_TIMEOUT" | "409 CONFLICT" | "410 GONE" | "411 LENGTH_REQUIRED" | "412 PRECONDITION_FAILED" | "413 PAYLOAD_TOO_LARGE" | "413 REQUEST_ENTITY_TOO_LARGE" | "414 URI_TOO_LONG" | "414 REQUEST_URI_TOO_LONG" | "415 UNSUPPORTED_MEDIA_TYPE" | "416 REQUESTED_RANGE_NOT_SATISFIABLE" | "417 EXPECTATION_FAILED" | "418 I_AM_A_TEAPOT" | "419 INSUFFICIENT_SPACE_ON_RESOURCE" | "420 METHOD_FAILURE" | "421 DESTINATION_LOCKED" | "422 UNPROCESSABLE_ENTITY" | "423 LOCKED" | "424 FAILED_DEPENDENCY" | "425 TOO_EARLY" | "426 UPGRADE_REQUIRED" | "428 PRECONDITION_REQUIRED" | "429 TOO_MANY_REQUESTS" | "431 REQUEST_HEADER_FIELDS_TOO_LARGE" | "451 UNAVAILABLE_FOR_LEGAL_REASONS" | "500 INTERNAL_SERVER_ERROR" | "501 NOT_IMPLEMENTED" | "502 BAD_GATEWAY" | "503 SERVICE_UNAVAILABLE" | "504 GATEWAY_TIMEOUT" | "505 HTTP_VERSION_NOT_SUPPORTED" | "506 VARIANT_ALSO_NEGOTIATES" | "507 INSUFFICIENT_STORAGE" | "508 LOOP_DETECTED" | "509 BANDWIDTH_LIMIT_EXCEEDED" | "510 NOT_EXTENDED" | "511 NETWORK_AUTHENTICATION_REQUIRED";
4757
+
4758
+ export type PathType = "ARRAYVALUE" | "ARRAYVALUE_CONSTANT" | "COLLECTION_ANY" | "DELEGATE" | "LISTVALUE" | "LISTVALUE_CONSTANT" | "MAPVALUE" | "MAPVALUE_CONSTANT" | "PROPERTY" | "VARIABLE";
4759
+
4760
+ export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PROPERTY" | "EXISTING_PROPERTY";
4761
+
4762
+ export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
4763
+
4764
+ export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "CUSTOM";
4765
+
4766
+ export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
4767
+
4768
+ export type AbstractFileOperationUnion = CreateFileOperation | UpdateFileOperation | DeleteFileOperation;
4769
+
4770
+ export type JobFilterUnion = IncrementalLoadJobFilter;
4771
+
4772
+ export type BooleanExpressionUnion = ConditionalExpression | LogicalExpression;
4773
+
4774
+ export type ExpressionUnion = FieldReference | Literal | NamedParameter | StringExpression | BooleanExpression | FunctionCall | ArithmeticExpression;
4775
+
4776
+ export type AbstractConditionUnion = CompositeCondition | PresenceCondition | ArithmeticCondition | NegateCondition | CurrentUserMembershipCondition | ReferencedCondition;
4777
+
4778
+ export type QueryUnion = CompositeQuery | ArithmeticQuery | CurrentUserMembershipQuery;
4779
+
4780
+ export type AbstractRedactionRuleUnion = FullRedactionRule;
4781
+
4782
+ export type CellUnion = LiveVisualizationCell | StaticVisualizationCell | ImageCell | TextCell;