@sassoftware/vi-api 1.15.3 → 1.40.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 +8 -8
- package/alert-reps/package.json +1 -1
- package/api.module.js +2 -0
- package/component/bindings.d.ts +5 -1
- package/component/index.d.ts +3 -1
- package/component/index.js +1 -0
- package/config/config-api.d.ts +50 -17
- package/control/control-api.d.ts +11 -0
- package/control/data-types.d.ts +7 -6
- package/control/data-types.js +1 -1
- package/control/events.d.ts +2 -2
- package/control/restrictions.d.ts +2 -2
- package/event/event-api.d.ts +3 -0
- package/event/event-api.js +4 -0
- package/index.d.ts +4 -2
- package/localization/localization-api.d.ts +38 -24
- package/metadata/metadata-api.d.ts +2 -2
- package/object/object-api.d.ts +38 -3
- package/package.json +1 -1
- package/page-model/page-model-api.d.ts +9 -6
- package/page-template/package.json +9 -0
- package/page-template/page-template-api.d.ts +40 -0
- package/page-template/page-template-api.js +1 -0
- package/page-template/public-api.d.ts +1 -0
- package/page-template/public-api.js +1 -0
- package/property/property-api.d.ts +2 -2
- package/score-reps/index.d.ts +1 -1
- package/score-reps/package.json +1 -1
- package/search/client/client-search-api.d.ts +17 -16
- package/sheet/sheet-api.d.ts +1 -1
- package/shell-tabs/shell-tabs-api.d.ts +76 -36
- package/shell-tabs/shell-tabs-lifecycle-api.d.ts +4 -4
- package/svi-datahub/index.d.ts +71 -186
- package/svi-datahub/package.json +1 -1
- package/svi-sand/index.d.ts +4 -2
- package/svi-sand/package.json +1 -1
- package/tab/tab-api.d.ts +9 -0
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 2024-03-18 11:42:49.
|
|
4
4
|
|
|
5
5
|
export interface ApplicationSetting extends ResponsesErrorResponse {
|
|
6
6
|
name?: string;
|
|
@@ -590,6 +590,7 @@ export interface OperationRepresentation {
|
|
|
590
590
|
export interface PathsRepresentation extends QueryRepresentation {
|
|
591
591
|
type?: string;
|
|
592
592
|
id?: string;
|
|
593
|
+
filter?: AbstractFilterUnion;
|
|
593
594
|
nextLevel?: PathLevelRepresentation;
|
|
594
595
|
}
|
|
595
596
|
|
|
@@ -609,8 +610,10 @@ export interface QueryRepresentation {
|
|
|
609
610
|
export interface RelatedObjectsRepresentation {
|
|
610
611
|
startTypes?: string[];
|
|
611
612
|
startQuery?: AbstractQueryUnion;
|
|
613
|
+
startFilter?: AbstractFilterUnion;
|
|
612
614
|
endTypes?: string[];
|
|
613
615
|
endQuery?: AbstractQueryUnion;
|
|
616
|
+
endFilter?: AbstractFilterUnion;
|
|
614
617
|
hops?: number;
|
|
615
618
|
}
|
|
616
619
|
|
|
@@ -995,7 +998,6 @@ export interface RepresentationsErrorResponse extends Serializable {
|
|
|
995
998
|
links?: Link[];
|
|
996
999
|
version?: number;
|
|
997
1000
|
httpStatusCode?: number;
|
|
998
|
-
targetUri?: string;
|
|
999
1001
|
}
|
|
1000
1002
|
|
|
1001
1003
|
export interface Link extends Serializable {
|
package/svi-sand/package.json
CHANGED
package/tab/tab-api.d.ts
CHANGED
|
@@ -14,6 +14,15 @@ export interface TabApi {
|
|
|
14
14
|
* @return A Promise that resolves when the tab is opened.
|
|
15
15
|
*/
|
|
16
16
|
openTab(objectType: string, objectId: string, suppressNavigation?: boolean, mode?: PageModeEvent): Promise<void>;
|
|
17
|
+
/**
|
|
18
|
+
* @method
|
|
19
|
+
* @description Close the tab of a specified object.
|
|
20
|
+
* @param objectType {string} Type of the object to be closed.
|
|
21
|
+
* @param objectId {string} ID of the object to be closed.
|
|
22
|
+
* @return A Promise resolving once the tab has been successfully removed (resolves to true)
|
|
23
|
+
* or once the tab could not be removed or found (resolving to false).
|
|
24
|
+
*/
|
|
25
|
+
closeTab(objectType: string, objectId: string): Promise<boolean>;
|
|
17
26
|
/**
|
|
18
27
|
* @method
|
|
19
28
|
* @description Checks to see if an open tab is dirty.
|