@scalar/workspace-store 0.22.1 → 0.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/events/definitions/document.d.ts +7 -0
  3. package/dist/events/definitions/document.d.ts.map +1 -1
  4. package/dist/events/definitions/operation.d.ts +29 -19
  5. package/dist/events/definitions/operation.d.ts.map +1 -1
  6. package/dist/events/definitions/tag.d.ts +9 -2
  7. package/dist/events/definitions/tag.d.ts.map +1 -1
  8. package/dist/events/definitions/ui.d.ts +17 -4
  9. package/dist/events/definitions/ui.d.ts.map +1 -1
  10. package/dist/mutators/document.d.ts +6 -0
  11. package/dist/mutators/document.d.ts.map +1 -1
  12. package/dist/mutators/document.js +7 -0
  13. package/dist/mutators/document.js.map +2 -2
  14. package/dist/mutators/index.d.ts +3 -3
  15. package/dist/mutators/index.d.ts.map +1 -1
  16. package/dist/mutators/index.js +10 -6
  17. package/dist/mutators/index.js.map +2 -2
  18. package/dist/mutators/operation.d.ts +21 -19
  19. package/dist/mutators/operation.d.ts.map +1 -1
  20. package/dist/mutators/operation.js +118 -65
  21. package/dist/mutators/operation.js.map +2 -2
  22. package/dist/mutators/tag.d.ts +12 -0
  23. package/dist/mutators/tag.d.ts.map +1 -1
  24. package/dist/mutators/tag.js +40 -3
  25. package/dist/mutators/tag.js.map +2 -2
  26. package/dist/navigation/helpers/get-operation-entries.d.ts +5 -5
  27. package/dist/navigation/helpers/get-operation-entries.d.ts.map +1 -1
  28. package/dist/navigation/helpers/get-operation-entries.js.map +2 -2
  29. package/dist/navigation/index.d.ts +1 -0
  30. package/dist/navigation/index.d.ts.map +1 -1
  31. package/dist/navigation/index.js +2 -0
  32. package/dist/navigation/index.js.map +2 -2
  33. package/dist/schemas/extensions/general/x-scalar-cookies.d.ts +7 -1
  34. package/dist/schemas/extensions/general/x-scalar-cookies.d.ts.map +1 -1
  35. package/dist/schemas/extensions/general/x-scalar-cookies.js +1 -0
  36. package/dist/schemas/extensions/general/x-scalar-cookies.js.map +2 -2
  37. package/dist/schemas/inmemory-workspace.d.ts +2 -0
  38. package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
  39. package/dist/schemas/reference-config/index.d.ts +1 -0
  40. package/dist/schemas/reference-config/index.d.ts.map +1 -1
  41. package/dist/schemas/reference-config/settings.d.ts +1 -0
  42. package/dist/schemas/reference-config/settings.d.ts.map +1 -1
  43. package/dist/schemas/v3.1/strict/openapi-document.d.ts +34 -0
  44. package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
  45. package/dist/schemas/workspace-specification/config.d.ts +1 -0
  46. package/dist/schemas/workspace-specification/config.d.ts.map +1 -1
  47. package/dist/schemas/workspace-specification/index.d.ts +1 -0
  48. package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
  49. package/dist/schemas/workspace.d.ts +9 -0
  50. package/dist/schemas/workspace.d.ts.map +1 -1
  51. package/package.json +9 -9
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/navigation/helpers/get-operation-entries.ts"],
4
- "sourcesContent": ["import type {\n TraversedDocument,\n TraversedEntry,\n TraversedOperation,\n TraversedWebhook,\n WithParent,\n} from '@/schemas/navigation'\n\ntype EntriesMap = Map<string, (WithParent<TraversedOperation> | WithParent<TraversedWebhook>)[]>\n\n/**\n * Builds a map of all operations and webhooks in a document, indexed by path/name and method.\n *\n * This function recursively traverses the document structure and collects all operation and webhook\n * entries. Multiple entries can share the same path|method key (for example, when operations are\n * duplicated across different tags or groups).\n *\n * Performance note: If this function is called frequently, consider generating this map once when\n * creating the sidebar state rather than recalculating it in mutators.\n *\n * @param document - The traversed OpenAPI document to extract operations from\n * @returns A map where keys are `path|method` (for operations) or `name|method` (for webhooks),\n * and values are arrays of matching entries. The pipe separator is used to create a\n * unique composite key from the two parts.\n *\n * @example\n * const entries = getOperationEntries(document)\n * const getUsers = entries.get('/users|get') // Array of all GET /users operations\n */\nexport const getOperationEntries = (document: TraversedDocument): EntriesMap => {\n const map: EntriesMap = new Map()\n\n /**\n * Helper function to add an entry to the map under the specified key.\n * If the key already exists, appends to the array; otherwise creates a new array.\n *\n * @param key - The composite key (path|method or name|method)\n * @param entry - The operation or webhook entry to add (with parent information)\n */\n const addToMap = (key: string, entry: WithParent<TraversedOperation> | WithParent<TraversedWebhook>): void => {\n const existing = map.get(key)\n if (existing) {\n existing.push(entry)\n } else {\n map.set(key, [entry])\n }\n }\n\n /**\n * Recursively traverses the document tree to find all operations and webhooks.\n * Handles three entry types:\n * - operations: collected into the map using path|method as key\n * - webhooks: collected into the map using name|method as key\n * - containers (tags, groups): recursively traversed for their children\n *\n * @param entries - Array of entries to traverse (may be undefined for empty sections)\n * @param parent - The parent entry of the current entries (if any)\n */\n const traverse = (\n entries: TraversedEntry[] | undefined,\n parent: WithParent<TraversedEntry> | TraversedDocument,\n ): void => {\n if (!entries) {\n return\n }\n\n for (const entry of entries) {\n // Handle operations - use path and method to create unique key\n if (entry.type === 'operation') {\n const key = `${entry.path}|${entry.method}`\n addToMap(key, { ...entry, parent })\n }\n // Handle webhooks - use name and method to create unique key\n else if (entry.type === 'webhook') {\n const key = `${entry.name}|${entry.method}`\n addToMap(key, { ...entry, parent })\n }\n // Handle containers - recursively traverse children, passing current entry as parent\n else if ('children' in entry && entry.children) {\n traverse(entry.children, { ...entry, parent })\n }\n }\n }\n\n // Start traversal from document root\n traverse(document.children, document)\n\n return map\n}\n"],
5
- "mappings": "AA6BO,MAAM,sBAAsB,CAAC,aAA4C;AAC9E,QAAM,MAAkB,oBAAI,IAAI;AAShC,QAAM,WAAW,CAAC,KAAa,UAA+E;AAC5G,UAAM,WAAW,IAAI,IAAI,GAAG;AAC5B,QAAI,UAAU;AACZ,eAAS,KAAK,KAAK;AAAA,IACrB,OAAO;AACL,UAAI,IAAI,KAAK,CAAC,KAAK,CAAC;AAAA,IACtB;AAAA,EACF;AAYA,QAAM,WAAW,CACf,SACA,WACS;AACT,QAAI,CAAC,SAAS;AACZ;AAAA,IACF;AAEA,eAAW,SAAS,SAAS;AAE3B,UAAI,MAAM,SAAS,aAAa;AAC9B,cAAM,MAAM,GAAG,MAAM,IAAI,IAAI,MAAM,MAAM;AACzC,iBAAS,KAAK,EAAE,GAAG,OAAO,OAAO,CAAC;AAAA,MACpC,WAES,MAAM,SAAS,WAAW;AACjC,cAAM,MAAM,GAAG,MAAM,IAAI,IAAI,MAAM,MAAM;AACzC,iBAAS,KAAK,EAAE,GAAG,OAAO,OAAO,CAAC;AAAA,MACpC,WAES,cAAc,SAAS,MAAM,UAAU;AAC9C,iBAAS,MAAM,UAAU,EAAE,GAAG,OAAO,OAAO,CAAC;AAAA,MAC/C;AAAA,IACF;AAAA,EACF;AAGA,WAAS,SAAS,UAAU,QAAQ;AAEpC,SAAO;AACT;",
4
+ "sourcesContent": ["import type {\n TraversedDocument,\n TraversedEntry,\n TraversedOperation,\n TraversedWebhook,\n WithParent,\n} from '@/schemas/navigation'\n\nexport type OperationEntriesMap = Map<string, (WithParent<TraversedOperation> | WithParent<TraversedWebhook>)[]>\n\n/**\n * Builds a map of all operations and webhooks in a document, indexed by path/name and method.\n *\n * This function recursively traverses the document structure and collects all operation and webhook\n * entries. Multiple entries can share the same path|method key (for example, when operations are\n * duplicated across different tags or groups).\n *\n * ~Performance note: If this function is called frequently, consider generating this map once when\n * creating the sidebar state rather than recalculating it in mutators.~\n * Update: we are now generating it features/operation and its drilled down from there\n *\n * @param document - The traversed OpenAPI document to extract operations from\n * @returns A map where keys are `path|method` (for operations) or `name|method` (for webhooks),\n * and values are arrays of matching entries. The pipe separator is used to create a\n * unique composite key from the two parts.\n *\n * @example\n * const entries = getOperationEntries(document)\n * const getUsers = entries.get('/users|get') // Array of all GET /users operations\n */\nexport const getOperationEntries = (document: TraversedDocument): OperationEntriesMap => {\n const map: OperationEntriesMap = new Map()\n\n /**\n * Helper function to add an entry to the map under the specified key.\n * If the key already exists, appends to the array; otherwise creates a new array.\n *\n * @param key - The composite key (path|method or name|method)\n * @param entry - The operation or webhook entry to add (with parent information)\n */\n const addToMap = (key: string, entry: WithParent<TraversedOperation> | WithParent<TraversedWebhook>): void => {\n const existing = map.get(key)\n if (existing) {\n existing.push(entry)\n } else {\n map.set(key, [entry])\n }\n }\n\n /**\n * Recursively traverses the document tree to find all operations and webhooks.\n * Handles three entry types:\n * - operations: collected into the map using path|method as key\n * - webhooks: collected into the map using name|method as key\n * - containers (tags, groups): recursively traversed for their children\n *\n * @param entries - Array of entries to traverse (may be undefined for empty sections)\n * @param parent - The parent entry of the current entries (if any)\n */\n const traverse = (\n entries: TraversedEntry[] | undefined,\n parent: WithParent<TraversedEntry> | TraversedDocument,\n ): void => {\n if (!entries) {\n return\n }\n\n for (const entry of entries) {\n // Handle operations - use path and method to create unique key\n if (entry.type === 'operation') {\n const key = `${entry.path}|${entry.method}`\n addToMap(key, { ...entry, parent })\n }\n // Handle webhooks - use name and method to create unique key\n else if (entry.type === 'webhook') {\n const key = `${entry.name}|${entry.method}`\n addToMap(key, { ...entry, parent })\n }\n // Handle containers - recursively traverse children, passing current entry as parent\n else if ('children' in entry && entry.children) {\n traverse(entry.children, { ...entry, parent })\n }\n }\n }\n\n // Start traversal from document root\n traverse(document.children, document)\n\n return map\n}\n"],
5
+ "mappings": "AA8BO,MAAM,sBAAsB,CAAC,aAAqD;AACvF,QAAM,MAA2B,oBAAI,IAAI;AASzC,QAAM,WAAW,CAAC,KAAa,UAA+E;AAC5G,UAAM,WAAW,IAAI,IAAI,GAAG;AAC5B,QAAI,UAAU;AACZ,eAAS,KAAK,KAAK;AAAA,IACrB,OAAO;AACL,UAAI,IAAI,KAAK,CAAC,KAAK,CAAC;AAAA,IACtB;AAAA,EACF;AAYA,QAAM,WAAW,CACf,SACA,WACS;AACT,QAAI,CAAC,SAAS;AACZ;AAAA,IACF;AAEA,eAAW,SAAS,SAAS;AAE3B,UAAI,MAAM,SAAS,aAAa;AAC9B,cAAM,MAAM,GAAG,MAAM,IAAI,IAAI,MAAM,MAAM;AACzC,iBAAS,KAAK,EAAE,GAAG,OAAO,OAAO,CAAC;AAAA,MACpC,WAES,MAAM,SAAS,WAAW;AACjC,cAAM,MAAM,GAAG,MAAM,IAAI,IAAI,MAAM,MAAM;AACzC,iBAAS,KAAK,EAAE,GAAG,OAAO,OAAO,CAAC;AAAA,MACpC,WAES,cAAc,SAAS,MAAM,UAAU;AAC9C,iBAAS,MAAM,UAAU,EAAE,GAAG,OAAO,OAAO,CAAC;AAAA,MAC/C;AAAA,IACF;AAAA,EACF;AAGA,WAAS,SAAS,UAAU,QAAQ;AAEpC,SAAO;AACT;",
6
6
  "names": []
