@vertigis/viewer-spec 52.1.0 → 53.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 (34) hide show
  1. package/analytics/WebAction.d.ts +1 -1
  2. package/app-config/schema/common-app-config.schema.json +1 -1
  3. package/app-config/schema/mobile-app-config.schema.json +1 -1
  4. package/app-config/schema/web-app-config.schema.json +1 -1
  5. package/app-config/web/HasVisibilityFilters.d.ts +2 -2
  6. package/app-config/web/ProjectModelProperties.d.ts +12 -0
  7. package/app-config/web/ProjectModelProperties.js +1 -0
  8. package/app-config/web/SharedProjectsModelProperties.d.ts +53 -0
  9. package/app-config/web/SharedProjectsModelProperties.js +1 -0
  10. package/app-config/web/SharedStorageModelProperties.d.ts +30 -0
  11. package/app-config/web/SharedStorageModelProperties.js +1 -0
  12. package/app-config/web/VertigisWebModelProperties.d.ts +0 -6
  13. package/layout/schema/layout-web.xsd +13 -0
  14. package/messaging/registry/Commands.d.ts +2 -0
  15. package/messaging/registry/Commands.js +1 -1
  16. package/messaging/registry/Events.d.ts +2 -0
  17. package/messaging/registry/Events.js +1 -1
  18. package/messaging/registry/Operations.d.ts +2 -0
  19. package/messaging/registry/Operations.js +1 -1
  20. package/messaging/registry/app.d.ts +4 -2
  21. package/messaging/registry/project.d.ts +141 -0
  22. package/messaging/registry/project.js +1 -0
  23. package/messaging/registry/system.d.ts +17 -2
  24. package/messaging/registry/ui.d.ts +9 -0
  25. package/messaging/registry/ui.js +1 -1
  26. package/messaging/schema/common-action.schema.json +483 -500
  27. package/messaging/schema/common-event.schema.json +371 -412
  28. package/messaging/schema/mobile-action.schema.json +514 -522
  29. package/messaging/schema/mobile-event.schema.json +404 -445
  30. package/messaging/schema/web-action.schema.json +1454 -770
  31. package/messaging/schema/web-event.schema.json +540 -479
  32. package/package.json +4 -1
  33. package/version.d.ts +1 -1
  34. package/version.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "52.1.0",
3
+ "version": "53.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
@@ -63,6 +63,9 @@
63
63
  "typescript": "4.9.5",
64
64
  "weaktuplemap": "1.0.0"
65
65
  },
66
+ "overrides": {
67
+ "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
68
+ },
66
69
  "simple-git-hooks": {
67
70
  "pre-commit": "npx lint-staged"
68
71
  },
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 = "52.1.0";
4
+ export declare const version = "53.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 = "52.1.0";
4
+ export const version = "53.0.0";