@scalar/api-client 2.29.1 → 2.29.3

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.
@@ -1,15 +1,15 @@
1
- import { defineComponent as Q, computed as $, ref as q, createElementBlock as i, openBlock as o, Fragment as d, renderList as C, createBlock as y, createCommentVNode as v, unref as c, withCtx as r, createVNode as u, createElementVNode as b, toDisplayString as j, createTextVNode as f, normalizeClass as D, capitalize as E } from "vue";
2
- import { ScalarMarkdownSummary as H } from "@scalar/components";
1
+ import { defineComponent as q, computed as h, ref as D, createElementBlock as c, openBlock as l, Fragment as d, renderList as B, createBlock as y, createCommentVNode as v, unref as s, withCtx as o, createVNode as u, createElementVNode as f, toDisplayString as j, createTextVNode as x, normalizeClass as E, capitalize as H } from "vue";
2
+ import { ScalarMarkdownSummary as K } from "@scalar/components";
3
3
  import { getResolvedRef as L } from "@scalar/workspace-store/helpers/get-resolved-ref";
4
4
  import G from "./OAuth2.vue.js";
5
5
  import J from "./OpenIDConnect.vue.js";
6
- import x from "./RequestAuthDataTableInput.vue.js";
6
+ import b from "./RequestAuthDataTableInput.vue.js";
7
7
  import m from "../../../components/data-table/DataTableRow.vue.js";