7
7
  }
@@ -1,4 +1,5 @@
1
1
  export { getOpenapiObject } from './helpers/get-openapi-object.js';
2
+ export { type OperationEntriesMap, getOperationEntries } from './helpers/get-operation-entries.js';
2
3
  export { getParentEntry } from './helpers/get-parent-entry.js';
3
4
  export { traverseDocument as createNavigation } from './helpers/traverse-document.js';
4
5
  export type { TraverseSpecOptions as createNavigationOptions } from './types.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/navigation/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAA;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,gBAAgB,IAAI,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AAClF,YAAY,EAAE,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/navigation/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAA;AAC/D,OAAO,EAAE,KAAK,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAA;AAC/F,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,gBAAgB,IAAI,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AAClF,YAAY,EAAE,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,SAAS,CAAA"}
@@ -1,9 +1,11 @@
1
1
  import { getOpenapiObject } from "./helpers/get-openapi-object.js";
2
+ import { getOperationEntries } from "./helpers/get-operation-entries.js";
2
3
  import { getParentEntry } from "./helpers/get-parent-entry.js";
3
4
  import { traverseDocument } from "./helpers/traverse-document.js";
4
5
  export {
5
6
  traverseDocument as createNavigation,
6
7
  getOpenapiObject,
8
+ getOperationEntries,
7
9
  getParentEntry
8
10
  };
