ontotext-yasgui-web-component 1.3.21 → 1.3.23

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.
@@ -12,6 +12,10 @@ export declare class SaveQueryDialog {
12
12
  */
13
13
  data: SaveQueryData;
14
14
  queryName: string;
15
+ /**
16
+ * Represents the name of the original query, before any modifications, transformations, or updates are applied.
17
+ */
18
+ originalQueryName: string;
15
19
  query: string;
16
20
  isPublic: boolean;
17
21
  isNew: boolean;
@@ -29,6 +29,7 @@ export interface SavedQueryInput {
29
29
  queryName: string;
30
30
  query: string;
31
31
  isPublic: boolean;
32
+ originalQueryName: string;
32
33
  owner: string;
33
34
  readonly: boolean;
34
35
  }
@@ -36,11 +37,12 @@ export declare class SaveQueryData {
36
37
  queryName: string;
37
38
  query: string;
38
39
  isPublic: boolean;
40
+ originalQueryName?: string;
39
41
  isNew?: boolean;
40
42
  readonly?: boolean;
41
43
  owner?: string;
42
44
  messages?: string[];
43
- constructor(queryName: string, query: string, isPublic: boolean, isNew?: boolean, readonly?: boolean, owner?: string, messages?: string[]);
45
+ constructor(queryName: string, query: string, isPublic: boolean, originalQueryName?: string, isNew?: boolean, readonly?: boolean, owner?: string, messages?: string[]);
44
46
  }
45
47
  export declare class UpdateQueryData extends SaveQueryData {
46
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ontotext-yasgui-web-component",
3
- "version": "1.3.21",
3
+ "version": "1.3.23",
4
4
  "description": "Ontotext customized yasgui",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",