@vertigis/viewer-spec 50.10.3 → 51.0.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.
@@ -61,10 +61,6 @@ export declare enum PortalType {
61
61
  * events. Only available in VertiGIS Studio Mobile.
62
62
  */
63
63
  export interface SignInCompletedEventArgs {
64
- /**
65
- * The credential resulting from the sign in.
66
- */
67
- credential: Credential;
68
64
  /**
69
65
  * The identity that was obtained from the sign in.
70
66
  */
@@ -113,11 +113,13 @@ export declare class WorkflowCommands extends CommandRegistry {
113
113
  */
114
114
  get run(): Command<RunWorkflowArgs>;
115
115
  /**
116
- * Refreshes a workflow with the given arguments.
116
+ * Refreshes (i.e. cancels and reruns) a workflow with the specified ID
117
+ * (corresponding to the workflow ID as configured in app.json, not the
118
+ * workflow's portal item ID).
117
119
  *
118
120
  * @mobileOnly
119
121
  */
120
- get refresh(): Command<RunWorkflowArgs>;
122
+ get refresh(): Command<string>;
121
123
  /**
122
124
  * Cancels a workflow with the given ID.
123
125
  *
@@ -340,17 +340,12 @@
340
340
  "additionalProperties": false,
341
341
  "description": "Arguments for the auth.sign-in-completed and auth.portal-sign-in-completed events. Only available in VertiGIS Studio Mobile.",
342
342
  "properties": {
343
- "credential": {
344
- "$ref": "esriRuntimeSdk.Credential",
345
- "description": "The credential resulting from the sign in."
346
- },
347
343
  "identity": {
348
344
  "$ref": "#/definitions/ArcGISPortalIdentity",
349
345
  "description": "The identity that was obtained from the sign in."
350
346
  }
351
347
  },
352
348
  "required": [
353
- "credential",
354
349
  "identity"
355
350
  ],
356
351
  "type": "object"
@@ -18171,13 +18171,13 @@
18171
18171
  "$ref": "#/definitions/EvaluateWorkflowArgs"
18172
18172
  },
18173
18173
  "workflow.refresh": {
18174
- "description": "Refreshes a workflow with the given arguments.",
18174
+ "description": "Refreshes (i.e. cancels and reruns) a workflow with the specified ID (corresponding to the workflow ID as configured in app.json, not the workflow's portal item ID).",
18175
18175
  "enum": [
18176
18176
  "workflow.refresh"
18177
18177
  ]
18178
18178
  },
18179
18179
  "workflow.refresh:input": {
18180
- "$ref": "#/definitions/RunWorkflowArgs"
18180
+ "type": "string"
18181
18181
  },
18182
18182
  "workflow.run": {
18183
18183
  "description": "Runs a workflow with the given arguments. See the `workflow.evaluate` operation if you want to run a workflow and expect output values to be returned.",
@@ -1571,17 +1571,12 @@
1571
1571
  "additionalProperties": false,
1572
1572
  "description": "Arguments for the auth.sign-in-completed and auth.portal-sign-in-completed events. Only available in VertiGIS Studio Mobile.",
1573
1573
  "properties": {
1574
- "credential": {
1575
- "$ref": "esriRuntimeSdk.Credential",
1576
- "description": "The credential resulting from the sign in."
1577
- },
1578
1574
  "identity": {
1579
1575
  "$ref": "#/definitions/ArcGISPortalIdentity",
1580
1576
  "description": "The identity that was obtained from the sign in."
1581
1577
  }
1582
1578
  },
1583
1579
  "required": [
1584
- "credential",
1585
1580
  "identity"
1586
1581
  ],
1587
1582
  "type": "object"
@@ -1115,17 +1115,12 @@
1115
1115
  "additionalProperties": false,
1116
1116
  "description": "Arguments for the auth.sign-in-completed and auth.portal-sign-in-completed events. Only available in VertiGIS Studio Mobile.",
1117
1117
  "properties": {
1118
- "credential": {
1119
- "$ref": "esriRuntimeSdk.Credential",
1120
- "description": "The credential resulting from the sign in."
1121
- },
1122
1118
  "identity": {
1123
1119
  "$ref": "#/definitions/ArcGISPortalIdentity",
1124
1120
  "description": "The identity that was obtained from the sign in."
1125
1121
  }
1126
1122
  },
1127
1123
  "required": [
1128
- "credential",
1129
1124
  "identity"
1130
1125
  ],
1131
1126
  "type": "object"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "50.10.3",
3
+ "version": "51.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "50.10.3";
4
+ export declare const version = "51.0.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "50.10.3";
4
+ export const version = "51.0.0";