@scalar/workspace-store 0.54.4 → 0.55.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 (67) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/channel-example/build-connection-url.d.ts +7 -0
  3. package/dist/channel-example/build-connection-url.d.ts.map +1 -1
  4. package/dist/channel-example/build-connection-url.js +10 -0
  5. package/dist/channel-example/get-async-api-protocols.d.ts +86 -0
  6. package/dist/channel-example/get-async-api-protocols.d.ts.map +1 -0
  7. package/dist/channel-example/get-async-api-protocols.js +110 -0
  8. package/dist/channel-example/index.d.ts +2 -0
  9. package/dist/channel-example/index.d.ts.map +1 -1
  10. package/dist/channel-example/index.js +1 -0
  11. package/dist/channel-example/servers.d.ts +7 -0
  12. package/dist/channel-example/servers.d.ts.map +1 -1
  13. package/dist/channel-example/servers.js +1 -1
  14. package/dist/entities/auth/schema.d.ts +260 -235
  15. package/dist/entities/auth/schema.d.ts.map +1 -1
  16. package/dist/events/definitions/workspace.d.ts +8 -0
  17. package/dist/events/definitions/workspace.d.ts.map +1 -1
  18. package/dist/helpers/get-first-server.d.ts +9 -0
  19. package/dist/helpers/get-first-server.d.ts.map +1 -0
  20. package/dist/helpers/get-first-server.js +30 -0
  21. package/dist/mutators/index.d.ts +1 -0
  22. package/dist/mutators/index.d.ts.map +1 -1
  23. package/dist/mutators/workspace.d.ts +8 -0
  24. package/dist/mutators/workspace.d.ts.map +1 -1
  25. package/dist/mutators/workspace.js +13 -0
  26. package/dist/request-example/builder/header/de-serialize-parameter.d.ts +14 -1
  27. package/dist/request-example/builder/header/de-serialize-parameter.d.ts.map +1 -1
  28. package/dist/request-example/builder/header/de-serialize-parameter.js +10 -4
  29. package/dist/request-example/builder/header/is-param-disabled.d.ts +2 -1
  30. package/dist/request-example/builder/header/is-param-disabled.d.ts.map +1 -1
  31. package/dist/request-example/builder/header/is-param-disabled.js +6 -1
  32. package/dist/request-example/builder/header/serialize-parameter.d.ts +1 -0
  33. package/dist/request-example/builder/header/serialize-parameter.d.ts.map +1 -1
  34. package/dist/request-example/builder/header/serialize-parameter.js +22 -9
  35. package/dist/request-example/builder/index.d.ts +2 -1
  36. package/dist/request-example/builder/index.d.ts.map +1 -1
  37. package/dist/request-example/builder/index.js +2 -1
  38. package/dist/request-example/index.d.ts +1 -1
  39. package/dist/request-example/index.d.ts.map +1 -1
  40. package/dist/request-example/index.js +1 -1
  41. package/dist/schemas/extensions/document/x-scalar-links.d.ts +25 -0
  42. package/dist/schemas/extensions/document/x-scalar-links.d.ts.map +1 -0
  43. package/dist/schemas/extensions/document/x-scalar-links.js +24 -0
  44. package/dist/schemas/extensions.d.ts +1 -0
  45. package/dist/schemas/extensions.d.ts.map +1 -1
  46. package/dist/schemas/extensions.js +1 -0
  47. package/dist/schemas/reference-config/index.d.ts +52 -47
  48. package/dist/schemas/reference-config/index.d.ts.map +1 -1
  49. package/dist/schemas/reference-config/settings.d.ts +52 -47
  50. package/dist/schemas/reference-config/settings.d.ts.map +1 -1
  51. package/dist/schemas/v3.1/openapi/index.d.ts +5 -0
  52. package/dist/schemas/v3.1/openapi/index.d.ts.map +1 -1
  53. package/dist/schemas/v3.1/openapi/index.js +2 -0
  54. package/dist/schemas/v3.1/strict/info.d.ts +7 -1
  55. package/dist/schemas/v3.1/strict/info.d.ts.map +1 -1
  56. package/dist/schemas/v3.1/strict/info.js +2 -1
  57. package/dist/schemas/v3.1/strict/openapi-document.d.ts +1820 -1645
  58. package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
  59. package/dist/schemas/v3.1/strict/schema.d.ts +48 -48
  60. package/dist/schemas/v3.1/strict/schema.d.ts.map +1 -1
  61. package/dist/schemas/v3.1/strict/schema.js +16 -1
  62. package/dist/schemas/workspace-specification/index.d.ts +1 -0
  63. package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
  64. package/dist/schemas/workspace.d.ts +2 -0
  65. package/dist/schemas/workspace.d.ts.map +1 -1
  66. package/dist/schemas/workspace.js +3 -0
  67. package/package.json +7 -7
@@ -12,7 +12,7 @@ import type { XMLObject } from '../../../schemas/v3.1/strict/xml.js';
12
12
  import type { DiscriminatorObject } from './discriminator.js';
13
13
  import { type ReferenceObject } from './reference.js';
