@scalar/workspace-store 0.36.0 → 0.37.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.
@@ -1,9 +1,21 @@
1
1
  import { apply, diff } from "@scalar/json-magic/diff";
2
2
  import { split } from "../helpers/general.js";
3
3
  const isSecretKey = (key) => key.startsWith("x-scalar-secret-");
4
- const excludeKeys = /* @__PURE__ */ new Set(["x-scalar-navigation", "x-ext", "x-ext-urls", "$status", "x-scalar-is-dirty"]);
4
+ const EXCLUDE_KEYS = [
5
+ // Bundler keys
6
+ "x-ext",
7
+ "x-ext-urls",
8
+ "$status",
9
+ // Scalar keys
10
+ "x-scalar-navigation",
11
+ "x-scalar-is-dirty",
12
+ "x-original-oas-version",
13
+ "x-scalar-original-document-hash",
14
+ "x-scalar-original-source-url"
15
+ ];
16
+ const excludeKeysSet = new Set(EXCLUDE_KEYS);
5
17
  const filterDiff = (diff2) => {
6
- if (diff2.path.some((p) => excludeKeys.has(p))) {
18
+ if (diff2.path.some((p) => excludeKeysSet.has(p))) {
7
19
  return false;
8
20
  }
9
21
  if (isSecretKey(diff2.path.at(-1) ?? "")) {
@@ -18,6 +30,8 @@ const applySelectiveUpdates = (originalDocument, updatedDocument) => {
18
30
  return excludedDiffs;
19
31
  };
20
32
  export {
21
- applySelectiveUpdates
33
+ EXCLUDE_KEYS,
34
+ applySelectiveUpdates,
35
+ excludeKeysSet
22
36
  };
23
37
  //# sourceMappingURL=apply-selective-updates.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/helpers/apply-selective-updates.ts"],
4
- "sourcesContent": ["import { type Difference, apply, diff } from '@scalar/json-magic/diff'\n\nimport { type UnknownObject, split } from '@/helpers/general'\n\n/**\n * Checks if a key is a Scalar secret key.\n * Secret keys start with 'x-scalar-secret-' prefix.\n */\nconst isSecretKey = (key: string) => key.startsWith('x-scalar-secret-')\n\n/**\n * Keys to exclude from diffs.\n * These are metadata fields that should be omitted when syncing updates to the original document.\n * Changes to these fields are not persisted.\n */\nconst excludeKeys = new Set(['x-scalar-navigation', 'x-ext', 'x-ext-urls', '$status', 'x-scalar-is-dirty'])\n\n/**\n * Determines whether a diff should be included when applying updates.\n *\n * Returns `true` if the diff does not involve excluded metadata fields\n * (such as navigation or external references) or secret keys.\n * Excluded keys and secret keys are not persisted to the original document.\n */\nconst filterDiff = (diff: Difference<unknown>) => {\n // Omit diff if its path contains a key we want to exclude from updates\n if (diff.path.some((p) => excludeKeys.has(p))) {\n return false\n }\n\n // Omit diff if its last path element is a secret key\n if (isSecretKey(diff.path.at(-1) ?? '')) {\n return false\n }\n\n return true\n}\n\n/**\n * Applies updates from an updated document to an original document, while excluding changes to certain metadata keys.\n *\n * This function computes the differences between the original and updated documents,\n * filters out any diffs that affect excluded keys (such as navigation, external references, or status fields),\n * and applies only the allowed changes to the original document in place.\n *\n * Note: The originalDocument is mutated directly.\n *\n * @param originalDocument - The document to be updated (mutated in place)\n * @param updatedDocument - The document containing the desired changes\n * @returns A tuple: [the updated original document, array of excluded diffs that were not applied]\n */\nexport const applySelectiveUpdates = (originalDocument: UnknownObject, updatedDocument: UnknownObject) => {\n const diffs: Difference<unknown>[] = diff(originalDocument, updatedDocument)\n\n const [writableDiffs, excludedDiffs] = split(diffs, filterDiff)\n\n apply(originalDocument, writableDiffs)\n\n return excludedDiffs\n}\n"],
5
- "mappings": "AAAA,SAA0B,OAAO,YAAY;AAE7C,SAA6B,aAAa;AAM1C,MAAM,cAAc,CAAC,QAAgB,IAAI,WAAW,kBAAkB;AAOtE,MAAM,cAAc,oBAAI,IAAI,CAAC,uBAAuB,SAAS,cAAc,WAAW,mBAAmB,CAAC;AAS1G,MAAM,aAAa,CAACA,UAA8B;AAEhD,MAAIA,MAAK,KAAK,KAAK,CAAC,MAAM,YAAY,IAAI,CAAC,CAAC,GAAG;AAC7C,WAAO;AAAA,EACT;AAGA,MAAI,YAAYA,MAAK,KAAK,GAAG,EAAE,KAAK,EAAE,GAAG;AACvC,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAeO,MAAM,wBAAwB,CAAC,kBAAiC,oBAAmC;AACxG,QAAM,QAA+B,KAAK,kBAAkB,eAAe;AAE3E,QAAM,CAAC,eAAe,aAAa,IAAI,MAAM,OAAO,UAAU;AAE9D,QAAM,kBAAkB,aAAa;AAErC,SAAO;AACT;",
4
+ "sourcesContent": ["import { type Difference, apply, diff } from '@scalar/json-magic/diff'\n\nimport { type UnknownObject, split } from '@/helpers/general'\nimport type { OpenAPIExtensions } from '@/schemas/v3.1/strict/openapi-document'\n\n/**\n * Checks if a key is a Scalar secret key.\n * Secret keys start with 'x-scalar-secret-' prefix.\n */\nconst isSecretKey = (key: string) => key.startsWith('x-scalar-secret-')\n\n/**\n * Keys to exclude from diffs.\n * These are metadata fields that should be omitted when syncing updates to the original document.\n * Changes to these fields are not persisted.\n */\ntype BunlderKeys = 'x-ext' | 'x-ext-urls' | '$status'\nexport const EXCLUDE_KEYS = [\n // Bundler keys\n 'x-ext',\n 'x-ext-urls',\n '$status',\n // Scalar keys\n 'x-scalar-navigation',\n 'x-scalar-is-dirty',\n 'x-original-oas-version',\n 'x-scalar-original-document-hash',\n 'x-scalar-original-source-url',\n] satisfies (keyof OpenAPIExtensions | BunlderKeys)[] as string[]\nexport const excludeKeysSet = new Set(EXCLUDE_KEYS)\n\n/**\n * Determines whether a diff should be included when applying updates.\n *\n * Returns `true` if the diff does not involve excluded metadata fields\n * (such as navigation or external references) or secret keys.\n * Excluded keys and secret keys are not persisted to the original document.\n */\nconst filterDiff = (diff: Difference<unknown>) => {\n // Omit diff if its path contains a key we want to exclude from updates\n if (diff.path.some((p) => excludeKeysSet.has(p))) {\n return false\n }\n\n // Omit diff if its last path element is a secret key\n if (isSecretKey(diff.path.at(-1) ?? '')) {\n return false\n }\n\n return true\n}\n\n/**\n * Applies updates from an updated document to an original document, while excluding changes to certain metadata keys.\n *\n * This function computes the differences between the original and updated documents,\n * filters out any diffs that affect excluded keys (such as navigation, external references, or status fields),\n * and applies only the allowed changes to the original document in place.\n *\n * Note: The originalDocument is mutated directly.\n *\n * @param originalDocument - The document to be updated (mutated in place)\n * @param updatedDocument - The document containing the desired changes\n * @returns A tuple: [the updated original document, array of excluded diffs that were not applied]\n */\nexport const applySelectiveUpdates = (originalDocument: UnknownObject, updatedDocument: UnknownObject) => {\n const diffs: Difference<unknown>[] = diff(originalDocument, updatedDocument)\n\n const [writableDiffs, excludedDiffs] = split(diffs, filterDiff)\n\n apply(originalDocument, writableDiffs)\n\n return excludedDiffs\n}\n"],
5
+ "mappings": "AAAA,SAA0B,OAAO,YAAY;AAE7C,SAA6B,aAAa;AAO1C,MAAM,cAAc,CAAC,QAAgB,IAAI,WAAW,kBAAkB;AAQ/D,MAAM,eAAe;AAAA;AAAA,EAE1B;AAAA,EACA;AAAA,EACA;AAAA;AAAA,EAEA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AACO,MAAM,iBAAiB,IAAI,IAAI,YAAY;AASlD,MAAM,aAAa,CAACA,UAA8B;AAEhD,MAAIA,MAAK,KAAK,KAAK,CAAC,MAAM,eAAe,IAAI,CAAC,CAAC,GAAG;AAChD,WAAO;AAAA,EACT;AAGA,MAAI,YAAYA,MAAK,KAAK,GAAG,EAAE,KAAK,EAAE,GAAG;AACvC,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAeO,MAAM,wBAAwB,CAAC,kBAAiC,oBAAmC;AACxG,QAAM,QAA+B,KAAK,kBAAkB,eAAe;AAE3E,QAAM,CAAC,eAAe,aAAa,IAAI,MAAM,OAAO,UAAU;AAE9D,QAAM,kBAAkB,aAAa;AAErC,SAAO;AACT;",
6
6
  "names": ["diff"]
7
7
  }
@@ -1,7 +1,6 @@
1
1
  export declare const extensions: {
2
2
  readonly document: {
3
3
  readonly navigation: "x-scalar-navigation";
4
- readonly activeAuth: "x-scalar-active-auth";
5
4
  };
6
5
  readonly workspace: {
7
6
  readonly colorMode: "x-scalar-color-mode";
@@ -1 +1 @@
1
- {"version":3,"file":"extensions.d.ts","sourceRoot":"","sources":["../../src/schemas/extensions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;;CAYb,CAAA"}
1
+ {"version":3,"file":"extensions.d.ts","sourceRoot":"","sources":["../../src/schemas/extensions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;CAWb,CAAA"}
@@ -1,7 +1,6 @@
1
1
  const extensions = {
2
2
  document: {
3
- navigation: "x-scalar-navigation",
4
- activeAuth: "x-scalar-active-auth"
3
+ navigation: "x-scalar-navigation"
5
4
  },
6
5
  workspace: {
7
6
  colorMode: "x-scalar-color-mode",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/schemas/extensions.ts"],
4
- "sourcesContent": ["export const extensions = {\n document: {\n navigation: 'x-scalar-navigation',\n activeAuth: 'x-scalar-active-auth',\n },\n workspace: {\n colorMode: 'x-scalar-color-mode',\n sidebarWidth: 'x-scalar-sidebar-width',\n defaultClient: 'x-scalar-default-client',\n activeDocument: 'x-scalar-active-document',\n theme: 'x-scalar-theme',\n },\n} as const\n"],
5
- "mappings": "AAAO,MAAM,aAAa;AAAA,EACxB,UAAU;AAAA,IACR,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,WAAW;AAAA,IACT,WAAW;AAAA,IACX,cAAc;AAAA,IACd,eAAe;AAAA,IACf,gBAAgB;AAAA,IAChB,OAAO;AAAA,EACT;AACF;",
4
+ "sourcesContent": ["export const extensions = {\n document: {\n navigation: 'x-scalar-navigation',\n },\n workspace: {\n colorMode: 'x-scalar-color-mode',\n sidebarWidth: 'x-scalar-sidebar-width',\n defaultClient: 'x-scalar-default-client',\n activeDocument: 'x-scalar-active-document',\n theme: 'x-scalar-theme',\n },\n} as const\n"],
5
+ "mappings": "AAAO,MAAM,aAAa;AAAA,EACxB,UAAU;AAAA,IACR,YAAY;AAAA,EACd;AAAA,EACA,WAAW;AAAA,IACT,WAAW;AAAA,IACX,cAAc;AAAA,IACd,eAAe;AAAA,IACf,gBAAgB;AAAA,IAChB,OAAO;AAAA,EACT;AACF;",
6
6
  "names": []
7
7
  }
@@ -42,13 +42,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
42
42
  }>>>;
43
43
  'x-scalar-active-tab': import("@scalar/typebox").TOptional<import("@scalar/typebox").TNumber>;
44
44
  }>]>]>;
45
- documents: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
46
- "x-scalar-active-auth": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47
- }>, import("@scalar/typebox").TObject<{
48
- 'x-scalar-selected-server': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
49
- }>, import("@scalar/typebox").TObject<{
50
- 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
51
- }>]>, import("@scalar/typebox").TImport<{
45
+ documents: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TImport<{
52
46
  ComponentsObject: import("@scalar/typebox").TObject<{
53
47
  schemas: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
54
48
  $ref: import("@scalar/typebox").TString;
@@ -1323,6 +1317,8 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1323
1317
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1324
1318
  }>, import("@scalar/typebox").TObject<{
1325
1319
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1320
+ }>, import("@scalar/typebox").TObject<{
1321
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1326
1322
  }>]>]>;
1327
1323
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1328
1324
  id: import("@scalar/typebox").TString;
@@ -1446,7 +1442,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1446
1442
  children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1447
1443
  icon: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1448
1444
  }>]>;
