@sassoftware/vi-api 1.15.3 → 1.40.2

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.
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- // Generated using typescript-generator version 2.15.527 on 2023-11-29 09:46:51.
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 {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@types/svi-sand",
3
- "version": "14.3.3",
3
+ "version": "16.0.7",
4
4
  "types": "index.d.ts"
5
5
  }
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.