14
14
  export type SchemaReferenceType<Value> = Value | (ReferenceObject & {
15
- '$ref-value': unknown;
15
+ '$ref-value'?: unknown;
16
16
  });
17
17
  type PrimitiveSchemaType = 'null' | 'boolean' | 'string' | 'number' | 'integer' | 'object' | 'array';
18
18
  /** We use this type to ensure that we are parsing a schema object as every property can be optional */
@@ -240,7 +240,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
240
240
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
241
241
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
242
242
  }>]>, import("@scalar/typebox").TObject<{
243
- '$ref-value': import("@scalar/typebox").TUnknown;
243
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
244
244
  }>]>]>>;
245
245
  /** Whether the schema is deprecated. */
246
246
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -274,7 +274,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
274
274
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
275
275
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
276
276
  }>]>, import("@scalar/typebox").TObject<{
277
- '$ref-value': import("@scalar/typebox").TUnknown;
277
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
278
278
  }>]>]>>>;
279
279
  /** Exactly one schema must be valid. */
280
280
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -285,7 +285,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
285
285
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
286
286
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
287
287
  }>]>, import("@scalar/typebox").TObject<{
288
- '$ref-value': import("@scalar/typebox").TUnknown;
288
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
289
289
  }>]>]>>>;
290
290
  /** At least one schema must be valid. */
291
291
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -296,7 +296,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
296
296
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
297
297
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
298
298
  }>]>, import("@scalar/typebox").TObject<{
299
- '$ref-value': import("@scalar/typebox").TUnknown;
299
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
300
300
  }>]>]>>>;
301
301
  /** Schema must not be valid. */
302
302
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -307,7 +307,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
307
307
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
308
308
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
309
309
  }>]>, import("@scalar/typebox").TObject<{
310
- '$ref-value': import("@scalar/typebox").TUnknown;
310
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
311
311
  }>]>]>>;
312
312
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
313
313
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -372,7 +372,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
372
372
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
373
373
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
374
374
  }>]>, import("@scalar/typebox").TObject<{
375
- '$ref-value': import("@scalar/typebox").TUnknown;
375
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
376
376
  }>]>]>>;
377
377
  /** Whether the schema is deprecated. */
378
378
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -406,7 +406,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
406
406
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
407
407
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
408
408
  }>]>, import("@scalar/typebox").TObject<{
409
- '$ref-value': import("@scalar/typebox").TUnknown;
409
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
410
410
  }>]>]>>>;
411
411
  /** Exactly one schema must be valid. */
412
412
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -417,7 +417,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
417
417
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
418
418
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
419
419
  }>]>, import("@scalar/typebox").TObject<{
420
- '$ref-value': import("@scalar/typebox").TUnknown;
420
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
421
421
  }>]>]>>>;
422
422
  /** At least one schema must be valid. */
423
423
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -428,7 +428,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
428
428
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
429
429
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
430
430
  }>]>, import("@scalar/typebox").TObject<{
431
- '$ref-value': import("@scalar/typebox").TUnknown;
431
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
432
432
  }>]>]>>>;
433
433
  /** Schema must not be valid. */
434
434
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -439,7 +439,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
439
439
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
440
440
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
441
441
  }>]>, import("@scalar/typebox").TObject<{
442
- '$ref-value': import("@scalar/typebox").TUnknown;
442
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
443
443
  }>]>]>>;
444
444
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
445
445
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -517,7 +517,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
517
517
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
518
518
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
519
519
  }>]>, import("@scalar/typebox").TObject<{
520
- '$ref-value': import("@scalar/typebox").TUnknown;
520
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
521
521
  }>]>]>>;
522
522
  /** Whether the schema is deprecated. */
523
523
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -551,7 +551,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
551
551
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
552
552
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
553
553
  }>]>, import("@scalar/typebox").TObject<{
554
- '$ref-value': import("@scalar/typebox").TUnknown;
554
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
555
555
  }>]>]>>>;
556
556
  /** Exactly one schema must be valid. */
557
557
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -562,7 +562,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
562
562
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
563
563
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
564
564
  }>]>, import("@scalar/typebox").TObject<{
565
- '$ref-value': import("@scalar/typebox").TUnknown;
565
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
566
566
  }>]>]>>>;
567
567
  /** At least one schema must be valid. */
568
568
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -573,7 +573,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
573
573
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
574
574
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
575
575
  }>]>, import("@scalar/typebox").TObject<{
576
- '$ref-value': import("@scalar/typebox").TUnknown;
576
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
577
577
  }>]>]>>>;
578
578
  /** Schema must not be valid. */
579
579
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -584,7 +584,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
584
584
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
585
585
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
586
586
  }>]>, import("@scalar/typebox").TObject<{
587
- '$ref-value': import("@scalar/typebox").TUnknown;
587
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
588
588
  }>]>]>>;
589
589
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
590
590
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -658,7 +658,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
658
658
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
659
659
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
660
660
  }>]>, import("@scalar/typebox").TObject<{
661
- '$ref-value': import("@scalar/typebox").TUnknown;
661
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
662
662
  }>]>]>>;
663
663
  /** Whether the schema is deprecated. */