1449
- }, "OpenApiDocument">]>>;
1445
+ }, "OpenApiDocument">>;
1450
1446
  originalDocuments: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnknown>>;
1451
1447
  intermediateDocuments: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TUnknown>>;
1452
1448
  overrides: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TAny>;
@@ -2938,6 +2934,8 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2938
2934
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2939
2935
  }>, import("@scalar/typebox").TObject<{
2940
2936
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2937
+ }>, import("@scalar/typebox").TObject<{
2938
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2941
2939
  }>]>]>;
2942
2940
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2943
2941
  id: import("@scalar/typebox").TString;
@@ -4340,6 +4338,8 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
4340
4338
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4341
4339
  }>, import("@scalar/typebox").TObject<{
4342
4340
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4341
+ }>, import("@scalar/typebox").TObject<{
4342
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4343
4343
  }>]>]>;
4344
4344
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4345
4345
  id: import("@scalar/typebox").TString;
@@ -1292,6 +1292,8 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1292
1292
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1293
1293
  }>, import("@scalar/typebox").TObject<{
1294
1294
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1295
+ }>, import("@scalar/typebox").TObject<{
1296
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1295
1297
  }>]>]>;
1296
1298
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1297
1299
  id: import("@scalar/typebox").TString;
@@ -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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"}
@@ -1278,6 +1278,8 @@ export declare const SettingsSchema: import("@scalar/typebox").TObject<{
1278
1278
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1279
1279
  }>, import("@scalar/typebox").TObject<{
1280
1280
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1281
+ }>, import("@scalar/typebox").TObject<{
1282
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1281
1283
  }>]>]>;