8
- import K from "../../../components/data-table/DataTableCell.vue.js";
9
- const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow-hidden px-3 py-1.25 text-ellipsis group-hover/auth:absolute group-hover/auth:h-auto group-hover/auth:border-b *:first:line-clamp-1 *:first:text-ellipsis group-hover/auth:*:first:line-clamp-none" }, X = { class: "flex min-h-8 border-t text-base" }, Y = { class: "flex h-8 max-w-full gap-2.5 overflow-x-auto px-3" }, Z = ["onClick"], _ = { class: "relative z-10" }, ee = {
8
+ import A from "../../../components/data-table/DataTableCell.vue.js";
9
+ const W = { class: "bg-b-1 min-w-0 flex-1 px-3 py-1.25" }, X = { class: "text-c-1 leading-5.5 font-medium" }, Y = { class: "flex min-h-8 border-t text-base" }, Z = { class: "flex h-8 max-w-full gap-2.5 overflow-x-auto px-3" }, _ = ["onClick"], ee = { class: "relative z-10" }, te = {
10
10
  key: 5,
11
11
  class: "text-c-3 flex items-center justify-center border-t p-4 px-4 text-center text-xs text-balance"
12
- }, ie = /* @__PURE__ */ Q({
12
+ }, ce = /* @__PURE__ */ q({
13
13
  __name: "RequestAuthTab",
14
14
  props: {
15
15
  environment: {},
@@ -21,74 +21,81 @@ const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow
21
21
  eventBus: {}
22
22
  },
23
23
  emits: ["update:selectedScopes"],
24
- setup(n, { emit: A }) {
25
- const O = A, w = $(
26
- () => Object.entries(n.selectedSecuritySchemas).map(([a, e = []]) => ({
24
+ setup(n, { emit: O }) {
25
+ const N = O, k = h(
26
+ () => Object.entries(n.selectedSecuritySchemas).map(([a, t = []]) => ({
27
27
  scheme: L(n.securitySchemes[a]),
28
28
  name: a,
29
- scopes: e
29
+ scopes: t
30
30
  }))
31
- ), h = q(""), k = $(() => w.value.flatMap(({ scheme: e }) => e?.type !== "oauth2" && e?.type !== "openIdConnect" ? [] : Object.keys(e.flows ?? {})).includes(h.value) ? h.value : ""), N = (a) => {
32
- h.value = a;
33
- }, B = $(() => w.value.length > 1), F = (a, e) => {
34
- const t = E(a), l = e.description ? `: ${e.description}` : "";
35
- switch (e.type) {
31
+ ), V = D(""), S = h(() => k.value.flatMap(({ scheme: t }) => t?.type !== "oauth2" && t?.type !== "openIdConnect" ? [] : Object.keys(t.flows ?? {})).includes(V.value) ? V.value : ""), R = (a) => {
32
+ V.value = a;
33
+ }, F = h(() => k.value.length > 1), $ = (a, t) => {
34
+ const e = H(a);
35
+ switch (t.type) {
36
36
  case "apiKey":
37
- return `${t}${l || `: ${e.in}`}`;
37
+ return `${e}: ${t.in}`;
38
38
  case "openIdConnect":
39
39
  case "oauth2": {
40
- const U = Object.keys(e.flows ?? {})[0], s = k.value || U;
41
- return s ? `${t}: ${s}${l}` : `${t}${l}`;
40
+ const r = Object.keys(t.flows ?? {})[0], w = S.value || r;
41
+ return w ? `${e}: ${w}` : e;
42
42
  }
43
43
  case "http":
44
- return `${t}: ${e.scheme}${l}`;
44
+ return `${e}: ${t.scheme}`;
45
45
  default:
46
- return `${t}${l}`;
46
+ return e;
47
47
  }
48
- }, T = (a, e) => k.value === a || e === 0 && !k.value, V = () => n.isStatic && "border-t", S = (a, e) => n.eventBus.emit("auth:update:security-scheme-secrets", {
48
+ }, T = (a, t) => S.value === a || t === 0 && !S.value, U = () => n.isStatic && "border-t", C = (a, t) => n.eventBus.emit("auth:update:security-scheme-secrets", {
49
49
  payload: { type: "http", ...a },
50
- name: e
51
- }), R = (a, e) => n.eventBus.emit("auth:update:security-scheme-secrets", {
50
+ name: t
51
+ }), M = (a, t) => n.eventBus.emit("auth:update:security-scheme-secrets", {
52
52
  payload: { type: "apiKey", ...a },
53
- name: e
54
- }), z = (a, e) => n.eventBus.emit("auth:update:security-scheme", {
53
+ name: t
54
+ }), z = (a, t) => n.eventBus.emit("auth:update:security-scheme", {
55
55
  payload: { type: "apiKey", ...a },
56
- name: e
57
- }), M = (a, e) => {
58
- O("update:selectedScopes", {
56
+ name: t
57
+ }), P = (a, t) => {
58
+ N("update:selectedScopes", {
59
59
  id: Object.keys(n.selectedSecuritySchemas),
60
60
  name: a,
61
- ...e
61
+ ...t
62
62
  });
63
- }, P = (a, e) => {
64
- const t = "floating-bg text-c-3 relative cursor-pointer border-b border-transparent py-1 text-base font-medium";
65
- return T(a, e) ? `${t} !text-c-1 !rounded-none border-b !border-current ${n.isStatic ? "opacity-100" : ""}` : t;
63
+ }, Q = (a, t) => {
64
+ const e = "floating-bg text-c-3 relative cursor-pointer border-b border-transparent py-1 text-base font-medium";
65
+ return T(a, t) ? `${e} !text-c-1 !rounded-none border-b !border-current ${n.isStatic ? "opacity-100" : ""}` : e;
66
66
  };
67
- return (a, e) => (o(!0), i(d, null, C(w.value, ({ scheme: t, name: l, scopes: U }) => (o(), i(d, { key: l }, [
68
- B.value && t ? (o(), y(c(m), { key: 0 }, {
69
- default: r(() => [
70
- u(c(K), {
71
- "aria-label": F(l, t),
72
- class: "text-c-2 group/auth flex items-center leading-[22px] whitespace-nowrap outline-none hover:whitespace-normal"
67
+ return (a, t) => (l(!0), c(d, null, B(k.value, ({ scheme: e, name: r, scopes: w }) => (l(), c(d, { key: r }, [
68
+ F.value && e ? (l(), y(s(m), { key: 0 }, {
69
+ default: o(() => [
70
+ u(s(A), {
71
+ "aria-label": $(r, e),
72
+ class: "max-h-[auto]"
73
73
  }, {
74
- default: r(() => [
75
- b("p", W, j(F(l, t)), 1)
74
+ default: o(() => [
75
+ f("div", W, [
76
+ f("p", X, j($(r, e)), 1),
77
+ e.description ? (l(), y(s(K), {
78
+ key: 0,
79
+ class: "auth-description text-c-2 w-full",
80
+ value: e.description
81
+ }, null, 8, ["value"])) : v("", !0)
82
+ ])
76
83
  ]),
77
84
  _: 2
78
85
  }, 1032, ["aria-label"])
79
86
  ]),
80
87
  _: 2
81
88
  }, 1024)) : v("", !0),
82
- t?.description && !B.value ? (o(), y(c(m), { key: 1 }, {
83
- default: r(() => [
84
- u(c(K), {
85
- "aria-label": t.description,
89
+ e?.description && !F.value ? (l(), y(s(m), { key: 1 }, {
90
+ default: o(() => [
91
+ u(s(A), {
92
+ "aria-label": e.description,
86
93
  class: "max-h-[auto]"
87
94
  }, {
88
- default: r(() => [
89
- u(c(H), {
95
+ default: o(() => [
96
+ u(s(K), {
90
97
  class: "auth-description bg-b-1 text-c-2 min-w-0 flex-1 px-3 py-1.25",
91
- value: t.description
98
+ value: e.description
92
99
  }, null, 8, ["value"])
93
100
  ]),
94
101
  _: 2
@@ -96,54 +103,54 @@ const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow
96
103
  ]),
97
104
  _: 2
98
105
  }, 1024)) : v("", !0),
99
- t?.type === "http" ? (o(), i(d, { key: 2 }, [
100
- t.scheme === "bearer" ? (o(), y(c(m), { key: 0 }, {
101
- default: r(() => [
102
- u(x, {
103
- containerClass: V(),
106
+ e?.type === "http" ? (l(), c(d, { key: 2 }, [
107
+ e.scheme === "bearer" ? (l(), y(s(m), { key: 0 }, {
108
+ default: o(() => [
109
+ u(b, {
110
+ containerClass: U(),
104
111
  environment: n.environment,
105
- modelValue: t["x-scalar-secret-token"],
112
+ modelValue: e["x-scalar-secret-token"],
106
113
  placeholder: "Token",
107
114
  type: "password",
108
- "onUpdate:modelValue": (s) => S({ "x-scalar-secret-token": s }, l)
115
+ "onUpdate:modelValue": (i) => C({ "x-scalar-secret-token": i }, r)
109
116
  }, {
110
- default: r(() => [...e[0] || (e[0] = [
111
- f(" Bearer Token ", -1)
117
+ default: o(() => [...t[0] || (t[0] = [
118
+ x(" Bearer Token ", -1)
112
119
  ])]),
113
120
  _: 1
114
121
  }, 8, ["containerClass", "environment", "modelValue", "onUpdate:modelValue"])
115
122
  ]),
116
123
  _: 2
117
- }, 1024)) : t?.scheme === "basic" ? (o(), i(d, { key: 1 }, [
118
- u(c(m), null, {
119
- default: r(() => [
120
- u(x, {
124
+ }, 1024)) : e?.scheme === "basic" ? (l(), c(d, { key: 1 }, [
125
+ u(s(m), null, {
126
+ default: o(() => [
127
+ u(b, {
121
128
  class: "text-c-2",
122
129
  environment: n.environment,
123
- modelValue: t["x-scalar-secret-username"],
130
+ modelValue: e["x-scalar-secret-username"],
124
131
  placeholder: "janedoe",
125
132
  required: "",
126
- "onUpdate:modelValue": (s) => S({ "x-scalar-secret-username": s }, l)
133
+ "onUpdate:modelValue": (i) => C({ "x-scalar-secret-username": i }, r)
127
134
  }, {
128
- default: r(() => [...e[1] || (e[1] = [
129
- f(" Username ", -1)
135
+ default: o(() => [...t[1] || (t[1] = [
136
+ x(" Username ", -1)
130
137
  ])]),
131
138
  _: 1
132
139
  }, 8, ["environment", "modelValue", "onUpdate:modelValue"])
133
140
  ]),
134
141
  _: 2
135
142
  }, 1024),
136
- u(c(m), null, {
137
- default: r(() => [
138
- u(x, {
143
+ u(s(m), null, {
144
+ default: o(() => [
145
+ u(b, {
139
146
  environment: n.environment,
140
- modelValue: t["x-scalar-secret-password"],
147
+ modelValue: e["x-scalar-secret-password"],
141
148
  placeholder: "********",
142
149
  type: "password",
143
- "onUpdate:modelValue": (s) => S({ "x-scalar-secret-password": s }, l)
150
+ "onUpdate:modelValue": (i) => C({ "x-scalar-secret-password": i }, r)
144
151
  }, {
145
- default: r(() => [...e[2] || (e[2] = [
146
- f(" Password ", -1)
152
+ default: o(() => [...t[2] || (t[2] = [
153
+ x(" Password ", -1)
147
154
  ])]),
148
155
  _: 1
149
156
  }, 8, ["environment", "modelValue", "onUpdate:modelValue"])
@@ -151,87 +158,87 @@ const W = { class: "bg-b-1 text-c-2 outline-b-3 top-0 z-1 h-full w-full overflow
151
158
  _: 2
152
159
  }, 1024)
153
160
  ], 64)) : v("", !0)
154
- ], 64)) : t?.type === "apiKey" ? (o(), i(d, { key: 3 }, [
155
- u(c(m), null, {
156
- default: r(() => [
157
- u(x, {
158
- containerClass: V(),
161
+ ], 64)) : e?.type === "apiKey" ? (l(), c(d, { key: 3 }, [
162
+ u(s(m), null, {
163
+ default: o(() => [
164
+ u(b, {
165
+ containerClass: U(),
159
166
  environment: n.environment,
160
- modelValue: t.name,
167
+ modelValue: e.name,
161
168
  placeholder: "api-key",
162
- "onUpdate:modelValue": (s) => z({ name: s }, l)
169
+ "onUpdate:modelValue": (i) => z({ name: i }, r)
163
170
  }, {
164
- default: r(() => [...e[3] || (e[3] = [
165
- f(" Name ", -1)
171
+ default: o(() => [...t[3] || (t[3] = [
172
+ x(" Name ", -1)
166
173
  ])]),
167
174
  _: 1
168
175
  }, 8, ["containerClass", "environment", "modelValue", "onUpdate:modelValue"])
169
176
  ]),
170
177
  _: 2
171
178
  }, 1024),
172
- u(c(m), null, {
173
- default: r(() => [
174
- u(x, {
179
+ u(s(m), null, {
180
+ default: o(() => [
181
+ u(b, {
175
182
  environment: n.environment,
176
- modelValue: t["x-scalar-secret-token"],
183
+ modelValue: e["x-scalar-secret-token"],
177
184
  placeholder: "QUxMIFlPVVIgQkFTRSBBUkUgQkVMT05HIFRPIFVT",
178
185
  type: "password",
179
- "onUpdate:modelValue": (s) => R({ "x-scalar-secret-token": s }, l)
186
+ "onUpdate:modelValue": (i) => M({ "x-scalar-secret-token": i }, r)
180
187
  }, {
181
- default: r(() => [...e[4] || (e[4] = [
182
- f(" Value ", -1)
188
+ default: o(() => [...t[4] || (t[4] = [
189
+ x(" Value ", -1)
183
190
  ])]),
184
191
  _: 1
185
192
  }, 8, ["environment", "modelValue", "onUpdate:modelValue"])
186
193
  ]),
187
194
  _: 2
188
195
  }, 1024)
189
- ], 64)) : t?.type === "oauth2" || t?.type === "openIdConnect" ? (o(), i(d, { key: 4 }, [
190
- t?.type === "openIdConnect" && !Object.keys(t.flows ?? {}).length ? (o(), y(J, {
196
+ ], 64)) : e?.type === "oauth2" || e?.type === "openIdConnect" ? (l(), c(d, { key: 4 }, [
197
+ e?.type === "openIdConnect" && !Object.keys(e.flows ?? {}).length ? (l(), y(J, {
191
198
  key: 0,
192
199
  environment: n.environment,
193
200
  eventBus: n.eventBus,
194
- getStaticBorderClass: V,
195
- name: l,
201
+ getStaticBorderClass: U,
202
+ name: r,
196
203
  proxyUrl: n.proxyUrl,
197
- scheme: t
204
+ scheme: e
198
205
  }, null, 8, ["environment", "eventBus", "name", "proxyUrl", "scheme"])) : v("", !0),
199
- Object.keys(t.flows ?? {}).length > 1 ? (o(), y(c(m), { key: 1 }, {
200
- default: r(() => [
201
- b("div", X, [
202
- b("div", Y, [
203
- (o(!0), i(d, null, C(t.flows, (s, p, g) => (o(), i("button", {
206
+ Object.keys(e.flows ?? {}).length > 1 ? (l(), y(s(m), { key: 1 }, {
207
+ default: o(() => [
208
+ f("div", Y, [
209
+ f("div", Z, [
210
+ (l(!0), c(d, null, B(e.flows, (i, p, g) => (l(), c("button", {
204
211
  key: p,
205
- class: D(P(p, g)),
212
+ class: E(Q(p, g)),
206
213
  type: "button",
207
- onClick: (I) => N(p)
214
+ onClick: (I) => R(p)
208
215
  }, [
209
- b("span", _, j(p), 1)
210
- ], 10, Z))), 128))
216
+ f("span", ee, j(p), 1)
217
+ ], 10, _))), 128))
211
218
  ])
212
219
  ])
213
220
  ]),
214
221
  _: 2
215
222
  }, 1024)) : v("", !0),
216
- (o(!0), i(d, null, C(t.flows, (s, p, g) => (o(), i(d, { key: p }, [
217
- t.flows && T(p, g) ? (o(), y(G, {
223
+ (l(!0), c(d, null, B(e.flows, (i, p, g) => (l(), c(d, { key: p }, [
224
+ e.flows && T(p, g) ? (l(), y(G, {
218
225
  key: 0,
219
226
  environment: n.environment,
220
227
  eventBus: n.eventBus,
221
- flows: t.flows,
222
- name: l,
228
+ flows: e.flows,
229
+ name: r,
223
230
  proxyUrl: n.proxyUrl,
224
- scheme: t,
225
- selectedScopes: U,
231
+ scheme: e,
232
+ selectedScopes: w,
226
233
  server: n.server,
227
234
  type: p,
228
- "onUpdate:selectedScopes": (I) => M(l, I)
235
+ "onUpdate:selectedScopes": (I) => P(r, I)
229
236
  }, null, 8, ["environment", "eventBus", "flows", "name", "proxyUrl", "scheme", "selectedScopes", "server", "type", "onUpdate:selectedScopes"])) : v("", !0)
230
237
  ], 64))), 128))
231
- ], 64)) : (o(), i("div", ee, " The security scheme is missing a type, please double check your OpenAPI document or Authentication Configuration "))
238
+ ], 64)) : (l(), c("div", te, " The security scheme is missing a type, please double check your OpenAPI document or Authentication Configuration "))
232
239
  ], 64))), 128));
233
240
  }
234
241
  });
235
242
  export {
236
- ie as default
243
+ ce as default
237
244
  };
@@ -106,8 +106,10 @@ export type AppState = {
106
106
  method: Ref<HttpMethod | undefined>;
107
107
  /** The name of the currently selected example (for examples within an endpoint) */
108
108
  exampleName: Ref<string | undefined>;
109
- /** The unique identifier for the selected team context */
110
- teamUid: Ref<string>;
109
+ /** The unique identifier for the selected team context (read-only; use setTeamUid to change) */
110
+ teamUid: Readonly<Ref<string>>;
111
+ /** Sets the current team context by team UID */
112
+ setTeamUid: (value: string) => void;
111
113
  };
112
114
  /** The currently active environment */
113
115
  environment: ComputedRef<XScalarEnvironment>;
@@ -1 +1 @@
1
- {"version":3,"file":"app-state.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/app-state.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"app-state.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/app-state.ts"],"names":[],"mappings":"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"}