664
664
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -692,7 +692,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
692
692
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
693
693
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
694
694
  }>]>, import("@scalar/typebox").TObject<{
695
- '$ref-value': import("@scalar/typebox").TUnknown;
695
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
696
696
  }>]>]>>>;
697
697
  /** Exactly one schema must be valid. */
698
698
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -703,7 +703,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
703
703
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
704
704
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
705
705
  }>]>, import("@scalar/typebox").TObject<{
706
- '$ref-value': import("@scalar/typebox").TUnknown;
706
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
707
707
  }>]>]>>>;
708
708
  /** At least one schema must be valid. */
709
709
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -714,7 +714,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
714
714
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
715
715
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
716
716
  }>]>, import("@scalar/typebox").TObject<{
717
- '$ref-value': import("@scalar/typebox").TUnknown;
717
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
718
718
  }>]>]>>>;
719
719
  /** Schema must not be valid. */
720
720
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -725,7 +725,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
725
725
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
726
726
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
727
727
  }>]>, import("@scalar/typebox").TObject<{
728
- '$ref-value': import("@scalar/typebox").TUnknown;
728
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
729
729
  }>]>]>>;
730
730
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
731
731
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -765,7 +765,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
765
765
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
766
766
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
767
767
  }>]>, import("@scalar/typebox").TObject<{
768
- '$ref-value': import("@scalar/typebox").TUnknown;
768
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
769
769
  }>]>]>>>;
770
770
  /** Schema for additional properties. */
771
771
  additionalProperties: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TBoolean, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -776,7 +776,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
776
776
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
777
777
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
778
778
  }>]>, import("@scalar/typebox").TObject<{
779
- '$ref-value': import("@scalar/typebox").TUnknown;
779
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
780
780
  }>]>]>]>>;
781
781
  /** Properties matching regex patterns. */
782
782
  patternProperties: 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<{
@@ -787,7 +787,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
787
787
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
788
788
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
789
789
  }>]>, import("@scalar/typebox").TObject<{
790
- '$ref-value': import("@scalar/typebox").TUnknown;
790
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
791
791
  }>]>]>>>;
792
792
  /** Constraints on property names (JSON Schema propertyNames keyword). */
793
793
  propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -798,7 +798,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
798
798
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
799
799
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
800
800
  }>]>, import("@scalar/typebox").TObject<{
801
- '$ref-value': import("@scalar/typebox").TUnknown;
801
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
802
802
  }>]>]>>;
803
803
  }>]>, import("@scalar/typebox").TObject<{
804
804
  /**
@@ -841,7 +841,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
841
841
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
842
842
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
843
843
  }>]>, import("@scalar/typebox").TObject<{
844
- '$ref-value': import("@scalar/typebox").TUnknown;
844
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
845
845
  }>]>]>>;
846
846
  /** Whether the schema is deprecated. */
847
847
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -875,7 +875,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
875
875
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
876
876
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
877
877
  }>]>, import("@scalar/typebox").TObject<{
878
- '$ref-value': import("@scalar/typebox").TUnknown;
878
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
879
879
  }>]>]>>>;
880
880
  /** Exactly one schema must be valid. */
881
881
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -886,7 +886,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
886
886
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
887
887
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
888
888
  }>]>, import("@scalar/typebox").TObject<{
889
- '$ref-value': import("@scalar/typebox").TUnknown;
889
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
890
890
  }>]>]>>>;
891
891
  /** At least one schema must be valid. */
892
892
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -897,7 +897,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
897
897
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
898
898
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
899
899
  }>]>, import("@scalar/typebox").TObject<{
900
- '$ref-value': import("@scalar/typebox").TUnknown;
900
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
901
901
  }>]>]>>>;
902
902
  /** Schema must not be valid. */
903
903
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -908,7 +908,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
908
908
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
909
909
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
910
910
  }>]>, import("@scalar/typebox").TObject<{
911
- '$ref-value': import("@scalar/typebox").TUnknown;
911
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
912
912
  }>]>]>>;
913
913
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
914
914
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -948,7 +948,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
948
948
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
949
949
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
950
950
  }>]>, import("@scalar/typebox").TObject<{
951
- '$ref-value': import("@scalar/typebox").TUnknown;
951
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
952
952
  }>]>]>>;
953
953
  /** Schema for tuple validation. */
954
954
  prefixItems: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -959,7 +959,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
959
959
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
960
960
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
961
961
  }>]>, import("@scalar/typebox").TObject<{
962
- '$ref-value': import("@scalar/typebox").TUnknown;
962
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
963
963
  }>]>]>>>;
964
964
  }>]>, import("@scalar/typebox").TObject<{
965
965
  /**
@@ -1002,7 +1002,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1002
1002
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1003
1003
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1004
1004
  }>]>, import("@scalar/typebox").TObject<{
1005
- '$ref-value': import("@scalar/typebox").TUnknown;
1005
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1006
1006
  }>]>]>>;
1007
1007
  /** Whether the schema is deprecated. */
1008
1008
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -1036,7 +1036,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1036
1036
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1037
1037
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1038
1038
  }>]>, import("@scalar/typebox").TObject<{
1039
- '$ref-value': import("@scalar/typebox").TUnknown;
1039
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1040
1040
  }>]>]>>>;