1282
1284
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1283
1285
  id: import("@scalar/typebox").TString;
@@ -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"}
@@ -3,6 +3,7 @@ import { type XScalarEnvironments } from '../../../schemas/extensions/document/x
3
3
  import { type XScalarIcon } from '../../../schemas/extensions/document/x-scalar-icon.js';
4
4
  import { type XScalarIsDirty } from '../../../schemas/extensions/document/x-scalar-is-dirty.js';
5
5
  import { type XScalarOriginalDocumentHash } from '../../../schemas/extensions/document/x-scalar-original-document-hash.js';
6
+ import { type XScalarWatchMode } from '../../../schemas/extensions/document/x-scalar-watch-mode.js';
6
7
  import { type XScalarActiveEnvironment } from '../../../schemas/extensions/general/x-scalar-active-environment.js';
7
8
  import { type XScalarCookies } from '../../../schemas/extensions/general/x-scalar-cookies.js';
8
9
  import { type XScalarOrder } from '../../../schemas/extensions/general/x-scalar-order.js';
@@ -59,13 +60,15 @@ export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TInterse
59
60
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
60
61
  }>, import("@scalar/typebox").TObject<{
61
62
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
63
+ }>, import("@scalar/typebox").TObject<{
64
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
62
65
  }>]>;
