@vertigis/viewer-spec 56.20.0 → 56.21.0
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.
|
@@ -75,13 +75,6 @@ export declare class AppCommands extends CommandRegistry {
|
|
|
75
75
|
* @mobileOnly
|
|
76
76
|
*/
|
|
77
77
|
get setPersistentData(): Command<SaveStorageDataArgs>;
|
|
78
|
-
/**
|
|
79
|
-
* Removes stored data, specified by the arguments (key and scope). Mobile
|
|
80
|
-
* only.
|
|
81
|
-
*
|
|
82
|
-
* @mobileOnly
|
|
83
|
-
*/
|
|
84
|
-
get removePersistentData(): Command<StorageDataArgs>;
|
|
85
78
|
/**
|
|
86
79
|
* Adds the currently loaded app to the user's Favorites collection. Mobile
|
|
87
80
|
* only.
|
|
@@ -222,6 +215,13 @@ export declare class AppOperations extends OperationRegistry {
|
|
|
222
215
|
* Gets stored data, specified by the arguments (key and scope).
|
|
223
216
|
*/
|
|
224
217
|
get getPersistentData(): Operation<StorageDataArgs, unknown>;
|
|
218
|
+
/**
|
|
219
|
+
* Removes stored data, specified by the arguments (key and scope).
|
|
220
|
+
* Returns true if the data was removed, false otherwise. Mobile only.
|
|
221
|
+
*
|
|
222
|
+
* @mobileOnly
|
|
223
|
+
*/
|
|
224
|
+
get removePersistentData(): Operation<StorageDataArgs, boolean>;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* Arguments for the reading app.*-persistent-data operations. Only available in
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as t}from"../CommandRegistry.js";import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export class AppCommands extends t{constructor(){super(...arguments),this._prefix="app"}get goToAppSelector(){return this._get("go-to-app-selector")}get refresh(){return this._get("refresh")}get setPersistentData(){return this._get("set-persistent-data")}get
|
|
1
|
+
import{CommandRegistry as t}from"../CommandRegistry.js";import{EventRegistry as e}from"../EventRegistry.js";import{OperationRegistry as r}from"../OperationRegistry.js";export class AppCommands extends t{constructor(){super(...arguments),this._prefix="app"}get goToAppSelector(){return this._get("go-to-app-selector")}get refresh(){return this._get("refresh")}get setPersistentData(){return this._get("set-persistent-data")}get favorite(){return this._get("favorite")}get unfavorite(){return this._get("unfavorite")}get loadProject(){return this._get("load-project")}}export class AppEvents extends e{constructor(){super(...arguments),this.custom=new AppCustomEvents(this._messages),this.generic=new AppGenericEvents(this._messages),this._prefix="app"}get activated(){return this._get("activated")}get backgrounded(){return this._get("backgrounded")}get interrupted(){return this._get("interrupted")}get goingToAppSelector(){return this._get("navigating-to-app-selector")}get refreshed(){return this._get("refreshed")}get refreshing(){return this._get("refreshing")}get favorited(){return this._get("favorited")}get unfavorited(){return this._get("unfavorited")}}export class AppCustomEvents extends e{constructor(){super(...arguments),this._prefix="app.custom"}get started(){return this._get("started")}}export class AppGenericEvents extends e{constructor(){super(...arguments),this._prefix="app.generic"}get appsListed(){return this._get("apps-listed")}get specificAppStarting(){return this._get("generic.specific-app-starting")}get specificAppStarted(){return this._get("generic.specific-app-started")}get started(){return this._get("generic.started")}}export class AppOperations extends r{constructor(){super(...arguments),this._prefix="app"}get getVersion(){return this._get("get-version")}get createProject(){return this._get("create-project")}get getPersistentData(){return this._get("get-persistent-data")}get removePersistentData(){return this._get("remove-persistent-data")}}
|
|
@@ -4627,7 +4627,7 @@
|
|
|
4627
4627
|
]
|
|
4628
4628
|
},
|
|
4629
4629
|
"app.remove-persistent-data": {
|
|
4630
|
-
"description": "Removes stored data, specified by the arguments (key and scope). Mobile only.",
|
|
4630
|
+
"description": "Removes stored data, specified by the arguments (key and scope). Returns true if the data was removed, false otherwise. Mobile only.",
|
|
4631
4631
|
"enum": [
|
|
4632
4632
|
"app.remove-persistent-data"
|
|
4633
4633
|
]
|
|
@@ -4635,6 +4635,9 @@
|
|
|
4635
4635
|
"app.remove-persistent-data:input": {
|
|
4636
4636
|
"$ref": "#/definitions/StorageDataArgs"
|
|
4637
4637
|
},
|
|
4638
|
+
"app.remove-persistent-data:output": {
|
|
4639
|
+
"type": "boolean"
|
|
4640
|
+
},
|
|
4638
4641
|
"app.set-persistent-data": {
|
|
4639
4642
|
"description": "Stores data specified by the arguments (key and scope). Mobile only.",
|
|
4640
4643
|
"enum": [
|
|
@@ -16546,22 +16549,6 @@
|
|
|
16546
16549
|
],
|
|
16547
16550
|
"type": "object"
|
|
16548
16551
|
},
|
|
16549
|
-
{
|
|
16550
|
-
"additionalProperties": false,
|
|
16551
|
-
"properties": {
|
|
16552
|
-
"arguments": {
|
|
16553
|
-
"$ref": "#/definitions/app.remove-persistent-data:input"
|
|
16554
|
-
},
|
|
16555
|
-
"name": {
|
|
16556
|
-
"$ref": "#/definitions/app.remove-persistent-data"
|
|
16557
|
-
}
|
|
16558
|
-
},
|
|
16559
|
-
"required": [
|
|
16560
|
-
"name",
|
|
16561
|
-
"arguments"
|
|
16562
|
-
],
|
|
16563
|
-
"type": "object"
|
|
16564
|
-
},
|
|
16565
16552
|
{
|
|
16566
16553
|
"additionalProperties": false,
|
|
16567
16554
|
"properties": {
|
|
@@ -18478,9 +18465,6 @@
|
|
|
18478
18465
|
{
|
|
18479
18466
|
"$ref": "#/definitions/app.refresh"
|
|
18480
18467
|
},
|
|
18481
|
-
{
|
|
18482
|
-
"$ref": "#/definitions/app.remove-persistent-data"
|
|
18483
|
-
},
|
|
18484
18468
|
{
|
|
18485
18469
|
"$ref": "#/definitions/app.set-persistent-data"
|
|
18486
18470
|
},
|
|
@@ -18896,6 +18880,22 @@
|
|
|
18896
18880
|
},
|
|
18897
18881
|
"viewer-spec.SingleOperation": {
|
|
18898
18882
|
"anyOf": [
|
|
18883
|
+
{
|
|
18884
|
+
"additionalProperties": false,
|
|
18885
|
+
"properties": {
|
|
18886
|
+
"arguments": {
|
|
18887
|
+
"$ref": "#/definitions/app.remove-persistent-data:input"
|
|
18888
|
+
},
|
|
18889
|
+
"name": {
|
|
18890
|
+
"$ref": "#/definitions/app.remove-persistent-data"
|
|
18891
|
+
}
|
|
18892
|
+
},
|
|
18893
|
+
"required": [
|
|
18894
|
+
"name",
|
|
18895
|
+
"arguments"
|
|
18896
|
+
],
|
|
18897
|
+
"type": "object"
|
|
18898
|
+
},
|
|
18899
18899
|
{
|
|
18900
18900
|
"additionalProperties": false,
|
|
18901
18901
|
"properties": {
|
|
@@ -19664,6 +19664,9 @@
|
|
|
19664
19664
|
],
|
|
19665
19665
|
"type": "object"
|
|
19666
19666
|
},
|
|
19667
|
+
{
|
|
19668
|
+
"$ref": "#/definitions/app.remove-persistent-data"
|
|
19669
|
+
},
|
|
19667
19670
|
{
|
|
19668
19671
|
"$ref": "#/definitions/auth.get-current-user"
|
|
19669
19672
|
},
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED