@scalar/api-client 2.19.0 → 2.19.1

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 (23) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/style.css +1 -1
  3. package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.js +12 -12
  4. package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.d.ts.map +1 -1
  5. package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.js +44 -47
  6. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts +4 -22
  7. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts.map +1 -1
  8. package/dist/v2/blocks/request-block/components/RequestParams.vue.js +30 -28
  9. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts +10 -20
  10. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts.map +1 -1
  11. package/dist/v2/blocks/request-block/components/RequestTable.vue.js +2 -2
  12. package/dist/v2/blocks/request-block/components/RequestTable.vue2.js +31 -40
  13. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts +4 -12
  14. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts.map +1 -1
  15. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.js +27 -44
  16. package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
  17. package/dist/v2/features/app/app-events.d.ts.map +1 -1
  18. package/dist/v2/features/app/app-events.js +24 -27
  19. package/dist/v2/features/operation/Operation.vue.js +1 -1
  20. package/dist/v2/workspace-events.d.ts.map +1 -1
  21. package/dist/v2/workspace-events.js +7 -10
  22. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  23. package/package.json +14 -14
@@ -1,63 +1,46 @@
1
- const l = (i, r, a, {
2
- context: s,
3
- defaultParameters: d = 0,
4
- globalParameters: o = 0
1
+ const d = (r, t, a, {
2
+ context: n,
3
+ defaultParameters: i = 0,
4
+ globalParameters: p = 0
5
5
  }) => {
6
- const n = d + o;
6
+ const o = i + p;
7
7
  return {
8
- add: (e) => r.emit(
9
- "operation:add:parameter",
10
- {
11
- type: i,
12
- payload: {
13
- name: e.name ?? "",
14
- value: e.value ?? "",
15
- isDisabled: !1
16
- },
17
- meta: a
18
- },
19
- {
20
- debounceKey: `add:parameter-${i}-${e.index}`
21
- }
22
- ),
23
- delete: (e) => r.emit("operation:delete:parameter", {
24
- type: i,
25
- index: e.index - n,
8
+ delete: (e) => t.emit("operation:delete:parameter", {
9
+ type: r,
10
+ index: e.index - o,
26
11
  meta: a
27
12
  }),
28
- deleteAll: () => r.emit("operation:delete-all:parameters", {
29
- type: i,
13
+ deleteAll: () => t.emit("operation:delete-all:parameters", {
14
+ type: r,
30
15
  meta: a
31
16
  }),
32
- update: (e) => {
33
- const x = s[e.index];
34
- if (e.index < d + o) {
35
- const t = e.index < d ? "default" : "global";
36
- return r.emit("operation:update:extra-parameters", {
37
- type: t,
38
- in: i,
39
- meta: { ...a, name: x?.name?.toLowerCase?.() ?? "NON_VALID" },
40
- payload: { isDisabled: e.payload.isDisabled ?? !1 }
17
+ upsert: (e, l) => {
18
+ const s = n[e];
19
+ if (e < i + p) {
20
+ const m = e < i ? "default" : "global";
21
+ return t.emit("operation:update:extra-parameters", {
22
+ type: m,
23
+ in: r,
24
+ meta: { ...a, name: s?.name?.toLowerCase?.() ?? "NON_VALID" },
25
+ payload: { isDisabled: l.isDisabled ?? !1 }
41
26
  });
42
27
  }
43
- if (e.index >= n) {
44
- const t = Object.keys(e.payload).join("-");
45
- return r.emit(
46
- "operation:update:parameter",
28
+ if (e >= o)
29
+ return t.emit(
30
+ "operation:upsert:parameter",
47
31
  {
48
- type: i,
49
- index: e.index - n,
50
- payload: e.payload,
32
+ type: r,
33
+ index: e - o,
34
+ payload: l,
51
35
  meta: a
52
36
  },
53
37
  {
54
- debounceKey: `update:parameter-${i}-${e.index - n}-${t}`
38
+ debounceKey: `update:parameter-${r}-${e - o}`
55
39
  }
56
40
  );
57
- }
58
41
  }
59
42
  };
60
43
  };
61
44
  export {
62
- l as createParameterHandlers
45
+ d as createParameterHandlers
63
46
  };
@@ -1,7 +1,7 @@
1
1
  import { canMethodHaveBody as p } from "@scalar/helpers/http/can-method-have-body";
2
2
  import { getResolvedRef as n } from "@scalar/workspace-store/helpers/get-resolved-ref";
3
3
  import { isElectron as u } from "../../../../libs/electron.js";
4
- const i = "2.19.0", m = "application/json", h = "*/*", c = (r, t, a) => ({
4
+ const i = "2.19.1", m = "application/json", h = "*/*", c = (r, t, a) => ({
5
5
  name: r,
6
6
  defaultValue: t,
7
7
  isOverridden: a.has(r.toLowerCase())
@@ -1 +1 @@
1
- {"version":3,"file":"app-events.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/app-events.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAA;AACpE,OAAO,KAAK,EAAwB,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AACnH,OAAO,EAAE,KAAK,UAAU,EAAY,MAAM,KAAK,CAAA;AAC/C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AAIxC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oDAAoD,CAAA;AAErF,wBAAgB,0BAA0B,CAAC,EACzC,QAAQ,EACR,KAAK,EACL,MAAM,EACN,cAAc,EACd,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,oBAAoB,EACpB,YAAY,EACZ,eAAe,GAChB,EAAE;IACD,QAAQ,EAAE,iBAAiB,CAAA;IAC3B,KAAK,EAAE,UAAU,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IACxC,MAAM,EAAE,UAAU,CAAC,MAAM,GAAG,IAAI,CAAC,CAAA;IACjC,cAAc,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;IAC/C,oBAAoB,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;IACzC,mBAAmB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IACzC,sBAAsB,EAAE,CAAC,CAAC,EAAE,oBAAoB,KAAK,IAAI,CAAA;IACzD,oBAAoB,EAAE,WAAW,CAAA;IACjC,YAAY,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,eAAe,EAAE,MAAM,IAAI,CAAA;CAC5B,QAkNA"}
1
+ {"version":3,"file":"app-events.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/app-events.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAA;AACpE,OAAO,KAAK,EAAwB,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AACnH,OAAO,EAAE,KAAK,UAAU,EAAY,MAAM,KAAK,CAAA;AAC/C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AAIxC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oDAAoD,CAAA;AAErF,wBAAgB,0BAA0B,CAAC,EACzC,QAAQ,EACR,KAAK,EACL,MAAM,EACN,cAAc,EACd,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,oBAAoB,EACpB,YAAY,EACZ,eAAe,GAChB,EAAE;IACD,QAAQ,EAAE,iBAAiB,CAAA;IAC3B,KAAK,EAAE,UAAU,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IACxC,MAAM,EAAE,UAAU,CAAC,MAAM,GAAG,IAAI,CAAC,CAAA;IACjC,cAAc,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;IAC/C,oBAAoB,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;IACzC,mBAAmB,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAA;IACzC,sBAAsB,EAAE,CAAC,CAAC,EAAE,oBAAoB,KAAK,IAAI,CAAA;IACzD,oBAAoB,EAAE,WAAW,CAAA;IACjC,YAAY,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,eAAe,EAAE,MAAM,IAAI,CAAA;CAC5B,QA+MA"}
@@ -2,25 +2,25 @@ import { computed as E } from "vue";
2
2
  import { initializeWorkspaceEventHandlers as h } from "../../workspace-events.js";
3
3
  function g({
4
4
  eventBus: n,
5
- store: r,
5
+ store: l,
6
6
  router: m,
7
7
  rebuildSidebar: p,
8
- navigateToCurrentTab: t,
8
+ navigateToCurrentTab: a,
9
9
  onSelectSidebarItem: i,
10
10
  onAfterExampleCreation: s,
11
- onOpenCommandPalette: l,
11
+ onOpenCommandPalette: r,
12
12
  onCopyTabUrl: f,
13
13
  onToggleSidebar: x
14
14
  }) {
15
15
  const u = E(() => m.value?.currentRoute?.value), d = ({
16
16
  documentName: e,
17
- path: a,
17
+ path: t,
18
18
  method: o,
19
19
  exampleName: c
20
- }) => !(e !== void 0 && e !== u.value?.params.documentSlug || a !== void 0 && encodeURIComponent(a) !== u.value?.params.pathEncoded || o !== void 0 && o !== u.value?.params.method || c !== void 0 && c !== u.value?.params.exampleName);
20
+ }) => !(e !== void 0 && e !== u.value?.params.documentSlug || t !== void 0 && encodeURIComponent(t) !== u.value?.params.pathEncoded || o !== void 0 && o !== u.value?.params.method || c !== void 0 && c !== u.value?.params.exampleName);
21
21
  h({
22
22
  eventBus: n,
23
- store: r,
23
+ store: l,
24
24
  hooks: {
25
25
  //------------------------------------------------------------------------------------
26
26
  // Document Related Hooks
@@ -38,22 +38,19 @@ function g({
38
38
  "operation:update:pathMethod": {
39
39
  onBeforeExecute: (e) => ({
40
40
  ...e,
41
- callback: async (a) => {
42
- a === "success" && (await m.value?.replace({
41
+ callback: async (t) => {
42
+ t === "success" && (await m.value?.replace({
43
43
  name: "example",
44
44
  params: {
45
45
  method: e.payload.method,
46
46
  pathEncoded: encodeURIComponent(e.payload.path),
47
47
  exampleName: u.value?.params.exampleName
48
48
  }
49
- }), p(r.value?.workspace.activeDocument?.["x-scalar-navigation"]?.name)), e.callback(a);
49
+ }), p(l.value?.workspace.activeDocument?.["x-scalar-navigation"]?.name)), e.callback(t);
50
50
  }
51
51
  })
52
52
  },
53
- "operation:add:parameter": {
54
- onAfterExecute: (e) => s(e.meta)
55
- },
56
- "operation:update:parameter": {
53
+ "operation:upsert:parameter": {
57
54
  onAfterExecute: (e) => s(e.meta)
58
55
  },
59
56
  "operation:update:extra-parameters": {
@@ -63,17 +60,17 @@ function g({
63
60
  onAfterExecute: async (e) => {
64
61
  p(e.documentName);
65
62
  const {
66
- documentName: a,
63
+ documentName: t,
67
64
  meta: { path: o, method: c }
68
65
  } = e;
69
66
  d({
70
- documentName: a,
67
+ documentName: t,
71
68
  path: o,
72
69
  method: c
73
70
  }) && await m.value?.replace({
74
71
  name: "document.overview",
75
72
  params: {
76
- documentSlug: a
73
+ documentSlug: t
77
74
  }
78
75
  });
79
76
  }
@@ -82,11 +79,11 @@ function g({
82
79
  onAfterExecute: async (e) => {
83
80
  p(e.documentName);
84
81
  const {
85
- documentName: a,
82
+ documentName: t,
86
83
  meta: { path: o, method: c, exampleKey: v }
87
84
  } = e;
88
85
  d({
89
- documentName: a,
86
+ documentName: t,
90
87
  path: o,
91
88
  method: c,
92
89
  exampleName: v
@@ -95,7 +92,7 @@ function g({
95
92
  params: {
96
93
  pathEncoded: encodeURIComponent(o),
97
94
  method: c,
98
- documentSlug: a,
95
+ documentSlug: t,
99
96
  exampleName: "default"
100
97
  }
101
98
  });
@@ -123,31 +120,31 @@ function g({
123
120
  // Tabs Related Event Hooks
124
121
  //------------------------------------------------------------------------------------
125
122
  "tabs:add:tab": {
126
- onAfterExecute: t
123
+ onAfterExecute: a
127
124
  },
128
125
  "tabs:close:tab": {
129
- onAfterExecute: t
126
+ onAfterExecute: a
130
127
  },
131
128
  "tabs:focus:tab": {
132
- onAfterExecute: t
129
+ onAfterExecute: a
133
130
  },
134
131
  "tabs:focus:tab-last": {
135
- onAfterExecute: t
132
+ onAfterExecute: a
136
133
  },
137
134
  "tabs:navigate:previous": {
138
- onAfterExecute: t
135
+ onAfterExecute: a
139
136
  },
140
137
  "tabs:navigate:next": {
141
- onAfterExecute: t
138
+ onAfterExecute: a
142
139
  },
143
140
  "tabs:update:tabs": {
144
- onAfterExecute: t
141
+ onAfterExecute: a
145
142
  }
146
143
  }
147
144
  }), n.on("scroll-to:nav-item", ({ id: e }) => i(e)), n.on("ui:toggle:sidebar", x), n.on(
148
145
  "ui:open:command-palette",
149
146
  (e) => {
150
- e ? l(e.action, e.payload) : l();
147
+ e ? r(e.action, e.payload) : r();
151
148
  }
152
149
  ), n.on("ui:route:page", ({ name: e }) => m.value?.push({ name: e })), n.on("tabs:copy:url", (e) => f(e.index));
153
150
  }
@@ -55,7 +55,7 @@ const B = {
55
55
  method: e.method ?? "get"
56
56
  } : {
57
57
  type: "document"
58
- }), d = "2.19.0";
58
+ }), d = "2.19.1";
59
59
  return (t, n) => e.path && e.method && e.exampleName && o.value ? (c(), y(u(g), {
60
60
  key: 0,
61
61
  appVersion: u(d),
@@ -1 +1 @@
1
- {"version":3,"file":"workspace-events.d.ts","sourceRoot":"","sources":["../../src/v2/workspace-events.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAA;AACpE,OAAO,KAAK,EAAE,kBAAkB,EAAkB,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AAE3G,OAAO,EAAE,KAAK,GAAG,EAAY,MAAM,KAAK,CAAA;AAExC,KAAK,IAAI,CAAC,CAAC,SAAS,MAAM,kBAAkB,IAAI,OAAO,CAAC;IACtD,eAAe,EAAE,CACf,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC,KAC3B,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAA;IAClF,cAAc,EAAE,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACzE,CAAC,CAAA;AAEF,KAAK,KAAK,GAAG;KACV,GAAG,IAAI,MAAM,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC;CAC9C,CAAA;AA6BD;;;;;;;GAOG;AACH,wBAAgB,gCAAgC,CAAC,EAC/C,QAAQ,EACR,KAAK,EACL,KAAK,GACN,EAAE;IACD,QAAQ,EAAE,iBAAiB,CAAA;IAC3B,KAAK,EAAE,GAAG,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IACjC,KAAK,EAAE,KAAK,CAAA;CACb,QAkPA"}
1
+ {"version":3,"file":"workspace-events.d.ts","sourceRoot":"","sources":["../../src/v2/workspace-events.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAA;AACpE,OAAO,KAAK,EAAE,kBAAkB,EAAkB,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AAE3G,OAAO,EAAE,KAAK,GAAG,EAAY,MAAM,KAAK,CAAA;AAExC,KAAK,IAAI,CAAC,CAAC,SAAS,MAAM,kBAAkB,IAAI,OAAO,CAAC;IACtD,eAAe,EAAE,CACf,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC,KAC3B,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAA;IAClF,cAAc,EAAE,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACzE,CAAC,CAAA;AAEF,KAAK,KAAK,GAAG;KACV,GAAG,IAAI,MAAM,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC;CAC9C,CAAA;AA6BD;;;;;;;GAOG;AACH,wBAAgB,gCAAgC,CAAC,EAC/C,QAAQ,EACR,KAAK,EACL,KAAK,GACN,EAAE;IACD,QAAQ,EAAE,iBAAiB,CAAA;IAC3B,KAAK,EAAE,GAAG,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IACjC,KAAK,EAAE,KAAK,CAAA;CACb,QA+OA"}
@@ -1,15 +1,15 @@
1
1
  import { generateClientMutators as i } from "@scalar/workspace-store/mutators";
2
- import { computed as c } from "vue";
3
- const r = (a, p, t) => async (o) => {
2
+ import { computed as p } from "vue";
3
+ const r = (a, c, t) => async (o) => {
4
4
  const n = await t[a]?.onBeforeExecute?.(o) ?? o;
5
- return await p(n), await t[a]?.onAfterExecute?.(n), n;
5
+ return await c(n), await t[a]?.onAfterExecute?.(n), n;
6
6
  };
7
7
  function l({
8
8
  eventBus: a,
9
- store: p,
9
+ store: c,
10
10
  hooks: t
11
11
  }) {
12
- const o = c(() => i(p.value)), n = ({ collectionType: e }) => e === "document" ? o.value.active() : o.value.workspace();
12
+ const o = p(() => i(c.value)), n = ({ collectionType: e }) => e === "document" ? o.value.active() : o.value.workspace();
13
13
  a.on(
14
14
  "workspace:update:active-proxy",
15
15
  (e) => r("workspace:update:active-proxy", o.value.workspace().workspace.updateActiveProxy, t)(e)
@@ -122,11 +122,8 @@ function l({
122
122
  "operation:delete:example",
123
123
  (e) => r("operation:delete:example", o.value.active().operation.deleteOperationExample, t)(e)
124
124
  ), a.on(
125
- "operation:add:parameter",
126
- (e) => r("operation:add:parameter", o.value.active().operation.addOperationParameter, t)(e)
127
- ), a.on(
128
- "operation:update:parameter",
129
- (e) => r("operation:update:parameter", o.value.active().operation.updateOperationParameter, t)(e)
125
+ "operation:upsert:parameter",
126
+ (e) => r("operation:upsert:parameter", o.value.active().operation.upsertOperationParameter, t)(e)
130
127
  ), a.on(
131
128
  "operation:update:extra-parameters",
132
129
  (e) => r(
@@ -33,7 +33,7 @@ const W = { class: "flex-center relative flex flex-1 flex-col gap-6 p-2 capitali
33
33
  }));
34
34
  }, f = (u) => {
35
35
  u?.createNew && g.name === "request" && p();
36
- }, v = "2.19.0";
36
+ }, v = "2.19.1";
37
37
  return q(() => a.hotKeys.on(f)), R(() => a.hotKeys.off(f)), (u, e) => (l(), n("div", W, [
38
38
  s("div", {
39
39
  class: y(["flex h-[calc(100%_-_50px)] flex-col items-center justify-center", {
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  "rest",
19
19
  "testing"
20
20
  ],
21
- "version": "2.19.0",
21
+ "version": "2.19.1",
22
22
  "engines": {
23
23
  "node": ">=20"
24
24
  },
@@ -326,26 +326,26 @@
326
326
  "whatwg-mimetype": "^4.0.0",
327
327
  "yaml": "^2.8.0",
328
328
  "zod": "^4.3.5",
329
- "@scalar/analytics-client": "1.0.1",
330
- "@scalar/components": "0.16.24",
331
329
  "@scalar/draggable": "0.3.0",
330
+ "@scalar/components": "0.16.25",
332
331
  "@scalar/helpers": "0.2.8",
332
+ "@scalar/analytics-client": "1.0.1",
333
+ "@scalar/icons": "0.5.2",
333
334
  "@scalar/import": "0.4.45",
334
335
  "@scalar/json-magic": "0.9.2",
335
- "@scalar/oas-utils": "0.6.21",
336
- "@scalar/openapi-parser": "0.24.2",
337
336
  "@scalar/object-utils": "1.2.22",
338
- "@scalar/icons": "0.5.2",
339
- "@scalar/postman-to-openapi": "0.4.0",
337
+ "@scalar/oas-utils": "0.6.22",
340
338
  "@scalar/openapi-types": "0.5.3",
341
- "@scalar/sidebar": "0.7.14",
342
- "@scalar/themes": "0.13.26",
339
+ "@scalar/openapi-parser": "0.24.2",
340
+ "@scalar/postman-to-openapi": "0.4.0",
341
+ "@scalar/sidebar": "0.7.15",
343
342
  "@scalar/snippetz": "0.6.5",
344
- "@scalar/use-codemirror": "0.13.18",
343
+ "@scalar/themes": "0.13.26",
345
344
  "@scalar/types": "0.5.8",
346
- "@scalar/use-hooks": "0.3.6",
345
+ "@scalar/use-codemirror": "0.13.19",
347
346
  "@scalar/use-toasts": "0.9.1",
348
- "@scalar/workspace-store": "0.25.0"
347
+ "@scalar/use-hooks": "0.3.6",
348
+ "@scalar/workspace-store": "0.25.1"
349
349
  },
350
350
  "devDependencies": {
351
351
  "@tailwindcss/vite": "^4.1.18",
@@ -360,8 +360,8 @@
360
360
  "vite": "^7.3.1",
361
361
  "vite-svg-loader": "5.1.0",
362
362
  "vitest": "4.0.16",
363
- "@scalar/galaxy": "0.5.12",
364
- "@scalar/build-tooling": "0.4.1"
363
+ "@scalar/build-tooling": "0.4.1",
364
+ "@scalar/galaxy": "0.5.12"
365
365
  },
366
366
  "scripts": {
367
367
  "build": "scalar-build-vite",