63
66
  export type OpenAPIExtensions = Partial<{
64
67
  'x-original-oas-version': string;
65
68
  /** Original document source url / when loading a document from an external source */
66
69
  'x-scalar-original-source-url': string;
67
70
  [extensions.document.navigation]: TraversedDocument;
68
- }> & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty;
71
+ }> & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode;
69
72
  export type OpenApiDocument = {
70
73
  /** REQUIRED. This string MUST be the version number of the OpenAPI Specification that the OpenAPI Document uses. The openapi field SHOULD be used by tooling to interpret the OpenAPI Document. This is not related to the API info.version string. */
71
74
  openapi: string;
@@ -1363,6 +1366,8 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
1363
1366
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1364
1367
  }>, import("@scalar/typebox").TObject<{
1365
1368
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1369
+ }>, import("@scalar/typebox").TObject<{
1370
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1366
1371
  }>]>]>;
1367
1372
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1368
1373
  id: import("@scalar/typebox").TString;
@@ -2762,6 +2767,8 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
2762
2767
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2763
2768
  }>, import("@scalar/typebox").TObject<{
2764
2769
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2770
+ }>, import("@scalar/typebox").TObject<{
2771
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2765
2772
  }>]>]>;
2766
2773
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2767
2774
  id: import("@scalar/typebox").TString;
