@vertigis/viewer-spec 49.8.0 → 50.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.
Files changed (67) hide show
  1. package/README.md +1 -1
  2. package/analytics/MobileAction.d.ts +54 -0
  3. package/analytics/MobileAction.js +1 -0
  4. package/app-config/mobile/BasemapModelProperties.d.ts +1 -1
  5. package/app-config/mobile/VertigisMobileModelProperties.d.ts +2 -2
  6. package/app-config/schema/common-app-config.schema.json +1 -1
  7. package/app-config/schema/mobile-app-config.schema.json +1 -1
  8. package/app-config/schema/web-app-config.schema.json +1 -1
  9. package/app-config/web/ResultsModelProperties.d.ts +1 -1
  10. package/app-config/web/VertigisWebModelProperties.d.ts +2 -3
  11. package/docs/presentation.md +30 -23
  12. package/messaging/DotNetTypes.d.ts +4 -0
  13. package/messaging/DotNetTypes.js +1 -0
  14. package/messaging/common.d.ts +53 -2
  15. package/messaging/common.js +1 -1
  16. package/messaging/mobile.d.ts +1 -8
  17. package/messaging/registry/Events.d.ts +6 -0
  18. package/messaging/registry/Events.js +1 -1
  19. package/messaging/registry/app.d.ts +32 -32
  20. package/messaging/registry/app.js +1 -1
  21. package/messaging/registry/auth.d.ts +44 -11
  22. package/messaging/registry/auth.js +1 -1
  23. package/messaging/registry/basemap.d.ts +19 -1
  24. package/messaging/registry/basemap.js +1 -1
  25. package/messaging/registry/bookmark.d.ts +41 -0
  26. package/messaging/registry/bookmark.js +1 -0
  27. package/messaging/registry/device.d.ts +12 -0
  28. package/messaging/registry/device.js +1 -1
  29. package/messaging/registry/file.d.ts +10 -0
  30. package/messaging/registry/file.js +1 -1
  31. package/messaging/registry/geolocation.d.ts +163 -7
  32. package/messaging/registry/geolocation.js +1 -1
  33. package/messaging/registry/geometry-toolbar.d.ts +5 -5
  34. package/messaging/registry/highlights.d.ts +6 -7
  35. package/messaging/registry/map.d.ts +85 -14
  36. package/messaging/registry/map.js +1 -1
  37. package/messaging/registry/measurement.d.ts +36 -4
  38. package/messaging/registry/measurement.js +1 -1
  39. package/messaging/registry/offline.d.ts +6 -0
  40. package/messaging/registry/offline.js +1 -1
  41. package/messaging/registry/panel.d.ts +8 -1
  42. package/messaging/registry/panel.js +1 -1
  43. package/messaging/registry/photos.js +1 -1
  44. package/messaging/registry/results.d.ts +40 -0
  45. package/messaging/registry/results.js +1 -1
  46. package/messaging/registry/search.d.ts +31 -7
  47. package/messaging/registry/search.js +1 -1
  48. package/messaging/registry/settings.d.ts +40 -0
  49. package/messaging/registry/settings.js +1 -0
  50. package/messaging/registry/shortcut.d.ts +40 -0
  51. package/messaging/registry/shortcut.js +1 -0
  52. package/messaging/registry/sketching.d.ts +4 -4
  53. package/messaging/registry/system.d.ts +21 -0
  54. package/messaging/registry/system.js +1 -1
  55. package/messaging/registry/tasks.d.ts +26 -16
  56. package/messaging/registry/tasks.js +1 -1
  57. package/messaging/registry/ui.d.ts +4 -4
  58. package/messaging/registry/workflow.d.ts +6 -9
  59. package/messaging/schema/common-action.schema.json +578 -38
  60. package/messaging/schema/common-event.schema.json +728 -11
  61. package/messaging/schema/mobile-action.schema.json +626 -79
  62. package/messaging/schema/mobile-event.schema.json +1740 -237
  63. package/messaging/schema/web-action.schema.json +611 -62
  64. package/messaging/schema/web-event.schema.json +665 -20
  65. package/package.json +4 -4
  66. package/version.d.ts +1 -1
  67. package/version.js +1 -1
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # Geocortex Viewer Specification
2
2
 
3
- This package contains specifications for app config JSON, layout XML, and a reference of all commands, operations, and events for the Geocortex Web and Geocortex Mobile viewers. For more information on extending these products, visit our [Developer Center](https://developers.geocortex.com/).
3
+ This package contains specifications for app config JSON, layout XML, and a reference of all commands, operations, and events for VertiGIS Studio Web and Mobile. For more information on extending these products, visit our [Developer Center](https://developers.vertigisstudio.com).
@@ -0,0 +1,54 @@
1
+ import type { CommonAction } from "./CommonAction";
2
+ /**
3
+ * Names of `action-*` events generated for VertiGIS Studio Analytics in
4
+ * VertiGIS Studio Mobile.
5
+ */
6
+ export declare type MobileAction = CommonAction
7
+ /**
8
+ * Generic action. No payload.
9
+ */
10
+ | "app-refresh"
11
+ /**
12
+ * Layer action. Payload: MIME type of the attachment.
13
+ */
14
+ | "attachment-update"
15
+ /**
16
+ * Generic action. Payload: file name.
17
+ */
18
+ | "file-open"
19
+ /**
20
+ * Generic action. Payload: device name.
21
+ */
22
+ | "gnss-device-select"
23
+ /**
24
+ * Generic action. Payload: antenna height.
25
+ */
26
+ | "gnss-device-antenna-height-set"
27
+ /**
28
+ * Generic action. Payload: [wkid, transformation name].
29
+ */
30
+ | "gnss-device-transformation-override"
31
+ /**
32
+ * Generic action. Payload: log level.
33
+ */
34
+ | "settings-log-level-set"
35
+ /**
36
+ * Generic action. Payload: boolean value indicating if setting is set to true.
37
+ */
38
+ | "settings-measurement-system-set"
39
+ /**
40
+ * Generic action. Payload: photo resize option.
41
+ */
42
+ | "settings-photo-quality-set"
43
+ /**
44
+ * Generic action. Payload: boolean value indicating if setting is set to true.
45
+ */
46
+ | "settings-remember-layer-visibility-set"
47
+ /**
48
+ * Generic action. Payload: boolean value indicating if setting is set to true.
49
+ */
50
+ | "settings-remember-map-extent-set"
51
+ /**
52
+ * Generic action. No payload.
53
+ */
54
+ | "user-signout";
@@ -0,0 +1 @@
1
+ export {};
@@ -5,7 +5,7 @@ import type { BasemapExtensionProperties } from "@vertigis/arcgis-extensions/map
5
5
  export interface BasemapModelProperties extends BasemapExtensionProperties {
6
6
  /**
7
7
  * Whether this Basemap is only made up of offline layers. Only used by
8
- * Geocortex Mobile Designer.
8
+ * Studio Mobile Designer.
9
9
  */
10
10
  offline?: boolean;
11
11
  }
@@ -58,8 +58,8 @@ export interface VertigisMobileModelProperties extends ApplicationModelPropertie
58
58
  */
59
59
  remoteConfigUrl?: string;
60
60
  /**
61
- * The version of the Geocortex Mobile Viewer that was used to create this
62
- * app configuration.
61
+ * The version of VertiGIS Studio Mobile that was used to create this app
62
+ * configuration.
63
63
  */
64
64
  version?: string;
65
65
  }