@sassoftware/vi-api 1.51.2 → 1.54.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.
- package/alert-reps/index.d.ts +70 -14
- package/alert-reps/package.json +1 -1
- package/api.module.js +4 -5
- package/component/bindings.d.ts +1 -0
- package/component/bindings.js +1 -0
- package/config/standardPropertyTypes.js +4 -0
- package/control/control-api.d.ts +5 -0
- package/control/restrictions.d.ts +1 -0
- package/current-user/currentUser-api.js +1 -0
- package/elements/identity-select.js +1 -0
- package/index.d.ts +13 -6
- package/index.js +13 -1
- package/mcp/index.d.ts +1 -0
- package/mcp/index.js +1 -0
- package/mcp/mcp-api.d.ts +75 -0
- package/mcp/mcp-api.js +6 -0
- package/mcp/package.json +9 -0
- package/metadata/metadata-api.d.ts +1 -1
- package/package.json +3 -2
- package/property/property-api.d.ts +31 -0
- package/score-reps/index.d.ts +1 -1
- package/score-reps/package.json +1 -1
- package/shell-tabs/shell-tabs-api.js +1 -0
- package/shell-tabs/shell-tabs-lifecycle-api.js +1 -0
- package/svi-datahub/index.d.ts +37 -35
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +1 -1
- package/svi-sand/package.json +1 -1
- package/init/init-api.d.ts +0 -26
- package/init/init-api.js +0 -83
package/alert-reps/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 2.15.527 on
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2026-02-12 22:23:08.
|
|
4
4
|
|
|
5
5
|
export interface ActionRequestRep {
|
|
6
6
|
version?: number;
|
|
@@ -124,18 +124,6 @@ export interface AlertRep extends BaseRep {
|
|
|
124
124
|
autoActivateScore?: number;
|
|
125
125
|
strategyRangeLow?: number;
|
|
126
126
|
strategyRangeHigh?: number;
|
|
127
|
-
systemServiceTimestamp?: string;
|
|
128
|
-
autoCloseTimestamp?: string;
|
|
129
|
-
autoActivateTimestamp?: string;
|
|
130
|
-
alertVersionTimestamp?: string;
|
|
131
|
-
statusTimestamp?: string;
|
|
132
|
-
dispositionTimestamp?: string;
|
|
133
|
-
suppressionEndTimestamp?: string;
|
|
134
|
-
holdEndTimestamp?: string;
|
|
135
|
-
queueEntryTimestamp?: string;
|
|
136
|
-
assignmentTimestamp?: string;
|
|
137
|
-
checkoutTimestamp?: string;
|
|
138
|
-
userServiceTimestamp?: string;
|
|
139
127
|
}
|
|
140
128
|
|
|
141
129
|
export interface AlertVersionSummaryRep {
|
|
@@ -176,6 +164,14 @@ export interface AlertingDataNestedRep extends TypedPayload {
|
|
|
176
164
|
alertingEvents?: AlertingEventNestedRep<any>[];
|
|
177
165
|
}
|
|
178
166
|
|
|
167
|
+
export interface AlertingEventFieldDescriptionRep {
|
|
168
|
+
fieldName?: string;
|
|
169
|
+
labelText?: string;
|
|
170
|
+
headerText?: string;
|
|
171
|
+
dataType?: string;
|
|
172
|
+
isEnrichment?: boolean;
|
|
173
|
+
}
|
|
174
|
+
|
|
179
175
|
export interface AlertingEventNestedRep<SFE> extends AlertingEventRep {
|
|
180
176
|
scenarioFiredEvents?: SFE[];
|
|
181
177
|
contributingObjects?: ContributingObjectRep[];
|
|
@@ -204,7 +200,7 @@ export interface AlertingEventRep extends BaseRep {
|
|
|
204
200
|
rollingCalculationTimeStamp?: string;
|
|
205
201
|
scoreAggregationPolicy?: string;
|
|
206
202
|
scoreDescription?: string;
|
|
207
|
-
|
|
203
|
+
jobId?: string;
|
|
208
204
|
}
|
|
209
205
|
|
|
210
206
|
export interface BaseRep extends TrackedResource {
|
|
@@ -317,21 +313,29 @@ export interface ExtendedScenarioFiredEventRep extends ScenarioFiredEventRep {
|
|
|
317
313
|
alertingEventId?: string;
|
|
318
314
|
modelName?: string;
|
|
319
315
|
alertTypeCode?: string;
|
|
316
|
+
alertTypeLabel?: string;
|
|
320
317
|
alertTriggerText?: string;
|
|
321
318
|
suppressedFlag?: boolean;
|
|
322
319
|
reasonCode?: string;
|
|
320
|
+
reasonLabel?: string;
|
|
323
321
|
}
|
|
324
322
|
|
|
325
323
|
export interface FieldDescriptionRep {
|
|
326
324
|
version?: number;
|
|
327
325
|
fieldName?: string;
|
|
328
326
|
type?: string;
|
|
327
|
+
dataType?: string;
|
|
329
328
|
size?: number;
|
|
330
329
|
labelText?: string;
|
|
331
330
|
headerText?: string;
|
|
332
331
|
isEnrichment?: boolean;
|
|
333
332
|
}
|
|
334
333
|
|
|
334
|
+
export interface IdRep extends Serializable {
|
|
335
|
+
version?: number;
|
|
336
|
+
id?: string;
|
|
337
|
+
}
|
|
338
|
+
|
|
335
339
|
export interface LogicExpressionRep extends BaseRep {
|
|
336
340
|
conditionCode?: string;
|
|
337
341
|
logicExpressionId?: string;
|
|
@@ -369,6 +373,15 @@ export interface QueueRep extends BaseRep {
|
|
|
369
373
|
version?: number;
|
|
370
374
|
}
|
|
371
375
|
|
|
376
|
+
export interface ReflectionUtilsTest {
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export interface NoAnnotatedFieldsClass {
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
export interface TestClass {
|
|
383
|
+
}
|
|
384
|
+
|
|
372
385
|
export interface RelationshipRep extends Serializable {
|
|
373
386
|
relationshipType?: string;
|
|
374
387
|
fields?: { [index: string]: any };
|
|
@@ -430,17 +443,39 @@ export interface ScenarioDispositionSummaryRequestRep {
|
|
|
430
443
|
startDatetime?: string;
|
|
431
444
|
}
|
|
432
445
|
|
|
446
|
+
export interface ScenarioFieldEventFieldDescriptionRep {
|
|
447
|
+
fieldName?: string;
|
|
448
|
+
labelText?: string;
|
|
449
|
+
headerText?: string;
|
|
450
|
+
dataType?: string;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export interface ScenarioFiredEventBulkDispositionRep extends BaseRep {
|
|
454
|
+
version?: number;
|
|
455
|
+
scenarioFiredEventDispositionReps?: ScenarioFiredEventDispositionRep[];
|
|
456
|
+
scenarioFiredEventFailedDispositionReps?: ScenarioFiredEventFailedDispositionRep[];
|
|
457
|
+
}
|
|
458
|
+
|
|
433
459
|
export interface ScenarioFiredEventDispositionRep extends BaseRep {
|
|
434
460
|
version?: number;
|
|
435
461
|
scenarioFiredEventDispositionId?: string;
|
|
436
462
|
scenarioFiredEventId?: string;
|
|
437
463
|
alertDispositionId?: string;
|
|
464
|
+
alertId?: string;
|
|
438
465
|
resolutionCode?: string;
|
|
439
466
|
resolutionComment?: string;
|
|
440
467
|
reasonCode?: string;
|
|
441
468
|
logicalDeleteFlag?: string;
|
|
442
469
|
}
|
|
443
470
|
|
|
471
|
+
export interface ScenarioFiredEventFailedDispositionRep extends BaseRep {
|
|
472
|
+
version?: number;
|
|
473
|
+
scenarioFiredEventId?: string;
|
|
474
|
+
actionableEntityId?: string;
|
|
475
|
+
alertId?: string;
|
|
476
|
+
errorMessage?: string;
|
|
477
|
+
}
|
|
478
|
+
|
|
444
479
|
export interface ScenarioFiredEventFlatRep extends ScenarioFiredEventRep {
|
|
445
480
|
alertingEventId?: string;
|
|
446
481
|
}
|
|
@@ -449,6 +484,7 @@ export interface ScenarioFiredEventRep extends BaseRep {
|
|
|
449
484
|
version?: number;
|
|
450
485
|
scenarioFiredEventId?: string;
|
|
451
486
|
scenarioFiredEntityType?: string;
|
|
487
|
+
scenarioFiredEntityLabel?: string;
|
|
452
488
|
scenarioFiredEntityId?: string;
|
|
453
489
|
scenarioId?: string;
|
|
454
490
|
scenarioName?: string;
|
|
@@ -470,20 +506,27 @@ export interface ScenarioFiredEventRep extends BaseRep {
|
|
|
470
506
|
messageValuesJsonAsText?: string;
|
|
471
507
|
weight?: number;
|
|
472
508
|
recommendedQueueId?: string;
|
|
509
|
+
recommendedQueueName?: string;
|
|
473
510
|
contextRelationshipName?: string;
|
|
474
511
|
contextTimeStampFieldName?: string;
|
|
512
|
+
contextTimeStampFieldLabel?: string;
|
|
475
513
|
contextStartTimeStamp?: string;
|
|
476
514
|
contextEndTimeStamp?: string;
|
|
477
515
|
replicateFlag?: boolean;
|
|
478
516
|
replicationPolicy?: ScenarioFiredEventReplicationPolicyType;
|
|
479
517
|
externalReplicationEntityName?: string;
|
|
518
|
+
externalReplicationEntityLabel?: string;
|
|
480
519
|
externalReplicationEntitySFEIdFieldName?: string;
|
|
520
|
+
externalReplicationEntitySFEIdFieldLabel?: string;
|
|
481
521
|
contributingObjects?: ContributingObjectRep[];
|
|
482
522
|
currentDispositionResolutionCode?: string;
|
|
523
|
+
currentDispositionResolutionLabel?: string;
|
|
483
524
|
currentProductiveUserId?: string;
|
|
525
|
+
currentProductiveUserName?: string;
|
|
484
526
|
currentProductiveTimeStamp?: string;
|
|
485
527
|
currentDispositionComment?: string;
|
|
486
528
|
receivedScenarioFiredEntityType?: string;
|
|
529
|
+
receivedScenarioFiredEntityLabel?: string;
|
|
487
530
|
receivedScenarioFiredEntityId?: string;
|
|
488
531
|
valueText?: string;
|
|
489
532
|
valueNumeric?: number;
|
|
@@ -496,8 +539,18 @@ export interface ScenarioFiredEventRep extends BaseRep {
|
|
|
496
539
|
segmentGroupId?: string;
|
|
497
540
|
entitySegmentCode?: string;
|
|
498
541
|
appliedSegmentCode?: string;
|
|
542
|
+
createdByName?: string;
|
|
543
|
+
modifiedByName?: string;
|
|
499
544
|
currentProductiveTimestamp?: string;
|
|
500
545
|
valueTimestamp?: string;
|
|
546
|
+
value?: any;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
export interface ScenarioRep extends BaseRep {
|
|
550
|
+
scenarioId?: string;
|
|
551
|
+
scenarioName?: string;
|
|
552
|
+
strategyId?: string;
|
|
553
|
+
version?: number;
|
|
501
554
|
}
|
|
502
555
|
|
|
503
556
|
export interface ScenarioTagRep extends BaseRep {
|
|
@@ -636,6 +689,9 @@ export interface MapType {
|
|
|
636
689
|
entry?: MapEntryType[];
|
|
637
690
|
}
|
|
638
691
|
|
|
692
|
+
export interface ReflectionUtils {
|
|
693
|
+
}
|
|
694
|
+
|
|
639
695
|
export interface Link extends Serializable, Comparable<Link> {
|
|
640
696
|
method?: string;
|
|
641
697
|
rel?: string;
|
package/alert-reps/package.json
CHANGED
package/api.module.js
CHANGED
|
@@ -30,6 +30,7 @@ import { TraversalApiService } from "./traversal/traversal-api.service";
|
|
|
30
30
|
import { PageTemplateApiService } from "./page-template/page-template-api.service";
|
|
31
31
|
import { PageSharedModule } from "../spb/shared/spb-shared.module";
|
|
32
32
|
import { HubCommonsModule } from "../fdh/hub-commons/hub-commons.module";
|
|
33
|
+
import { McpApiService } from "./mcp/mcp-api.service";
|
|
33
34
|
let ApiModule = class ApiModule {
|
|
34
35
|
};
|
|
35
36
|
ApiModule = __decorate([
|
|
@@ -57,13 +58,11 @@ ApiModule = __decorate([
|
|
|
57
58
|
SearchApiService,
|
|
58
59
|
TabApiService,
|
|
59
60
|
ThemeApiService,
|
|
60
|
-
TraversalApiService
|
|
61
|
+
TraversalApiService,
|
|
62
|
+
McpApiService
|
|
61
63
|
],
|
|
62
64
|
// Import modules which bootstrap used AngularJs injectables
|
|
63
|
-
imports: [
|
|
64
|
-
PageSharedModule,
|
|
65
|
-
HubCommonsModule
|
|
66
|
-
]
|
|
65
|
+
imports: [PageSharedModule, HubCommonsModule]
|
|
67
66
|
})
|
|
68
67
|
], ApiModule);
|
|
69
68
|
export { ApiModule };
|
package/component/bindings.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface PageViewerApi {
|
|
|
19
19
|
save: () => Promise<void>;
|
|
20
20
|
isDirty: () => boolean;
|
|
21
21
|
isValid: () => Promise<boolean>;
|
|
22
|
+
getPageModel: () => PageModel | undefined;
|
|
22
23
|
}
|
|
23
24
|
export type PageViewerBindings = CreateObjectPageBindings | EditObjectPageBindings | ViewObjectPageBindings | StaticDataPageBindings | PageBindings;
|
|
24
25
|
export declare enum PageViewerBindingsType {
|
package/component/bindings.js
CHANGED
|
@@ -51,4 +51,8 @@ export var StandardPropertyTypes;
|
|
|
51
51
|
StandardPropertyTypes["Hidden"] = "Hidden";
|
|
52
52
|
StandardPropertyTypes["Disabled"] = "Disabled";
|
|
53
53
|
StandardPropertyTypes["Condition"] = "Condition";
|
|
54
|
+
/**
|
|
55
|
+
* @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
|
+
StandardPropertyTypes["PromptTemplate"] = "PromptTemplate";
|
|
54
58
|
})(StandardPropertyTypes || (StandardPropertyTypes = {}));
|
package/control/control-api.d.ts
CHANGED
|
@@ -495,6 +495,11 @@ export interface ControlPageApi extends ControlPageApiBase {
|
|
|
495
495
|
* @returns A boolean value that checks whether the sliding panel is pinned.
|
|
496
496
|
*/
|
|
497
497
|
isSlidingPanelPinned(): boolean | undefined;
|
|
498
|
+
/**
|
|
499
|
+
* Gives whether a loading mask is shown for the page.
|
|
500
|
+
* This loading mask is shown when the page is saving or a disposition is in progress.
|
|
501
|
+
*/
|
|
502
|
+
isLoadingMaskShown(): boolean;
|
|
498
503
|
}
|
|
499
504
|
/**
|
|
500
505
|
* Methods related to files.
|
|
@@ -31,6 +31,7 @@ export interface ReferenceDataRestrictions extends FieldRestrictions {
|
|
|
31
31
|
cascadingReferenceDataName?: string;
|
|
32
32
|
cascadingReferenceDataFilterByCode?: string;
|
|
33
33
|
cascadingReferenceDataFilterByField?: string;
|
|
34
|
+
cascadingReferenceDataFilterByParentCode?: string;
|
|
34
35
|
}
|
|
35
36
|
export type UserGroupStrategy = "USERS" | "GROUPS" | "USERS_AND_GROUPS";
|
|
36
37
|
export interface UserGroupRestrictions extends FieldRestrictions {
|
package/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import { TraversalApi } from "./traversal/traversal-api";
|
|
|
23
23
|
import { ShellTabsApi } from "./shell-tabs/shell-tabs-api";
|
|
24
24
|
import { PageTemplateApi } from "./page-template/page-template-api";
|
|
25
25
|
import { InitApi } from "./init";
|
|
26
|
+
import { McpApi } from "./mcp";
|
|
26
27
|
/**
|
|
27
28
|
* The SVI API contains common API functions and can be accessed directly from the window via `window.sas.vi`
|
|
28
29
|
*
|
|
@@ -58,6 +59,7 @@ export interface SviClientApi extends SviCommonApi {
|
|
|
58
59
|
search: ClientSearchApi;
|
|
59
60
|
sheet: SheetApi;
|
|
60
61
|
tab: TabApi;
|
|
62
|
+
mcpApi?: McpApi;
|
|
61
63
|
}
|
|
62
64
|
/**
|
|
63
65
|
* The Admin API.
|
|
@@ -66,9 +68,14 @@ export interface SviAdminApi extends SviCommonApi {
|
|
|
66
68
|
metadata: AdminMetadataApi;
|
|
67
69
|
}
|
|
68
70
|
export type SviApi = SviClientApi | SviAdminApi;
|
|
69
|
-
export type SviWindow = typeof
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
export type SviWindow = typeof globalThis & Window & VIWindowApi;
|
|
72
|
+
export interface VIWindowApi {
|
|
73
|
+
sas: VISASApi;
|
|
74
|
+
}
|
|
75
|
+
export interface VISASApi {
|
|
76
|
+
vi: SviApi;
|
|
77
|
+
viInit: InitApi;
|
|
78
|
+
}
|
|
79
|
+
export declare function getApi<T extends SviApi = SviApi>(): T;
|
|
80
|
+
export declare function isUserAppApi(api: SviApi): api is SviClientApi;
|
|
81
|
+
export declare function isAdminAppApi(api: SviApi): api is SviAdminApi;
|
package/index.js
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export function getApi() {
|
|
2
|
+
const api = globalThis.sas.vi;
|
|
3
|
+
if (typeof api !== "object" || api === null) {
|
|
4
|
+
throw new TypeError("SVI API is not available or not properly initialized");
|
|
5
|
+
}
|
|
6
|
+
return api;
|
|
7
|
+
}
|
|
8
|
+
export function isUserAppApi(api) {
|
|
9
|
+
return "sheet" in api;
|
|
10
|
+
}
|
|
11
|
+
export function isAdminAppApi(api) {
|
|
12
|
+
return !isUserAppApi(api);
|
|
13
|
+
}
|
package/mcp/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./mcp-api";
|
package/mcp/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./mcp-api";
|
package/mcp/mcp-api.d.ts
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Transport } from "@modelcontextprotocol/sdk/shared/transport.js";
|
|
2
|
+
export interface PromptPlaceholderDefinition {
|
|
3
|
+
title: string;
|
|
4
|
+
type: "string" | "number" | "boolean" | "date" | "date-time";
|
|
5
|
+
enumNames?: string[];
|
|
6
|
+
required?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface SimpleContextMenuPrompt {
|
|
9
|
+
label: string;
|
|
10
|
+
parentLabel: string;
|
|
11
|
+
prompt: string;
|
|
12
|
+
placeholders?: Record<string, PromptPlaceholderDefinition>;
|
|
13
|
+
}
|
|
14
|
+
export interface RemoteMCPServerConfig {
|
|
15
|
+
url: string;
|
|
16
|
+
}
|
|
17
|
+
export interface BaseMCPServerConfig {
|
|
18
|
+
name: string;
|
|
19
|
+
version: string;
|
|
20
|
+
}
|
|
21
|
+
export interface StreamableMCPServerConfig extends BaseMCPServerConfig, RemoteMCPServerConfig {
|
|
22
|
+
url: string;
|
|
23
|
+
name: string;
|
|
24
|
+
transport: "streamable";
|
|
25
|
+
headers?: Record<string, string>;
|
|
26
|
+
}
|
|
27
|
+
export interface LocalTransportConfig extends BaseMCPServerConfig {
|
|
28
|
+
name: string;
|
|
29
|
+
version: string;
|
|
30
|
+
transport: "local";
|
|
31
|
+
connect: (transport: Transport) => void;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* This API provides functionality related to extension of MCP (Model Context Protocol) on the VI platform.
|
|
35
|
+
*
|
|
36
|
+
* Accessed from the window at `window.sas.vi.mcp`.
|
|
37
|
+
*
|
|
38
|
+
* @example window.sas.vi.mcp.registerMCPServer(newMcpConfig);
|
|
39
|
+
* @category API
|
|
40
|
+
*/
|
|
41
|
+
export interface McpApi {
|
|
42
|
+
/**
|
|
43
|
+
* @method
|
|
44
|
+
* @description Registers an MCP server with the VI platform using the provided configuration.
|
|
45
|
+
* @param config The configuration object for the MCP server to register.
|
|
46
|
+
* @returns A Promise that resolves when the server has been successfully registered.
|
|
47
|
+
*/
|
|
48
|
+
registerServer(config: StreamableMCPServerConfig | LocalTransportConfig): Promise<void>;
|
|
49
|
+
/**
|
|
50
|
+
* @method
|
|
51
|
+
* @description Deregisters an MCP server from the VI platform using the provided configuration.
|
|
52
|
+
* @param config The configuration object for the MCP server to deregister.
|
|
53
|
+
* @returns A Promise that resolves when the server has been successfully deregistered.
|
|
54
|
+
*/
|
|
55
|
+
deregisterServer(config: StreamableMCPServerConfig | LocalTransportConfig): Promise<void>;
|
|
56
|
+
/**
|
|
57
|
+
* @method
|
|
58
|
+
* @description Registers prompts with the VI platform that can be used in MCP interactions.
|
|
59
|
+
* @param prompts The array of prompts to add to the existing prompts on the system. If a prompt with the same label and parentLabel already exists, it will be ignored.
|
|
60
|
+
* @see SimpleContextMenuPrompt for more detail on prompt definitions.
|
|
61
|
+
* @example window.sas.vi.mcpApi.registerPrompts([{label: "Example Prompt", parentLabel: "Example Prompts", prompt: "Tell me more about Visual Investigator."}]);
|
|
62
|
+
*/
|
|
63
|
+
registerPrompts(prompts: SimpleContextMenuPrompt[]): void;
|
|
64
|
+
}
|
|
65
|
+
export type ValidElicitationDataTypes = number | string | boolean | undefined;
|
|
66
|
+
export type ElicitationDialogResponse = {
|
|
67
|
+
action: "accept";
|
|
68
|
+
data: {
|
|
69
|
+
values: Record<string, ValidElicitationDataTypes>;
|
|
70
|
+
promptResult?: string;
|
|
71
|
+
};
|
|
72
|
+
} | {
|
|
73
|
+
action: "decline" | "cancel";
|
|
74
|
+
data: undefined;
|
|
75
|
+
};
|
package/mcp/mcp-api.js
ADDED
package/mcp/package.json
ADDED
|
@@ -113,7 +113,7 @@ export interface ValidRelationshipTypes {
|
|
|
113
113
|
[relationshipName: string]: RelationshipTypes;
|
|
114
114
|
}
|
|
115
115
|
export interface RelationshipTypes {
|
|
116
|
-
|
|
116
|
+
indexedForSearch: boolean;
|
|
117
117
|
linkTypes: Relationship[];
|
|
118
118
|
name: string;
|
|
119
119
|
searchBeforeCreate: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sassoftware/vi-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.54.1",
|
|
4
4
|
"description": "Types used in the SAS Visual Investigator API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"SAS",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"types": "index.d.ts",
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@types/angular": "^1.7.3",
|
|
35
|
-
"@types/angular-resource": "^1.5.16"
|
|
35
|
+
"@types/angular-resource": "^1.5.16",
|
|
36
|
+
"@modelcontextprotocol/sdk": "^1.20.2"
|
|
36
37
|
}
|
|
37
38
|
}
|
|
@@ -90,6 +90,37 @@ export interface EditorApi {
|
|
|
90
90
|
* @returns A function that stops the handler from being invoked.
|
|
91
91
|
*/
|
|
92
92
|
onPropertyChange(handler: (category: string, property: string, currentValue: any, previousValue: any) => void): () => void;
|
|
93
|
+
/**
|
|
94
|
+
* Methods and properties related to the state of the property editor.
|
|
95
|
+
*/
|
|
96
|
+
readonly state: EditorStateApi;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Methods and properties related to the state of the property editor.
|
|
100
|
+
*
|
|
101
|
+
* @category API
|
|
102
|
+
*/
|
|
103
|
+
export interface EditorStateApi extends EditorState {
|
|
104
|
+
/**
|
|
105
|
+
* Registers a function to be invoked whenever a state change event occurs.
|
|
106
|
+
* This function receives an object that contains information about the change event.
|
|
107
|
+
*
|
|
108
|
+
* @method
|
|
109
|
+
* @param handler {function} Function to be invoked when a state is changed.
|
|
110
|
+
*/
|
|
111
|
+
onChange(handler: (state: EditorState) => void): void;
|
|
112
|
+
}
|
|
113
|
+
export interface EditorState {
|
|
114
|
+
/**
|
|
115
|
+
* Returns the disabled state of the property editor.
|
|
116
|
+
* True if the control is disabled, otherwise false.
|
|
117
|
+
*/
|
|
118
|
+
readonly disabled: boolean;
|
|
119
|
+
/**
|
|
120
|
+
* Returns the required state of the property editor.
|
|
121
|
+
* True if the control is required, otherwise false.
|
|
122
|
+
*/
|
|
123
|
+
readonly required: boolean;
|
|
93
124
|
}
|
|
94
125
|
/**
|
|
95
126
|
* This API relates to page/toolbar control properties in SAS Visual Investigator.
|
package/score-reps/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 2.15.527 on
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2026-02-12 22:28:53.
|
|
4
4
|
|
|
5
5
|
export interface BaseRep extends TrackedResource {
|
|
6
6
|
links?: Link[];
|
package/score-reps/package.json
CHANGED
package/svi-datahub/index.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 2.15.527 on
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2026-02-12 23:01:42.
|
|
4
4
|
|
|
5
5
|
export interface SecuredApiMeta {
|
|
6
|
+
serviceId?: string;
|
|
6
7
|
experimental?: boolean;
|
|
7
8
|
developmentStartYear?: number;
|
|
8
9
|
developmentEndYear?: number;
|
|
9
10
|
applicationVersion?: string;
|
|
10
|
-
serviceId?: string;
|
|
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
|
+
serviceId?: string;
|
|
30
31
|
experimental?: boolean;
|
|
31
32
|
developmentStartYear?: number;
|
|
32
33
|
developmentEndYear?: number;
|
|
33
|
-
serviceId?: string;
|
|
34
34
|
apiVersion?: number;
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -47,10 +47,10 @@ export interface ResourceMediaTypes {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export interface Build extends Serializable {
|
|
50
|
+
buildVersion?: string;
|
|
50
51
|
sourceId?: string;
|
|
51
52
|
sourceTimeStamp?: string;
|
|
52
53
|
applicationVersion?: string;
|
|
53
|
-
buildVersion?: string;
|
|
54
54
|
timeStamp?: string;
|
|
55
55
|
}
|
|
56
56
|
|
|
@@ -732,14 +732,14 @@ export interface CoreEntity extends LocalizableObject, Versioned, NamedObject, S
|
|
|
732
732
|
borderColor?: string;
|
|
733
733
|
borderWidth?: number;
|
|
734
734
|
scale?: number;
|
|
735
|
-
displayTextElements?: SortableNameReference[];
|
|
736
|
-
linkDisplayTextElements?: SortableNameReference[];
|
|
737
735
|
useForNetworkBuild?: boolean;
|
|
738
736
|
temporalSplitting?: boolean;
|
|
739
737
|
compounds?: CoreCompound[];
|
|
740
738
|
nodeDecorations?: NodeDecorationEntity[];
|
|
741
739
|
additionalLabel?: string;
|
|
742
740
|
requiresMultipleContributors?: boolean;
|
|
741
|
+
displayTextElements?: SortableNameReference[];
|
|
742
|
+
linkDisplayTextElements?: SortableNameReference[];
|
|
743
743
|
}
|
|
744
744
|
|
|
745
745
|
export interface CoreIcon extends AuditableObject, Versioned, NamedObject, Serializable, SolutionAssignedEntity {
|
|
@@ -791,12 +791,12 @@ export interface CoreRelationship extends CoreDataObjectWithHistory {
|
|
|
791
791
|
width?: number;
|
|
792
792
|
dashType?: string;
|
|
793
793
|
styles?: LinkStyleEntity[];
|
|
794
|
-
heterogeneous?: boolean;
|
|
795
794
|
primaryKeyFields?: CoreRelationshipField[];
|
|
796
|
-
|
|
795
|
+
heterogeneous?: boolean;
|
|
797
796
|
attributeFields?: CoreRelationshipField[];
|
|
798
797
|
nonAttributeFieldNames?: string[];
|
|
799
798
|
foreignKeyFieldNames?: string[];
|
|
799
|
+
internalHeterogeneous?: boolean;
|
|
800
800
|
reverseLabel?: string;
|
|
801
801
|
qualifiedName?: string;
|
|
802
802
|
link?: boolean;
|
|
@@ -876,14 +876,14 @@ export interface CoreTransaction extends CoreDataObject {
|
|
|
876
876
|
lineWidthFunctionType?: AggregateFunctionType;
|
|
877
877
|
lineColorFieldName?: string;
|
|
878
878
|
lineColorFunctionType?: AggregateFunctionType;
|
|
879
|
-
heterogeneous?: boolean;
|
|
880
879
|
primaryKeyFields?: CoreDataField<any>[];
|
|
880
|
+
heterogeneous?: boolean;
|
|
881
881
|
toHeterogeneous?: boolean;
|
|
882
882
|
fromHeterogeneous?: boolean;
|
|
883
883
|
fullHeterogeneous?: boolean;
|
|
884
|
+
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
884
885
|
fromHeterogeneousAndToObjectIsIndexable?: boolean;
|
|
885
886
|
nonHeterogeneousAndBothSidesAreIndexable?: boolean;
|
|
886
|
-
toHeterogeneousAndFromObjectIsIndexable?: boolean;
|
|
887
887
|
}
|
|
888
888
|
|
|
889
889
|
export interface CoreTransactionField extends CoreDataField<CoreTransaction> {
|
|
@@ -1988,8 +1988,8 @@ export interface DataStoreDTO extends AuditableObjectDTO, Versioned, NamedObject
|
|
|
1988
1988
|
username?: string;
|
|
1989
1989
|
connectionError?: string;
|
|
1990
1990
|
defaultSchemaName?: string;
|
|
1991
|
-
url?: string;
|
|
1992
1991
|
password?: string;
|
|
1992
|
+
url?: string;
|
|
1993
1993
|
reindexRequired?: boolean;
|
|
1994
1994
|
postedTimestamp?: number;
|
|
1995
1995
|
casDistributedDataLoadSupported?: boolean;
|
|
@@ -2759,22 +2759,22 @@ export interface DataField {
|
|
|
2759
2759
|
displayInTimeZone?: string;
|
|
2760
2760
|
showTimeZone?: boolean;
|
|
2761
2761
|
masked?: boolean;
|
|
2762
|
-
authorizedToRevealMasked?: UserGroupChooserSelection[];
|
|
2763
2762
|
primaryKeyUserSelected?: boolean;
|
|
2763
|
+
authorizedToRevealMasked?: UserGroupChooserSelection[];
|
|
2764
2764
|
redacted?: AbstractRedactionRuleUnion;
|
|
2765
2765
|
requiredConditionally?: ConditionalRule;
|
|
2766
2766
|
readOnlyConditionally?: ConditionalRule;
|
|
2767
2767
|
ownerName?: string;
|
|
2768
2768
|
currentUserIsAuthorizedToReveal?: boolean;
|
|
2769
|
-
required?: boolean;
|
|
2770
2769
|
label?: string;
|
|
2770
|
+
required?: boolean;
|
|
2771
2771
|
columnName?: string;
|
|
2772
2772
|
scale?: number;
|
|
2773
|
+
precision?: number;
|
|
2773
2774
|
name?: string;
|
|
2774
2775
|
length?: number;
|
|
2775
2776
|
id?: number;
|
|
2776
2777
|
readOnly?: boolean;
|
|
2777
|
-
precision?: number;
|
|
2778
2778
|
description?: string;
|
|
2779
2779
|
}
|
|
2780
2780
|
|
|
@@ -2846,11 +2846,11 @@ export interface Entity extends SolutionAssignedDTO {
|
|
|
2846
2846
|
nodeColor?: string;
|
|
2847
2847
|
nodeShape?: string;
|
|
2848
2848
|
markerColor?: string;
|
|
2849
|
+
compounds?: Compound[];
|
|
2849
2850
|
borderColor?: string;
|
|
2850
2851
|
borderWidth?: number;
|
|
2851
2852
|
useForNetworkBuild?: boolean;
|
|
2852
2853
|
temporalSplitting?: boolean;
|
|
2853
|
-
compounds?: Compound[];
|
|
2854
2854
|
displayTextElements?: SortableNameReference[];
|
|
2855
2855
|
linkDisplayTextElements?: SortableNameReference[];
|
|
2856
2856
|
requiresMultipleContributors?: boolean;
|
|
@@ -2914,8 +2914,8 @@ export interface ReferenceListSummary {
|
|
|
2914
2914
|
}
|
|
2915
2915
|
|
|
2916
2916
|
export interface Relationship extends DataObject {
|
|
2917
|
-
toObjectName?: string;
|
|
2918
2917
|
fromObjectName?: string;
|
|
2918
|
+
toObjectName?: string;
|
|
2919
2919
|
cardinality?: RelationshipCardinality;
|
|
2920
2920
|
previousCardinality?: RelationshipCardinality;
|
|
2921
2921
|
symmetric?: boolean;
|
|
@@ -2927,13 +2927,13 @@ export interface Relationship extends DataObject {
|
|
|
2927
2927
|
toObjectLabel?: string;
|
|
2928
2928
|
toObjectTypeNames?: string[];
|
|
2929
2929
|
heterogeneousLink?: boolean;
|
|
2930
|
+
summaryFields?: SortableNameReference[];
|
|
2930
2931
|
linkFields?: { [index: string]: string }[];
|
|
2931
2932
|
joinTableName?: string;
|
|
2932
2933
|
required?: boolean;
|
|
2933
|
-
width?: number;
|
|
2934
2934
|
qualifiedName?: string;
|
|
2935
2935
|
managed?: boolean;
|
|
2936
|
-
|
|
2936
|
+
width?: number;
|
|
2937
2937
|
color?: string;
|
|
2938
2938
|
type?: RelationshipType;
|
|
2939
2939
|
}
|
|
@@ -2970,16 +2970,16 @@ export interface StoredDataObject extends DataObject {
|
|
|
2970
2970
|
requireSearchBeforeCreate?: boolean;
|
|
2971
2971
|
mobileOfflineEnabled?: boolean;
|
|
2972
2972
|
styles?: EntityStyleDTO[];
|
|
2973
|
-
defaultMapIcon?: Icon;
|
|
2974
2973
|
nodeDecoration?: NodeDecorationDTO;
|
|
2974
|
+
defaultMapIcon?: Icon;
|
|
2975
2975
|
scale?: number;
|
|
2976
2976
|
parentName?: string;
|
|
2977
2977
|
type?: DataObjectType;
|
|
2978
2978
|
}
|
|
2979
2979
|
|
|
2980
2980
|
export interface Transaction extends DataObject {
|
|
2981
|
-
toObjectName?: string;
|
|
2982
2981
|
fromObjectName?: string;
|
|
2982
|
+
toObjectName?: string;
|
|
2983
2983
|
toObjectTypeFieldName?: string;
|
|
2984
2984
|
fromObjectTypeFieldName?: string;
|
|
2985
2985
|
fromObjectRefFieldName?: string;
|
|
@@ -3045,9 +3045,9 @@ export interface EntityImpl extends Entity {
|
|
|
3045
3045
|
}
|
|
3046
3046
|
|
|
3047
3047
|
export interface FileCategory {
|
|
3048
|
-
required?: boolean;
|
|
3049
3048
|
allowMultiple?: boolean;
|
|
3050
3049
|
documentLockRequired?: boolean;
|
|
3050
|
+
required?: boolean;
|
|
3051
3051
|
name?: string;
|
|
3052
3052
|
displayName?: string;
|
|
3053
3053
|
}
|
|
@@ -3330,10 +3330,10 @@ export interface EventMetadata {
|
|
|
3330
3330
|
export interface ValidatableContextMapping extends SolutionAssignedDTO {
|
|
3331
3331
|
docType?: string;
|
|
3332
3332
|
uuid?: string;
|
|
3333
|
+
templateId?: any;
|
|
3333
3334
|
toolbarEnabled?: boolean;
|
|
3334
3335
|
evaluateOrder?: number;
|
|
3335
3336
|
fallbackToEvent?: string;
|
|
3336
|
-
templateId?: any;
|
|
3337
3337
|
tag?: string;
|
|
3338
3338
|
event?: string;
|
|
3339
3339
|
}
|
|
@@ -3827,10 +3827,10 @@ export interface JobEvent extends TypedPayload {
|
|
|
3827
3827
|
status?: Status;
|
|
3828
3828
|
startedAt?: Date;
|
|
3829
3829
|
links?: RestRepresentationsLink[];
|
|
3830
|
+
job?: boolean;
|
|
3830
3831
|
eventAction?: string;
|
|
3831
3832
|
eventTopic?: string;
|
|
3832
3833
|
eventSubject?: string;
|
|
3833
|
-
job?: boolean;
|
|
3834
3834
|
}
|
|
3835
3835
|
|
|
3836
3836
|
export interface JobUpdatedEvent extends UpdatedEvent {
|
|
@@ -3904,8 +3904,8 @@ export interface Class<T> extends Serializable, GenericDeclaration, Type, Annota
|
|
|
3904
3904
|
|
|
3905
3905
|
export interface ValueInstantiator {
|
|
3906
3906
|
valueClass?: Class<any>;
|
|
3907
|
-
arrayDelegateCreator?: AnnotatedWithParams;
|
|
3908
3907
|
delegateCreator?: AnnotatedWithParams;
|
|
3908
|
+
arrayDelegateCreator?: AnnotatedWithParams;
|
|
3909
3909
|
valueTypeDesc?: string;
|
|
3910
3910
|
defaultCreator?: AnnotatedWithParams;
|
|
3911
3911
|
withArgsCreator?: AnnotatedWithParams;
|
|
@@ -3917,16 +3917,17 @@ export interface JavaType extends ResolvedType, Serializable, Type {
|
|
|
3917
3917
|
typeHandler?: any;
|
|
3918
3918
|
valueHandler?: any;
|
|
3919
3919
|
enumImplType?: boolean;
|
|
3920
|
-
|
|
3920
|
+
iterationType?: boolean;
|
|
3921
3921
|
contentValueHandler?: any;
|
|
3922
3922
|
contentTypeHandler?: any;
|
|
3923
3923
|
erasedSignature?: string;
|
|
3924
3924
|
superClass?: JavaType;
|
|
3925
3925
|
keyType?: JavaType;
|
|
3926
|
+
referencedType?: JavaType;
|
|
3926
3927
|
interfaces?: JavaType[];
|
|
3927
3928
|
genericSignature?: string;
|
|
3928
|
-
contentType?: JavaType;
|
|
3929
3929
|
bindings?: TypeBindings;
|
|
3930
|
+
contentType?: JavaType;
|
|
3930
3931
|
}
|
|
3931
3932
|
|
|
3932
3933
|
export interface JsonDeserializer<T> extends NullValueProvider {
|
|
@@ -3934,9 +3935,9 @@ export interface JsonDeserializer<T> extends NullValueProvider {
|
|
|
3934
3935
|
nullValue?: T;
|
|
3935
3936
|
emptyAccessPattern?: AccessPattern;
|
|
3936
3937
|
delegatee?: JsonDeserializer<any>;
|
|
3938
|
+
knownPropertyNames?: any[];
|
|
3937
3939
|
objectIdReader?: ObjectIdReader;
|
|
3938
3940
|
cachable?: boolean;
|
|
3939
|
-
knownPropertyNames?: any[];
|
|
3940
3941
|
}
|
|
3941
3942
|
|
|
3942
3943
|
export interface ObjectIdReader extends Serializable {
|
|
@@ -3944,8 +3945,8 @@ export interface ObjectIdReader extends Serializable {
|
|
|
3944
3945
|
generator?: ObjectIdGenerator<any>;
|
|
3945
3946
|
resolver?: ObjectIdResolver;
|
|
3946
3947
|
idProperty?: SettableBeanProperty;
|
|
3947
|
-
deserializer?: JsonDeserializer<any>;
|
|
3948
3948
|
idType?: JavaType;
|
|
3949
|
+
deserializer?: JsonDeserializer<any>;
|
|
3949
3950
|
}
|
|
3950
3951
|
|
|
3951
3952
|
export interface JsonSerializer<T> extends JsonFormatVisitable {
|
|
@@ -3993,8 +3994,8 @@ export interface StackTraceElement extends Serializable {
|
|
|
3993
3994
|
methodName?: string;
|
|
3994
3995
|
fileName?: string;
|
|
3995
3996
|
lineNumber?: number;
|
|
3996
|
-
nativeMethod?: boolean;
|
|
3997
3997
|
className?: string;
|
|
3998
|
+
nativeMethod?: boolean;
|
|
3998
3999
|
}
|
|
3999
4000
|
|
|
4000
4001
|
export interface DataHubException extends RuntimeException {
|
|
@@ -4171,14 +4172,14 @@ export interface ResolvedType {
|
|
|
4171
4172
|
containerType?: boolean;
|
|
4172
4173
|
arrayType?: boolean;
|
|
4173
4174
|
concrete?: boolean;
|
|
4174
|
-
throwable?: boolean;
|
|
4175
4175
|
enumType?: boolean;
|
|
4176
4176
|
collectionLikeType?: boolean;
|
|
4177
4177
|
mapLikeType?: boolean;
|
|
4178
|
-
referencedType?: ResolvedType;
|
|
4179
4178
|
parameterSource?: Class<any>;
|
|
4180
4179
|
rawClass?: Class<any>;
|
|
4181
4180
|
keyType?: ResolvedType;
|
|
4181
|
+
throwable?: boolean;
|
|
4182
|
+
referencedType?: ResolvedType;
|
|
4182
4183
|
interface?: boolean;
|
|
4183
4184
|
primitive?: boolean;
|
|
4184
4185
|
final?: boolean;
|
|
@@ -4544,6 +4545,7 @@ export interface Annotations {
|
|
|
4544
4545
|
export interface Annotated {
|
|
4545
4546
|
annotated?: AnnotatedElement;
|
|
4546
4547
|
name?: string;
|
|
4548
|
+
static?: boolean;
|
|
4547
4549
|
public?: boolean;
|
|
4548
4550
|
type?: JavaType;
|
|
4549
4551
|
rawType?: Class<any>;
|
|
@@ -4563,8 +4565,8 @@ export interface BeanProperty extends Named {
|
|
|
4563
4565
|
wrapperName?: PropertyName;
|
|
4564
4566
|
required?: boolean;
|
|
4565
4567
|
member?: AnnotatedMember;
|
|
4566
|
-
type?: JavaType;
|
|
4567
4568
|
virtual?: boolean;
|
|
4569
|
+
type?: JavaType;
|
|
4568
4570
|
fullName?: PropertyName;
|
|
4569
4571
|
metadata?: PropertyMetadata;
|
|
4570
4572
|
}
|
|
@@ -4766,7 +4768,7 @@ export type Status = "pending" | "running" | "stopping" | "cancelled" | "complet
|
|
|
4766
4768
|
|
|
4767
4769
|
export type AccessPattern = "ALWAYS_NULL" | "CONSTANT" | "DYNAMIC";
|
|
4768
4770
|
|
|
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" | "entity_type_not_found" | "condition_owner_not_found" | "template_type_not_found" | "field_value_contains_invalid_characters" | "size_constraint_violation_parameter" | "size_constraint_violation_body" | "character_constraint_violation_parameter" | "character_constraint_violation_body" | "character_constraint_violation_with_allow_list_parameter" | "character_constraint_violation_with_allow_list_body" | "time_zone_constraint_violation_parameter" | "time_zone_constraint_violation_body" | "uuid_constraint_violation_parameter" | "uuid_constraint_violation_body" | "sort_by_constraint_violation_parameter" | "sort_by_constraint_violation_body" | "locale_constraint_violation_parameter" | "locale_constraint_violation_body" | "expression_constraint_violation_parameter" | "expression_constraint_violation_body" | "map_constraint_violation_body" | "entity.type.mismatch" | "empty.rules" | "missing.types" | "invalid.access.combination" | "rules.do.not.exist" | "version.mismatch" | "rules.already.exist" | "version.should.be.null" | "error.removing.rule.group" | "error.adding.group" | "invalid_control_solution_id";
|
|
4771
|
+
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";
|
|
4770
4772
|
|
|
4771
4773
|
export type DataStoreType = "RELATIONAL";
|
|
4772
4774
|
|
|
@@ -4784,7 +4786,7 @@ export type As = "PROPERTY" | "WRAPPER_OBJECT" | "WRAPPER_ARRAY" | "EXTERNAL_PRO
|
|
|
4784
4786
|
|
|
4785
4787
|
export type Nulls = "SET" | "SKIP" | "FAIL" | "AS_EMPTY" | "DEFAULT";
|
|
4786
4788
|
|
|
4787
|
-
export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "DEDUCTION" | "CUSTOM";
|
|
4789
|
+
export type Id = "NONE" | "CLASS" | "MINIMAL_CLASS" | "NAME" | "SIMPLE_NAME" | "DEDUCTION" | "CUSTOM";
|
|
4788
4790
|
|
|
4789
4791
|
export type DataContentUnion = DocumentIdentifier | Document | DocumentLink | DataResolvedEntity;
|
|
4790
4792
|
|
package/svi-datahub/package.json
CHANGED
package/svi-sand/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
// Generated using typescript-generator version 2.15.527 on
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2026-02-12 22:15:19.
|
|
4
4
|
|
|
5
5
|
export interface ApplicationSetting extends ResponsesErrorResponse {
|
|
6
6
|
name?: string;
|
package/svi-sand/package.json
CHANGED
package/init/init-api.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { I18nResources, SviInitEvent, InitApi } from ".";
|
|
2
|
-
export interface ResourceApi {
|
|
3
|
-
registerResourceBundle(bundleName: string, resources: I18nResources): void;
|
|
4
|
-
}
|
|
5
|
-
export declare class SviInitApi implements InitApi {
|
|
6
|
-
private globalI18nResources;
|
|
7
|
-
private appReadyStates;
|
|
8
|
-
private resourceReadyStates;
|
|
9
|
-
private resourceServiceSubject;
|
|
10
|
-
private resourceService$;
|
|
11
|
-
private defaultTimeout;
|
|
12
|
-
constructor(globalI18nResources: I18nResources);
|
|
13
|
-
declareApp(appName: string, i18nResourceBundleName?: string): void;
|
|
14
|
-
whenAppReady(appName: SviInitEvent | string, timeout?: number): Promise<void>;
|
|
15
|
-
notifyAppReady(appName: SviInitEvent | string): void;
|
|
16
|
-
registerResourceBundle(bundleName: string, resources: I18nResources): void;
|
|
17
|
-
checkAllDeclaredAppsReady(): void;
|
|
18
|
-
checkAllDeclaredResourcesReady(): void;
|
|
19
|
-
setResourceApi(resourceService: ResourceApi): void;
|
|
20
|
-
private isAppDeclared;
|
|
21
|
-
private isResourceBundleDeclared;
|
|
22
|
-
private notifyReady;
|
|
23
|
-
private whenReady;
|
|
24
|
-
private whenAllDeclaredReady;
|
|
25
|
-
private initReadyState;
|
|
26
|
-
}
|
package/init/init-api.js
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import { ReplaySubject, throwError } from "rxjs";
|
|
2
|
-
import { take, timeoutWith } from "rxjs/operators";
|
|
3
|
-
import { APP_INIT_TIMEOUT_MS, ERR_INIT_TIMEOUT, SviInitEvent, ERR_EXISTING_APP_DECLARED, ERR_EXISTING_RESOURCE_BUNDLE_DECLARED } from ".";
|
|
4
|
-
export class SviInitApi {
|
|
5
|
-
constructor(globalI18nResources) {
|
|
6
|
-
this.globalI18nResources = globalI18nResources;
|
|
7
|
-
this.appReadyStates = new Map();
|
|
8
|
-
this.resourceReadyStates = new Map();
|
|
9
|
-
this.resourceServiceSubject = new ReplaySubject();
|
|
10
|
-
this.resourceService$ = this.resourceServiceSubject.pipe(take(1));
|
|
11
|
-
this.defaultTimeout = APP_INIT_TIMEOUT_MS;
|
|
12
|
-
}
|
|
13
|
-
declareApp(appName, i18nResourceBundleName) {
|
|
14
|
-
if (this.isAppDeclared(appName)) {
|
|
15
|
-
throw ERR_EXISTING_APP_DECLARED(appName);
|
|
16
|
-
}
|
|
17
|
-
this.initReadyState(this.appReadyStates, appName, true);
|
|
18
|
-
if (!i18nResourceBundleName) {
|
|
19
|
-
return;
|
|
20
|
-
}
|
|
21
|
-
if (this.isResourceBundleDeclared(i18nResourceBundleName)) {
|
|
22
|
-
throw ERR_EXISTING_RESOURCE_BUNDLE_DECLARED(i18nResourceBundleName);
|
|
23
|
-
}
|
|
24
|
-
this.initReadyState(this.resourceReadyStates, i18nResourceBundleName, true);
|
|
25
|
-
}
|
|
26
|
-
async whenAppReady(appName, timeout) {
|
|
27
|
-
return this.whenReady(this.appReadyStates, appName, timeout);
|
|
28
|
-
}
|
|
29
|
-
notifyAppReady(appName) {
|
|
30
|
-
this.notifyReady(this.appReadyStates, appName);
|
|
31
|
-
}
|
|
32
|
-
registerResourceBundle(bundleName, resources) {
|
|
33
|
-
// register bundle with the global i18nResources object which will be picked up by our resource services on construction.
|
|
34
|
-
this.globalI18nResources[bundleName] = resources;
|
|
35
|
-
this.notifyReady(this.resourceReadyStates, bundleName);
|
|
36
|
-
// also register the bundle to be added when the resource service is ready.
|
|
37
|
-
// this supports any consumers which may call this after init
|
|
38
|
-
this.resourceService$.subscribe(resourceService => {
|
|
39
|
-
resourceService.registerResourceBundle(bundleName, resources);
|
|
40
|
-
});
|
|
41
|
-
}
|
|
42
|
-
checkAllDeclaredAppsReady() {
|
|
43
|
-
this.whenAllDeclaredReady(this.appReadyStates).then(() => this.notifyAppReady(SviInitEvent.AllDeclaredApps));
|
|
44
|
-
}
|
|
45
|
-
checkAllDeclaredResourcesReady() {
|
|
46
|
-
this.whenAllDeclaredReady(this.resourceReadyStates).then(() => this.notifyAppReady(SviInitEvent.AllDeclaredI18nResourceBundles));
|
|
47
|
-
}
|
|
48
|
-
setResourceApi(resourceService) {
|
|
49
|
-
this.resourceServiceSubject.next(resourceService);
|
|
50
|
-
this.resourceServiceSubject.complete();
|
|
51
|
-
}
|
|
52
|
-
isAppDeclared(appName) {
|
|
53
|
-
return !!this.appReadyStates.get(appName)?.isDeclared;
|
|
54
|
-
}
|
|
55
|
-
isResourceBundleDeclared(bundleName) {
|
|
56
|
-
return !!this.resourceReadyStates.get(bundleName)?.isDeclared;
|
|
57
|
-
}
|
|
58
|
-
notifyReady(map, name) {
|
|
59
|
-
const readyState = this.initReadyState(map, name);
|
|
60
|
-
readyState.subject.next(undefined);
|
|
61
|
-
readyState.subject.complete();
|
|
62
|
-
}
|
|
63
|
-
async whenReady(map, name, timeout) {
|
|
64
|
-
const readySubject = this.initReadyState(map, name).subject;
|
|
65
|
-
const timeoutMs = timeout ?? this.defaultTimeout;
|
|
66
|
-
await readySubject.pipe(timeoutWith(timeoutMs, throwError(ERR_INIT_TIMEOUT(name, timeoutMs)))).toPromise();
|
|
67
|
-
}
|
|
68
|
-
async whenAllDeclaredReady(map) {
|
|
69
|
-
const toWaitFor = [];
|
|
70
|
-
for (const [name, readyState] of map.entries()) {
|
|
71
|
-
if (readyState.isDeclared) {
|
|
72
|
-
toWaitFor.push(this.whenReady(map, name).catch(console.error));
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
await Promise.all(toWaitFor);
|
|
76
|
-
}
|
|
77
|
-
initReadyState(map, name, declare) {
|
|
78
|
-
const state = map.get(name) ?? { subject: new ReplaySubject() };
|
|
79
|
-
state.isDeclared = declare ?? state.isDeclared;
|
|
80
|
-
map.set(name, state);
|
|
81
|
-
return state;
|
|
82
|
-
}
|
|
83
|
-
}
|