9
11
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/navigation/index.ts"],
4
- "sourcesContent": ["export { getOpenapiObject } from './helpers/get-openapi-object'\nexport { getParentEntry } from './helpers/get-parent-entry'\nexport { traverseDocument as createNavigation } from './helpers/traverse-document'\nexport type { TraverseSpecOptions as createNavigationOptions } from './types'\n"],
5
- "mappings": "AAAA,SAAS,wBAAwB;AACjC,SAAS,sBAAsB;AAC/B,SAA6B,wBAAwB;",
4
+ "sourcesContent": ["export { getOpenapiObject } from './helpers/get-openapi-object'\nexport { type OperationEntriesMap, getOperationEntries } from './helpers/get-operation-entries'\nexport { getParentEntry } from './helpers/get-parent-entry'\nexport { traverseDocument as createNavigation } from './helpers/traverse-document'\nexport type { TraverseSpecOptions as createNavigationOptions } from './types'\n"],
5
+ "mappings": "AAAA,SAAS,wBAAwB;AACjC,SAAmC,2BAA2B;AAC9D,SAAS,sBAAsB;AAC/B,SAA6B,wBAAwB;",
6
6
  "names": []
7
7
  }
@@ -2,6 +2,7 @@ export declare const xScalarCookieSchema: import("@scalar/typebox").TObject<{
2
2
  name: import("@scalar/typebox").TString;
3
3
  value: import("@scalar/typebox").TString;
4
4
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5
6
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6
7
  }>;
