@sassoftware/vi-api 1.9.0 → 1.15.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 +6 -6
- package/alert-reps/package.json +1 -1
- package/api.module.js +60 -72
- package/component/bindings.d.ts +44 -0
- package/config/config-api.d.ts +56 -0
- package/control/control-api.d.ts +5 -6
- package/control/events.d.ts +1 -0
- package/control/page.d.ts +2 -2
- package/index.d.ts +70 -67
- package/index.js +1 -1
- package/init/index.d.ts +54 -0
- package/init/index.js +17 -0
- package/init/init-api.d.ts +26 -0
- package/init/init-api.js +83 -0
- package/init/package.json +9 -0
- package/init/public-api.d.ts +1 -0
- package/init/public-api.js +1 -0
- package/localization/localization-api.d.ts +75 -0
- package/metadata/metadata-api.d.ts +37 -3
- package/object/object-api.d.ts +22 -8
- package/object/object-api.js +5 -0
- package/package.json +1 -1
- package/property/property-api.d.ts +71 -1
- package/public-api.d.ts +1 -1
- package/public-api.js +1 -1
- package/resource/resource-api.d.ts +1 -0
- package/score-reps/index.d.ts +1 -1
- package/score-reps/package.json +1 -1
- package/search/client/client-search-api.d.ts +4 -9
- package/sheet/sheet-api.d.ts +7 -7
- package/svi-datahub/index.d.ts +208 -132
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +17 -2
- package/svi-sand/package.json +1 -1
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 2023-
|
|
3
|
+
// Generated using typescript-generator version 2.15.527 on 2023-11-29 09:46:51.
|
|
4
4
|
|
|
5
5
|
export interface ApplicationSetting extends ResponsesErrorResponse {
|
|
6
6
|
name?: string;
|
|
@@ -587,7 +587,7 @@ export interface OperationRepresentation {
|
|
|
587
587
|
parameters?: { [index: string]: any };
|
|
588
588
|
}
|
|
589
589
|
|
|
590
|
-
export interface PathsRepresentation {
|
|
590
|
+
export interface PathsRepresentation extends QueryRepresentation {
|
|
591
591
|
type?: string;
|
|
592
592
|
id?: string;
|
|
593
593
|
nextLevel?: PathLevelRepresentation;
|
|
@@ -606,6 +606,14 @@ export interface QueryRepresentation {
|
|
|
606
606
|
query?: AbstractQueryUnion;
|
|
607
607
|
}
|
|
608
608
|
|
|
609
|
+
export interface RelatedObjectsRepresentation {
|
|
610
|
+
startTypes?: string[];
|
|
611
|
+
startQuery?: AbstractQueryUnion;
|
|
612
|
+
endTypes?: string[];
|
|
613
|
+
endQuery?: AbstractQueryUnion;
|
|
614
|
+
hops?: number;
|
|
615
|
+
}
|
|
616
|
+
|
|
609
617
|
export interface SearchRepresentation extends QueryRepresentation {
|
|
610
618
|
filter?: AbstractFilterUnion;
|
|
611
619
|
selection?: Selection;
|
|
@@ -812,6 +820,11 @@ export interface TimebarInterval {
|
|
|
812
820
|
export interface RestClientUtil {
|
|
813
821
|
}
|
|
814
822
|
|
|
823
|
+
export interface EntityFields {
|
|
824
|
+
entityName?: string;
|
|
825
|
+
fieldNames?: string[];
|
|
826
|
+
}
|
|
827
|
+
|
|
815
828
|
export interface FacetsVisualizationRepresentation extends VisualizationRepresentation {
|
|
816
829
|
type: "facets";
|
|
817
830
|
mode?: FacetMode;
|
|
@@ -900,6 +913,7 @@ export interface PagedVisualizationResponse extends VisualizationResponse {
|
|
|
900
913
|
|
|
901
914
|
export interface SummaryVisualizationRepresentation extends PagedVisualizationRepresentation {
|
|
902
915
|
type: "summary";
|
|
916
|
+
fields?: EntityFields[];
|
|
903
917
|
}
|
|
904
918
|
|
|
905
919
|
export interface SummaryVisualizationResponse extends PagedVisualizationResponse {
|
|
@@ -909,6 +923,7 @@ export interface SummaryVisualizationResponse extends PagedVisualizationResponse
|
|
|
909
923
|
|
|
910
924
|
export interface TableVisualizationRepresentation extends PagedVisualizationRepresentation {
|
|
911
925
|
type: "table";
|
|
926
|
+
fields?: EntityFields[];
|
|
912
927
|
}
|
|
913
928
|
|
|
914
929
|
export interface TableVisualizationResponse extends PagedVisualizationResponse {
|
package/svi-sand/package.json
CHANGED