@sassoftware/vi-api 1.55.1 → 1.56.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/alert-reps/index.d.ts +19 -3
- package/alert-reps/package.json +1 -1
- package/component/bindings.d.ts +68 -25
- package/config/standardPropertyTypes.d.ts +2 -1
- package/config/standardPropertyTypes.js +1 -0
- package/control/events.d.ts +10 -0
- package/event/event-api.d.ts +2 -0
- package/event/event-api.js +2 -0
- package/mcp/mcp-api.d.ts +20 -0
- package/mcp/mcp-api.js +4 -1
- package/metadata/metadata-api.d.ts +1 -0
- package/object/object-api.d.ts +147 -21
- package/object/object-api.js +7 -0
- package/package.json +36 -36
- package/score-reps/index.d.ts +1 -1
- package/score-reps/package.json +1 -1
- package/search/client/client-search-api.d.ts +28 -1
- package/svi-datahub/index.d.ts +123 -50
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +4 -1
- package/svi-sand/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
2
|
+
"name": "@sassoftware/vi-api",
|
|
3
|
+
"version": "1.56.3",
|
|
4
|
+
"description": "Types used in the SAS Visual Investigator API",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"SAS",
|
|
7
|
+
"VI",
|
|
8
|
+
"Visual Investigator",
|
|
9
|
+
"solution",
|
|
10
|
+
"extension",
|
|
11
|
+
"angular",
|
|
12
|
+
"API",
|
|
13
|
+
"types"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/sassoftware/vi-solution-extensions",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/sassoftware/vi-solution-extensions/issues"
|
|
18
|
+
},
|
|
19
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/sassoftware/vi-solution-extensions"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"**/*.d.ts",
|
|
26
|
+
"**/*.js",
|
|
27
|
+
"**/package.json",
|
|
28
|
+
"./README.md",
|
|
29
|
+
"./LICENSE.txt"
|
|
30
|
+
],
|
|
31
|
+
"main": "index.js",
|
|
32
|
+
"types": "index.d.ts",
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@types/angular": "^1.7.3",
|
|
35
|
+
"@types/angular-resource": "^1.5.16",
|
|
36
|
+
"@modelcontextprotocol/sdk": "^1.20.2"
|
|
37
|
+
}
|
|
38
38
|
}
|
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-05-28 08:51:30.
|
|
4
4
|
|
|
5
5
|
export interface BaseRep extends TrackedResource {
|
|
6
6
|
links?: Link[];
|
package/score-reps/package.json
CHANGED
|
@@ -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;
|