7
8
  export type XScalarCookie = {
@@ -14,9 +15,13 @@ export type XScalarCookie = {
14
15
  */
15
16
  value: string;
16
17
  /**
17
- * Defines the host to which the cookie will be sent.
18
+ * Allows this domain and all subdomains, is less restrictive than not setting a domain
18
19
  */
19
20
  domain?: string;
21
+ /**
22
+ * Will restrict this cookie to only be sent with requests that contain this path
23
+ */
24
+ path?: string;
20
25
  /**
21
26
  * Indicates if the cookie is disabled.
22
27
  */
@@ -27,6 +32,7 @@ export declare const xScalarCookiesSchema: import("@scalar/typebox").TObject<{
27
32
  name: import("@scalar/typebox").TString;
28
33
  value: import("@scalar/typebox").TString;
29
34
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
35
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30
36
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
31
37
  }>>>;
32
38
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"x-scalar-cookies.d.ts","sourceRoot":"","sources":["../../../../src/schemas/extensions/general/x-scalar-cookies.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,mBAAmB;;;;;EAK9B,CAAA;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IACZ;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;EAE/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG;IAC3B,kBAAkB,CAAC,EAAE,aAAa,EAAE,CAAA;CACrC,CAAA"}
1
+ {"version":3,"file":"x-scalar-cookies.d.ts","sourceRoot":"","sources":["../../../../src/schemas/extensions/general/x-scalar-cookies.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,mBAAmB;;;;;;EAM9B,CAAA;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IACZ;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;EAE/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG;IAC3B,kBAAkB,CAAC,EAAE,aAAa,EAAE,CAAA;CACrC,CAAA"}
@@ -3,6 +3,7 @@ const xScalarCookieSchema = Type.Object({
3
3
  name: Type.String(),
4
4
  value: Type.String(),
5
5
  domain: Type.Optional(Type.String()),
6
+ path: Type.Optional(Type.String()),
6
7
  isDisabled: Type.Optional(Type.Boolean())
7
8
  });
8
9
  const xScalarCookiesSchema = Type.Object({
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../src/schemas/extensions/general/x-scalar-cookies.ts"],
4
- "sourcesContent": ["import { Type } from '@scalar/typebox'\n\nexport const xScalarCookieSchema = Type.Object({\n name: Type.String(),\n value: Type.String(),\n domain: Type.Optional(Type.String()),\n isDisabled: Type.Optional(Type.Boolean()),\n})\n\nexport type XScalarCookie = {\n /**\n * Defines the cookie name and its value. A cookie definition begins with a name-value pair.\n */\n name: string\n /**\n * Defines the cookie value.\n */\n value: string\n /**\n * Defines the host to which the cookie will be sent.\n */\n domain?: string\n /**\n * Indicates if the cookie is disabled.\n */\n isDisabled?: boolean\n}\n\nexport const xScalarCookiesSchema = Type.Object({\n 'x-scalar-cookies': Type.Optional(Type.Array(xScalarCookieSchema)),\n})\nexport type XScalarCookies = {\n 'x-scalar-cookies'?: XScalarCookie[]\n}\n"],
5
- "mappings": "AAAA,SAAS,YAAY;AAEd,MAAM,sBAAsB,KAAK,OAAO;AAAA,EAC7C,MAAM,KAAK,OAAO;AAAA,EAClB,OAAO,KAAK,OAAO;AAAA,EACnB,QAAQ,KAAK,SAAS,KAAK,OAAO,CAAC;AAAA,EACnC,YAAY,KAAK,SAAS,KAAK,QAAQ,CAAC;AAC1C,CAAC;AAqBM,MAAM,uBAAuB,KAAK,OAAO;AAAA,EAC9C,oBAAoB,KAAK,SAAS,KAAK,MAAM,mBAAmB,CAAC;AACnE,CAAC;",
4
+ "sourcesContent": ["import { Type } from '@scalar/typebox'\n\nexport const xScalarCookieSchema = Type.Object({\n name: Type.String(),\n value: Type.String(),\n domain: Type.Optional(Type.String()),\n path: Type.Optional(Type.String()),\n isDisabled: Type.Optional(Type.Boolean()),\n})\n\nexport type XScalarCookie = {\n /**\n * Defines the cookie name and its value. A cookie definition begins with a name-value pair.\n */\n name: string\n /**\n * Defines the cookie value.\n */\n value: string\n /**\n * Allows this domain and all subdomains, is less restrictive than not setting a domain\n */\n domain?: string\n /**\n * Will restrict this cookie to only be sent with requests that contain this path\n */\n path?: string\n /**\n * Indicates if the cookie is disabled.\n */\n isDisabled?: boolean\n}\n\nexport const xScalarCookiesSchema = Type.Object({\n 'x-scalar-cookies': Type.Optional(Type.Array(xScalarCookieSchema)),\n})\nexport type XScalarCookies = {\n 'x-scalar-cookies'?: XScalarCookie[]\n}\n"],
5
+ "mappings": "AAAA,SAAS,YAAY;AAEd,MAAM,sBAAsB,KAAK,OAAO;AAAA,EAC7C,MAAM,KAAK,OAAO;AAAA,EAClB,OAAO,KAAK,OAAO;AAAA,EACnB,QAAQ,KAAK,SAAS,KAAK,OAAO,CAAC;AAAA,EACnC,MAAM,KAAK,SAAS,KAAK,OAAO,CAAC;AAAA,EACjC,YAAY,KAAK,SAAS,KAAK,QAAQ,CAAC;AAC1C,CAAC;AAyBM,MAAM,uBAAuB,KAAK,OAAO;AAAA,EAC9C,oBAAoB,KAAK,SAAS,KAAK,MAAM,mBAAmB,CAAC;AACnE,CAAC;",
6
6
  "names": []
7
7
  }
@@ -1298,6 +1298,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1298
1298
  name: import("@scalar/typebox").TString;
1299
1299
  value: import("@scalar/typebox").TString;
1300
1300
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1301
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1301
1302
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1302
1303
  }>>>;
1303
1304
  }>, import("@scalar/typebox").TObject<{
@@ -2750,6 +2751,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2750
2751
  name: import("@scalar/typebox").TString;
2751
2752
  value: import("@scalar/typebox").TString;
2752
2753
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2754
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2753
2755
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2754
2756
  }>>>;
2755
2757
  }>, import("@scalar/typebox").TObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"inmemory-workspace.d.ts","sourceRoot":"","sources":["../../src/schemas/inmemory-workspace.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,KAAK,iBAAiB,EAEtB,KAAK,aAAa,EAEnB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,0CAA0C,CAAA;AAIpF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOlC,CAAA;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,aAAa,CAAA;IACnB,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACvC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAA;IAC5C,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAA;IAC1D,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAA;IAC9D,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAC/B,CAAA"}
1
+ {"version":3,"file":"inmemory-workspace.d.ts","sourceRoot":"","sources":["../../src/schemas/inmemory-workspace.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,KAAK,iBAAiB,EAEtB,KAAK,aAAa,EAEnB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,0CAA0C,CAAA;AAIpF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOlC,CAAA;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,aAAa,CAAA;IACnB,eAAe,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACvC,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAA;IAC5C,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAA;IAC1D,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAA;IAC9D,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAC/B,CAAA"}
@@ -1300,6 +1300,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1300
1300
  name: import("@scalar/typebox").TString;
1301
1301
  value: import("@scalar/typebox").TString;
1302
1302
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1303
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1303
1304
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1304
1305
  }>>>;
1305
1306
  }>, import("@scalar/typebox").TObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/index.ts"],"names":[],"mappings":"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"}
