@scalar/workspace-store 0.31.2 → 0.32.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.
- package/CHANGELOG.md +32 -0
- package/README.md +2 -2
- package/dist/client.d.ts +1 -1
- package/dist/client.js +1 -1
- package/dist/client.js.map +2 -2
- package/dist/entities/auth/index.d.ts +10 -3
- package/dist/entities/auth/index.d.ts.map +1 -1
- package/dist/entities/auth/index.js +4 -0
- package/dist/entities/auth/index.js.map +2 -2
- package/dist/entities/auth/schema.d.ts +477 -4
- package/dist/entities/auth/schema.d.ts.map +1 -1
- package/dist/entities/auth/schema.js +45 -1
- package/dist/entities/auth/schema.js.map +2 -2
- package/dist/events/definitions/auth.d.ts +13 -2
- package/dist/events/definitions/auth.d.ts.map +1 -1
- package/dist/events/definitions/workspace.d.ts +1 -2
- package/dist/events/definitions/workspace.d.ts.map +1 -1
- package/dist/mutators/auth.d.ts +1 -0
- package/dist/mutators/auth.d.ts.map +1 -1
- package/dist/mutators/auth.js +17 -2
- package/dist/mutators/auth.js.map +2 -2
- package/dist/mutators/index.d.ts +2 -0
- package/dist/mutators/index.d.ts.map +1 -1
- package/dist/schemas/extensions.d.ts +0 -1
- package/dist/schemas/extensions.d.ts.map +1 -1
- package/dist/schemas/extensions.js +1 -2
- package/dist/schemas/extensions.js.map +2 -2
- package/dist/schemas/inmemory-workspace.d.ts +100 -5
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +45 -0
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +1 -0
- package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
- package/dist/schemas/workspace-specification/index.d.ts +1 -1
- package/dist/schemas/workspace.d.ts +21 -18
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/schemas/workspace.js +6 -4
- package/dist/schemas/workspace.js.map +2 -2
- package/dist/server.d.ts +1 -1
- package/package.json +6 -7
|
@@ -100,6 +100,103 @@ declare const OAuthSchema: import("@scalar/typebox").TIntersect<[import("@scalar
|
|
|
100
100
|
}>]>>;
|
|
101
101
|
}>]>;
|
|
102
102
|
export type SecretsOAuth = Static<typeof OAuthSchema>;
|
|
103
|
+
/** OpenID Connect schema contain the base flows as well since it doesn't exist in the spec */
|
|
104
|
+
export declare const OpenIDConnectSchema: import("@scalar/typebox").TObject<{
|
|
105
|
+
type: import("@scalar/typebox").TLiteral<"openIdConnect">;
|
|
106
|
+
implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
107
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
108
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
109
|
+
}>, import("@scalar/typebox").TObject<{
|
|
110
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
111
|
+
}>, import("@scalar/typebox").TObject<{
|
|
112
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
113
|
+
}>, import("@scalar/typebox").TObject<{
|
|
114
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
115
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
116
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
117
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
118
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
119
|
+
}>, import("@scalar/typebox").TObject<{
|
|
120
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
121
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
122
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
123
|
+
}>]>>;
|
|
124
|
+
password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
125
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
126
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
127
|
+
}>, import("@scalar/typebox").TObject<{
|
|
128
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
129
|
+
}>, import("@scalar/typebox").TObject<{
|
|
130
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
131
|
+
}>, import("@scalar/typebox").TObject<{
|
|
132
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
133
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
134
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
135
|
+
}>, import("@scalar/typebox").TObject<{
|
|
136
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
137
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
138
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
139
|
+
}>, import("@scalar/typebox").TObject<{
|
|
140
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
141
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
142
|
+
'x-scalar-secret-username': import("@scalar/typebox").TString;
|
|
143
|
+
'x-scalar-secret-password': import("@scalar/typebox").TString;
|
|
144
|
+
}>, import("@scalar/typebox").TObject<{
|
|
145
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
146
|
+
}>, import("@scalar/typebox").TObject<{
|
|
147
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
148
|
+
}>]>>;
|
|
149
|
+
clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
150
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
151
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
152
|
+
}>, import("@scalar/typebox").TObject<{
|
|
153
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
154
|
+
}>, import("@scalar/typebox").TObject<{
|
|
155
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
156
|
+
}>, import("@scalar/typebox").TObject<{
|
|
157
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
158
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
159
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
160
|
+
}>, import("@scalar/typebox").TObject<{
|
|
161
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
162
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
163
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
164
|
+
}>, import("@scalar/typebox").TObject<{
|
|
165
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
166
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
167
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
168
|
+
}>, import("@scalar/typebox").TObject<{
|
|
169
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
170
|
+
}>]>>;
|
|
171
|
+
authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
172
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
173
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
174
|
+
}>, import("@scalar/typebox").TObject<{
|
|
175
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
176
|
+
}>, import("@scalar/typebox").TObject<{
|
|
177
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
178
|
+
}>, import("@scalar/typebox").TObject<{
|
|
179
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
180
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
181
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
182
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
183
|
+
}>, import("@scalar/typebox").TObject<{
|
|
184
|
+
'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
|
|
185
|
+
}>, import("@scalar/typebox").TObject<{
|
|
186
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
187
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
188
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
189
|
+
}>, import("@scalar/typebox").TObject<{
|
|
190
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
191
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
192
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
193
|
+
}>, import("@scalar/typebox").TObject<{
|
|
194
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
195
|
+
}>, import("@scalar/typebox").TObject<{
|
|
196
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
197
|
+
}>]>>;
|
|
198
|
+
}>;
|
|
199
|
+
export type SecretsOpenIdConnect = Static<typeof OpenIDConnectSchema>;
|
|
103
200
|
export declare const SecretsAuthUnionSchema: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
104
201
|
type: import("@scalar/typebox").TLiteral<"apiKey">;
|
|
105
202
|
}>, import("@scalar/typebox").TObject<{
|
|
@@ -153,7 +250,101 @@ export declare const SecretsAuthUnionSchema: import("@scalar/typebox").TUnion<[i
|
|
|
153
250
|
}>, import("@scalar/typebox").TObject<{
|
|
154
251
|
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
155
252
|
}>]>>;
|
|
156
|
-
}>]
|
|
253
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
254
|
+
type: import("@scalar/typebox").TLiteral<"openIdConnect">;
|
|
255
|
+
implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
256
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
257
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
258
|
+
}>, import("@scalar/typebox").TObject<{
|
|
259
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
260
|
+
}>, import("@scalar/typebox").TObject<{
|
|
261
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
262
|
+
}>, import("@scalar/typebox").TObject<{
|
|
263
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
264
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
265
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
266
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
267
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
268
|
+
}>, import("@scalar/typebox").TObject<{
|
|
269
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
270
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
271
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
272
|
+
}>]>>;
|
|
273
|
+
password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
274
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
275
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
276
|
+
}>, import("@scalar/typebox").TObject<{
|
|
277
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
278
|
+
}>, import("@scalar/typebox").TObject<{
|
|
279
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
280
|
+
}>, import("@scalar/typebox").TObject<{
|
|
281
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
282
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
283
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
284
|
+
}>, import("@scalar/typebox").TObject<{
|
|
285
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
286
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
287
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
288
|
+
}>, import("@scalar/typebox").TObject<{
|
|
289
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
290
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
291
|
+
'x-scalar-secret-username': import("@scalar/typebox").TString;
|
|
292
|
+
'x-scalar-secret-password': import("@scalar/typebox").TString;
|
|
293
|
+
}>, import("@scalar/typebox").TObject<{
|
|
294
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
295
|
+
}>, import("@scalar/typebox").TObject<{
|
|
296
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
297
|
+
}>]>>;
|
|
298
|
+
clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
299
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
300
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
301
|
+
}>, import("@scalar/typebox").TObject<{
|
|
302
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
303
|
+
}>, import("@scalar/typebox").TObject<{
|
|
304
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
305
|
+
}>, import("@scalar/typebox").TObject<{
|
|
306
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
307
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
308
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
309
|
+
}>, import("@scalar/typebox").TObject<{
|
|
310
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
311
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
312
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
313
|
+
}>, import("@scalar/typebox").TObject<{
|
|
314
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
315
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
316
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
317
|
+
}>, import("@scalar/typebox").TObject<{
|
|
318
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
319
|
+
}>]>>;
|
|
320
|
+
authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
321
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
322
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
323
|
+
}>, import("@scalar/typebox").TObject<{
|
|
324
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
325
|
+
}>, import("@scalar/typebox").TObject<{
|
|
326
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
327
|
+
}>, import("@scalar/typebox").TObject<{
|
|
328
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
329
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
330
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
331
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
332
|
+
}>, import("@scalar/typebox").TObject<{
|
|
333
|
+
'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
|
|
334
|
+
}>, import("@scalar/typebox").TObject<{
|
|
335
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
336
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
337
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
338
|
+
}>, import("@scalar/typebox").TObject<{
|
|
339
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
340
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
341
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
342
|
+
}>, import("@scalar/typebox").TObject<{
|
|
343
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
344
|
+
}>, import("@scalar/typebox").TObject<{
|
|
345
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
346
|
+
}>]>>;
|
|
347
|
+
}>]>;
|
|
157
348
|
export type SecretsAuthUnion = Static<typeof SecretsAuthUnionSchema>;
|
|
158
349
|
export declare const SecretsAuthSchema: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
159
350
|
type: import("@scalar/typebox").TLiteral<"apiKey">;
|
|
@@ -208,7 +399,101 @@ export declare const SecretsAuthSchema: import("@scalar/typebox").TRecord<import
|
|
|
208
399
|
}>, import("@scalar/typebox").TObject<{
|
|
209
400
|
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
210
401
|
}>]>>;
|
|
211
|
-
}>]
|
|
402
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
403
|
+
type: import("@scalar/typebox").TLiteral<"openIdConnect">;
|
|
404
|
+
implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
405
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
406
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
407
|
+
}>, import("@scalar/typebox").TObject<{
|
|
408
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
409
|
+
}>, import("@scalar/typebox").TObject<{
|
|
410
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
411
|
+
}>, import("@scalar/typebox").TObject<{
|
|
412
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
413
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
414
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
415
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
416
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
417
|
+
}>, import("@scalar/typebox").TObject<{
|
|
418
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
419
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
420
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
421
|
+
}>]>>;
|
|
422
|
+
password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
423
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
424
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
425
|
+
}>, import("@scalar/typebox").TObject<{
|
|
426
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
427
|
+
}>, import("@scalar/typebox").TObject<{
|
|
428
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
429
|
+
}>, import("@scalar/typebox").TObject<{
|
|
430
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
431
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
432
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
433
|
+
}>, import("@scalar/typebox").TObject<{
|
|
434
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
435
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
436
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
437
|
+
}>, import("@scalar/typebox").TObject<{
|
|
438
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
439
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
440
|
+
'x-scalar-secret-username': import("@scalar/typebox").TString;
|
|
441
|
+
'x-scalar-secret-password': import("@scalar/typebox").TString;
|
|
442
|
+
}>, import("@scalar/typebox").TObject<{
|
|
443
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
444
|
+
}>, import("@scalar/typebox").TObject<{
|
|
445
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
446
|
+
}>]>>;
|
|
447
|
+
clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
448
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
449
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
450
|
+
}>, import("@scalar/typebox").TObject<{
|
|
451
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
452
|
+
}>, import("@scalar/typebox").TObject<{
|
|
453
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
454
|
+
}>, import("@scalar/typebox").TObject<{
|
|
455
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
456
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
457
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
458
|
+
}>, import("@scalar/typebox").TObject<{
|
|
459
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
460
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
461
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
462
|
+
}>, import("@scalar/typebox").TObject<{
|
|
463
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
464
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
465
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
466
|
+
}>, import("@scalar/typebox").TObject<{
|
|
467
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
468
|
+
}>]>>;
|
|
469
|
+
authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
470
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
471
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
472
|
+
}>, import("@scalar/typebox").TObject<{
|
|
473
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
474
|
+
}>, import("@scalar/typebox").TObject<{
|
|
475
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
476
|
+
}>, import("@scalar/typebox").TObject<{
|
|
477
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
478
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
479
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
480
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
481
|
+
}>, import("@scalar/typebox").TObject<{
|
|
482
|
+
'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
|
|
483
|
+
}>, import("@scalar/typebox").TObject<{
|
|
484
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
485
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
486
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
487
|
+
}>, import("@scalar/typebox").TObject<{
|
|
488
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
489
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
490
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
491
|
+
}>, import("@scalar/typebox").TObject<{
|
|
492
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
493
|
+
}>, import("@scalar/typebox").TObject<{
|
|
494
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
495
|
+
}>]>>;
|
|
496
|
+
}>]>>;
|
|
212
497
|
export type SecretsAuth = Static<typeof SecretsAuthSchema>;
|
|
213
498
|
declare const SelectedSecuritySchema: import("@scalar/typebox").TObject<{
|
|
214
499
|
selectedIndex: import("@scalar/typebox").TNumber;
|
|
@@ -1664,7 +1949,101 @@ export declare const AuthSchema: import("@scalar/typebox").TObject<{
|
|
|
1664
1949
|
}>, import("@scalar/typebox").TObject<{
|
|
1665
1950
|
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
1666
1951
|
}>]>>;
|
|
1667
|
-
}>]
|
|
1952
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
1953
|
+
type: import("@scalar/typebox").TLiteral<"openIdConnect">;
|
|
1954
|
+
implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1955
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
1956
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
1957
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1958
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
1959
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1960
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
1961
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1962
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1963
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
1964
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
1965
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1966
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
1967
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1968
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
1969
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
1970
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
1971
|
+
}>]>>;
|
|
1972
|
+
password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1973
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
1974
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
1975
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1976
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
1977
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1978
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
1979
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1980
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
1981
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
1982
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
1983
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1984
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
1985
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1986
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
1987
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1988
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
1989
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
1990
|
+
'x-scalar-secret-username': import("@scalar/typebox").TString;
|
|
1991
|
+
'x-scalar-secret-password': import("@scalar/typebox").TString;
|
|
1992
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1993
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
1994
|
+
}>, import("@scalar/typebox").TObject<{
|
|
1995
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
1996
|
+
}>]>>;
|
|
1997
|
+
clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
1998
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
1999
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
2000
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2001
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
2002
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2003
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
2004
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2005
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2006
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
2007
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
2008
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2009
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
2010
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2011
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
2012
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2013
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
2014
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
2015
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
2016
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2017
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
2018
|
+
}>]>>;
|
|
2019
|
+
authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2020
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
2021
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
2022
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2023
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
2024
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2025
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
2026
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2027
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
2028
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
2029
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
2030
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
2031
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2032
|
+
'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
|
|
2033
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2034
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
2035
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
2036
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
2037
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2038
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
2039
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
2040
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
2041
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2042
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
2043
|
+
}>, import("@scalar/typebox").TObject<{
|
|
2044
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
2045
|
+
}>]>>;
|
|
2046
|
+
}>]>>;
|
|
1668
2047
|
selected: import("@scalar/typebox").TObject<{
|
|
1669
2048
|
document: import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
1670
2049
|
selectedIndex: import("@scalar/typebox").TNumber;
|
|
@@ -4521,7 +4900,101 @@ export declare const DocumentAuthSchema: import("@scalar/typebox").TRecord<impor
|
|
|
4521
4900
|
}>, import("@scalar/typebox").TObject<{
|
|
4522
4901
|
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4523
4902
|
}>]>>;
|
|
4524
|
-
}>]
|
|
4903
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4904
|
+
type: import("@scalar/typebox").TLiteral<"openIdConnect">;
|
|
4905
|
+
implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4906
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
4907
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
4908
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4909
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4910
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4911
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4912
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4913
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4914
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4915
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
4916
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4917
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
4918
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4919
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
4920
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4921
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
4922
|
+
}>]>>;
|
|
4923
|
+
password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4924
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
4925
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
4926
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4927
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4928
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4929
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4930
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4931
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4932
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4933
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
4934
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4935
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4936
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4937
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
4938
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4939
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
4940
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4941
|
+
'x-scalar-secret-username': import("@scalar/typebox").TString;
|
|
4942
|
+
'x-scalar-secret-password': import("@scalar/typebox").TString;
|
|
4943
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4944
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
4945
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4946
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4947
|
+
}>]>>;
|
|
4948
|
+
clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4949
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
4950
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
4951
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4952
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4953
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4954
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4955
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4956
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4957
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4958
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
4959
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4960
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4961
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4962
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
4963
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4964
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
4965
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4966
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
4967
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4968
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4969
|
+
}>]>>;
|
|
4970
|
+
authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4971
|
+
refreshUrl: import("@scalar/typebox").TString;
|
|
4972
|
+
scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
|
|
4973
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4974
|
+
'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4975
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4976
|
+
'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
|
|
4977
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4978
|
+
'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
|
|
4979
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4980
|
+
authorizationUrl: import("@scalar/typebox").TString;
|
|
4981
|
+
tokenUrl: import("@scalar/typebox").TString;
|
|
4982
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4983
|
+
'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
|
|
4984
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4985
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4986
|
+
}>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
|
|
4987
|
+
'x-scalar-secret-client-id': import("@scalar/typebox").TString;
|
|
4988
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4989
|
+
'x-scalar-secret-token': import("@scalar/typebox").TString;
|
|
4990
|
+
}>]>, import("@scalar/typebox").TObject<{
|
|
4991
|
+
'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
|
|
4992
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4993
|
+
'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
|
|
4994
|
+
}>, import("@scalar/typebox").TObject<{
|
|
4995
|
+
'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
|
|
4996
|
+
}>]>>;
|
|
4997
|
+
}>]>>;
|
|
4525
4998
|
selected: import("@scalar/typebox").TObject<{
|
|
4526
4999
|
document: import("@scalar/typebox").TOptional<import("@scalar/typebox").TObject<{
|
|
4527
5000
|
selectedIndex: import("@scalar/typebox").TNumber;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/entities/auth/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/entities/auth/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAmBnD,QAAA,MAAM,mBAAmB;;;;IAKxB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAE9D,QAAA,MAAM,iBAAiB;;;;;;;IAMtB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAI1D,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB3B,CAAA;AAEF,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAEtE,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKhB,CAAA;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,OAAO,WAAW,CAAC,CAAA;AAErD,8FAA8F;AAC9F,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+B9B,CAAA;AAEF,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAErE,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKjC,CAAA;AACF,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAEpE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAAqD,CAAA;AACnF,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAE1D,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1B,CAAA;AAEF,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAEpE,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMrB,CAAA;AAEF,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,UAAU,CAAC,CAAA;AAE5C,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAyC,CAAA;AACxE,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA"}
|