@scalar/workspace-store 0.25.3 → 0.26.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 (57) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/client.d.ts.map +1 -1
  3. package/dist/client.js +25 -19
  4. package/dist/client.js.map +2 -2
  5. package/dist/events/definitions/hooks.d.ts +13 -2
  6. package/dist/events/definitions/hooks.d.ts.map +1 -1
  7. package/dist/events/definitions/operation.d.ts +11 -0
  8. package/dist/events/definitions/operation.d.ts.map +1 -1
  9. package/dist/events/definitions/ui.d.ts +12 -0
  10. package/dist/events/definitions/ui.d.ts.map +1 -1
  11. package/dist/helpers/apply-selective-updates.d.ts +1 -1
  12. package/dist/helpers/apply-selective-updates.d.ts.map +1 -1
  13. package/dist/helpers/apply-selective-updates.js +13 -3
  14. package/dist/helpers/apply-selective-updates.js.map +3 -3
  15. package/dist/mutators/fetch-request-to-har.d.ts +62 -0
  16. package/dist/mutators/fetch-request-to-har.d.ts.map +1 -0
  17. package/dist/mutators/fetch-request-to-har.js +117 -0
  18. package/dist/mutators/fetch-request-to-har.js.map +7 -0
  19. package/dist/mutators/fetch-response-to-har.d.ts +67 -0
  20. package/dist/mutators/fetch-response-to-har.d.ts.map +1 -0
  21. package/dist/mutators/fetch-response-to-har.js +104 -0
  22. package/dist/mutators/fetch-response-to-har.js.map +7 -0
  23. package/dist/mutators/har-to-operation.d.ts +37 -0
  24. package/dist/mutators/har-to-operation.d.ts.map +1 -0
  25. package/dist/mutators/har-to-operation.js +146 -0
  26. package/dist/mutators/har-to-operation.js.map +7 -0
  27. package/dist/mutators/index.d.ts +4 -0
  28. package/dist/mutators/index.d.ts.map +1 -1
  29. package/dist/mutators/operation.d.ts +5 -0
  30. package/dist/mutators/operation.d.ts.map +1 -1
  31. package/dist/mutators/operation.js +74 -1
  32. package/dist/mutators/operation.js.map +2 -2
  33. package/dist/schemas/extensions/document/x-scalar-is-dirty.d.ts +43 -0
  34. package/dist/schemas/extensions/document/x-scalar-is-dirty.d.ts.map +1 -0
  35. package/dist/schemas/extensions/document/x-scalar-is-dirty.js +9 -0
  36. package/dist/schemas/extensions/document/x-scalar-is-dirty.js.map +7 -0
  37. package/dist/schemas/extensions/operation/x-scalar-history.d.ts +217 -0
  38. package/dist/schemas/extensions/operation/x-scalar-history.d.ts.map +1 -0
  39. package/dist/schemas/extensions/operation/x-scalar-history.js +100 -0
  40. package/dist/schemas/extensions/operation/x-scalar-history.js.map +7 -0
  41. package/dist/schemas/inmemory-workspace.d.ts +64 -0
  42. package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
  43. package/dist/schemas/reference-config/index.d.ts +64 -0
  44. package/dist/schemas/reference-config/index.d.ts.map +1 -1
  45. package/dist/schemas/reference-config/settings.d.ts +64 -0
  46. package/dist/schemas/reference-config/settings.d.ts.map +1 -1
  47. package/dist/schemas/v3.1/strict/openapi-document.d.ts +2306 -1
  48. package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
  49. package/dist/schemas/v3.1/strict/openapi-document.js +3 -1
  50. package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
  51. package/dist/schemas/v3.1/strict/operation.d.ts +64 -1
  52. package/dist/schemas/v3.1/strict/operation.d.ts.map +1 -1
  53. package/dist/schemas/v3.1/strict/operation.js +3 -1
  54. package/dist/schemas/v3.1/strict/operation.js.map +2 -2
  55. package/dist/schemas/workspace.d.ts +448 -0
  56. package/dist/schemas/workspace.d.ts.map +1 -1
  57. package/package.json +5 -5
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "openapi",
17
17
  "scalar"
18
18
  ],
19
- "version": "0.25.3",
19
+ "version": "0.26.0",
20
20
  "engines": {
21
21
  "node": ">=18"
22
22
  },
@@ -114,13 +114,13 @@
114
114
  "vue": "^3.5.26",
115
115
  "yaml": "^2.8.0",
116
116
  "@scalar/code-highlight": "0.2.2",
117
+ "@scalar/helpers": "0.2.8",
117
118
  "@scalar/json-magic": "0.9.2",
119
+ "@scalar/snippetz": "0.6.7",
118
120
  "@scalar/object-utils": "1.2.22",
121
+ "@scalar/types": "0.5.9",
119
122
  "@scalar/openapi-upgrader": "0.1.8",
120
- "@scalar/helpers": "0.2.8",
121
- "@scalar/snippetz": "0.6.6",
122
- "@scalar/themes": "0.13.26",
123
- "@scalar/types": "0.5.8"
123
+ "@scalar/themes": "0.13.26"
124
124
  },
125
125
  "devDependencies": {
126
126
  "@google-cloud/storage": "7.16.0",