@@ -1286,6 +1286,7 @@ export declare const SettingsSchema: import("@scalar/typebox").TObject<{
1286
1286
  name: import("@scalar/typebox").TString;
1287
1287
  value: import("@scalar/typebox").TString;
1288
1288
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1289
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1289
1290
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1290
1291
  }>>>;
1291
1292
  }>, import("@scalar/typebox").TObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/settings.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAG7C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAEhE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW1B,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAA;IACxB,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,QAAQ,CAKlD,CAAA"}
1
+ {"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/settings.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAG7C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAEhE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW1B,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,YAAY,EAAE,CAAA;IACxB,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,YAAY,CAAC,QAAQ,CAKlD,CAAA"}
@@ -1330,6 +1330,7 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
1330
1330
  name: import("@scalar/typebox").TString;
1331
1331
  value: import("@scalar/typebox").TString;
1332
1332
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1333
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1333
1334
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1334
1335
  }>>>;
1335
1336
  }>, import("@scalar/typebox").TObject<{
@@ -2741,6 +2742,7 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
2741
2742
  name: import("@scalar/typebox").TString;
2742
2743
  value: import("@scalar/typebox").TString;
2743
2744
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2745
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2744
2746
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2745
2747
  }>>>;
2746
2748
  }>, import("@scalar/typebox").TObject<{
@@ -4152,6 +4154,7 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
4152
4154
  name: import("@scalar/typebox").TString;
4153
4155
  value: import("@scalar/typebox").TString;
4154
4156
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4157
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4155
4158
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4156
4159
  }>>>;