@@ -4161,6 +4168,8 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
4161
4168
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4162
4169
  }>, import("@scalar/typebox").TObject<{
4163
4170
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4171
+ }>, import("@scalar/typebox").TObject<{
4172
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4164
4173
  }>]>]>;
4165
4174
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4166
4175
  id: import("@scalar/typebox").TString;
@@ -5560,6 +5569,8 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
5560
5569
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5561
5570
  }>, import("@scalar/typebox").TObject<{
5562
5571
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5572
+ }>, import("@scalar/typebox").TObject<{
5573
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5563
5574
  }>]>]>;
5564
5575
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5565
5576
  id: import("@scalar/typebox").TString;
@@ -6959,6 +6970,8 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
6959
6970
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6960
6971
  }>, import("@scalar/typebox").TObject<{
6961
6972
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
6973
+ }>, import("@scalar/typebox").TObject<{
6974
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6962
6975
  }>]>]>;
6963
6976
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
6964
6977
  id: import("@scalar/typebox").TString;
@@ -8358,6 +8371,8 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
8358
8371
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8359
8372
  }>, import("@scalar/typebox").TObject<{
8360
8373
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8374
+ }>, import("@scalar/typebox").TObject<{
8375
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8361
8376
  }>]>]>;
8362
8377
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8363
8378
  id: import("@scalar/typebox").TString;
@@ -9757,6 +9772,8 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
9757
9772
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9758
9773
  }>, import("@scalar/typebox").TObject<{
9759
9774
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
9775
+ }>, import("@scalar/typebox").TObject<{
9776
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9760
9777
  }>]>]>;
9761
9778
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
9762
9779
  id: import("@scalar/typebox").TString;
@@ -11156,6 +11173,8 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
11156
11173
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
11157
11174
  }>, import("@scalar/typebox").TObject<{
11158
11175
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
11176
+ }>, import("@scalar/typebox").TObject<{
11177
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
11159
11178
  }>]>]>;
11160
11179
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
11161
11180
  id: import("@scalar/typebox").TString;
@@ -12555,6 +12574,8 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
12555
12574
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
12556
12575
  }>, import("@scalar/typebox").TObject<{
12557
12576
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
12577
+ }>, import("@scalar/typebox").TObject<{
12578
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
12558
12579
  }>]>]>;
12559
12580
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
12560
12581
  id: import("@scalar/typebox").TString;
@@ -13954,6 +13975,8 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
13954
13975
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
13955
13976
  }>, import("@scalar/typebox").TObject<{
13956
13977
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
13978
+ }>, import("@scalar/typebox").TObject<{
13979
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
13957
13980
  }>]>]>;
13958
13981
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
13959
13982
  id: import("@scalar/typebox").TString;
@@ -15353,6 +15376,8 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
15353
15376
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
15354
15377
  }>, import("@scalar/typebox").TObject<{
15355
15378
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
15379
+ }>, import("@scalar/typebox").TObject<{
15380
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
15356
15381
  }>]>]>;
15357
15382
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
15358
15383
  id: import("@scalar/typebox").TString;