1041
1041
  /** Exactly one schema must be valid. */
1042
1042
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1047,7 +1047,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1047
1047
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1048
1048
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1049
1049
  }>]>, import("@scalar/typebox").TObject<{
1050
- '$ref-value': import("@scalar/typebox").TUnknown;
1050
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1051
1051
  }>]>]>>>;
1052
1052
  /** At least one schema must be valid. */
1053
1053
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1058,7 +1058,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1058
1058
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1059
1059
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1060
1060
  }>]>, import("@scalar/typebox").TObject<{
1061
- '$ref-value': import("@scalar/typebox").TUnknown;
1061
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1062
1062
  }>]>]>>>;
1063
1063
  /** Schema must not be valid. */
1064
1064
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1069,7 +1069,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1069
1069
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1070
1070
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1071
1071
  }>]>, import("@scalar/typebox").TObject<{
1072
- '$ref-value': import("@scalar/typebox").TUnknown;
1072
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1073
1073
  }>]>]>>;
1074
1074
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1075
1075
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -1129,7 +1129,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1129
1129
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1130
1130
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1131
1131
  }>]>, import("@scalar/typebox").TObject<{
1132
- '$ref-value': import("@scalar/typebox").TUnknown;
1132
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1133
1133
  }>]>]>>;
1134
1134
  /** Schema for tuple validation. */
1135
1135
  prefixItems: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1140,7 +1140,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1140
1140
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1141
1141
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1142
1142
  }>]>, import("@scalar/typebox").TObject<{
1143
- '$ref-value': import("@scalar/typebox").TUnknown;
1143
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1144
1144
  }>]>]>>>;
1145
1145
  }>, import("@scalar/typebox").TObject<{
1146
1146
  /** Maximum number of properties. */
@@ -1158,7 +1158,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1158
1158
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1159
1159
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1160
1160
  }>]>, import("@scalar/typebox").TObject<{
1161
- '$ref-value': import("@scalar/typebox").TUnknown;
1161
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1162
1162
  }>]>]>>>;
1163
1163
  /** Schema for additional properties. */
1164
1164
  additionalProperties: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TBoolean, import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1169,7 +1169,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1169
1169
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1170
1170
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1171
1171
  }>]>, import("@scalar/typebox").TObject<{
1172
- '$ref-value': import("@scalar/typebox").TUnknown;
1172
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1173
1173
  }>]>]>]>>;
1174
1174
  /** Properties matching regex patterns. */
1175
1175
  patternProperties: 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<{
@@ -1180,7 +1180,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1180
1180
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1181
1181
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1182
1182
  }>]>, import("@scalar/typebox").TObject<{
1183
- '$ref-value': import("@scalar/typebox").TUnknown;
1183
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1184
1184
  }>]>]>>>;
1185
1185
  /** Constraints on property names (JSON Schema propertyNames keyword). */
1186
1186
  propertyNames: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1191,7 +1191,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1191
1191
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1192
1192
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1193
1193
  }>]>, import("@scalar/typebox").TObject<{
1194
- '$ref-value': import("@scalar/typebox").TUnknown;
1194
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1195
1195
  }>]>]>>;
1196
1196
  }>]>, import("@scalar/typebox").TObject<{
1197
1197
  /**
@@ -1234,7 +1234,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1234
1234
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1235
1235
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1236
1236
  }>]>, import("@scalar/typebox").TObject<{
1237
- '$ref-value': import("@scalar/typebox").TUnknown;
1237
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1238
1238
  }>]>]>>;
1239
1239
  /** Whether the schema is deprecated. */
1240
1240
  deprecated: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -1268,7 +1268,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1268
1268
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1269
1269
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1270
1270
  }>]>, import("@scalar/typebox").TObject<{
1271
- '$ref-value': import("@scalar/typebox").TUnknown;
1271
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1272
1272
  }>]>]>>>;
1273
1273
  /** Exactly one schema must be valid. */
1274
1274
  oneOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1279,7 +1279,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1279
1279
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1280
1280
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1281
1281
  }>]>, import("@scalar/typebox").TObject<{
1282
- '$ref-value': import("@scalar/typebox").TUnknown;
1282
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1283
1283
  }>]>]>>>;
1284
1284
  /** At least one schema must be valid. */
1285
1285
  anyOf: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1290,7 +1290,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1290
1290
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1291
1291
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1292
1292
  }>]>, import("@scalar/typebox").TObject<{
1293
- '$ref-value': import("@scalar/typebox").TUnknown;
1293
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1294
1294
  }>]>]>>>;
1295
1295
  /** Schema must not be valid. */
1296
1296
  not: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TRef<"SchemaObject">, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1301,7 +1301,7 @@ export declare const SchemaObjectSchemaDefinition: import("@scalar/typebox").TUn
1301
1301
  $status: import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"loading">, import("@scalar/typebox").TLiteral<"error">]>>;
1302
1302
  $global: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1303