4157
4160
  }>, import("@scalar/typebox").TObject<{
@@ -5563,6 +5566,7 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
5563
5566
  name: import("@scalar/typebox").TString;
5564
5567
  value: import("@scalar/typebox").TString;
5565
5568
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5569
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5566
5570
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5567
5571
  }>>>;
5568
5572
  }>, import("@scalar/typebox").TObject<{
@@ -6974,6 +6978,7 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
6974
6978
  name: import("@scalar/typebox").TString;
6975
6979
  value: import("@scalar/typebox").TString;
6976
6980
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
6981
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
6977
6982
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6978
6983
  }>>>;
6979
6984
  }>, import("@scalar/typebox").TObject<{
@@ -8385,6 +8390,7 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
8385
8390
  name: import("@scalar/typebox").TString;
8386
8391
  value: import("@scalar/typebox").TString;
8387
8392
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8393
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8388
8394
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8389
8395
  }>>>;
8390
8396
  }>, import("@scalar/typebox").TObject<{
@@ -9796,6 +9802,7 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
9796
9802
  name: import("@scalar/typebox").TString;
9797
9803
  value: import("@scalar/typebox").TString;
9798
9804
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
9805
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
9799
9806
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9800
9807
  }>>>;
9801
9808
  }>, import("@scalar/typebox").TObject<{
@@ -11207,6 +11214,7 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
11207
11214
  name: import("@scalar/typebox").TString;
11208
11215
  value: import("@scalar/typebox").TString;
11209
11216
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
11217
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
11210
11218
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
11211
11219
  }>>>;
