@vertigis/viewer-spec 52.1.0 → 53.1.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 (41) 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/common.d.ts +22 -0
  15. package/messaging/registry/Commands.d.ts +2 -0
  16. package/messaging/registry/Commands.js +1 -1
  17. package/messaging/registry/Events.d.ts +2 -0
  18. package/messaging/registry/Events.js +1 -1
  19. package/messaging/registry/Operations.d.ts +2 -0
  20. package/messaging/registry/Operations.js +1 -1
  21. package/messaging/registry/app.d.ts +4 -2
  22. package/messaging/registry/drawing.d.ts +3 -12
  23. package/messaging/registry/layers.d.ts +83 -2
  24. package/messaging/registry/layers.js +1 -1
  25. package/messaging/registry/project.d.ts +141 -0
  26. package/messaging/registry/project.js +1 -0
  27. package/messaging/registry/results.d.ts +33 -17
  28. package/messaging/registry/results.js +1 -1
  29. package/messaging/registry/system.d.ts +25 -3
  30. package/messaging/registry/system.js +1 -1
  31. package/messaging/registry/ui.d.ts +9 -0
  32. package/messaging/registry/ui.js +1 -1
  33. package/messaging/schema/common-action.schema.json +634 -502
  34. package/messaging/schema/common-event.schema.json +371 -412
  35. package/messaging/schema/mobile-action.schema.json +665 -524
  36. package/messaging/schema/mobile-event.schema.json +406 -447
  37. package/messaging/schema/web-action.schema.json +2264 -856
  38. package/messaging/schema/web-event.schema.json +542 -481
  39. package/package.json +5 -2
  40. package/version.d.ts +1 -1
  41. package/version.js +1 -1
@@ -67,7 +67,7 @@ export type WebAction = CommonAction
67
67
  /**
68
68
  * Map action. Payload: new view mode ("map" or "scene").
69
69
  */
70
- | "map-view-mode-set" | "project-load" | "project-create"
70
+ | "map-view-mode-set" | "project-load" | "project-create" | "project-share" | "project-delete"
71
71
  /**
72
72
  * Payload: format ("csv", "shapefile", or "xlsx").
73
73
  */