@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/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-05-28 08:51:16.
|
|
4
4
|
|
|
5
5
|
export interface ApplicationSetting extends ResponsesErrorResponse {
|
|
6
6
|
name?: string;
|
|
@@ -611,7 +611,9 @@ export interface PathsRepresentation extends QueryRepresentation {
|
|
|
611
611
|
type?: string;
|
|
612
612
|
id?: string;
|
|
613
613
|
filter?: AbstractFilterUnion;
|
|
614
|
+
mustMatchAllBranches?: boolean;
|
|
614
615
|
nextLevel?: PathLevelRepresentation;
|
|
616
|
+
nextLevels?: PathLevelRepresentation[];
|
|
615
617
|
}
|
|
616
618
|
|
|
617
619
|
export interface PathLevelRepresentation {
|
|
@@ -620,6 +622,7 @@ export interface PathLevelRepresentation {
|
|
|
620
622
|
vertexFilter?: AbstractFilterUnion;
|
|
621
623
|
edgeFilter?: AbstractFilterUnion;
|
|
622
624
|
nextLevel?: PathLevelRepresentation;
|
|
625
|
+
nextLevels?: PathLevelRepresentation[];
|
|
623
626
|
}
|
|
624
627
|
|
|
625
628
|
export interface QueryRepresentation {
|
package/svi-sand/package.json
CHANGED