@@ -16752,6 +16777,8 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
16752
16777
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
16753
16778
  }>, import("@scalar/typebox").TObject<{
16754
16779
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
16780
+ }>, import("@scalar/typebox").TObject<{
16781
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
16755
16782
  }>]>]>;
16756
16783
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
16757
16784
  id: import("@scalar/typebox").TString;
@@ -18151,6 +18178,8 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
18151
18178
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
18152
18179
  }>, import("@scalar/typebox").TObject<{
18153
18180
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18181
+ }>, import("@scalar/typebox").TObject<{
18182
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
18154
18183
  }>]>]>;
18155
18184
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
18156
18185
  id: import("@scalar/typebox").TString;
@@ -19550,6 +19579,8 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
19550
19579
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
19551
19580
  }>, import("@scalar/typebox").TObject<{
19552
19581
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
19582
+ }>, import("@scalar/typebox").TObject<{
19583
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
19553
19584
  }>]>]>;
19554
19585
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
19555
19586
  id: import("@scalar/typebox").TString;
@@ -20949,6 +20980,8 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
20949
20980
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
20950
20981
  }>, import("@scalar/typebox").TObject<{
20951
20982
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
20983
+ }>, import("@scalar/typebox").TObject<{
20984
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
20952
20985
  }>]>]>;
20953
20986
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
20954
20987
  id: import("@scalar/typebox").TString;
@@ -22348,6 +22381,8 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
22348
22381
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
22349
22382
  }>, import("@scalar/typebox").TObject<{
22350
22383
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
22384
+ }>, import("@scalar/typebox").TObject<{
22385
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
22351
22386
  }>]>]>;
22352
22387
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
22353
22388
  id: import("@scalar/typebox").TString;
@@ -23747,6 +23782,8 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
23747
23782
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
23748
23783
  }>, import("@scalar/typebox").TObject<{
23749
23784
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
23785
+ }>, import("@scalar/typebox").TObject<{
23786
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
23750
23787
  }>]>]>;
23751
23788
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
23752
23789
  id: import("@scalar/typebox").TString;
@@ -25146,6 +25183,8 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
25146
25183
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
25147
25184
  }>, import("@scalar/typebox").TObject<{
25148
25185
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25186
+ }>, import("@scalar/typebox").TObject<{
25187
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
25149
25188
  }>]>]>;
25150
25189
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
25151
25190
  id: import("@scalar/typebox").TString;
@@ -26545,6 +26584,8 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
26545
26584
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
26546
26585
  }>, import("@scalar/typebox").TObject<{
26547
26586
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
26587
+ }>, import("@scalar/typebox").TObject<{
26588
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
26548
26589
  }>]>]>;
26549
26590
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
26550
26591
  id: import("@scalar/typebox").TString;
@@ -27944,6 +27985,8 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
27944
27985
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
27945
27986
  }>, import("@scalar/typebox").TObject<{
27946
27987
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
27988
+ }>, import("@scalar/typebox").TObject<{
27989
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
27947
27990
  }>]>]>;
27948
27991
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
27949
27992
  id: import("@scalar/typebox").TString;
@@ -29343,6 +29386,8 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
29343
29386
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
29344
29387
  }>, import("@scalar/typebox").TObject<{
29345
29388
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
29389
+ }>, import("@scalar/typebox").TObject<{
29390
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
29346
29391
  }>]>]>;
29347
29392
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
29348
29393
  id: import("@scalar/typebox").TString;
@@ -30742,6 +30787,8 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
30742
30787
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
30743
30788
  }>, import("@scalar/typebox").TObject<{
30744
30789
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30790
+ }>, import("@scalar/typebox").TObject<{
30791
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
30745
30792
  }>]>]>;
30746
30793
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
30747
30794
  id: import("@scalar/typebox").TString;
@@ -32141,6 +32188,8 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
32141
32188
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
32142
32189
  }>, import("@scalar/typebox").TObject<{
32143
32190
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
32191
+ }>, import("@scalar/typebox").TObject<{
32192
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
32144
32193
  }>]>]>;
32145
32194
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
32146
32195
  id: import("@scalar/typebox").TString;
