@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.
- package/CHANGELOG.md +20 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +25 -19
- package/dist/client.js.map +2 -2
- package/dist/events/definitions/hooks.d.ts +13 -2
- package/dist/events/definitions/hooks.d.ts.map +1 -1
- package/dist/events/definitions/operation.d.ts +11 -0
- package/dist/events/definitions/operation.d.ts.map +1 -1
- package/dist/events/definitions/ui.d.ts +12 -0
- package/dist/events/definitions/ui.d.ts.map +1 -1
- package/dist/helpers/apply-selective-updates.d.ts +1 -1
- package/dist/helpers/apply-selective-updates.d.ts.map +1 -1
- package/dist/helpers/apply-selective-updates.js +13 -3
- package/dist/helpers/apply-selective-updates.js.map +3 -3
- package/dist/mutators/fetch-request-to-har.d.ts +62 -0
- package/dist/mutators/fetch-request-to-har.d.ts.map +1 -0
- package/dist/mutators/fetch-request-to-har.js +117 -0
- package/dist/mutators/fetch-request-to-har.js.map +7 -0
- package/dist/mutators/fetch-response-to-har.d.ts +67 -0
- package/dist/mutators/fetch-response-to-har.d.ts.map +1 -0
- package/dist/mutators/fetch-response-to-har.js +104 -0
- package/dist/mutators/fetch-response-to-har.js.map +7 -0
- package/dist/mutators/har-to-operation.d.ts +37 -0
- package/dist/mutators/har-to-operation.d.ts.map +1 -0
- package/dist/mutators/har-to-operation.js +146 -0
- package/dist/mutators/har-to-operation.js.map +7 -0
- package/dist/mutators/index.d.ts +4 -0
- package/dist/mutators/index.d.ts.map +1 -1
- package/dist/mutators/operation.d.ts +5 -0
- package/dist/mutators/operation.d.ts.map +1 -1
- package/dist/mutators/operation.js +74 -1
- package/dist/mutators/operation.js.map +2 -2
- package/dist/schemas/extensions/document/x-scalar-is-dirty.d.ts +43 -0
- package/dist/schemas/extensions/document/x-scalar-is-dirty.d.ts.map +1 -0
- package/dist/schemas/extensions/document/x-scalar-is-dirty.js +9 -0
- package/dist/schemas/extensions/document/x-scalar-is-dirty.js.map +7 -0
- package/dist/schemas/extensions/operation/x-scalar-history.d.ts +217 -0
- package/dist/schemas/extensions/operation/x-scalar-history.d.ts.map +1 -0
- package/dist/schemas/extensions/operation/x-scalar-history.js +100 -0
- package/dist/schemas/extensions/operation/x-scalar-history.js.map +7 -0
- package/dist/schemas/inmemory-workspace.d.ts +64 -0
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/reference-config/index.d.ts +64 -0
- package/dist/schemas/reference-config/index.d.ts.map +1 -1
- package/dist/schemas/reference-config/settings.d.ts +64 -0
- package/dist/schemas/reference-config/settings.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +2306 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +3 -1
- package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
- package/dist/schemas/v3.1/strict/operation.d.ts +64 -1
- package/dist/schemas/v3.1/strict/operation.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/operation.js +3 -1
- package/dist/schemas/v3.1/strict/operation.js.map +2 -2
- package/dist/schemas/workspace.d.ts +448 -0
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"openapi",
|
|
17
17
|
"scalar"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.
|
|
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/
|
|
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",
|