11212
11220
  }>, import("@scalar/typebox").TObject<{
@@ -12618,6 +12626,7 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
12618
12626
  name: import("@scalar/typebox").TString;
12619
12627
  value: import("@scalar/typebox").TString;
12620
12628
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
12629
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
12621
12630
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
12622
12631
  }>>>;
12623
12632
  }>, import("@scalar/typebox").TObject<{
@@ -14029,6 +14038,7 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
14029
14038
  name: import("@scalar/typebox").TString;
14030
14039
  value: import("@scalar/typebox").TString;
14031
14040
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
14041
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
14032
14042
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
14033
14043
  }>>>;
14034
14044
  }>, import("@scalar/typebox").TObject<{
@@ -15440,6 +15450,7 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
15440
15450
  name: import("@scalar/typebox").TString;
15441
15451
  value: import("@scalar/typebox").TString;
15442
15452
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
15453
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
15443
15454
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
15444
15455
  }>>>;
15445
15456
  }>, import("@scalar/typebox").TObject<{
@@ -16851,6 +16862,7 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
16851
16862
  name: import("@scalar/typebox").TString;
16852
16863
  value: import("@scalar/typebox").TString;
16853
16864
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
16865
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
16854
16866
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
16855
16867
  }>>>;
16856
16868
  }>, import("@scalar/typebox").TObject<{
@@ -18262,6 +18274,7 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
18262
18274
  name: import("@scalar/typebox").TString;
18263
18275
  value: import("@scalar/typebox").TString;
18264
18276
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18277
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18265
18278
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
18266
18279
  }>>>;
18267
18280
  }>, import("@scalar/typebox").TObject<{
@@ -19673,6 +19686,7 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
19673
19686
  name: import("@scalar/typebox").TString;
19674
19687
  value: import("@scalar/typebox").TString;
19675
19688
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
19689
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
19676
19690
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
19677
19691
  }>>>;
19678
19692
  }>, import("@scalar/typebox").TObject<{
@@ -21084,6 +21098,7 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
21084
21098
  name: import("@scalar/typebox").TString;
21085
21099
  value: import("@scalar/typebox").TString;
21086
21100
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
21101
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
21087
21102
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
21088
21103
  }>>>;
21089
21104
  }>, import("@scalar/typebox").TObject<{
@@ -22495,6 +22510,7 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
22495
22510
  name: import("@scalar/typebox").TString;
22496
22511
  value: import("@scalar/typebox").TString;
22497
22512
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
22513
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
22498
22514
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
22499
22515
  }>>>;
22500
22516
  }>, import("@scalar/typebox").TObject<{
@@ -23906,6 +23922,7 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
23906
23922
  name: import("@scalar/typebox").TString;
23907
23923
  value: import("@scalar/typebox").TString;
23908
23924
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
23925
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
23909
23926
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
23910
23927
  }>>>;
23911
23928
  }>, import("@scalar/typebox").TObject<{
@@ -25317,6 +25334,7 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
25317
25334
  name: import("@scalar/typebox").TString;
25318
25335
  value: import("@scalar/typebox").TString;
25319
25336
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25337
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25320
25338
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
25321
25339
  }>>>;
25322
25340
  }>, import("@scalar/typebox").TObject<{
@@ -26728,6 +26746,7 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
26728
26746
  name: import("@scalar/typebox").TString;
26729
26747
  value: import("@scalar/typebox").TString;
26730
26748
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
26749
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
26731
26750
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
26732
26751
  }>>>;
26733
26752
  }>, import("@scalar/typebox").TObject<{
@@ -28139,6 +28158,7 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
28139
28158
  name: import("@scalar/typebox").TString;
28140
28159
  value: import("@scalar/typebox").TString;
28141
28160
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
28161
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
28142
28162
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
28143
28163
  }>>>;
