@sassoftware/vi-api 1.56.1 → 1.56.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.
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2025-10-31 09:57:49.
3
+ // Generated using typescript-generator version 2.15.527 on 2026-05-28 08:54:14.
4
4
 
5
5
  export interface ActionRequestRep {
6
6
  version?: number;
@@ -450,17 +450,32 @@ export interface ScenarioFieldEventFieldDescriptionRep {
450
450
  dataType?: string;
451
451
  }
452
452
 
453
+ export interface ScenarioFiredEventBulkDispositionRep extends BaseRep {
454
+ version?: number;
455
+ scenarioFiredEventDispositionReps?: ScenarioFiredEventDispositionRep[];
456
+ scenarioFiredEventFailedDispositionReps?: ScenarioFiredEventFailedDispositionRep[];
457
+ }
458
+
453
459
  export interface ScenarioFiredEventDispositionRep extends BaseRep {
454
460
  version?: number;
455
461
  scenarioFiredEventDispositionId?: string;
456
462
  scenarioFiredEventId?: string;
457
463
  alertDispositionId?: string;
464
+ alertId?: string;
458
465
  resolutionCode?: string;
459
466
  resolutionComment?: string;
460
467
  reasonCode?: string;
461
468
  logicalDeleteFlag?: string;
462
469
  }
463
470
 
471
+ export interface ScenarioFiredEventFailedDispositionRep extends BaseRep {
472
+ version?: number;
473
+ scenarioFiredEventId?: string;
474
+ actionableEntityId?: string;
475
+ alertId?: string;
476
+ errorMessage?: string;
477
+ }
478
+
464
479
  export interface ScenarioFiredEventFlatRep extends ScenarioFiredEventRep {
465
480
  alertingEventId?: string;
466
481
  }
@@ -526,6 +541,7 @@ export interface ScenarioFiredEventRep extends BaseRep {
526
541
  appliedSegmentCode?: string;
527
542
  createdByName?: string;
528
543
  modifiedByName?: string;
544
+ triggeringFlagName?: string;
529
545
  currentProductiveTimestamp?: string;
530
546
  valueTimestamp?: string;
531
547
  value?: any;
@@ -690,8 +706,8 @@ export interface Link extends Serializable, Comparable<Link> {
690
706
  }
691
707
 
692
708
  export interface TypedPayload {
693
- payloadType?: string;
694
709
  eventType?: string;
710
+ payloadType?: string;
695
711
  }
696
712
 
697
713
  export interface TrackedResource extends Serializable, ETaggable, TimeTrackedResource, ETagAndLastModifiedProvider {
@@ -737,7 +753,7 @@ export type DisplayType = 'TEXT' | 'VARIABLE';
737
753
 
738
754
  export type DispositionResolutionCode = 'PRODUCTIVE' | 'NON_PRODUCTIVE' | 'INDETERMINATE';
739
755
 
740
- export type ScenarioFiredEventReplicationPolicyType = 'INTERNAL' | 'EXTERNAL';
756
+ export type ScenarioFiredEventReplicationPolicyType = 'INTERNAL' | 'EXTERNAL' | 'EXTERNAL_W_TRIG_FLAG';
741
757
 
742
758
  export type ValueType = 'TEXT' | 'NUMERIC' | 'TIMESTAMP' | 'BOOLEAN';
743
759
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/alert-reps",
3
- "version": "21.4.4",
3
+ "version": "22.2.4",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -4,6 +4,8 @@ export declare enum PageEvents {
4
4
  ChildObjectOnSelect = "spb:ChildObjectSelect",
5
5
  CommentsOnShowEvent = "spb::Comments:onShow",
6
6
  DirtyStateChangeEvent = "spb::dirty-state-change",
7
+ DragMoveEvent = "spb::dragMove",
8
+ DragStopEvent = "spb::dragStop",
7
9
  LoadDocumentEvent = "spb::page-load-all",
8
10
  ModeChangeEvent = "spb::page-mode-change",
9
11
  ModelChangeEvent = "spb::page-model-change",
@@ -5,6 +5,8 @@ export var PageEvents;
5
5
  PageEvents["ChildObjectOnSelect"] = "spb:ChildObjectSelect";
6
6
  PageEvents["CommentsOnShowEvent"] = "spb::Comments:onShow";
7
7
  PageEvents["DirtyStateChangeEvent"] = "spb::dirty-state-change";
8
+ PageEvents["DragMoveEvent"] = "spb::dragMove";
9
+ PageEvents["DragStopEvent"] = "spb::dragStop";
8
10
  PageEvents["LoadDocumentEvent"] = "spb::page-load-all";
9
11
  PageEvents["ModeChangeEvent"] = "spb::page-mode-change";
10
12
  PageEvents["ModelChangeEvent"] = "spb::page-model-change";
package/mcp/mcp-api.d.ts CHANGED
@@ -12,6 +12,19 @@ export interface SimpleContextMenuPrompt {
12
12
  prompt: string;
13
13
  placeholders?: Record<string, PromptPlaceholderDefinition>;
14
14
  }
15
+ export interface ToolCategory {
16
+ id: string;
17
+ name: string;
18
+ description: string;
19
+ tools: string[];
20
+ }
21
+ export interface ToolCategoryApi {
22
+ getAll(): ToolCategory[];
23
+ get(id: string): ToolCategory | undefined;
24
+ create(category: ToolCategory): void;
25
+ update(id: string, category: ToolCategory): void;
26
+ delete(id: string): void;
27
+ }
15
28
  export interface RemoteMCPServerConfig {
16
29
  url: string;
17
30
  }
@@ -55,6 +68,12 @@ export interface McpApi {
55
68
  * @returns A Promise that resolves when the server has been successfully deregistered.
56
69
  */
57
70
  deregisterServer(config: StreamableMCPServerConfig | LocalTransportConfig): Promise<void>;
71
+ /**
72
+ * @description Provides CRUD operations for managing tool categories.
73
+ * @example window.sas.vi.mcp.toolCategories.getAll();
74
+ * @example window.sas.vi.mcp.toolCategories.create({ id: "my_category", name: "My Category", description: "Custom tools", tools: ["my.tool"] });
75
+ */
76
+ toolCategories: ToolCategoryApi;
58
77
  /**
59
78
  * @method
60
79
  * @description Registers prompts with the VI platform that can be used in MCP interactions.
package/mcp/mcp-api.js CHANGED
@@ -6,3 +6,4 @@ expectType(true);
6
6
  expectType(true);
7
7
  expectType(true);
8
8
  expectType(true);
9
+ expectType(true);
@@ -1,9 +1,22 @@
1
- import { Comment, Relationship, RelationshipDTO, StoredObjectFieldDTO } from "../svi-datahub";
1
+ import { SearchRepresentation } from "../svi-sand";
2
+ import { Comment, DocumentAndLink, Relationship, RelationshipDTO, StoredObjectFieldDTO } from "../svi-datahub";
2
3
  import { FileOperation } from "../file/file-api";
3
4
  import { PageModel, PageModelData } from "../page-model/page-model-api";
4
5
  import { ClientSheet, Sheet } from "../sheet/sheet-api";
5
6
  import { PageViewerApi } from "../component/bindings";
6
7
  import { PageDataChange, PageModeChange } from "../control";
8
+ export interface ISearchQuery {
9
+ text?: string;
10
+ additionalModes?: string[];
11
+ assistedSearchEnabled?: boolean;
12
+ assistedSearchPrompt?: string;
13
+ generatedTextQuery?: SearchRepresentation;
14
+ }
15
+ export type UnknownRecord = Record<string, unknown>;
16
+ export type PageModelOrData = PageModel | PageModelData | null;
17
+ export type SearchAndCreateNewPageModel = {
18
+ model?: PageModelOrData;
19
+ };
7
20
  export interface ObjectIdentifier {
8
21
  id: string;
9
22
  type: string;
@@ -134,10 +147,10 @@ export interface ObjectApi {
134
147
  * @method
135
148
  * @description Updates an existing relationship in SAS Visual Investigator.
136
149
  * @param relationshipId {string} Relationship ID.
137
- * @param payload {any} HTTP request content.
150
+ * @param payload {unknown} HTTP request content.
138
151
  * @return A Promise that resolves to a relationship.
139
152
  */
140
- updateObjectRelationship(relationshipId: string, payload: any): Promise<ObjectRelationship>;
153
+ updateObjectRelationship(relationshipId: string, payload: unknown): Promise<ObjectRelationship>;
141
154
  /**
142
155
  * @method
143
156
  * @description Updates an existing relationship in SAS Visual Investigator.
@@ -177,9 +190,12 @@ export interface ObjectApi {
177
190
  * @param from {LinkObject} Existing Object that the relationship is from.
178
191
  * @param to {NewLinkObject} New Object to be created and related to.
179
192
  * @param relationship {ObjectRelationship} The relationship.
180
- * @return A Promise that resolves to a newly created relationship.
193
+ * @param [includeCreatedObject = false] {boolean} If true, returns both the documentLink and created document details.
194
+ * @return A Promise that resolves to the documentLink, or full response containing both documentLink and document.
181
195
  */
182
- createAndRelateObject(from: LinkObject, to: NewLinkObject, relationship: ObjectRelationship): Promise<ObjectRelationship>;
196
+ createAndRelateObject(from: LinkObject, to: NewLinkObject, relationship: ObjectRelationship, includeCreatedObject?: false): Promise<ObjectRelationship>;
197
+ createAndRelateObject(from: LinkObject, to: NewLinkObject, relationship: ObjectRelationship, includeCreatedObject: true): Promise<DocumentAndLink>;
198
+ createAndRelateObject(from: LinkObject, to: NewLinkObject, relationship: ObjectRelationship, includeCreatedObject?: boolean): Promise<ObjectRelationship | DocumentAndLink>;
183
199
  /**
184
200
  * @method
185
201
  * @description Processes an array of objects and formats them for display.
@@ -274,7 +290,7 @@ export interface PageAction {
274
290
  actionId: number;
275
291
  actionName: string;
276
292
  attributes: {
277
- [property: string]: any;
293
+ [property: string]: unknown;
278
294
  displayName: string;
279
295
  disabled: boolean;
280
296
  };
@@ -316,7 +332,7 @@ export interface ObjectFieldRestrictions {
316
332
  [property: string]: FieldRestrictions;
317
333
  }
318
334
  export interface TypeAttributes {
319
- [property: string]: any;
335
+ [property: string]: unknown;
320
336
  }
321
337
  export interface NodeStates {
322
338
  readOnly?: boolean;
@@ -324,7 +340,7 @@ export interface NodeStates {
324
340
  hidden?: boolean;
325
341
  }
326
342
  interface GlobalNodeStates extends NodeStates {
327
- conditions?: any[];
343
+ conditions?: unknown[];
328
344
  }
329
345
  export interface NodeAttributes extends TypeAttributes {
330
346
  global?: {
@@ -412,15 +428,15 @@ export interface FieldOperand {
412
428
  }
413
429
  export interface BooleanExpression {
414
430
  type: string;
415
- leftOperand?: {};
431
+ leftOperand?: unknown;
416
432
  operator: string;
417
- rightOperand: any;
433
+ rightOperand: unknown;
418
434
  }
419
435
  export interface ConditionalExpression extends BooleanExpression {
420
436
  type: string;
421
- leftOperand: {};
437
+ leftOperand: unknown;
422
438
  operator: string;
423
- rightOperands: Array<{}>;
439
+ rightOperands: unknown[];
424
440
  }
425
441
  export interface ObjectIcon {
426
442
  id: number;
@@ -479,9 +495,7 @@ export interface ObjectRelationship {
479
495
  toObjectTypeVersion?: number;
480
496
  toObjectId?: string;
481
497
  toObjectDisplayLabel?: string;
482
- fieldValues?: {
483
- [index: string]: any;
484
- };
498
+ fieldValues?: UnknownRecord;
485
499
  qualifiedTypeName?: string;
486
500
  }
487
501
  export interface ObjectRelationshipMultiple extends ObjectRelationship {
@@ -530,9 +544,7 @@ export interface FileAssociationResponse {
530
544
  type?: string;
531
545
  size?: number;
532
546
  description?: string;
533
- properties?: {
534
- [index: string]: any;
535
- };
547
+ properties?: UnknownRecord;
536
548
  uploadedAt?: Date;
537
549
  uploadedBy?: string;
538
550
  extractedContent?: string;
@@ -549,18 +561,16 @@ export declare enum SearchAndCreateStep {
549
561
  Entity = "entity",
550
562
  Relationship = "relationship"
551
563
  }
552
- interface SearchAndCreatePanelContext {
564
+ export interface SearchAndCreatePanelContext {
553
565
  [SearchAndCreateStep.Search]: {
554
566
  doSearch: (query: string, additionalModes?: string[]) => void;
567
+ updateAssistedSearchEnabled: (assistedSearchEnabled: boolean) => void;
568
+ getQuery: () => ISearchQuery;
555
569
  updateQuery: (query: string) => void;
556
- query: {
557
- text: string;
558
- };
559
570
  };
560
571
  [SearchAndCreateStep.SearchResults]: {
561
- query: {
562
- text: string;
563
- };
572
+ getQuery: () => ISearchQuery;
573
+ updateQuery: (query: string) => void;
564
574
  updateSelection: (results: Array<{
565
575
  id: string;
566
576
  type: string;
@@ -569,9 +579,7 @@ interface SearchAndCreatePanelContext {
569
579
  [SearchAndCreateStep.Entity]: {
570
580
  setPageViewerApi(api: PageViewerApi): void;
571
581
  onPageChange(change?: PageDataChange | PageModeChange): void;
572
- newPageModel: {
573
- model?: PageModel | PageModelData | null;
574
- };
582
+ newPageModel: SearchAndCreateNewPageModel;
575
583
  selectedItems: Array<{
576
584
  id?: string;
577
585
  type?: string;
@@ -582,9 +590,7 @@ interface SearchAndCreatePanelContext {
582
590
  updateLinkReason: (linkReason: Relationship) => void;
583
591
  onPageChange(change?: PageDataChange | PageModeChange): void;
584
592
  setPageViewerApi(api: PageViewerApi): void;
585
- newPageModel: {
586
- model?: PageModel | PageModelData | null;
587
- };
593
+ newPageModel: SearchAndCreateNewPageModel;
588
594
  selectedItems: Array<{
589
595
  id?: string;
590
596
  type?: string;
@@ -593,20 +599,17 @@ interface SearchAndCreatePanelContext {
593
599
  };
594
600
  }
595
601
  export interface SearchAndCreateFooterContext {
596
- query?: {
597
- text: string;
598
- };
602
+ query?: ISearchQuery;
599
603
  selectedItems?: Array<{
600
604
  id?: string;
601
605
  type?: string;
602
606
  title?: string;
603
607
  }> | null;
604
608
  linkReason?: Relationship;
605
- newPageModel?: {
606
- model?: PageModel | PageModelData | null;
607
- };
608
- relationshipValues?: Record<string, any>;
609
+ newPageModel?: SearchAndCreateNewPageModel;
610
+ relationshipValues?: UnknownRecord;
609
611
  doSearch: (queryText?: string) => void;
612
+ updateAssistedSearchEnabled?: (assistedSearchEnabled: boolean) => void;
610
613
  commit: () => void;
611
614
  relateToSelected: () => void;
612
615
  relateToNew: () => void;
@@ -627,7 +630,7 @@ export type SearchAndCreateDialogButton = (BaseButton & {
627
630
  });
628
631
  export interface CustomSearchAndCreateStep<Step extends SearchAndCreateStep> {
629
632
  panel?: {
630
- render: (container: HTMLDivElement, context: SearchAndCreatePanelContext[Step]) => void;
633
+ render: (container: HTMLDivElement, context: SearchAndCreatePanelContext[Step]) => void | (() => void);
631
634
  };
632
635
  footer?: {
633
636
  getButtons: (context: SearchAndCreateFooterContext) => SearchAndCreateDialogButton[];
@@ -656,8 +659,7 @@ export interface CreateRelationshipDialogModel<T> extends SearchOrCreateAndLinkD
656
659
  relateToParentLabel: string;
657
660
  linkReasons?: Relationship[];
658
661
  }
659
- export interface CreateDialogModel extends CreateRelationshipDialogModel<CreateDialogResponse> {
660
- }
662
+ export type CreateDialogModel = CreateRelationshipDialogModel<CreateDialogResponse>;
661
663
  export interface CreateDialogResponse {
662
664
  relateToModel?: CreateRelateToModel;
663
665
  }
@@ -674,12 +676,14 @@ export interface IRelationshipWithLabel extends RelationshipDTO {
674
676
  }
675
677
  export type APISelectedItem = ObjectIdentifier & {
676
678
  title?: string;
679
+ uniqueKey?: string;
680
+ typeLabel?: string;
677
681
  };
678
682
  export interface RelationshipInformation {
679
683
  relationshipTypeId?: number;
680
- relationshipValues?: Record<string, any>;
684
+ relationshipValues?: UnknownRecord;
681
685
  selectedItemTitle?: string;
682
- requiredFieldsStatus?: any;
686
+ requiredFieldsStatus?: unknown;
683
687
  entityIconClass?: string;
684
688
  entityType?: string;
685
689
  }
package/package.json CHANGED
@@ -1,38 +1,38 @@
1
1
  {
2
- "name": "@sassoftware/vi-api",
3
- "version": "1.56.1",
4
- "description": "Types used in the SAS Visual Investigator API",
5
- "keywords": [
6
- "SAS",
7
- "VI",
8
- "Visual Investigator",
9
- "solution",
10
- "extension",
11
- "angular",
12
- "API",
13
- "types"
14
- ],
15
- "homepage": "https://github.com/sassoftware/vi-solution-extensions",
16
- "bugs": {
17
- "url": "https://github.com/sassoftware/vi-solution-extensions/issues"
18
- },
19
- "license": "SEE LICENSE IN LICENSE.txt",
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/sassoftware/vi-solution-extensions"
23
- },
24
- "files": [
25
- "**/*.d.ts",
26
- "**/*.js",
27
- "**/package.json",
28
- "./README.md",
29
- "./LICENSE.txt"
30
- ],
31
- "main": "index.js",
32
- "types": "index.d.ts",
33
- "peerDependencies": {
34
- "@types/angular": "^1.7.3",
35
- "@types/angular-resource": "^1.5.16",
36
- "@modelcontextprotocol/sdk": "^1.20.2"
37
- }
2
+ "name": "@sassoftware/vi-api",
3
+ "version": "1.56.3",
4
+ "description": "Types used in the SAS Visual Investigator API",
5
+ "keywords": [
6
+ "SAS",
7
+ "VI",
8
+ "Visual Investigator",
9
+ "solution",
10
+ "extension",
11
+ "angular",
12
+ "API",
13
+ "types"
14
+ ],
15
+ "homepage": "https://github.com/sassoftware/vi-solution-extensions",
16
+ "bugs": {
17
+ "url": "https://github.com/sassoftware/vi-solution-extensions/issues"
18
+ },
19
+ "license": "SEE LICENSE IN LICENSE.txt",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/sassoftware/vi-solution-extensions"
23
+ },
24
+ "files": [
25
+ "**/*.d.ts",
26
+ "**/*.js",
27
+ "**/package.json",
28
+ "./README.md",
29
+ "./LICENSE.txt"
30
+ ],
31
+ "main": "index.js",
32
+ "types": "index.d.ts",
33
+ "peerDependencies": {
34
+ "@types/angular": "^1.7.3",
35
+ "@types/angular-resource": "^1.5.16",
36
+ "@modelcontextprotocol/sdk": "^1.20.2"
37
+ }
38
38
  }
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2025-10-03 08:30:00.
3
+ // Generated using typescript-generator version 2.15.527 on 2026-05-28 08:51:30.
4
4
 
5
5
  export interface BaseRep extends TrackedResource {
6
6
  links?: Link[];
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/score-reps",
3
- "version": "9.1.2",
3
+ "version": "10.1.7",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2025-11-04 14:56:10.
3
+ // Generated using typescript-generator version 2.15.527 on 2026-06-02 07:10:22.
4
4
 
5
5
  export interface SecuredApiMeta {
6
6
  experimental?: boolean;
@@ -13,10 +13,10 @@ export interface SecuredApiMeta {
13
13
  }
14
14
 
15
15
  export interface SecuredBuild {
16
- sourceId?: string;
16
+ applicationVersion?: string;
17
17
  buildVersion?: string;
18
+ sourceId?: string;
18
19
  sourceTimeStamp?: string;
19
- applicationVersion?: string;
20
20
  timeStamp?: string;
21
21
  }
22
22
 
@@ -47,10 +47,10 @@ export interface ResourceMediaTypes {
47
47
  }
48
48
 
49
49
  export interface Build extends Serializable {
50
- sourceId?: string;
50
+ applicationVersion?: string;
51
51
  buildVersion?: string;
52
+ sourceId?: string;
52
53
  sourceTimeStamp?: string;
53
- applicationVersion?: string;
54
54
  timeStamp?: string;
55
55
  }
56
56
 
@@ -241,6 +241,12 @@ export interface ActionType {
241
241
  localizedMessage?: string;
242
242
  }
243
243
 
244
+ export interface DocumentIdentifierValue extends ObjectIdentifierValue {
245
+ documentTypeName?: string;
246
+ idValue?: string;
247
+ displayLabel?: string;
248
+ }
249
+
244
250
  export interface LabelActionItem extends ActionItem {
245
251
  type?: ActionItemType;
246
252
  label?: string;
@@ -248,6 +254,20 @@ export interface LabelActionItem extends ActionItem {
248
254
  labelType?: LabelValueType;
249
255
  }
250
256
 
257
+ export interface ObjectIdentifierValue {
258
+ }
259
+
260
+ export interface RelatedObjectOperationReference extends ActionItem {
261
+ type?: ActionItemType;
262
+ objectDataType?: ObjectDataType;
263
+ objectTypeName?: string;
264
+ objectTypeDisplayLabel?: string;
265
+ objectId?: string;
266
+ objectDisplayLabel?: string;
267
+ operation?: string;
268
+ versionBeforeChange?: number;
269
+ }
270
+
251
271
  export interface SubActionItem extends ActionItem {
252
272
  type?: ActionItemType;
253
273
  action?: string;
@@ -448,6 +468,9 @@ export interface DataServicesController {
448
468
  export interface DatahubHandlerExceptionResolver extends HandlerExceptionResolver, Ordered {
449
469
  }
450
470
 
471
+ export interface DocumentBulkPatchController {
472
+ }
473
+
451
474
  export interface DocumentController {
452
475
  }
453
476
 
@@ -469,6 +492,9 @@ export interface EndpointRow extends JavaLangRecord {
469
492
  method?: string;
470
493
  }
471
494
 
495
+ export interface EndpointSummaryControllerTest {
496
+ }
497
+
472
498
  export interface FileAssociationResponse extends FileAssociation {
473
499
  links?: RestRepresentationsLink[];
474
500
  }
@@ -603,6 +629,9 @@ export interface AdminStoredObjectController {
603
629
  export interface AdminTemplateController {
604
630
  }
605
631
 
632
+ export interface AdminTenantOnboardController {
633
+ }
634
+
606
635
  export interface AdminUtilController {
607
636
  allDataStoreNames?: string[];
608
637
  }
@@ -732,14 +761,14 @@ export interface CoreEntity extends LocalizableObject, Versioned, NamedObject, S
732
761
  borderColor?: string;
733
762
  borderWidth?: number;
734
763
  scale?: number;
735
- displayTextElements?: SortableNameReference[];
736
- linkDisplayTextElements?: SortableNameReference[];
737
764
  useForNetworkBuild?: boolean;
738
765
  temporalSplitting?: boolean;
739
766
  compounds?: CoreCompound[];
740
767
  nodeDecorations?: NodeDecorationEntity[];
741
768
  additionalLabel?: string;
742
769
  requiresMultipleContributors?: boolean;
770
+ displayTextElements?: SortableNameReference[];
771
+ linkDisplayTextElements?: SortableNameReference[];
743
772
  }
744
773
 
745
774
  export interface CoreIcon extends AuditableObject, Versioned, NamedObject, Serializable, SolutionAssignedEntity {
@@ -792,14 +821,14 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
792
821
  dashType?: string;
793
822
  styles?: LinkStyleEntity[];
794
823
  primaryKeyFields?: CoreRelationshipField[];
795
- internalHeterogeneous?: boolean;
824
+ heterogeneous?: boolean;
796
825
  attributeFields?: CoreRelationshipField[];
797
826
  nonAttributeFieldNames?: string[];
798
827
  foreignKeyFieldNames?: string[];
828
+ internalHeterogeneous?: boolean;
799
829
  reverseLabel?: string;
800
- link?: boolean;
801
830
  qualifiedName?: string;
802
- heterogeneous?: boolean;
831
+ link?: boolean;
803
832
  readOnly?: boolean;
804
833
  }
805
834
 
@@ -877,13 +906,13 @@ export interface CoreTransaction extends CoreDataObject {
877
906
  lineColorFieldName?: string;
878
907
  lineColorFunctionType?: AggregateFunctionType;
879
908
  primaryKeyFields?: CoreDataField<any>[];
909
+ heterogeneous?: boolean;
880
910
  toHeterogeneous?: boolean;
881
911
  fromHeterogeneous?: boolean;
882
912
  fullHeterogeneous?: boolean;
913
+ toHeterogeneousAndFromObjectIsIndexable?: boolean;
883
914
  fromHeterogeneousAndToObjectIsIndexable?: boolean;
884
915
  nonHeterogeneousAndBothSidesAreIndexable?: boolean;
885
- toHeterogeneousAndFromObjectIsIndexable?: boolean;
886
- heterogeneous?: boolean;
887
916
  }
888
917
 
889
918
  export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
@@ -913,6 +942,15 @@ export interface DataStore extends AuditableObject, Versioned, NamedObject, ETag
913
942
  export interface DatahubPrePersistEventListener extends PersistEventListener {
914
943
  }
915
944
 
945
+ export interface DynamicSchemaFailure {
946
+ failureId?: string;
947
+ instanceId?: string;
948
+ managedObjectName?: string;
949
+ transactionStatusName?: string;
950
+ stackTrace?: string;
951
+ dateCreated?: Date;
952
+ }
953
+
916
954
  export interface EntityTypeNameAndVersion {
917
955
  name?: string;
918
956
  id?: number;
@@ -1557,6 +1595,15 @@ export interface QDataStore extends EntityPathBase<DataStore> {
1557
1595
  version?: NumberPath<number>;
1558
1596
  }
1559
1597
 
1598
+ export interface QDynamicSchemaFailure extends EntityPathBase<DynamicSchemaFailure> {
1599
+ dateCreated?: DateTimePath<Date>;
1600
+ failureId?: ComparablePath<string>;
1601
+ instanceId?: StringPath;
1602
+ managedObjectName?: StringPath;
1603
+ stackTrace?: StringPath;
1604
+ transactionStatusName?: StringPath;
1605
+ }
1606
+
1560
1607
  export interface QFieldHeader extends EntityPathBase<FieldHeader> {
1561
1608
  columnName?: StringPath;
1562
1609
  entityTypeId?: NumberPath<number>;
@@ -1988,8 +2035,8 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
1988
2035
  username?: string;
1989
2036
  connectionError?: string;
1990
2037
  defaultSchemaName?: string;
1991
- url?: string;
1992
2038
  password?: string;
2039
+ url?: string;
1993
2040
  reindexRequired?: boolean;
1994
2041
  postedTimestamp?: number;
1995
2042
  casDistributedDataLoadSupported?: boolean;
@@ -2412,6 +2459,12 @@ export interface EntityTypeOperations {
2412
2459
  export interface EntityTypeUtils {
2413
2460
  }
2414
2461
 
2462
+ export interface ImmutableMetadataPropertyCacheExtractor {
2463
+ }
2464
+
2465
+ export interface UnsafeCacheRetriever<V> extends BaseCacheRetriever<V> {
2466
+ }
2467
+
2415
2468
  export interface MetahubClientConfig {
2416
2469
  }
2417
2470
 
@@ -2759,22 +2812,22 @@ export interface DataField {
2759
2812
  displayInTimeZone?: string;
2760
2813
  showTimeZone?: boolean;
2761
2814
  masked?: boolean;
2762
- authorizedToRevealMasked?: UserGroupChooserSelection[];
2763
2815
  primaryKeyUserSelected?: boolean;
2816
+ authorizedToRevealMasked?: UserGroupChooserSelection[];
2764
2817
  redacted?: AbstractRedactionRuleUnion;
2765
2818
  requiredConditionally?: ConditionalRule;
2766
2819
  readOnlyConditionally?: ConditionalRule;
2767
- currentUserIsAuthorizedToReveal?: boolean;
2768
2820
  ownerName?: string;
2821
+ currentUserIsAuthorizedToReveal?: boolean;
2822
+ label?: string;
2769
2823
  required?: boolean;
2770
2824
  columnName?: string;
2771
2825
  scale?: number;
2772
- label?: string;
2826
+ precision?: number;
2773
2827
  name?: string;
2774
2828
  length?: number;
2775
2829
  id?: number;
2776
2830
  readOnly?: boolean;
2777
- precision?: number;
2778
2831
  description?: string;
2779
2832
  }
2780
2833
 
@@ -2782,16 +2835,16 @@ export interface DataObject extends SolutionAssignedDTO {
2782
2835
  historyEnabled?: boolean;
2783
2836
  createdAtTimeFieldName?: string;
2784
2837
  validFromFieldName?: string;
2785
- dataStoreName?: string;
2786
2838
  lastUpdatedAtTimeFieldName?: string;
2787
2839
  systemReserved?: boolean;
2788
2840
  allowedRedactedFieldGroups?: string[];
2789
2841
  validToFieldName?: string;
2790
2842
  displayTextFields?: SortableNameReference[];
2843
+ dataStoreName?: string;
2791
2844
  dataStoreDefaultSchemaName?: string;
2792
2845
  dataStoreAssignedTimeZone?: string;
2793
- tableName?: string;
2794
2846
  label?: string;
2847
+ tableName?: string;
2795
2848
  name?: string;
2796
2849
  fields?: DataField[];
2797
2850
  id?: number;
@@ -2822,6 +2875,10 @@ export interface Element {
2822
2875
  id?: number;
2823
2876
  }
2824
2877
 
2878
+ export interface EnrichedBulkOperationResult extends BulkOperationResult {
2879
+ document?: EnrichedDocument;
2880
+ }
2881
+
2825
2882
  export interface EnrichedDocument {
2826
2883
  objectTypeName?: string;
2827
2884
  objectTypeId?: number;
@@ -2842,22 +2899,22 @@ export interface EnrichedDocument {
2842
2899
  }
2843
2900
 
2844
2901
  export interface Entity extends SolutionAssignedDTO {
2902
+ defaultRegularIcon?: Icon;
2845
2903
  nodeColor?: string;
2846
2904
  nodeShape?: string;
2847
2905
  markerColor?: string;
2848
- defaultRegularIcon?: Icon;
2906
+ compounds?: Compound[];
2849
2907
  borderColor?: string;
2850
2908
  borderWidth?: number;
2851
2909
  useForNetworkBuild?: boolean;
2852
2910
  temporalSplitting?: boolean;
2853
- compounds?: Compound[];
2854
2911
  displayTextElements?: SortableNameReference[];
2855
2912
  linkDisplayTextElements?: SortableNameReference[];
2856
2913
  requiresMultipleContributors?: boolean;
2857
2914
  publishCode?: PublishCode;
2858
2915
  defaultMapIcon?: Icon;
2859
- scale?: number;
2860
2916
  label?: string;
2917
+ scale?: number;
2861
2918
  name?: string;
2862
2919
  id?: number;
2863
2920
  }
@@ -2914,8 +2971,8 @@ export interface ReferenceListSummary {
2914
2971
  }
2915
2972
 
2916
2973
  export interface Relationship extends DataObject {
2917
- toObjectName?: string;
2918
2974
  fromObjectName?: string;
2975
+ toObjectName?: string;
2919
2976
  cardinality?: RelationshipCardinality;
2920
2977
  previousCardinality?: RelationshipCardinality;
2921
2978
  symmetric?: boolean;
@@ -2926,15 +2983,15 @@ export interface Relationship extends DataObject {
2926
2983
  fromObjectLabel?: string;
2927
2984
  toObjectLabel?: string;
2928
2985
  toObjectTypeNames?: string[];
2986
+ summaryFields?: SortableNameReference[];
2929
2987
  heterogeneousLink?: boolean;
2930
2988
  linkFields?: { [index: string]: string }[];
2931
2989
  joinTableName?: string;
2990
+ width?: number;
2932
2991
  required?: boolean;
2933
2992
  qualifiedName?: string;
2934
2993
  managed?: boolean;
2935
- summaryFields?: SortableNameReference[];
2936
2994
  color?: string;
2937
- width?: number;
2938
2995
  type?: RelationshipType;
2939
2996
  }
2940
2997
 
@@ -2956,10 +3013,10 @@ export interface SortableNameReference {
2956
3013
 
2957
3014
  export interface StoredDataObject extends DataObject {
2958
3015
  relationshipsFrom?: Relationship[];
3016
+ defaultRegularIcon?: Icon;
2959
3017
  nodeColor?: string;
2960
3018
  nodeShape?: string;
2961
3019
  markerColor?: string;
2962
- defaultRegularIcon?: Icon;
2963
3020
  borderColor?: string;
2964
3021
  borderWidth?: number;
2965
3022
  relationshipsTo?: Relationship[];
@@ -2970,16 +3027,16 @@ export interface StoredDataObject extends DataObject {
2970
3027
  requireSearchBeforeCreate?: boolean;
2971
3028
  mobileOfflineEnabled?: boolean;
2972
3029
  styles?: EntityStyleDTO[];
2973
- defaultMapIcon?: Icon;
2974
3030
  nodeDecoration?: NodeDecorationDTO;
3031
+ defaultMapIcon?: Icon;
2975
3032
  scale?: number;
2976
3033
  parentName?: string;
2977
3034
  type?: DataObjectType;
2978
3035
  }
2979
3036
 
2980
3037
  export interface Transaction extends DataObject {
2981
- toObjectName?: string;
2982
3038
  fromObjectName?: string;
3039
+ toObjectName?: string;
2983
3040
  toObjectTypeFieldName?: string;
2984
3041
  fromObjectTypeFieldName?: string;
2985
3042
  fromObjectRefFieldName?: string;
@@ -3045,9 +3102,9 @@ export interface EntityImpl extends Entity {
3045
3102
  }
3046
3103
 
3047
3104
  export interface FileCategory {
3048
- required?: boolean;
3049
3105
  allowMultiple?: boolean;
3050
3106
  documentLockRequired?: boolean;
3107
+ required?: boolean;
3051
3108
  name?: string;
3052
3109
  displayName?: string;
3053
3110
  }
@@ -3827,10 +3884,10 @@ export interface JobEvent extends TypedPayload {
3827
3884
  status?: Status;
3828
3885
  startedAt?: Date;
3829
3886
  links?: RestRepresentationsLink[];
3887
+ job?: boolean;
3830
3888
  eventAction?: string;
3831
3889
  eventTopic?: string;
3832
3890
  eventSubject?: string;
3833
- job?: boolean;
3834
3891
  }
3835
3892
 
3836
3893
  export interface JobUpdatedEvent extends UpdatedEvent {
@@ -3904,8 +3961,8 @@ export interface Class<T> extends Serializable, GenericDeclaration, Type, Annota
3904
3961
 
3905
3962
  export interface ValueInstantiator {
3906
3963
  valueClass?: Class<any>;
3907
- arrayDelegateCreator?: AnnotatedWithParams;
3908
3964
  delegateCreator?: AnnotatedWithParams;
3965
+ arrayDelegateCreator?: AnnotatedWithParams;
3909
3966
  valueTypeDesc?: string;
3910
3967
  defaultCreator?: AnnotatedWithParams;
3911
3968
  withArgsCreator?: AnnotatedWithParams;
@@ -3917,16 +3974,17 @@ export interface JavaType extends ResolvedType, Serializable, Type {
3917
3974
  typeHandler?: any;
3918
3975
  valueHandler?: any;
3919
3976
  enumImplType?: boolean;
3920
- referencedType?: JavaType;
3977
+ iterationType?: boolean;
3921
3978
  contentValueHandler?: any;
3922
3979
  contentTypeHandler?: any;
3923
3980
  erasedSignature?: string;
3924
3981
  superClass?: JavaType;
3982
+ referencedType?: JavaType;
3925
3983
  keyType?: JavaType;
3926
3984
  interfaces?: JavaType[];
3927
3985
  genericSignature?: string;
3928
- contentType?: JavaType;
3929
3986
  bindings?: TypeBindings;
3987
+ contentType?: JavaType;
3930
3988
  }
3931
3989
 
3932
3990
  export interface JsonDeserializer<T> extends NullValueProvider {
@@ -3934,9 +3992,9 @@ export interface JsonDeserializer<T> extends NullValueProvider {
3934
3992
  nullValue?: T;
3935
3993
  emptyAccessPattern?: AccessPattern;
3936
3994
  delegatee?: JsonDeserializer<any>;
3995
+ knownPropertyNames?: any[];
3937
3996
  objectIdReader?: ObjectIdReader;
3938
3997
  cachable?: boolean;
3939
- knownPropertyNames?: any[];
3940
3998
  }
3941
3999
 
3942
4000
  export interface ObjectIdReader extends Serializable {
@@ -3944,8 +4002,8 @@ export interface ObjectIdReader extends Serializable {
3944
4002
  generator?: ObjectIdGenerator<any>;
3945
4003
  resolver?: ObjectIdResolver;
3946
4004
  idProperty?: SettableBeanProperty;
3947
- deserializer?: JsonDeserializer<any>;
3948
4005
  idType?: JavaType;
4006
+ deserializer?: JsonDeserializer<any>;
3949
4007
  }
3950
4008
 
3951
4009
  export interface JsonSerializer<T> extends JsonFormatVisitable {
@@ -3993,8 +4051,8 @@ export interface StackTraceElement extends Serializable {
3993
4051
  methodName?: string;
3994
4052
  fileName?: string;
3995
4053
  lineNumber?: number;
3996
- nativeMethod?: boolean;
3997
4054
  className?: string;
4055
+ nativeMethod?: boolean;
3998
4056
  }
3999
4057
 
4000
4058
  export interface DataHubException extends RuntimeException {
@@ -4121,6 +4179,9 @@ export interface MapPath<K, V, E> extends MapExpressionBase<K, V, E>, Path<{ [in
4121
4179
  valueType?: Class<V>;
4122
4180
  }
4123
4181
 
4182
+ export interface ComparablePath<T> extends ComparableExpression<T>, Path<T> {
4183
+ }
4184
+
4124
4185
  export interface ConfigTransportObject {
4125
4186
  handlerName?: string;
4126
4187
  schemaVersion?: string;
@@ -4171,13 +4232,13 @@ export interface ResolvedType {
4171
4232
  containerType?: boolean;
4172
4233
  arrayType?: boolean;
4173
4234
  concrete?: boolean;
4174
- throwable?: boolean;
4175
4235
  enumType?: boolean;
4176
4236
  collectionLikeType?: boolean;
4177
4237
  mapLikeType?: boolean;
4178
- referencedType?: ResolvedType;
4179
4238
  parameterSource?: Class<any>;
4180
4239
  rawClass?: Class<any>;
4240
+ referencedType?: ResolvedType;
4241
+ throwable?: boolean;
4181
4242
  keyType?: ResolvedType;
4182
4243
  interface?: boolean;
4183
4244
  primitive?: boolean;
@@ -4329,6 +4390,10 @@ export interface ResourceStringAccumulator {
4329
4390
  transportResourceStrings?: { [index: string]: string };
4330
4391
  }
4331
4392
 
4393
+ export interface BaseCacheRetriever<V> extends CacheRetriever<V> {
4394
+ klass?: Class<V>;
4395
+ }
4396
+
4332
4397
  export interface ResponseErrorHandler {
4333
4398
  }
4334
4399
 
@@ -4363,9 +4428,6 @@ export interface OfField<F> extends TypeDescriptor {
4363
4428
  primitive?: boolean;
4364
4429
  }
4365
4430
 
4366
- export interface AnnotationMap extends Annotations {
4367
- }
4368
-
4369
4431
  export interface TypeResolutionContext {
4370
4432
  }
4371
4433
 
@@ -4376,10 +4438,13 @@ export interface Member {
4376
4438
  declaringClass?: Class<any>;
4377
4439
  }
4378
4440
 
4441
+ export interface AnnotationMap extends Annotations {
4442
+ }
4443
+
4379
4444
  export interface AnnotatedMember extends Annotated, Serializable {
4380
- allAnnotations?: AnnotationMap;
4381
4445
  typeContext?: TypeResolutionContext;
4382
4446
  member?: Member;
4447
+ allAnnotations?: AnnotationMap;
4383
4448
  declaringClass?: Class<any>;
4384
4449
  fullName?: string;
4385
4450
  }
@@ -4497,6 +4562,9 @@ export interface QConditionReferencedFactEntity extends BeanPath<ConditionRefere
4497
4562
  export interface MapExpressionBase<K, V, Q> extends DslExpression<{ [index: string]: V }>, MapExpression<K, V> {
4498
4563
  }
4499
4564
 
4565
+ export interface ComparableExpression<T> extends ComparableExpressionBase<T> {
4566
+ }
4567
+
4500
4568
  export interface ClientApplicationEntity extends Mergable<ClientApplicationEntity>, Serializable {
4501
4569
  name?: string;
4502
4570
  label?: string;
@@ -4544,6 +4612,7 @@ export interface Annotations {
4544
4612
  export interface Annotated {
4545
4613
  annotated?: AnnotatedElement;
4546
4614
  name?: string;
4615
+ static?: boolean;
4547
4616
  public?: boolean;
4548
4617
  type?: JavaType;
4549
4618
  rawType?: Class<any>;
@@ -4563,8 +4632,8 @@ export interface BeanProperty extends Named {
4563
4632
  wrapperName?: PropertyName;
4564
4633
  required?: boolean;
4565
4634
  member?: AnnotatedMember;
4566
- type?: JavaType;
4567
4635
  virtual?: boolean;
4636
+ type?: JavaType;
4568
4637
  fullName?: PropertyName;
4569
4638
  metadata?: PropertyMetadata;
4570
4639
  }
@@ -4598,6 +4667,11 @@ export interface TemplateAuthorization extends Serializable {
4598
4667
  selectionNm?: string;
4599
4668
  }
4600
4669
 
4670
+ export interface CacheRetriever<V> {
4671
+ uniqueIdentifier?: string;
4672
+ cacheKeyPrefix?: string;
4673
+ }
4674
+
4601
4675
  export interface ExpressionVisitor {
4602
4676
  }
4603
4677
 
@@ -4630,9 +4704,6 @@ export interface LinkedPageTemplateIdEntity extends Serializable {
4630
4704
  traversal?: TraversalDefinitionEntity;
4631
4705
  }
4632
4706
 
4633
- export interface ComparableExpression<T> extends ComparableExpressionBase<T> {
4634
- }
4635
-
4636
4707
  export interface TraversalDefinitionEntity extends Serializable, HasGeneratedId, SolutionAssignedEntity, Mergable<TraversalDefinitionEntity> {
4637
4708
  uuid?: string;
4638
4709
  displayName?: string;
@@ -4644,12 +4715,14 @@ export interface ParameterizedExpression<T> extends DslTypesExpression<T> {
4644
4715
 
4645
4716
  export type TypeSuffix = "JSON" | "XML";
4646
4717
 
4647
- export type ActionItemType = "subItem" | "labelItem" | "tableItem";
4718
+ export type ActionItemType = "subItem" | "labelItem" | "tableItem" | "relatedObjectOperationReference";
4648
4719
 
4649
- export type ActionTableValueType = "BOOLEAN" | "STRING" | "INTEGER" | "DECIMAL" | "DATE" | "TIMESTAMP" | "TIMESTAMP_WITH_TIME_ZONE" | "JSON" | "HTML" | "REFERENCE_DATA" | "USER_GROUP" | "MIME_TYPE";
4720
+ export type ActionTableValueType = "BOOLEAN" | "STRING" | "INTEGER" | "DECIMAL" | "DATE" | "TIMESTAMP" | "TIMESTAMP_WITH_TIME_ZONE" | "JSON" | "HTML" | "REFERENCE_DATA" | "USER_GROUP" | "MIME_TYPE" | "OBJECT_IDENTIFIER";
4650
4721
 
4651
4722
  export type LabelValueType = "STRING" | "HTML" | "MIME_TYPE";
4652
4723
 
4724
+ export type ObjectDataType = "DOCUMENT";
4725
+
4653
4726
  export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "masked" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
4654
4727
 
4655
4728
  export type MethodType = "CREATE" | "UPDATE" | "DELETE";
@@ -4766,7 +4839,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
4766
4839
 
4767
4840
  export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4768
4841
 
4769
- 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" | "importingUnrecognizedControlCategory" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "write_only_at_create_for_relationship_requires_read_only" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "icon_svg_invalid" | "icon_invalid_image_type" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "media_type_mismatch" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_values_must_not_exceed_max_int_value" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "condition_id_required" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9014" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsWithTemplateUUID" | "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" | "condition_owner_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "map_constraint_violation_body" | "page_template_assignment_error" | "entity.type.mismatch" | "empty.rules" | "missing.types" | "invalid.access.combination" | "rules.do.not.exist" | "version.mismatch" | "rules.already.exist" | "version.should.be.null" | "error.removing.rule.group" | "error.adding.group" | "invalid_control_solution_id";
4842
+ 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" | "json_patch_operation_not_supported" | "bulk_json_patch_document_duplicate_found" | "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" | "importingUnrecognizedControlCategory" | "DH3700" | "DH3701" | "DH3702" | "DH3703" | "DH3704" | "DH3705" | "DH3706" | "DH3708" | "DH3709" | "DH3710" | "DH3711" | "DH3712" | "DH3713" | "DH3714" | "DH3715" | "DH3716" | "DH3717" | "DH3718" | "DH3719" | "DH3720" | "DH3721" | "DH3723" | "DH3724" | "DH3725" | "DH3726" | "DH3727" | "DH3728" | "DH3729" | "DH3730" | "DH3731" | "DH3732" | "DH3733" | "DH3734" | "DH3735" | "DH3736" | "DH3737" | "DH3738" | "DH3739" | "DH3740" | "DH3741" | "DH3742" | "DH3743" | "DH3744" | "DH4100" | "DH4101" | "DH4102" | "DH4103" | "DH4114" | "DH4116" | "DH4120" | "DH4129" | "DH4130" | "DH4131" | "DH4132" | "DH4133" | "DH4134" | "DH4135" | "DH4136" | "DH4137" | "DH4138" | "DH4139" | "DH4140" | "DH4141" | "DH4142" | "DH4143" | "DH4144" | "DH4145" | "DH4150" | "DH4151" | "DH4152" | "DH4153" | "DH4154" | "DH4155" | "DH4156" | "DH4157" | "DH4158" | "DH4159" | "DH4160" | "DH4162" | "DH4163" | "column_not_found_for_heterogeneous_link_field" | "DH4167" | "DH4168" | "rel_child_must_ref_parent_by_pk" | "DH4170" | "DH4173" | "DH4174" | "DH4175" | "DH4179" | "DH4180" | "DH4181" | "DH4182" | "DH4183" | "DH4184" | "DH4185" | "DH4186" | "DH4187" | "DH4188" | "DH4189" | "DH4190" | "DH4191" | "DH4192" | "DH4193" | "DH4194" | "DH4200" | "DH4201" | "DH4202" | "DH4203" | "DH4207" | "DH4208" | "DH4211" | "DH4220" | "DH4226" | "DH4227" | "DH4228" | "DH4229" | "DH4302" | "DH4332" | "DH4304" | "DH4305" | "DH4310" | "DH4331" | "DH4316" | "DH4317" | "DH4319" | "DH4320" | "DH4321" | "DH4322" | "DH4328" | "DH4330" | "DH4338" | "DH4343" | "DH4346" | "DH4347" | "DH4350" | "DH4351" | "DH4400" | "DH4401" | "DH4402" | "DH4403" | "DH4404" | "DH5100" | "DH5101" | "DH5102" | "DH5103" | "DH5104" | "DH5105" | "DH5107" | "DH5108" | "DH5109" | "DH5111" | "DH5112" | "DH5114" | "DH5115" | "DH5116" | "DH5118" | "DH5119" | "DH5120" | "DH5121" | "write_only_at_create_for_relationship_requires_read_only" | "DH5122" | "DH5123" | "DH5125" | "DH5126" | "DH5127" | "DH5128" | "DH5129" | "DH5130" | "DH5131" | "DH5133" | "DH5134" | "DH5135" | "DH5200" | "DH5201" | "DH5202" | "DH5203" | "DH5204" | "DH5205" | "DH5206" | "DH5207" | "DH5210" | "DH5211" | "DH5212" | "DH5213" | "DH5500" | "DH5501" | "DH5502" | "DH5503" | "DH5504" | "DH5505" | "DH5506" | "DH5507" | "import_database_error" | "import_database_error_for_type" | "export_failed" | "DH5600" | "DH5601" | "DH5602" | "DH5603" | "DH6099" | "DH6100" | "DH6101" | "DH6102" | "DH6103" | "DH6104" | "DH6105" | "stored_objects_with_names_not_found" | "DH6106" | "DH6107" | "DH6108" | "DH6109" | "entity_does_not_have_relationship" | "DH6110" | "DH6112" | "DH6113" | "DH6114" | "DH6116" | "DH6118" | "DH6119" | "DH6120" | "icon_svg_invalid" | "icon_invalid_image_type" | "DH6122" | "DH6123" | "DH6124" | "DH6125" | "DH6126" | "DH6127" | "DH6128" | "DH6129" | "DH6131" | "DH6132" | "DH6133" | "DH6134" | "DH6135" | "DH6136" | "DH6137" | "DH6138" | "DH6139" | "DH6140" | "DH6141" | "DH6142" | "DH6143" | "DH6144" | "DH6145" | "DH6146" | "DH6147" | "DH6148" | "DH6149" | "DH6150" | "DH6151" | "DH6152" | "DH6153" | "DH6154" | "DH6155" | "DH6156" | "DH6157" | "DH6158" | "DH6159" | "DH6160" | "DH6161" | "DH6162" | "DH6163" | "DH6164" | "DH6165" | "DH6166" | "DH6167" | "DH6168" | "DH6169" | "DH6170" | "DH6171" | "DH6172" | "DH6173" | "DH6174" | "DH6175" | "DH6176" | "DH6177" | "DH6178" | "DH6179" | "DH6180" | "DH6181" | "DH6182" | "DH6183" | "DH6184" | "DH6185" | "DH6186" | "DH6187" | "DH6188" | "DH6189" | "DH6191" | "DH6198" | "DH6199" | "DH6200" | "DH6201" | "DH6202" | "DH6203" | "DH6205" | "DH6206" | "DH6207" | "DH6208" | "DH6209" | "DH6210" | "DH6211" | "DH6212" | "DH6213" | "DH6214" | "DH6215" | "DH6216" | "DH6217" | "DH6218" | "DH6219" | "DH6220" | "DH6221" | "DH6222" | "DH6223" | "media_type_mismatch" | "media_type_not_supported_for_header" | "DH6224" | "DH6225" | "DH6226" | "tuning_global_parameters_must_be_supplied" | "tuning_parameters_property_cannot_be_empty" | "tuning_object_type_and_name_must_match_when_global_type" | "tuning_maximum_parameters_exceeded" | "tuning_no_parameters_supplied" | "value_must_be_supplied_for_tuning_parameter" | "invalid_tuning_parameter_name_supplied" | "tuning_parameter_values_must_be_greater_than_zero" | "tuning_parameter_values_must_not_exceed_max_int_value" | "tuning_parameter_cannot_have_decimal_value" | "tuning_non_global_values_cannot_have_default_values" | "global_default_values_cannot_be_updated" | "DH6300" | "DH6301" | "DH6302" | "DH6303" | "DH6304" | "DH6310" | "DH6311" | "condition_id_required" | "DH6350" | "DH6351" | "DH6352" | "DH6353" | "DH6354" | "DH6356" | "DH6357" | "DH6358" | "DH6360" | "DH6361" | "DH6362" | "DH6363" | "DH6364" | "DH6365" | "DH6366" | "DH6380" | "DH6381" | "DH6382" | "DH6383" | "DH6900" | "DH6901" | "DH6902" | "DH6903" | "DH6904" | "DH6905" | "DH6907" | "DH6910" | "DH6911" | "DH6912" | "DH6913" | "DH6914" | "DH6915" | "DH6916" | "DH6917" | "DH6918" | "not_a_valid_entity_date_field_w_id" | "not_a_valid_entity_timestamp_w_id" | "not_a_valid_entity_date_field_without_id" | "not_a_valid_entity_timestamp_without_id" | "not_a_valid_relationship_entity_date_field_w_id" | "not_a_valid_relationship_entity_timestamp_w_id" | "not_a_valid_relationship_entity_date_field_without_id" | "not_a_valid_relationship_entity_timestamp_without_id" | "DH6919" | "DH6920" | "DH6921" | "DH6922" | "DH6923" | "DH6998" | "DH6999" | "DH7000" | "DH7001" | "DH7002" | "DH7003" | "DH7004" | "DH7005" | "DH7006" | "DH7008" | "DH7009" | "DH7010" | "DH7011" | "DH7012" | "DH7013" | "DH7014" | "DH7100" | "DH7101" | "DH7102" | "DH7103" | "DH7104" | "DH7105" | "DH7106" | "DH7107" | "DH7108" | "DH7109" | "DH7110" | "DH9000" | "DH9001" | "DH9003" | "DH9004" | "DH9005" | "DH9006" | "DH9010" | "DH9011" | "DH9012" | "DH9013" | "DH9014" | "DH9016" | "DH9017" | "DH9032" | "DH9034" | "DH9035" | "DH9036" | "DH9037" | "DH9040" | "DH9041" | "DH9042" | "DH9043" | "DH9044" | "solutionMustHaveUniqueName" | "solutionWithNameNotFound" | "solutionNameCannotBeChanged" | "solutionMustHaveUniqueNameArchivedClash" | "solutionCannotBeCreatedAsArchived" | "solutionArchivedCannotBeUpdated" | "solutionResourceVersionMustBeNullOr0OnCreate" | "solutionCannotBeArchivedThroughUpdate" | "solutionImportDuplicateLabel" | "solutionNameMustBeSet" | "solutionArchivedCannotBeAssigned" | "solutionArchivedCannotBePublished" | "solutionChildObjectMustBeAssignedToSameSolutionAsParentObject" | "solutionCannotBeArchivedAsAtLeastOneSolutionMustBeUnarchived" | "activeHomepageClientApplicationDoesNotExist" | "activeHomepageTemplateDoesNotExist" | "activeHomepageClientApplicationMismatch" | "activeHomepageWrongTemplateType" | "activeHomepageAlreadySetForClientApplication" | "activeHomepageNotFound" | "activeHomepageCannotDelete" | "activeHomepageUpdateIdMismatch" | "activeHomepageUpdateRequestIdMismatch" | "activeHomepageAlreadyExistsWithTemplateUUID" | "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" | "condition_owner_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "map_constraint_violation_body" | "page_template_assignment_error" | "entity.type.mismatch" | "empty.rules" | "missing.types" | "invalid.access.combination" | "rules.do.not.exist" | "version.mismatch" | "rules.already.exist" | "version.should.be.null" | "error.removing.rule.group" | "error.adding.group" | "invalid_control_solution_id";
4770
4843
 
4771
4844
  export type DataStoreType = "RELATIONAL";
4772
4845
 
@@ -4784,7 +4857,7 @@ export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PRO
4784
4857
 
4785
4858
  export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
4786
4859
 
4787
- export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "DEDUCTION" | "CUSTOM";
4860
+ export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "SIMPLE_NAME" | "DEDUCTION" | "CUSTOM";
4788
4861
 
4789
4862
  export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
4790
4863
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-datahub",
3
- "version": "17.44.21",
3
+ "version": "17.52.13",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2025-10-03 08:29:02.
3
+ // Generated using typescript-generator version 2.15.527 on 2026-05-28 08:51:16.
4
4
 
5
5
  export interface ApplicationSetting extends ResponsesErrorResponse {
6
6
  name?: string;
@@ -611,7 +611,9 @@ export interface PathsRepresentation extends QueryRepresentation {
611
611
  type?: string;
612
612
  id?: string;
613
613
  filter?: AbstractFilterUnion;
614
+ mustMatchAllBranches?: boolean;
614
615
  nextLevel?: PathLevelRepresentation;
616
+ nextLevels?: PathLevelRepresentation[];
615
617
  }
616
618
 
617
619
  export interface PathLevelRepresentation {
@@ -620,6 +622,7 @@ export interface PathLevelRepresentation {
620
622
  vertexFilter?: AbstractFilterUnion;
621
623
  edgeFilter?: AbstractFilterUnion;
622
624
  nextLevel?: PathLevelRepresentation;
625
+ nextLevels?: PathLevelRepresentation[];
623
626
  }
624
627
 
625
628
  export interface QueryRepresentation {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-sand",
3
- "version": "19.4.2",
3
+ "version": "20.1.7",
4
4
  "types": "index.d.ts"
5
5
  }