@@ -33540,6 +33589,8 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
33540
33589
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
33541
33590
  }>, import("@scalar/typebox").TObject<{
33542
33591
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
33592
+ }>, import("@scalar/typebox").TObject<{
33593
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
33543
33594
  }>]>]>;
33544
33595
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
33545
33596
  id: import("@scalar/typebox").TString;
@@ -34939,6 +34990,8 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
34939
34990
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
34940
34991
  }>, import("@scalar/typebox").TObject<{
34941
34992
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
34993
+ }>, import("@scalar/typebox").TObject<{
34994
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
34942
34995
  }>]>]>;
34943
34996
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
34944
34997
  id: import("@scalar/typebox").TString;
@@ -36338,6 +36391,8 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
36338
36391
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
36339
36392
  }>, import("@scalar/typebox").TObject<{
36340
36393
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
36394
+ }>, import("@scalar/typebox").TObject<{
36395
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
36341
36396
  }>]>]>;
36342
36397
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
36343
36398
  id: import("@scalar/typebox").TString;
@@ -37737,6 +37792,8 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
37737
37792
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
37738
37793
  }>, import("@scalar/typebox").TObject<{
37739
37794
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
37795
+ }>, import("@scalar/typebox").TObject<{
37796
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
37740
37797
  }>]>]>;
37741
37798
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
37742
37799
  id: import("@scalar/typebox").TString;
@@ -39136,6 +39193,8 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
39136
39193
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
39137
39194
  }>, import("@scalar/typebox").TObject<{
39138
39195
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
39196
+ }>, import("@scalar/typebox").TObject<{
39197
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
39139
39198
  }>]>]>;
39140
39199
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
39141
39200
  id: import("@scalar/typebox").TString;
@@ -40535,6 +40594,8 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
40535
40594
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
40536
40595
  }>, import("@scalar/typebox").TObject<{
40537
40596
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
40597
+ }>, import("@scalar/typebox").TObject<{
40598
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
40538
40599
  }>]>]>;
40539
40600
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
40540
40601
  id: import("@scalar/typebox").TString;
@@ -41934,6 +41995,8 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
41934
41995
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
41935
41996
  }>, import("@scalar/typebox").TObject<{
41936
41997
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
41998
+ }>, import("@scalar/typebox").TObject<{
41999
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
41937
42000
  }>]>]>;
41938
42001
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
41939
42002
  id: import("@scalar/typebox").TString;
@@ -43333,6 +43396,8 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
43333
43396
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
43334
43397
  }>, import("@scalar/typebox").TObject<{
43335
43398
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
43399
+ }>, import("@scalar/typebox").TObject<{
43400
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
43336
43401
  }>]>]>;
43337
43402
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
43338
43403
  id: import("@scalar/typebox").TString;
@@ -44732,6 +44797,8 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
44732
44797
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
44733
44798
  }>, import("@scalar/typebox").TObject<{
44734
44799
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
44800
+ }>, import("@scalar/typebox").TObject<{
44801
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
44735
44802
  }>]>]>;
44736
44803
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
44737
44804
  id: import("@scalar/typebox").TString;
@@ -46131,6 +46198,8 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
46131
46198
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
46132
46199
  }>, import("@scalar/typebox").TObject<{
46133
46200
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
46201
+ }>, import("@scalar/typebox").TObject<{
46202
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
46134
46203
  }>]>]>;
46135
46204
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
46136
46205
  id: import("@scalar/typebox").TString;
@@ -47530,6 +47599,8 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
47530
47599
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
47531
47600
  }>, import("@scalar/typebox").TObject<{
47532
47601
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47602
+ }>, import("@scalar/typebox").TObject<{
47603
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
47533
47604
  }>]>]>;
47534
47605
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
47535
47606
  id: import("@scalar/typebox").TString;
@@ -48929,6 +49000,8 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
48929
49000
  'x-scalar-is-dirty': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
48930
49001
  }>, import("@scalar/typebox").TObject<{
48931
49002
  'x-scalar-active-environment': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
49003
+ }>, import("@scalar/typebox").TObject<{
49004
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
48932
49005
  }>]>]>;
48933
49006
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
48934
49007
  id: import("@scalar/typebox").TString;