28144
28164
  }>, import("@scalar/typebox").TObject<{
@@ -29550,6 +29570,7 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
29550
29570
  name: import("@scalar/typebox").TString;
29551
29571
  value: import("@scalar/typebox").TString;
29552
29572
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
29573
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
29553
29574
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
29554
29575
  }>>>;
29555
29576
  }>, import("@scalar/typebox").TObject<{
@@ -30961,6 +30982,7 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
30961
30982
  name: import("@scalar/typebox").TString;
30962
30983
  value: import("@scalar/typebox").TString;
30963
30984
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30985
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30964
30986
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
30965
30987
  }>>>;
30966
30988
  }>, import("@scalar/typebox").TObject<{
@@ -32372,6 +32394,7 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
32372
32394
  name: import("@scalar/typebox").TString;
32373
32395
  value: import("@scalar/typebox").TString;
32374
32396
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
32397
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
32375
32398
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
32376
32399
  }>>>;
32377
32400
  }>, import("@scalar/typebox").TObject<{
@@ -33783,6 +33806,7 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
33783
33806
  name: import("@scalar/typebox").TString;
33784
33807
  value: import("@scalar/typebox").TString;
33785
33808
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
33809
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
33786
33810
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
33787
33811
  }>>>;
33788
33812
  }>, import("@scalar/typebox").TObject<{
@@ -35194,6 +35218,7 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
35194
35218
  name: import("@scalar/typebox").TString;
35195
35219
  value: import("@scalar/typebox").TString;
35196
35220
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
35221
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
35197
35222
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
35198
35223
  }>>>;
35199
35224
  }>, import("@scalar/typebox").TObject<{
@@ -36605,6 +36630,7 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
36605
36630
  name: import("@scalar/typebox").TString;
36606
36631
  value: import("@scalar/typebox").TString;
36607
36632
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
36633
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
36608
36634
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
36609
36635
  }>>>;
36610
36636
  }>, import("@scalar/typebox").TObject<{
@@ -38016,6 +38042,7 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
38016
38042
  name: import("@scalar/typebox").TString;
38017
38043
  value: import("@scalar/typebox").TString;
38018
38044
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
38045
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
38019
38046
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
38020
38047
  }>>>;
38021
38048
  }>, import("@scalar/typebox").TObject<{
@@ -39427,6 +39454,7 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
39427
39454
  name: import("@scalar/typebox").TString;
39428
39455
  value: import("@scalar/typebox").TString;
39429
39456
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
39457
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
39430
39458
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
39431
39459
  }>>>;
39432
39460
  }>, import("@scalar/typebox").TObject<{
@@ -40838,6 +40866,7 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
40838
40866
  name: import("@scalar/typebox").TString;
40839
40867
  value: import("@scalar/typebox").TString;
40840
40868
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
40869
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
40841
40870
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
40842
40871
  }>>>;
40843
40872
  }>, import("@scalar/typebox").TObject<{
@@ -42249,6 +42278,7 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
42249
42278
  name: import("@scalar/typebox").TString;
42250
42279
  value: import("@scalar/typebox").TString;
42251
42280
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
42281
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
42252
42282
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
42253
42283
  }>>>;
42254
42284
  }>, import("@scalar/typebox").TObject<{
@@ -43660,6 +43690,7 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
43660
43690
  name: import("@scalar/typebox").TString;
43661
43691
  value: import("@scalar/typebox").TString;
43662
43692
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
43693
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
43663
43694
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
43664
43695
  }>>>;
43665
43696
  }>, import("@scalar/typebox").TObject<{
@@ -45071,6 +45102,7 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
45071
45102
  name: import("@scalar/typebox").TString;
45072
45103
  value: import("@scalar/typebox").TString;
45073
45104
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
45105
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
45074
45106
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
45075
45107
  }>>>;
45076
45108
  }>, import("@scalar/typebox").TObject<{
@@ -46482,6 +46514,7 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
46482
46514
  name: import("@scalar/typebox").TString;
46483
46515
  value: import("@scalar/typebox").TString;
46484
46516
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
46517
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
46485
46518
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
46486
46519
  }>>>;
46487
46520
  }>, import("@scalar/typebox").TObject<{
@@ -47893,6 +47926,7 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
47893
47926
  name: import("@scalar/typebox").TString;
47894
47927
  value: import("@scalar/typebox").TString;
47895
47928
  domain: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47929
+ path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47896
47930
  isDisabled: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
47897
47931
  }>>>;
47898
47932
  }>, import("@scalar/typebox").TObject<{