1303
  }>]>, import("@scalar/typebox").TObject<{
1304
- '$ref-value': import("@scalar/typebox").TUnknown;
1304
+ '$ref-value': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnknown>;
1305
1305
  }>]>]>>;
1306
1306
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1307
1307
  'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/schemas/v3.1/strict/schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/schemas/v3.1/strict/schema.ts"],"names":[],"mappings":"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"}
@@ -11,9 +11,24 @@ import { XOrderSchema } from '../../../schemas/extensions/schema/x-order.js';
11
11
  import { XVariableSchema } from '../../../schemas/extensions/schema/x-variable.js';
12
12
  import { DiscriminatorObjectRef, ExternalDocumentationObjectRef, SchemaObjectRef, XMLObjectRef, } from './ref-definitions.js';
13
13
  import { ReferenceObjectSchema } from './reference.js';
14
+ /**
15
+ * A schema position can hold either a schema object or a reference to one.
16
+ *
17
+ * The reference variant keeps `$ref-value` optional on purpose: an unresolved
18
+ * reference (for example a sparse chunk `$ref` produced by the server store) is
19
+ * just `{ $ref }` with no resolved value yet. If the reference variant required
20
+ * `$ref-value`, such a value would match neither variant, so coercion would fall
21
+ * back to the schema-object variant and silently drop the `$ref`, which breaks
22
+ * lazy chunk resolution. With `$ref-value` optional the `{ $ref }` already matches
23
+ * the reference variant and is preserved unchanged, independent of order.
24
+ *
25
+ * The schema-object variant comes first so that a value matching neither variant
26
+ * (genuinely invalid input, never a reference) falls back to an empty schema
27
+ * object rather than a bogus `{ $ref: '' }` that would read as a real reference.
28
+ */
14
29
  const schemaOrReference = Type.Union([
15
30
  SchemaObjectRef,
16
- compose(ReferenceObjectSchema, Type.Object({ '$ref-value': Type.Unknown() })),
31
+ compose(ReferenceObjectSchema, Type.Object({ '$ref-value': Type.Optional(Type.Unknown()) })),
17
32
  ]);
