@sassoftware/vi-api 1.55.0 → 1.56.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2026-03-03 09:09:51.
3
+ // Generated using typescript-generator version 2.15.527 on 2025-10-31 09:57:49.
4
4
 
5
5
  export interface ActionRequestRep {
6
6
  version?: number;
@@ -136,8 +136,8 @@ export interface AlertVersionSummaryRep {
136
136
  versionDispositionResolutionCode?: string;
137
137
  versionScore?: number;
138
138
  versionLastUpdateTimeStamp?: string;
139
- versionCreationTimestamp?: string;
140
139
  versionLastUpdateTimestamp?: string;
140
+ versionCreationTimestamp?: string;
141
141
  }
142
142
 
143
143
  export interface AlertWorkflowRep {
@@ -450,32 +450,17 @@ 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
-
459
453
  export interface ScenarioFiredEventDispositionRep extends BaseRep {
460
454
  version?: number;
461
455
  scenarioFiredEventDispositionId?: string;
462
456
  scenarioFiredEventId?: string;
463
457
  alertDispositionId?: string;
464
- alertId?: string;
465
458
  resolutionCode?: string;
466
459
  resolutionComment?: string;
467
460
  reasonCode?: string;
468
461
  logicalDeleteFlag?: string;
469
462
  }
470
463
 
471
- export interface ScenarioFiredEventFailedDispositionRep extends BaseRep {
472
- version?: number;
473
- scenarioFiredEventId?: string;
474
- actionableEntityId?: string;
475
- alertId?: string;
476
- errorMessage?: string;
477
- }
478
-
479
464
  export interface ScenarioFiredEventFlatRep extends ScenarioFiredEventRep {
480
465
  alertingEventId?: string;
481
466
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/alert-reps",
3
- "version": "22.0.8",
3
+ "version": "21.4.4",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -10,12 +10,12 @@
10
10
  * If you need to add a new interface, please consider whether it can extend an existing one or if a new base interface should be created to group related bindings together.
11
11
  * Please also add JSDoc comments to the new bindings and interfaces to explain their purpose and usage.
12
12
  */
13
- import { PageDataChange, PageModeChange } from "../control/events";
13
+ import { PageDataChange, PageDataChangeWithPageModel, PageModeChange, PageModeChangeWithPageModel } from "../control/events";
14
14
  import { Relationship } from "../svi-datahub";
15
15
  import { QueryMode } from "../svi-sand";
16
- import { ControlContainer, VIObject } from "../object/object-api";
16
+ import { APISelectedItem, ControlContainer, CreateDialogResponse, IRelationshipWithLabel, RelationshipInformation, VIObject } from "../object/object-api";
17
17
  import { PageModel, PageModelObjectData } from "../page-model/page-model-api";
18
- import { SearchObject, SearchQuery } from "../search/client/client-search-api";
18
+ import { LinkStatusResult, SearchObject, SearchQuery } from "../search/client/client-search-api";
19
19
  import { HandleType, MinMaxDates, TimeSliderContextMenuHideOptions, TimeSliderEventDates, TimeSliderRange, TimeSliderRangeChangedEvent } from "../time-slider";
20
20
  import { PageModeEvent } from "../control";
21
21
  export interface SearchAndSelectWithPreviewInputBindings {
@@ -135,7 +135,7 @@ export interface CommonPageViewerBindings {
135
135
  /** A callback that is called when the page viewer dirty state changes. */
136
136
  onDirty?: (isDirty: boolean) => void;
137
137
  /** A callback that is called when the pageModel's mode or data changes. */
138
- onChange?: (change: PageDataChange | PageModeChange) => void;
138
+ onChange?: (change: PageDataChange | PageModeChange | PageDataChangeWithPageModel | PageModeChangeWithPageModel) => void;
139
139
  }
140
140
  /** @deprecated use {@link PageViewerBindings} */
141
141
  export interface PageBindings {
@@ -156,7 +156,7 @@ export interface PageBindings {
156
156
  setApi?: (api: PageViewerApi) => void;
157
157
  mainTab?: string;
158
158
  onDirty?: (isDirty: boolean) => void;
159
- onChange?: (change: PageDataChange | PageModeChange) => void;
159
+ onChange?: (change: PageDataChange | PageModeChange | PageDataChangeWithPageModel | PageModeChangeWithPageModel) => void;
160
160
  }
161
161
  export interface PagePreviewBindings {
162
162
  templateUuid: string;
@@ -169,7 +169,7 @@ export interface ControlCollectionBindings {
169
169
  /**
170
170
  * Defines the bindings for managing relationship details in a component.
171
171
  */
172
- export interface RelationshipDetailsBindings {
172
+ export interface RelationshipDetailsInputBindings {
173
173
  /**
174
174
  * Defines the identifier of the target object type that the relationship references.
175
175
  */
@@ -189,15 +189,16 @@ export interface RelationshipDetailsBindings {
189
189
  /**
190
190
  * Represents the list of reasons that define the purpose or context of the relationship.
191
191
  */
192
- linkReasons: Relationship[];
192
+ linkReasons: Relationship[] | IRelationshipWithLabel[];
193
193
  /**
194
194
  * Represents the currently selected item in the relationship, if applicable.
195
- * Contains an object with `id` and `type` fields to identify the selected item.
195
+ * Contains an object with `id`, `type`, and optional `title` fields to identify the selected item.
196
196
  */
197
- selectedItem?: {
198
- id: string;
199
- type: string;
200
- };
197
+ selectedItem?: APISelectedItem;
198
+ /**
199
+ * Represents the list of currently selected items in the relationship, if applicable.
200
+ */
201
+ selectedItems?: APISelectedItem[];
201
202
  /**
202
203
  * Fields that are read-only and cannot be modified by the user within the relationships properties panel
203
204
  */
@@ -208,24 +209,50 @@ export interface RelationshipDetailsBindings {
208
209
  hiddenFields?: string[];
209
210
  /**
210
211
  * Contains the data for a new page model, if applicable.
211
- * Includes a `PageModelObjectData` object to represent the model structure.
212
+ * Includes a `PageModel` or `PageModelObjectData` object to represent the model structure.
212
213
  */
213
214
  newPageModel?: {
214
- model: PageModelObjectData;
215
+ model: PageModel | PageModelObjectData;
215
216
  };
216
217
  /**
217
- * Callback invoked when a link reason is selected.
218
- * @param linkReason - The selected link reason.
218
+ * Indicates whether to display the page viewer component. Default: true
219
219
  */
220
- onLinkReasonSelected: (linkReason: Relationship) => void;
220
+ showPageViewer?: boolean;
221
+ /**
222
+ * Used to show link status in the relationship properties component when coming from the relate to button bulk link flow
223
+ */
224
+ linkStatusResults?: LinkStatusResult[];
225
+ /**
226
+ * Used to show link status in the relationship properties component when coming from the relate to button bulk link flow
227
+ */
228
+ originalWizardResults?: CreateDialogResponse[];
221
229
  /**
222
230
  * Represents the current field values of the relationship as key-value pairs.
223
231
  */
224
- relationshipValues?: Record<string, any>;
232
+ relationshipValues?: Record<string, unknown>;
225
233
  /**
226
234
  * Represents the initial field values used to populate the related object during creation.
227
235
  */
228
- initialCreateData?: Record<string, any>;
236
+ initialCreateData?: Record<string, unknown>;
237
+ /**
238
+ * Entity names of the selected items.
239
+ */
240
+ entityNames?: string[];
241
+ /**
242
+ * Entity name of the parent object to which we are relating.
243
+ */
244
+ relateToParentName?: string;
245
+ /**
246
+ * Stored relationship info for each selected item, used to restore state when navigating between wizard steps.
247
+ */
248
+ storedAllRelationshipInfo?: Map<string, RelationshipInformation>;
249
+ }
250
+ export interface RelationshipDetailsBindings extends RelationshipDetailsInputBindings {
251
+ /**
252
+ * Callback invoked when a link reason is selected.
253
+ * @param linkReason - The selected link reason.
254
+ */
255
+ onLinkReasonSelected: (linkReason: Relationship | IRelationshipWithLabel | undefined) => void;
229
256
  /**
230
257
  * Callback to set the API for the page viewer.
231
258
  * Provides a `PageViewerAPI` instance to the component.
@@ -235,20 +262,36 @@ export interface RelationshipDetailsBindings {
235
262
  /**
236
263
  * Callback invoked when the related page changes.
237
264
  * Triggered by events such as data updates or mode transitions.
238
- * @param change - The event describing the change, either `PageDataChange` or `PageModeChange`.
265
+ * @param change - The event describing the change, either `PageDataChange`, `PageModeChange`, `PageDataChangeWithPageModel`, or `PageModeChangeWithPageModel`.
239
266
  */
240
- onRelatedPageChange?: (change: PageDataChange | PageModeChange) => void;
267
+ onRelatedPageChange?: (change: PageDataChange | PageModeChange | PageDataChangeWithPageModel | PageModeChangeWithPageModel) => void;
241
268
  /**
242
269
  * Callback invoked when the relationship values are updated.
243
270
  * Provides both the current and previous values for comparison.
244
- * @param current - The updated relationship values.
245
- * @param previous - The previous relationship values, if available.
271
+ * @param event - Object containing current and previous relationship values.
246
272
  */
247
- onRelationshipValuesChange?: (current: Record<string, any>, previous?: Record<string, any>) => void;
273
+ onRelationshipValuesChange?: (event: {
274
+ current: Record<string, any>;
275
+ previous?: Record<string, any>;
276
+ }) => void;
248
277
  /**
249
- * Callback invoked when the related page is loading is complete.
278
+ * Callback invoked when the related page loading is complete.
250
279
  */
251
280
  onRelatedPageLoad?: () => void;
281
+ /**
282
+ * Callback invoked when the relationship information is updated.
283
+ * @param allRelationshipInfo - Map of all relationship information keyed by item ID.
284
+ */
285
+ onAllRelationshipInfoChanged?: (allRelationshipInfo: Map<string, RelationshipInformation>) => void;
286
+ /**
287
+ * Callback invoked when the selected items are updated.
288
+ * @param event - Object containing the updated selected items and optionally the removed item.
289
+ */
290
+ selectedItemsUpdated?: (event: {
291
+ selectedItems: APISelectedItem[] | undefined;
292
+ removedItem?: APISelectedItem;
293
+ removedItemIndex?: number;
294
+ }) => void;
252
295
  }
253
296
  export interface SearchInputInputBindings {
254
297
  entityName: string;
@@ -48,5 +48,6 @@ export declare enum StandardPropertyTypes {
48
48
  NetworkLinkSelector = "NetworkLinkSelector",
49
49
  Hidden = "Hidden",
50
50
  Disabled = "Disabled",
51
- Condition = "Condition"
51
+ Condition = "Condition",
52
+ CreateRelationshipSelection = "CreateRelationshipSelection"
52
53
  }
@@ -51,6 +51,7 @@ export var StandardPropertyTypes;
51
51
  StandardPropertyTypes["Hidden"] = "Hidden";
52
52
  StandardPropertyTypes["Disabled"] = "Disabled";
53
53
  StandardPropertyTypes["Condition"] = "Condition";
54
+ StandardPropertyTypes["CreateRelationshipSelection"] = "CreateRelationshipSelection";
54
55
  /**
55
56
  * @internal For now as there is no consumer request and the editor only supports the usage by the (feature flagged) generated text control.
56
57
  */
@@ -58,6 +58,11 @@ export interface PageDataChange {
58
58
  old?: PageModelData;
59
59
  };
60
60
  }
61
+ export interface PageDataChangeWithPageModel extends PageDataChange {
62
+ pageModel: {
63
+ model: PageModelData;
64
+ };
65
+ }
61
66
  export interface PageModeChange {
62
67
  readonly type: ChangeType.PAGE_MODE;
63
68
  value: {
@@ -65,6 +70,11 @@ export interface PageModeChange {
65
70
  old?: PageMode;
66
71
  };
67
72
  }
73
+ export interface PageModeChangeWithPageModel extends PageModeChange {
74
+ pageModel: {
75
+ model: PageModelData;
76
+ };
77
+ }
68
78
  export interface StateChange {
69
79
  readOnly?: boolean;
70
80
  hidden?: boolean;
@@ -246,7 +246,7 @@ export interface IIdentityOption {
246
246
  icon?: string;
247
247
  }
248
248
  /** @category Identities Types */
249
- export declare const enum IdentityTypeIcon {
249
+ export declare enum IdentityTypeIcon {
250
250
  User = "userIcon",
251
251
  Group = "userGroupIcon",
252
252
  UserAndGroup = "userGroupLimitIcon"
@@ -20,7 +20,7 @@ export interface FileChange {
20
20
  newFiles: SASObjectAttachedFile[];
21
21
  changedFile?: SASObjectAttachedFile;
22
22
  }
23
- export declare const enum FileOperationMethod {
23
+ export declare enum FileOperationMethod {
24
24
  CREATE = "CREATE",
25
25
  UPDATE = "UPDATE",
26
26
  DELETE = "DELETE"
package/file/file-api.js CHANGED
@@ -1 +1,6 @@
1
- export {};
1
+ export var FileOperationMethod;
2
+ (function (FileOperationMethod) {
3
+ FileOperationMethod["CREATE"] = "CREATE";
4
+ FileOperationMethod["UPDATE"] = "UPDATE";
5
+ FileOperationMethod["DELETE"] = "DELETE";
6
+ })(FileOperationMethod || (FileOperationMethod = {}));
package/mcp/mcp-api.d.ts CHANGED
@@ -17,6 +17,7 @@ export interface RemoteMCPServerConfig {
17
17
  }
18
18
  export interface BaseMCPServerConfig {
19
19
  name: string;
20
+ title?: string;
20
21
  version: string;
21
22
  }
22
23
  export interface StreamableMCPServerConfig extends BaseMCPServerConfig, RemoteMCPServerConfig {
package/mcp/mcp-api.js CHANGED
@@ -1,6 +1,8 @@
1
- // eslint-disable-next-line no-restricted-imports
1
+ // eslint-disable-next-line no-restricted-imports -- helper fns
2
2
  import { expectType } from "../../shared/util/helper-functions";
3
3
  expectType(true);
4
4
  expectType(true);
5
5
  expectType(true);
6
6
  expectType(true);
7
+ expectType(true);
8
+ expectType(true);
@@ -282,4 +282,5 @@ export interface OptionsForGetRelationshipsForObjectType {
282
282
  includeHeterogeneous?: boolean;
283
283
  includeMultipleTypeRelationships?: boolean;
284
284
  expandMultipleRelationshipsToSingle?: boolean;
285
+ filterToRelationshipIds?: number[];
285
286
  }
@@ -1,7 +1,9 @@
1
- import { Comment, Relationship, StoredObjectFieldDTO } from "../svi-datahub";
1
+ import { Comment, Relationship, RelationshipDTO, StoredObjectFieldDTO } from "../svi-datahub";
2
2
  import { FileOperation } from "../file/file-api";
3
- import { PageModel } from "../page-model/page-model-api";
3
+ import { PageModel, PageModelData } from "../page-model/page-model-api";
4
4
  import { ClientSheet, Sheet } from "../sheet/sheet-api";
5
+ import { PageViewerApi } from "../component/bindings";
6
+ import { PageDataChange, PageModeChange } from "../control";
5
7
  export interface ObjectIdentifier {
6
8
  id: string;
7
9
  type: string;
@@ -482,6 +484,13 @@ export interface ObjectRelationship {
482
484
  };
483
485
  qualifiedTypeName?: string;
484
486
  }
487
+ export interface ObjectRelationshipMultiple extends ObjectRelationship {
488
+ fromId?: string;
489
+ fromEntityType?: string;
490
+ toId?: string;
491
+ toEntityType?: string;
492
+ operation?: string;
493
+ }
485
494
  export interface AttachmentRow {
486
495
  description?: string;
487
496
  location: string;
@@ -534,14 +543,113 @@ export interface DisplayTextFields {
534
543
  name: string;
535
544
  displayIndex: number;
536
545
  }
546
+ export declare enum SearchAndCreateStep {
547
+ Search = "search",
548
+ SearchResults = "searchResults",
549
+ Entity = "entity",
550
+ Relationship = "relationship"
551
+ }
552
+ interface SearchAndCreatePanelContext {
553
+ [SearchAndCreateStep.Search]: {
554
+ doSearch: (query: string, additionalModes?: string[]) => void;
555
+ updateQuery: (query: string) => void;
556
+ query: {
557
+ text: string;
558
+ };
559
+ };
560
+ [SearchAndCreateStep.SearchResults]: {
561
+ query: {
562
+ text: string;
563
+ };
564
+ updateSelection: (results: Array<{
565
+ id: string;
566
+ type: string;
567
+ }>) => void;
568
+ };
569
+ [SearchAndCreateStep.Entity]: {
570
+ setPageViewerApi(api: PageViewerApi): void;
571
+ onPageChange(change?: PageDataChange | PageModeChange): void;
572
+ newPageModel: {
573
+ model?: PageModel | PageModelData | null;
574
+ };
575
+ selectedItems: Array<{
576
+ id?: string;
577
+ type?: string;
578
+ title?: string;
579
+ }> | null | undefined;
580
+ };
581
+ [SearchAndCreateStep.Relationship]: {
582
+ updateLinkReason: (linkReason: Relationship) => void;
583
+ onPageChange(change?: PageDataChange | PageModeChange): void;
584
+ setPageViewerApi(api: PageViewerApi): void;
585
+ newPageModel: {
586
+ model?: PageModel | PageModelData | null;
587
+ };
588
+ selectedItems: Array<{
589
+ id?: string;
590
+ type?: string;
591
+ title?: string;
592
+ }> | null | undefined;
593
+ };
594
+ }
595
+ export interface SearchAndCreateFooterContext {
596
+ query?: {
597
+ text: string;
598
+ };
599
+ selectedItems?: Array<{
600
+ id?: string;
601
+ type?: string;
602
+ title?: string;
603
+ }> | null;
604
+ linkReason?: Relationship;
605
+ newPageModel?: {
606
+ model?: PageModel | PageModelData | null;
607
+ };
608
+ relationshipValues?: Record<string, any>;
609
+ doSearch: (queryText?: string) => void;
610
+ commit: () => void;
611
+ relateToSelected: () => void;
612
+ relateToNew: () => void;
613
+ close: (result?: unknown) => void;
614
+ }
615
+ interface BaseButton {
616
+ label: string;
617
+ primary?: boolean;
618
+ disabled?: boolean;
619
+ }
620
+ export type SearchAndCreateDialogButton = (BaseButton & {
621
+ onClick: () => void | Promise<void>;
622
+ }) | (BaseButton & {
623
+ items: Array<{
624
+ text: string;
625
+ click: () => void;
626
+ }>;
627
+ });
628
+ export interface CustomSearchAndCreateStep<Step extends SearchAndCreateStep> {
629
+ panel?: {
630
+ render: (container: HTMLDivElement, context: SearchAndCreatePanelContext[Step]) => void;
631
+ };
632
+ footer?: {
633
+ getButtons: (context: SearchAndCreateFooterContext) => SearchAndCreateDialogButton[];
634
+ };
635
+ }
636
+ export type CustomSearchAndCreateSteps = {
637
+ [Step in SearchAndCreateStep]?: CustomSearchAndCreateStep<Step>;
638
+ };
537
639
  export interface SearchOrCreateAndLinkDialogBase<T> {
538
640
  entityName: string;
539
641
  entityLabel: string;
642
+ entityNames?: string[];
643
+ entityLabels?: string[];
540
644
  onClose?: (result?: T) => Promise<boolean>;
541
645
  /**
542
646
  * Values returned on the close of the dialog box. May be undefined when dialog box is cancelled.
543
647
  */
544
648
  result?: T;
649
+ multipleSearchChoice?: boolean;
650
+ showPageViewer?: boolean;
651
+ customSteps?: CustomSearchAndCreateSteps;
652
+ customResult?: unknown;
545
653
  }
546
654
  export interface CreateRelationshipDialogModel<T> extends SearchOrCreateAndLinkDialogBase<T> {
547
655
  relateToParentName: string;
@@ -561,4 +669,18 @@ export interface CreateRelateToModel extends CreateRelationshipDialogResultModel
561
669
  model: PageModel;
562
670
  };
563
671
  }
672
+ export interface IRelationshipWithLabel extends RelationshipDTO {
673
+ relationshipLabel: string;
674
+ }
675
+ export type APISelectedItem = ObjectIdentifier & {
676
+ title?: string;
677
+ };
678
+ export interface RelationshipInformation {
679
+ relationshipTypeId?: number;
680
+ relationshipValues?: Record<string, any>;
681
+ selectedItemTitle?: string;
682
+ requiredFieldsStatus?: any;
683
+ entityIconClass?: string;
684
+ entityType?: string;
685
+ }
564
686
  export {};
@@ -16,3 +16,10 @@ export var ConditionFactType;
16
16
  ConditionFactType["Field"] = "FIELD";
17
17
  ConditionFactType["Condition"] = "CONDITION_REFERENCE";
18
18
  })(ConditionFactType || (ConditionFactType = {}));
19
+ export var SearchAndCreateStep;
20
+ (function (SearchAndCreateStep) {
21
+ SearchAndCreateStep["Search"] = "search";
22
+ SearchAndCreateStep["SearchResults"] = "searchResults";
23
+ SearchAndCreateStep["Entity"] = "entity";
24
+ SearchAndCreateStep["Relationship"] = "relationship";
25
+ })(SearchAndCreateStep || (SearchAndCreateStep = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sassoftware/vi-api",
3
- "version": "1.55.0",
3
+ "version": "1.56.1",
4
4
  "description": "Types used in the SAS Visual Investigator API",
5
5
  "keywords": [
6
6
  "SAS",
@@ -11,7 +11,7 @@ export declare enum PageMode {
11
11
  View = "view",
12
12
  Design = "design"
13
13
  }
14
- export declare const enum ServerPageMode {
14
+ export declare enum ServerPageMode {
15
15
  CREATE = "C",
16
16
  EDIT = "E",
17
17
  VIEW = "V"
@@ -5,6 +5,12 @@ export var PageMode;
5
5
  PageMode["View"] = "view";
6
6
  PageMode["Design"] = "design";
7
7
  })(PageMode || (PageMode = {}));
8
+ export var ServerPageMode;
9
+ (function (ServerPageMode) {
10
+ ServerPageMode["CREATE"] = "C";
11
+ ServerPageMode["EDIT"] = "E";
12
+ ServerPageMode["VIEW"] = "V";
13
+ })(ServerPageMode || (ServerPageMode = {}));
8
14
  /**
9
15
  * Page model events which can have pre-event or post-event hooks.
10
16
  */
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2026-03-03 09:09:10.
3
+ // Generated using typescript-generator version 2.15.527 on 2025-10-03 08:30:00.
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": "10.0.8",
3
+ "version": "9.1.2",
4
4
  "types": "index.d.ts"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { MapBoundedBoxFilter, MapBoundedPolygonFilter, MapRadiusFilter, MapShapeFilter, QueryMode, SearchRepresentation, SearchResponse, SummaryVisualizationResponse } from "../../svi-sand";
2
- import { CreateRelationshipDialogModel, CreateRelationshipDialogResultModel, ObjectIdentifier, SearchOrCreateAndLinkDialogBase } from "../../object/object-api";
2
+ import { CreateDialogResponse, CreateRelationshipDialogModel, CreateRelationshipDialogResultModel, ObjectIdentifier, SearchOrCreateAndLinkDialogBase } from "../../object/object-api";
3
3
  import { QueryBuilderModel, SearchApi } from "../search-api";
4
4
  export declare enum SearchVisualization {
5
5
  Summary = "summary",
@@ -40,9 +40,36 @@ export interface NetworkData {
40
40
  };
41
41
  numNodes: number;
42
42
  }
43
+ export interface LinkStatusErrorResponse {
44
+ errorCode?: number;
45
+ message?: string;
46
+ details?: string[];
47
+ id?: string;
48
+ version?: number;
49
+ httpStatusCode?: number;
50
+ }
51
+ export interface LinkStatusResult {
52
+ link: {
53
+ id?: string;
54
+ relationshipTypeName?: string;
55
+ fromEntityType?: string;
56
+ fromId?: string;
57
+ toEntityType?: string;
58
+ toId?: string;
59
+ operation?: string;
60
+ error?: LinkStatusErrorResponse;
61
+ };
62
+ success?: boolean;
63
+ error?: string;
64
+ }
43
65
  export type SearchAndCreateDialogModel = CreateRelationshipDialogModel<SearchAndCreateResponse>;
44
66
  export interface SearchDialogModel extends SearchOrCreateAndLinkDialogBase<SearchDialogResponse> {
45
67
  canCreate?: boolean;
68
+ canCreateMap?: Record<string, boolean>;
69
+ initialQuery?: string;
70
+ initialCreateData?: Record<string, unknown>;
71
+ linkStatusResults?: LinkStatusResult[];
72
+ originalWizardResults?: CreateDialogResponse[];
46
73
  }
47
74
  export interface SearchDialogResponse {
48
75
  selectedItem?: SearchObject;
@@ -1,20 +1,20 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2026-03-05 16:03:08.
3
+ // Generated using typescript-generator version 2.15.527 on 2025-11-04 14:56:10.
4
4
 
5
5
  export interface SecuredApiMeta {
6
+ experimental?: boolean;
6
7
  developmentStartYear?: number;
7
8
  developmentEndYear?: number;
8
9
  applicationVersion?: string;
9
10
  serviceId?: string;
10
- experimental?: boolean;
11
11
  build?: SecuredBuild;
12
12
  apiVersion?: number;
13
13
  }
14
14
 
15
15
  export interface SecuredBuild {
16
- buildVersion?: string;
17
16
  sourceId?: string;
17
+ buildVersion?: string;
18
18
  sourceTimeStamp?: string;
19
19
  applicationVersion?: string;
20
20
  timeStamp?: string;
@@ -27,10 +27,10 @@ export interface Api extends Serializable {
27
27
 
28
28
  export interface ApiMeta extends Serializable {
29
29
  build?: Build;
30
+ experimental?: boolean;
30
31
  developmentStartYear?: number;
31
32
  developmentEndYear?: number;
32
33
  serviceId?: string;
33
- experimental?: boolean;
34
34
  apiVersion?: number;
35
35
  }
36
36
 
@@ -47,8 +47,8 @@ export interface ResourceMediaTypes {
47
47
  }
48
48
 
49
49
  export interface Build extends Serializable {
50
- buildVersion?: string;
51
50
  sourceId?: string;
51
+ buildVersion?: string;
52
52
  sourceTimeStamp?: string;
53
53
  applicationVersion?: string;
54
54
  timeStamp?: string;
@@ -248,17 +248,6 @@ export interface LabelActionItem extends ActionItem {
248
248
  labelType?: LabelValueType;
249
249
  }
250
250
 
251
- export interface RelatedObjectOperationReference extends ActionItem {
252
- type?: ActionItemType;
253
- objectDataType?: ObjectDataType;
254
- objectTypeName?: string;
255
- objectTypeDisplayLabel?: string;
256
- objectId?: string;
257
- objectDisplayLabel?: string;
258
- operation?: string;
259
- versionBeforeChange?: number;
260
- }
261
-
262
251
  export interface SubActionItem extends ActionItem {
263
252
  type?: ActionItemType;
264
253
  action?: string;
@@ -459,9 +448,6 @@ export interface DataServicesController {
459
448
  export interface DatahubHandlerExceptionResolver extends HandlerExceptionResolver, Ordered {
460
449
  }
461
450
 
462
- export interface DocumentBulkPatchController {
463
- }
464
-
465
451
  export interface DocumentController {
466
452
  }
467
453
 
@@ -483,9 +469,6 @@ export interface EndpointRow extends JavaLangRecord {
483
469
  method?: string;
484
470
  }
485
471
 
486
- export interface EndpointSummaryControllerTest {
487
- }
488
-
489
472
  export interface FileAssociationResponse extends FileAssociation {
490
473
  links?: RestRepresentationsLink[];
491
474
  }
@@ -749,14 +732,14 @@ export interface CoreEntity extends LocalizableObject, Versioned, NamedObject, S
749
732
  borderColor?: string;
750
733
  borderWidth?: number;
751
734
  scale?: number;
735
+ displayTextElements?: SortableNameReference[];
736
+ linkDisplayTextElements?: SortableNameReference[];
752
737
  useForNetworkBuild?: boolean;
753
738
  temporalSplitting?: boolean;
754
739
  compounds?: CoreCompound[];
755
740
  nodeDecorations?: NodeDecorationEntity[];
756
741
  additionalLabel?: string;
757
742
  requiresMultipleContributors?: boolean;
758
- displayTextElements?: SortableNameReference[];
759
- linkDisplayTextElements?: SortableNameReference[];
760
743
  }
761
744
 
762
745
  export interface CoreIcon extends AuditableObject, Versioned, NamedObject, Serializable, SolutionAssignedEntity {
@@ -809,14 +792,14 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
809
792
  dashType?: string;
810
793
  styles?: LinkStyleEntity[];
811
794
  primaryKeyFields?: CoreRelationshipField[];
812
- heterogeneous?: boolean;
795
+ internalHeterogeneous?: boolean;
813
796
  attributeFields?: CoreRelationshipField[];
814
797
  nonAttributeFieldNames?: string[];
815
798
  foreignKeyFieldNames?: string[];
816
- internalHeterogeneous?: boolean;
817
799
  reverseLabel?: string;
818
- qualifiedName?: string;
819
800
  link?: boolean;
801
+ qualifiedName?: string;
802
+ heterogeneous?: boolean;
820
803
  readOnly?: boolean;
821
804
  }
822
805
 
@@ -894,13 +877,13 @@ export interface CoreTransaction extends CoreDataObject {
894
877
  lineColorFieldName?: string;
895
878
  lineColorFunctionType?: AggregateFunctionType;
896
879
  primaryKeyFields?: CoreDataField<any>[];
897
- heterogeneous?: boolean;
898
880
  toHeterogeneous?: boolean;
899
881
  fromHeterogeneous?: boolean;
900
882
  fullHeterogeneous?: boolean;
901
- toHeterogeneousAndFromObjectIsIndexable?: boolean;
902
883
  fromHeterogeneousAndToObjectIsIndexable?: boolean;
903
884
  nonHeterogeneousAndBothSidesAreIndexable?: boolean;
885
+ toHeterogeneousAndFromObjectIsIndexable?: boolean;
886
+ heterogeneous?: boolean;
904
887
  }
905
888
 
906
889
  export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
@@ -2005,8 +1988,8 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
2005
1988
  username?: string;
2006
1989
  connectionError?: string;
2007
1990
  defaultSchemaName?: string;
2008
- password?: string;
2009
1991
  url?: string;
1992
+ password?: string;
2010
1993
  reindexRequired?: boolean;
2011
1994
  postedTimestamp?: number;
2012
1995
  casDistributedDataLoadSupported?: boolean;
@@ -2429,12 +2412,6 @@ export interface EntityTypeOperations {
2429
2412
  export interface EntityTypeUtils {
2430
2413
  }
2431
2414
 
2432
- export interface ImmutableMetadataPropertyCacheExtractor {
2433
- }
2434
-
2435
- export interface UnsafeCacheRetriever<V> extends BaseCacheRetriever<V> {
2436
- }
2437
-
2438
2415
  export interface MetahubClientConfig {
2439
2416
  }
2440
2417
 
@@ -2782,22 +2759,22 @@ export interface DataField {
2782
2759
  displayInTimeZone?: string;
2783
2760
  showTimeZone?: boolean;
2784
2761
  masked?: boolean;
2785
- primaryKeyUserSelected?: boolean;
2786
2762
  authorizedToRevealMasked?: UserGroupChooserSelection[];
2763
+ primaryKeyUserSelected?: boolean;
2787
2764
  redacted?: AbstractRedactionRuleUnion;
2788
2765
  requiredConditionally?: ConditionalRule;
2789
2766
  readOnlyConditionally?: ConditionalRule;
2790
- ownerName?: string;
2791
2767
  currentUserIsAuthorizedToReveal?: boolean;
2792
- label?: string;
2768
+ ownerName?: string;
2793
2769
  required?: boolean;
2794
2770
  columnName?: string;
2795
2771
  scale?: number;
2796
- precision?: number;
2772
+ label?: string;
2797
2773
  name?: string;
2798
2774
  length?: number;
2799
2775
  id?: number;
2800
2776
  readOnly?: boolean;
2777
+ precision?: number;
2801
2778
  description?: string;
2802
2779
  }
2803
2780
 
@@ -2805,16 +2782,16 @@ export interface DataObject extends SolutionAssignedDTO {
2805
2782
  historyEnabled?: boolean;
2806
2783
  createdAtTimeFieldName?: string;
2807
2784
  validFromFieldName?: string;
2785
+ dataStoreName?: string;
2808
2786
  lastUpdatedAtTimeFieldName?: string;
2809
2787
  systemReserved?: boolean;
2788
+ allowedRedactedFieldGroups?: string[];
2810
2789
  validToFieldName?: string;
2811
2790
  displayTextFields?: SortableNameReference[];
2812
- allowedRedactedFieldGroups?: string[];
2813
- dataStoreName?: string;
2814
2791
  dataStoreDefaultSchemaName?: string;
2815
2792
  dataStoreAssignedTimeZone?: string;
2816
- label?: string;
2817
2793
  tableName?: string;
2794
+ label?: string;
2818
2795
  name?: string;
2819
2796
  fields?: DataField[];
2820
2797
  id?: number;
@@ -2865,22 +2842,22 @@ export interface EnrichedDocument {
2865
2842
  }
2866
2843
 
2867
2844
  export interface Entity extends SolutionAssignedDTO {
2868
- defaultRegularIcon?: Icon;
2869
2845
  nodeColor?: string;
2870
2846
  nodeShape?: string;
2871
2847
  markerColor?: string;
2872
- compounds?: Compound[];
2848
+ defaultRegularIcon?: Icon;
2873
2849
  borderColor?: string;
2874
2850
  borderWidth?: number;
2875
2851
  useForNetworkBuild?: boolean;
2876
2852
  temporalSplitting?: boolean;
2853
+ compounds?: Compound[];
2877
2854
  displayTextElements?: SortableNameReference[];
2878
2855
  linkDisplayTextElements?: SortableNameReference[];
2879
2856
  requiresMultipleContributors?: boolean;
2880
2857
  publishCode?: PublishCode;
2881
2858
  defaultMapIcon?: Icon;
2882
- label?: string;
2883
2859
  scale?: number;
2860
+ label?: string;
2884
2861
  name?: string;
2885
2862
  id?: number;
2886
2863
  }
@@ -2937,8 +2914,8 @@ export interface ReferenceListSummary {
2937
2914
  }
2938
2915
 
2939
2916
  export interface Relationship extends DataObject {
2940
- fromObjectName?: string;
2941
2917
  toObjectName?: string;
2918
+ fromObjectName?: string;
2942
2919
  cardinality?: RelationshipCardinality;
2943
2920
  previousCardinality?: RelationshipCardinality;
2944
2921
  symmetric?: boolean;
@@ -2949,13 +2926,13 @@ export interface Relationship extends DataObject {
2949
2926
  fromObjectLabel?: string;
2950
2927
  toObjectLabel?: string;
2951
2928
  toObjectTypeNames?: string[];
2952
- summaryFields?: SortableNameReference[];
2953
2929
  heterogeneousLink?: boolean;
2954
2930
  linkFields?: { [index: string]: string }[];
2955
2931
  joinTableName?: string;
2956
2932
  required?: boolean;
2957
2933
  qualifiedName?: string;
2958
2934
  managed?: boolean;
2935
+ summaryFields?: SortableNameReference[];
2959
2936
  color?: string;
2960
2937
  width?: number;
2961
2938
  type?: RelationshipType;
@@ -2979,10 +2956,10 @@ export interface SortableNameReference {
2979
2956
 
2980
2957
  export interface StoredDataObject extends DataObject {
2981
2958
  relationshipsFrom?: Relationship[];
2982
- defaultRegularIcon?: Icon;
2983
2959
  nodeColor?: string;
2984
2960
  nodeShape?: string;
2985
2961
  markerColor?: string;
2962
+ defaultRegularIcon?: Icon;
2986
2963
  borderColor?: string;
2987
2964
  borderWidth?: number;
2988
2965
  relationshipsTo?: Relationship[];
@@ -2993,16 +2970,16 @@ export interface StoredDataObject extends DataObject {
2993
2970
  requireSearchBeforeCreate?: boolean;
2994
2971
  mobileOfflineEnabled?: boolean;
2995
2972
  styles?: EntityStyleDTO[];
2996
- nodeDecoration?: NodeDecorationDTO;
2997
2973
  defaultMapIcon?: Icon;
2974
+ nodeDecoration?: NodeDecorationDTO;
2998
2975
  scale?: number;
2999
2976
  parentName?: string;
3000
2977
  type?: DataObjectType;
3001
2978
  }
3002
2979
 
3003
2980
  export interface Transaction extends DataObject {
3004
- fromObjectName?: string;
3005
2981
  toObjectName?: string;
2982
+ fromObjectName?: string;
3006
2983
  toObjectTypeFieldName?: string;
3007
2984
  fromObjectTypeFieldName?: string;
3008
2985
  fromObjectRefFieldName?: string;
@@ -3068,9 +3045,9 @@ export interface EntityImpl extends Entity {
3068
3045
  }
3069
3046
 
3070
3047
  export interface FileCategory {
3071
- documentLockRequired?: boolean;
3072
- allowMultiple?: boolean;
3073
3048
  required?: boolean;
3049
+ allowMultiple?: boolean;
3050
+ documentLockRequired?: boolean;
3074
3051
  name?: string;
3075
3052
  displayName?: string;
3076
3053
  }
@@ -3353,10 +3330,10 @@ export interface EventMetadata {
3353
3330
  export interface ValidatableContextMapping extends SolutionAssignedDTO {
3354
3331
  docType?: string;
3355
3332
  uuid?: string;
3333
+ templateId?: any;
3356
3334
  toolbarEnabled?: boolean;
3357
3335
  evaluateOrder?: number;
3358
3336
  fallbackToEvent?: string;
3359
- templateId?: any;
3360
3337
  tag?: string;
3361
3338
  event?: string;
3362
3339
  }
@@ -3850,10 +3827,10 @@ export interface JobEvent extends TypedPayload {
3850
3827
  status?: Status;
3851
3828
  startedAt?: Date;
3852
3829
  links?: RestRepresentationsLink[];
3853
- job?: boolean;
3854
3830
  eventAction?: string;
3855
3831
  eventTopic?: string;
3856
3832
  eventSubject?: string;
3833
+ job?: boolean;
3857
3834
  }
3858
3835
 
3859
3836
  export interface JobUpdatedEvent extends UpdatedEvent {
@@ -3927,8 +3904,8 @@ export interface Class<T> extends Serializable, GenericDeclaration, Type, Annota
3927
3904
 
3928
3905
  export interface ValueInstantiator {
3929
3906
  valueClass?: Class<any>;
3930
- delegateCreator?: AnnotatedWithParams;
3931
3907
  arrayDelegateCreator?: AnnotatedWithParams;
3908
+ delegateCreator?: AnnotatedWithParams;
3932
3909
  valueTypeDesc?: string;
3933
3910
  defaultCreator?: AnnotatedWithParams;
3934
3911
  withArgsCreator?: AnnotatedWithParams;
@@ -3940,13 +3917,12 @@ export interface JavaType extends ResolvedType, Serializable, Type {
3940
3917
  typeHandler?: any;
3941
3918
  valueHandler?: any;
3942
3919
  enumImplType?: boolean;
3943
- iterationType?: boolean;
3920
+ referencedType?: JavaType;
3944
3921
  contentValueHandler?: any;
3945
3922
  contentTypeHandler?: any;
3946
3923
  erasedSignature?: string;
3947
3924
  superClass?: JavaType;
3948
3925
  keyType?: JavaType;
3949
- referencedType?: JavaType;
3950
3926
  interfaces?: JavaType[];
3951
3927
  genericSignature?: string;
3952
3928
  contentType?: JavaType;
@@ -3958,9 +3934,9 @@ export interface JsonDeserializer<T> extends NullValueProvider {
3958
3934
  nullValue?: T;
3959
3935
  emptyAccessPattern?: AccessPattern;
3960
3936
  delegatee?: JsonDeserializer<any>;
3961
- knownPropertyNames?: any[];
3962
3937
  objectIdReader?: ObjectIdReader;
3963
3938
  cachable?: boolean;
3939
+ knownPropertyNames?: any[];
3964
3940
  }
3965
3941
 
3966
3942
  export interface ObjectIdReader extends Serializable {
@@ -3968,8 +3944,8 @@ export interface ObjectIdReader extends Serializable {
3968
3944
  generator?: ObjectIdGenerator<any>;
3969
3945
  resolver?: ObjectIdResolver;
3970
3946
  idProperty?: SettableBeanProperty;
3971
- idType?: JavaType;
3972
3947
  deserializer?: JsonDeserializer<any>;
3948
+ idType?: JavaType;
3973
3949
  }
3974
3950
 
3975
3951
  export interface JsonSerializer<T> extends JsonFormatVisitable {
@@ -4017,8 +3993,8 @@ export interface StackTraceElement extends Serializable {
4017
3993
  methodName?: string;
4018
3994
  fileName?: string;
4019
3995
  lineNumber?: number;
4020
- className?: string;
4021
3996
  nativeMethod?: boolean;
3997
+ className?: string;
4022
3998
  }
4023
3999
 
4024
4000
  export interface DataHubException extends RuntimeException {
@@ -4195,14 +4171,14 @@ export interface ResolvedType {
4195
4171
  containerType?: boolean;
4196
4172
  arrayType?: boolean;
4197
4173
  concrete?: boolean;
4174
+ throwable?: boolean;
4198
4175
  enumType?: boolean;
4199
4176
  collectionLikeType?: boolean;
4200
4177
  mapLikeType?: boolean;
4178
+ referencedType?: ResolvedType;
4201
4179
  parameterSource?: Class<any>;
4202
4180
  rawClass?: Class<any>;
4203
4181
  keyType?: ResolvedType;
4204
- referencedType?: ResolvedType;
4205
- throwable?: boolean;
4206
4182
  interface?: boolean;
4207
4183
  primitive?: boolean;
4208
4184
  final?: boolean;
@@ -4353,10 +4329,6 @@ export interface ResourceStringAccumulator {
4353
4329
  transportResourceStrings?: { [index: string]: string };
4354
4330
  }
4355
4331
 
4356
- export interface BaseCacheRetriever<V> extends CacheRetriever<V> {
4357
- klass?: Class<V>;
4358
- }
4359
-
4360
4332
  export interface ResponseErrorHandler {
4361
4333
  }
4362
4334
 
@@ -4391,6 +4363,9 @@ export interface OfField<F> extends TypeDescriptor {
4391
4363
  primitive?: boolean;
4392
4364
  }
4393
4365
 
4366
+ export interface AnnotationMap extends Annotations {
4367
+ }
4368
+
4394
4369
  export interface TypeResolutionContext {
4395
4370
  }
4396
4371
 
@@ -4401,13 +4376,10 @@ export interface Member {
4401
4376
  declaringClass?: Class<any>;
4402
4377
  }
4403
4378
 
4404
- export interface AnnotationMap extends Annotations {
4405
- }
4406
-
4407
4379
  export interface AnnotatedMember extends Annotated, Serializable {
4380
+ allAnnotations?: AnnotationMap;
4408
4381
  typeContext?: TypeResolutionContext;
4409
4382
  member?: Member;
4410
- allAnnotations?: AnnotationMap;
4411
4383
  declaringClass?: Class<any>;
4412
4384
  fullName?: string;
4413
4385
  }
@@ -4572,7 +4544,6 @@ export interface Annotations {
4572
4544
  export interface Annotated {
4573
4545
  annotated?: AnnotatedElement;
4574
4546
  name?: string;
4575
- static?: boolean;
4576
4547
  public?: boolean;
4577
4548
  type?: JavaType;
4578
4549
  rawType?: Class<any>;
@@ -4592,8 +4563,8 @@ export interface BeanProperty extends Named {
4592
4563
  wrapperName?: PropertyName;
4593
4564
  required?: boolean;
4594
4565
  member?: AnnotatedMember;
4595
- virtual?: boolean;
4596
4566
  type?: JavaType;
4567
+ virtual?: boolean;
4597
4568
  fullName?: PropertyName;
4598
4569
  metadata?: PropertyMetadata;
4599
4570
  }
@@ -4627,11 +4598,6 @@ export interface TemplateAuthorization extends Serializable {
4627
4598
  selectionNm?: string;
4628
4599
  }
4629
4600
 
4630
- export interface CacheRetriever<V> {
4631
- uniqueIdentifier?: string;
4632
- cacheKeyPrefix?: string;
4633
- }
4634
-
4635
4601
  export interface ExpressionVisitor {
4636
4602
  }
4637
4603
 
@@ -4678,14 +4644,12 @@ export interface ParameterizedExpression<T> extends DslTypesExpression<T> {
4678
4644
 
4679
4645
  export type TypeSuffix = "JSON" | "XML";
4680
4646
 
4681
- export type ActionItemType = "subItem" | "labelItem" | "tableItem" | "relatedObjectOperationReference";
4647
+ export type ActionItemType = "subItem" | "labelItem" | "tableItem";
4682
4648
 
4683
4649
  export type ActionTableValueType = "BOOLEAN" | "STRING" | "INTEGER" | "DECIMAL" | "DATE" | "TIMESTAMP" | "TIMESTAMP_WITH_TIME_ZONE" | "JSON" | "HTML" | "REFERENCE_DATA" | "USER_GROUP" | "MIME_TYPE";
4684
4650
 
4685
4651
  export type LabelValueType = "STRING" | "HTML" | "MIME_TYPE";
4686
4652
 
4687
- export type ObjectDataType = "DOCUMENT";
4688
-
4689
4653
  export type FieldRestrictionRestrictionType = "required" | "readOnly" | "maxLength" | "masked" | "systemReserved" | "fieldDataType" | "precision" | "scale" | "constrainingListName" | "cascadingReferenceDataFilterByCode" | "cascadingReferenceDataFilterByField" | "allowMultipleSelections" | "userSelectionStrategy";
4690
4654
 
4691
4655
  export type MethodType = "CREATE" | "UPDATE" | "DELETE";
@@ -4802,7 +4766,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
4802
4766
 
4803
4767
  export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
4804
4768
 
4805
- 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" | "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";
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";
4806
4770
 
4807
4771
  export type DataStoreType = "RELATIONAL";
4808
4772
 
@@ -4820,7 +4784,7 @@ export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PRO
4820
4784
 
4821
4785
  export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
4822
4786
 
4823
- export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "SIMPLE_NAME" | "DEDUCTION" | "CUSTOM";
4787
+ export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "DEDUCTION" | "CUSTOM";
4824
4788
 
4825
4789
  export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
4826
4790
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-datahub",
3
- "version": "17.49.20",
3
+ "version": "17.44.21",
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 2026-03-03 09:09:44.
3
+ // Generated using typescript-generator version 2.15.527 on 2025-10-03 08:29:02.
4
4
 
5
5
  export interface ApplicationSetting extends ResponsesErrorResponse {
6
6
  name?: string;
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-sand",
3
- "version": "20.0.8",
3
+ "version": "19.4.2",
4
4
  "types": "index.d.ts"
5
5
  }