18
33
  const PrimitiveSchemaTypeSchema = Type.Union([
19
34
  Type.Literal('null'),
@@ -15,6 +15,7 @@ export declare const WorkspaceSpecificationSchema: import("@scalar/typebox").TIn
15
15
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
16
16
  "x-scalar-color-mode": import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"system">, import("@scalar/typebox").TLiteral<"light">, import("@scalar/typebox").TLiteral<"dark">]>>;
17
17
  "x-scalar-default-client": import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[...import("@scalar/typebox").TLiteral<"http/http" | "http/laravel" | "http/fetch" | "http/libcurl" | "http/clj_http" | "http/httpclient" | "http/restsharp" | "http/native" | "http/http1.1" | "http/asynchttp" | "http/nethttp" | "http/okhttp" | "http/unirest" | "http/axios" | "http/jquery" | "http/ofetch" | "http/xhr" | "http/undici" | "http/nsurlsession" | "http/cohttp" | "http/curl" | "http/guzzle" | "http/restmethod" | "http/webrequest" | "http/python3" | "http/requests" | "http/aiohttp" | "http/httpx_sync" | "http/httpx_async" | "http/httr2" | "http/reqwest" | "http/httpie" | "http/wget" | "c/http" | "c/laravel" | "c/fetch" | "c/libcurl" | "c/clj_http" | "c/httpclient" | "c/restsharp" | "c/native" | "c/http1.1" | "c/asynchttp" | "c/nethttp" | "c/okhttp" | "c/unirest" | "c/axios" | "c/jquery" | "c/ofetch" | "c/xhr" | "c/undici" | "c/nsurlsession" | "c/cohttp" | "c/curl" | "c/guzzle" | "c/restmethod" | "c/webrequest" | "c/python3" | "c/requests" | "c/aiohttp" | "c/httpx_sync" | "c/httpx_async" | "c/httr2" | "c/reqwest" | "c/httpie" | "c/wget" | "r/http" | "r/laravel" | "r/fetch" | "r/libcurl" | "r/clj_http" | "r/httpclient" | "r/restsharp" | "r/native" | "r/http1.1" | "r/asynchttp" | "r/nethttp" | "r/okhttp" | "r/unirest" | "r/axios" | "r/jquery" | "r/ofetch" | "r/xhr" | "r/undici" | "r/nsurlsession" | "r/cohttp" | "r/curl" | "r/guzzle" | "r/restmethod" | "r/webrequest" | "r/python3" | "r/requests" | "r/aiohttp" | "r/httpx_sync" | "r/httpx_async" | "r/httr2" | "r/reqwest" | "r/httpie" | "r/wget" | "go/http" | "go/laravel" | "go/fetch" | "go/libcurl" | "go/clj_http" | "go/httpclient" | "go/restsharp" | "go/native" | "go/http1.1" | "go/asynchttp" | "go/nethttp" | "go/okhttp" | "go/unirest" | "go/axios" | "go/jquery" | "go/ofetch" | "go/xhr" | "go/undici" | "go/nsurlsession" | "go/cohttp" | "go/curl" | "go/guzzle" | "go/restmethod" | "go/webrequest" | "go/python3" | "go/requests" | "go/aiohttp" | "go/httpx_sync" | "go/httpx_async" | "go/httr2" | "go/reqwest" | "go/httpie" | "go/wget" | "rust/http" | "rust/laravel" | "rust/fetch" | "rust/libcurl" | "rust/clj_http" | "rust/httpclient" | "rust/restsharp" | "rust/native" | "rust/http1.1" | "rust/asynchttp" | "rust/nethttp" | "rust/okhttp" | "rust/unirest" | "rust/axios" | "rust/jquery" | "rust/ofetch" | "rust/xhr" | "rust/undici" | "rust/nsurlsession" | "rust/cohttp" | "rust/curl" | "rust/guzzle" | "rust/restmethod" | "rust/webrequest" | "rust/python3" | "rust/requests" | "rust/aiohttp" | "rust/httpx_sync" | "rust/httpx_async" | "rust/httr2" | "rust/reqwest" | "rust/httpie" | "rust/wget" | "clojure/http" | "clojure/laravel" | "clojure/fetch" | "clojure/libcurl" | "clojure/clj_http" | "clojure/httpclient" | "clojure/restsharp" | "clojure/native" | "clojure/http1.1" | "clojure/asynchttp" | "clojure/nethttp" | "clojure/okhttp" | "clojure/unirest" | "clojure/axios" | "clojure/jquery" | "clojure/ofetch" | "clojure/xhr" | "clojure/undici" | "clojure/nsurlsession" | "clojure/cohttp" | "clojure/curl" | "clojure/guzzle" | "clojure/restmethod" | "clojure/webrequest" | "clojure/python3" | "clojure/requests" | "clojure/aiohttp" | "clojure/httpx_sync" | "clojure/httpx_async" | "clojure/httr2" | "clojure/reqwest" | "clojure/httpie" | "clojure/wget" | "csharp/http" | "csharp/laravel" | "csharp/fetch" | "csharp/libcurl" | "csharp/clj_http" | "csharp/httpclient" | "csharp/restsharp" | "csharp/native" | "csharp/http1.1" | "csharp/asynchttp" | "csharp/nethttp" | "csharp/okhttp" | "csharp/unirest" | "csharp/axios" | "csharp/jquery" | "csharp/ofetch" | "csharp/xhr" | "csharp/undici" | "csharp/nsurlsession" | "csharp/cohttp" | "csharp/curl" | "csharp/guzzle" | "csharp/restmethod" | "csharp/webrequest" | "csharp/python3" | "csharp/requests" | "csharp/aiohttp" | "csharp/httpx_sync" | "csharp/httpx_async" | "csharp/httr2" | "csharp/reqwest" | "csharp/httpie" | "csharp/wget" | "dart/http" | "dart/laravel" | "dart/fetch" | "dart/libcurl" | "dart/clj_http" | "dart/httpclient" | "dart/restsharp" | "dart/native" | "dart/http1.1" | "dart/asynchttp" | "dart/nethttp" | "dart/okhttp" | "dart/unirest" | "dart/axios" | "dart/jquery" | "dart/ofetch" | "dart/xhr" | "dart/undici" | "dart/nsurlsession" | "dart/cohttp" | "dart/curl" | "dart/guzzle" | "dart/restmethod" | "dart/webrequest" | "dart/python3" | "dart/requests" | "dart/aiohttp" | "dart/httpx_sync" | "dart/httpx_async" | "dart/httr2" | "dart/reqwest" | "dart/httpie" | "dart/wget" | "fsharp/http" | "fsharp/laravel" | "fsharp/fetch" | "fsharp/libcurl" | "fsharp/clj_http" | "fsharp/httpclient" | "fsharp/restsharp" | "fsharp/native" | "fsharp/http1.1" | "fsharp/asynchttp" | "fsharp/nethttp" | "fsharp/okhttp" | "fsharp/unirest" | "fsharp/axios" | "fsharp/jquery" | "fsharp/ofetch" | "fsharp/xhr" | "fsharp/undici" | "fsharp/nsurlsession" | "fsharp/cohttp" | "fsharp/curl" | "fsharp/guzzle" | "fsharp/restmethod" | "fsharp/webrequest" | "fsharp/python3" | "fsharp/requests" | "fsharp/aiohttp" | "fsharp/httpx_sync" | "fsharp/httpx_async" | "fsharp/httr2" | "fsharp/reqwest" | "fsharp/httpie" | "fsharp/wget" | "java/http" | "java/laravel" | "java/fetch" | "java/libcurl" | "java/clj_http" | "java/httpclient" | "java/restsharp" | "java/native" | "java/http1.1" | "java/asynchttp" | "java/nethttp" | "java/okhttp" | "java/unirest" | "java/axios" | "java/jquery" | "java/ofetch" | "java/xhr" | "java/undici" | "java/nsurlsession" | "java/cohttp" | "java/curl" | "java/guzzle" | "java/restmethod" | "java/webrequest" | "java/python3" | "java/requests" | "java/aiohttp" | "java/httpx_sync" | "java/httpx_async" | "java/httr2" | "java/reqwest" | "java/httpie" | "java/wget" | "js/http" | "js/laravel" | "js/fetch" | "js/libcurl" | "js/clj_http" | "js/httpclient" | "js/restsharp" | "js/native" | "js/http1.1" | "js/asynchttp" | "js/nethttp" | "js/okhttp" | "js/unirest" | "js/axios" | "js/jquery" | "js/ofetch" | "js/xhr" | "js/undici" | "js/nsurlsession" | "js/cohttp" | "js/curl" | "js/guzzle" | "js/restmethod" | "js/webrequest" | "js/python3" | "js/requests" | "js/aiohttp" | "js/httpx_sync" | "js/httpx_async" | "js/httr2" | "js/reqwest" | "js/httpie" | "js/wget" | "kotlin/http" | "kotlin/laravel" | "kotlin/fetch" | "kotlin/libcurl" | "kotlin/clj_http" | "kotlin/httpclient" | "kotlin/restsharp" | "kotlin/native" | "kotlin/http1.1" | "kotlin/asynchttp" | "kotlin/nethttp" | "kotlin/okhttp" | "kotlin/unirest" | "kotlin/axios" | "kotlin/jquery" | "kotlin/ofetch" | "kotlin/xhr" | "kotlin/undici" | "kotlin/nsurlsession" | "kotlin/cohttp" | "kotlin/curl" | "kotlin/guzzle" | "kotlin/restmethod" | "kotlin/webrequest" | "kotlin/python3" | "kotlin/requests" | "kotlin/aiohttp" | "kotlin/httpx_sync" | "kotlin/httpx_async" | "kotlin/httr2" | "kotlin/reqwest" | "kotlin/httpie" | "kotlin/wget" | "node/http" | "node/laravel" | "node/fetch" | "node/libcurl" | "node/clj_http" | "node/httpclient" | "node/restsharp" | "node/native" | "node/http1.1" | "node/asynchttp" | "node/nethttp" | "node/okhttp" | "node/unirest" | "node/axios" | "node/jquery" | "node/ofetch" | "node/xhr" | "node/undici" | "node/nsurlsession" | "node/cohttp" | "node/curl" | "node/guzzle" | "node/restmethod" | "node/webrequest" | "node/python3" | "node/requests" | "node/aiohttp" | "node/httpx_sync" | "node/httpx_async" | "node/httr2" | "node/reqwest" | "node/httpie" | "node/wget" | "objc/http" | "objc/laravel" | "objc/fetch" | "objc/libcurl" | "objc/clj_http" | "objc/httpclient" | "objc/restsharp" | "objc/native" | "objc/http1.1" | "objc/asynchttp" | "objc/nethttp" | "objc/okhttp" | "objc/unirest" | "objc/axios" | "objc/jquery" | "objc/ofetch" | "objc/xhr" | "objc/undici" | "objc/nsurlsession" | "objc/cohttp" | "objc/curl" | "objc/guzzle" | "objc/restmethod" | "objc/webrequest" | "objc/python3" | "objc/requests" | "objc/aiohttp" | "objc/httpx_sync" | "objc/httpx_async" | "objc/httr2" | "objc/reqwest" | "objc/httpie" | "objc/wget" | "ocaml/http" | "ocaml/laravel" | "ocaml/fetch" | "ocaml/libcurl" | "ocaml/clj_http" | "ocaml/httpclient" | "ocaml/restsharp" | "ocaml/native" | "ocaml/http1.1" | "ocaml/asynchttp" | "ocaml/nethttp" | "ocaml/okhttp" | "ocaml/unirest" | "ocaml/axios" | "ocaml/jquery" | "ocaml/ofetch" | "ocaml/xhr" | "ocaml/undici" | "ocaml/nsurlsession" | "ocaml/cohttp" | "ocaml/curl" | "ocaml/guzzle" | "ocaml/restmethod" | "ocaml/webrequest" | "ocaml/python3" | "ocaml/requests" | "ocaml/aiohttp" | "ocaml/httpx_sync" | "ocaml/httpx_async" | "ocaml/httr2" | "ocaml/reqwest" | "ocaml/httpie" | "ocaml/wget" | "php/http" | "php/laravel" | "php/fetch" | "php/libcurl" | "php/clj_http" | "php/httpclient" | "php/restsharp" | "php/native" | "php/http1.1" | "php/asynchttp" | "php/nethttp" | "php/okhttp" | "php/unirest" | "php/axios" | "php/jquery" | "php/ofetch" | "php/xhr" | "php/undici" | "php/nsurlsession" | "php/cohttp" | "php/curl" | "php/guzzle" | "php/restmethod" | "php/webrequest" | "php/python3" | "php/requests" | "php/aiohttp" | "php/httpx_sync" | "php/httpx_async" | "php/httr2" | "php/reqwest" | "php/httpie" | "php/wget" | "powershell/http" | "powershell/laravel" | "powershell/fetch" | "powershell/libcurl" | "powershell/clj_http" | "powershell/httpclient" | "powershell/restsharp" | "powershell/native" | "powershell/http1.1" | "powershell/asynchttp" | "powershell/nethttp" | "powershell/okhttp" | "powershell/unirest" | "powershell/axios" | "powershell/jquery" | "powershell/ofetch" | "powershell/xhr" | "powershell/undici" | "powershell/nsurlsession" | "powershell/cohttp" | "powershell/curl" | "powershell/guzzle" | "powershell/restmethod" | "powershell/webrequest" | "powershell/python3" | "powershell/requests" | "powershell/aiohttp" | "powershell/httpx_sync" | "powershell/httpx_async" | "powershell/httr2" | "powershell/reqwest" | "powershell/httpie" | "powershell/wget" | "python/http" | "python/laravel" | "python/fetch" | "python/libcurl" | "python/clj_http" | "python/httpclient" | "python/restsharp" | "python/native" | "python/http1.1" | "python/asynchttp" | "python/nethttp" | "python/okhttp" | "python/unirest" | "python/axios" | "python/jquery" | "python/ofetch" | "python/xhr" | "python/undici" | "python/nsurlsession" | "python/cohttp" | "python/curl" | "python/guzzle" | "python/restmethod" | "python/webrequest" | "python/python3" | "python/requests" | "python/aiohttp" | "python/httpx_sync" | "python/httpx_async" | "python/httr2" | "python/reqwest" | "python/httpie" | "python/wget" | "ruby/http" | "ruby/laravel" | "ruby/fetch" | "ruby/libcurl" | "ruby/clj_http" | "ruby/httpclient" | "ruby/restsharp" | "ruby/native" | "ruby/http1.1" | "ruby/asynchttp" | "ruby/nethttp" | "ruby/okhttp" | "ruby/unirest" | "ruby/axios" | "ruby/jquery" | "ruby/ofetch" | "ruby/xhr" | "ruby/undici" | "ruby/nsurlsession" | "ruby/cohttp" | "ruby/curl" | "ruby/guzzle" | "ruby/restmethod" | "ruby/webrequest" | "ruby/python3" | "ruby/requests" | "ruby/aiohttp" | "ruby/httpx_sync" | "ruby/httpx_async" | "ruby/httr2" | "ruby/reqwest" | "ruby/httpie" | "ruby/wget" | "shell/http" | "shell/laravel" | "shell/fetch" | "shell/libcurl" | "shell/clj_http" | "shell/httpclient" | "shell/restsharp" | "shell/native" | "shell/http1.1" | "shell/asynchttp" | "shell/nethttp" | "shell/okhttp" | "shell/unirest" | "shell/axios" | "shell/jquery" | "shell/ofetch" | "shell/xhr" | "shell/undici" | "shell/nsurlsession" | "shell/cohttp" | "shell/curl" | "shell/guzzle" | "shell/restmethod" | "shell/webrequest" | "shell/python3" | "shell/requests" | "shell/aiohttp" | "shell/httpx_sync" | "shell/httpx_async" | "shell/httr2" | "shell/reqwest" | "shell/httpie" | "shell/wget" | "swift/http" | "swift/laravel" | "swift/fetch" | "swift/libcurl" | "swift/clj_http" | "swift/httpclient" | "swift/restsharp" | "swift/native" | "swift/http1.1" | "swift/asynchttp" | "swift/nethttp" | "swift/okhttp" | "swift/unirest" | "swift/axios" | "swift/jquery" | "swift/ofetch" | "swift/xhr" | "swift/undici" | "swift/nsurlsession" | "swift/cohttp" | "swift/curl" | "swift/guzzle" | "swift/restmethod" | "swift/webrequest" | "swift/python3" | "swift/requests" | "swift/aiohttp" | "swift/httpx_sync" | "swift/httpx_async" | "swift/httr2" | "swift/reqwest" | "swift/httpie" | "swift/wget">[], import("@scalar/typebox").TString]>>;
18
+ "x-scalar-default-example": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18
19
  "x-scalar-active-document": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
19
20
  "x-scalar-theme": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
20
21
  "x-scalar-sidebar-width": import("@scalar/typebox").TOptional<import("@scalar/typebox").TNumber>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/workspace-specification/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAG5C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAA;AAC7E,OAAO,EAAE,KAAK,aAAa,EAAuB,MAAM,qBAAqB,CAAA;AAC7E,OAAO,EAAE,KAAK,IAAI,EAAc,MAAM,wCAAwC,CAAA;AAE9E,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;MAexC,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,SAAS,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,IAAI,CAAA;IACV,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,eAAe,CAAC,CAAC,CAAA;CACzD,GAAG,aAAa,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/workspace-specification/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAG5C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAA;AAC7E,OAAO,EAAE,KAAK,aAAa,EAAuB,MAAM,qBAAqB,CAAA;AAC7E,OAAO,EAAE,KAAK,IAAI,EAAc,MAAM,wCAAwC,CAAA;AAE9E,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;MAexC,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,SAAS,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,IAAI,CAAA;IACV,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,eAAe,CAAC,CAAC,CAAA;CACzD,GAAG,aAAa,CAAA"}