@scalar/api-reference 1.28.14 → 1.28.16

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 (34) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/browser/standalone.js +5125 -5093
  3. package/dist/browser/webpack-stats.json +1 -1
  4. package/dist/components/Content/Introduction/Introduction.vue.d.ts.map +1 -1
  5. package/dist/components/Content/Introduction/Introduction.vue.js +2 -2
  6. package/dist/components/Content/Introduction/Introduction.vue2.js +44 -35
  7. package/dist/components/Content/Models/Models.vue.js +2 -2
  8. package/dist/components/Content/Models/Models.vue2.js +17 -17
  9. package/dist/components/Content/Models/ModelsAccordion.vue.js +1 -1
  10. package/dist/components/Content/Models/ModelsAccordion.vue2.js +3 -3
  11. package/dist/components/Content/Schema/Schema.preview.d.ts +525 -0
  12. package/dist/components/Content/Schema/Schema.preview.d.ts.map +1 -1
  13. package/dist/components/Content/Schema/Schema.vue.d.ts +1 -0
  14. package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
  15. package/dist/components/Content/Schema/Schema.vue.js +2 -2
  16. package/dist/components/Content/Schema/Schema.vue2.js +60 -62
  17. package/dist/components/Content/Schema/SchemaDiscriminator.vue.d.ts.map +1 -1
  18. package/dist/components/Content/Schema/SchemaDiscriminator.vue.js +2 -2
  19. package/dist/components/Content/Schema/SchemaDiscriminator.vue2.js +32 -50
  20. package/dist/components/Content/Schema/SchemaProperty.vue.d.ts +1 -0
  21. package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
  22. package/dist/components/Content/Schema/SchemaProperty.vue.js +2 -2
  23. package/dist/components/Content/Schema/SchemaProperty.vue2.js +72 -67
  24. package/dist/components/Content/Schema/helpers/merge-all-of-schemas.d.ts +12 -0
  25. package/dist/components/Content/Schema/helpers/merge-all-of-schemas.d.ts.map +1 -0
  26. package/dist/components/Content/Schema/helpers/merge-all-of-schemas.js +70 -0
  27. package/dist/features/Operation/components/ParameterListItem.vue.js +3 -3
  28. package/dist/features/Operation/components/ParameterListItem.vue2.js +12 -12
  29. package/dist/hooks/useSidebar.d.ts +1 -0
  30. package/dist/hooks/useSidebar.d.ts.map +1 -1
  31. package/dist/hooks/useSidebar.js +131 -119
  32. package/dist/index.js +1 -1
  33. package/dist/style.css +1 -1
  34. package/package.json +6 -6
@@ -19,6 +19,7 @@ export declare const stringSchema: {
19
19
  schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
20
20
  }> & Readonly<{}>, {
21
21
  level: number;
22
+ noncollapsible: boolean;
22
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
24
  noncollapsible: boolean;
24
25
  props: {
@@ -51,6 +52,7 @@ export declare const objectSchema: {
51
52
  schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
52
53
  }> & Readonly<{}>, {
53
54
  level: number;
55
+ noncollapsible: boolean;
54
56
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
55
57
  noncollapsible: boolean;
56
58
  props: {
@@ -92,6 +94,7 @@ export declare const recursiveSchema: {
92
94
  schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
93
95
  }> & Readonly<{}>, {
94
96
  level: number;
97
+ noncollapsible: boolean;
95
98
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
96
99
  props: {
97
100
  name: string;
@@ -125,6 +128,7 @@ export declare const enumSchema: {
125
128
  schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
126
129
  }> & Readonly<{}>, {
127
130
  level: number;
131
+ noncollapsible: boolean;
128
132
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
129
133
  props: {
130
134
  name: string;
@@ -157,6 +161,7 @@ export declare const objectWithEnumSchema: {
157
161
  schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
158
162
  }> & Readonly<{}>, {
159
163
  level: number;
164
+ noncollapsible: boolean;
160
165
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
161
166
  props: {
162
167
  name: string;
@@ -194,6 +199,7 @@ export declare const discriminatorsSchema: {
194
199
  schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
195
200
  }> & Readonly<{}>, {
196
201
  level: number;
202
+ noncollapsible: boolean;
197
203
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
198
204
  props: {
199
205
  name: string;
@@ -229,4 +235,523 @@ export declare const discriminatorsSchema: {
229
235
  };
230
236
  };
231
237
  };
238
+ export declare const complexAllOfSchema: {
239
+ component: import("vue").DefineComponent<{
240
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
241
+ level?: number;
242
+ name?: string;
243
+ compact?: boolean;
244
+ noncollapsible?: boolean;
245
+ hideHeading?: boolean;
246
+ additionalProperties?: boolean;
247
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
248
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
249
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
250
+ level?: number;
251
+ name?: string;
252
+ compact?: boolean;
253
+ noncollapsible?: boolean;
254
+ hideHeading?: boolean;
255
+ additionalProperties?: boolean;
256
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
257
+ }> & Readonly<{}>, {
258
+ level: number;
259
+ noncollapsible: boolean;
260
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
261
+ props: {
262
+ name: string;
263
+ noncollapsible: boolean;
264
+ value: {
265
+ allOf: ({
266
+ type: string;
267
+ properties: {
268
+ 'top-level-property': {
269
+ type: string;
270
+ };
271
+ 'top-level-array'?: undefined;
272
+ };
273
+ } | {
274
+ type: string;
275
+ properties: {
276
+ 'top-level-array': {
277
+ type: string;
278
+ items: {
279
+ allOf: ({
280
+ type: string;
281
+ properties: {
282
+ 'all-of-schema-1': {
283
+ type: string;
284
+ };
285
+ };
286
+ allOf?: undefined;
287
+ } | {
288
+ type: string;
289
+ allOf: {
290
+ type: string;
291
+ properties: {
292
+ 'all-of-schema-2': {
293
+ type: string;
294
+ items: {
295
+ allOf: {
296
+ type: string;
297
+ properties: {
298
+ 'all-of-schema-2-items-all-of-schema-1': {
299
+ type: string;
300
+ };
301
+ };
302
+ }[];
303
+ };
304
+ };
305
+ };
306
+ }[];
307
+ properties?: undefined;
308
+ })[];
309
+ };
310
+ };
311
+ 'top-level-property'?: undefined;
312
+ };
313
+ })[];
314
+ };
315
+ };
316
+ };
317
+ export declare const arrayValidationSchema: {
318
+ component: import("vue").DefineComponent<{
319
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
320
+ level?: number;
321
+ name?: string;
322
+ compact?: boolean;
323
+ noncollapsible?: boolean;
324
+ hideHeading?: boolean;
325
+ additionalProperties?: boolean;
326
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
327
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
328
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
329
+ level?: number;
330
+ name?: string;
331
+ compact?: boolean;
332
+ noncollapsible?: boolean;
333
+ hideHeading?: boolean;
334
+ additionalProperties?: boolean;
335
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
336
+ }> & Readonly<{}>, {
337
+ level: number;
338
+ noncollapsible: boolean;
339
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
340
+ props: {
341
+ name: string;
342
+ noncollapsible: boolean;
343
+ value: {
344
+ type: string;
345
+ properties: {
346
+ tags: {
347
+ type: string;
348
+ description: string;
349
+ minItems: number;
350
+ maxItems: number;
351
+ uniqueItems: boolean;
352
+ items: {
353
+ type: string;
354
+ minLength: number;
355
+ maxLength: number;
356
+ pattern: string;
357
+ };
358
+ };
359
+ scores: {
360
+ type: string;
361
+ description: string;
362
+ items: {
363
+ type: string;
364
+ minimum: number;
365
+ maximum: number;
366
+ };
367
+ };
368
+ };
369
+ };
370
+ };
371
+ };
372
+ export declare const advancedStringFormatsSchema: {
373
+ component: import("vue").DefineComponent<{
374
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
375
+ level?: number;
376
+ name?: string;
377
+ compact?: boolean;
378
+ noncollapsible?: boolean;
379
+ hideHeading?: boolean;
380
+ additionalProperties?: boolean;
381
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
382
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
383
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
384
+ level?: number;
385
+ name?: string;
386
+ compact?: boolean;
387
+ noncollapsible?: boolean;
388
+ hideHeading?: boolean;
389
+ additionalProperties?: boolean;
390
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
391
+ }> & Readonly<{}>, {
392
+ level: number;
393
+ noncollapsible: boolean;
394
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
395
+ props: {
396
+ name: string;
397
+ noncollapsible: boolean;
398
+ value: {
399
+ type: string;
400
+ required: string[];
401
+ properties: {
402
+ email: {
403
+ type: string;
404
+ format: string;
405
+ description: string;
406
+ example: string;
407
+ };
408
+ website: {
409
+ type: string;
410
+ format: string;
411
+ description: string;
412
+ example: string;
413
+ };
414
+ dateOfBirth: {
415
+ type: string;
416
+ format: string;
417
+ description: string;
418
+ example: string;
419
+ };
420
+ phoneNumber: {
421
+ type: string;
422
+ pattern: string;
423
+ description: string;
424
+ example: string;
425
+ };
426
+ };
427
+ };
428
+ };
429
+ };
430
+ export declare const oneOfCombinedSchema: {
431
+ component: import("vue").DefineComponent<{
432
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
433
+ level?: number;
434
+ name?: string;
435
+ compact?: boolean;
436
+ noncollapsible?: boolean;
437
+ hideHeading?: boolean;
438
+ additionalProperties?: boolean;
439
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
440
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
441
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
442
+ level?: number;
443
+ name?: string;
444
+ compact?: boolean;
445
+ noncollapsible?: boolean;
446
+ hideHeading?: boolean;
447
+ additionalProperties?: boolean;
448
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
449
+ }> & Readonly<{}>, {
450
+ level: number;
451
+ noncollapsible: boolean;
452
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
453
+ props: {
454
+ name: string;
455
+ noncollapsible: boolean;
456
+ value: {
457
+ type: string;
458
+ required: string[];
459
+ properties: {
460
+ type: {
461
+ type: string;
462
+ enum: string[];
463
+ description: string;
464
+ };
465
+ };
466
+ oneOf: ({
467
+ type: string;
468
+ required: string[];
469
+ properties: {
470
+ type: {
471
+ enum: string[];
472
+ };
473
+ card_number: {
474
+ type: string;
475
+ pattern: string;
476
+ description: string;
477
+ };
478
+ expiry_date: {
479
+ type: string;
480
+ pattern: string;
481
+ description: string;
482
+ };
483
+ cvv: {
484
+ type: string;
485
+ pattern: string;
486
+ description: string;
487
+ };
488
+ account_number?: undefined;
489
+ routing_number?: undefined;
490
+ wallet_address?: undefined;
491
+ network?: undefined;
492
+ };
493
+ } | {
494
+ type: string;
495
+ required: string[];
496
+ properties: {
497
+ type: {
498
+ enum: string[];
499
+ };
500
+ account_number: {
501
+ type: string;
502
+ minLength: number;
503
+ maxLength: number;
504
+ };
505
+ routing_number: {
506
+ type: string;
507
+ pattern: string;
508
+ };
509
+ card_number?: undefined;
510
+ expiry_date?: undefined;
511
+ cvv?: undefined;
512
+ wallet_address?: undefined;
513
+ network?: undefined;
514
+ };
515
+ } | {
516
+ type: string;
517
+ required: string[];
518
+ properties: {
519
+ type: {
520
+ enum: string[];
521
+ };
522
+ wallet_address: {
523
+ type: string;
524
+ minLength: number;
525
+ maxLength: number;
526
+ };
527
+ network: {
528
+ type: string;
529
+ enum: string[];
530
+ };
531
+ card_number?: undefined;
532
+ expiry_date?: undefined;
533
+ cvv?: undefined;
534
+ account_number?: undefined;
535
+ routing_number?: undefined;
536
+ };
537
+ })[];
538
+ };
539
+ };
540
+ };
541
+ export declare const conditionalFieldsSchema: {
542
+ component: import("vue").DefineComponent<{
543
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
544
+ level?: number;
545
+ name?: string;
546
+ compact?: boolean;
547
+ noncollapsible?: boolean;
548
+ hideHeading?: boolean;
549
+ additionalProperties?: boolean;
550
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
551
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
552
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
553
+ level?: number;
554
+ name?: string;
555
+ compact?: boolean;
556
+ noncollapsible?: boolean;
557
+ hideHeading?: boolean;
558
+ additionalProperties?: boolean;
559
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
560
+ }> & Readonly<{}>, {
561
+ level: number;
562
+ noncollapsible: boolean;
563
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
564
+ props: {
565
+ name: string;
566
+ noncollapsible: boolean;
567
+ value: {
568
+ type: string;
569
+ required: string[];
570
+ properties: {
571
+ shippingType: {
572
+ type: string;
573
+ enum: string[];
574
+ description: string;
575
+ };
576
+ zipCode: {
577
+ type: string;
578
+ pattern: string;
579
+ description: string;
580
+ };
581
+ countryCode: {
582
+ type: string;
583
+ pattern: string;
584
+ description: string;
585
+ };
586
+ };
587
+ dependencies: {
588
+ shippingType: {
589
+ oneOf: ({
590
+ properties: {
591
+ shippingType: {
592
+ enum: string[];
593
+ };
594
+ zipCode: {
595
+ type: string;
596
+ };
597
+ countryCode?: undefined;
598
+ };
599
+ required: string[];
600
+ } | {
601
+ properties: {
602
+ shippingType: {
603
+ enum: string[];
604
+ };
605
+ countryCode: {
606
+ type: string;
607
+ };
608
+ zipCode?: undefined;
609
+ };
610
+ required: string[];
611
+ })[];
612
+ };
613
+ };
614
+ };
615
+ };
616
+ };
617
+ export declare const advancedNumberValidationSchema: {
618
+ component: import("vue").DefineComponent<{
619
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
620
+ level?: number;
621
+ name?: string;
622
+ compact?: boolean;
623
+ noncollapsible?: boolean;
624
+ hideHeading?: boolean;
625
+ additionalProperties?: boolean;
626
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
627
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
628
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
629
+ level?: number;
630
+ name?: string;
631
+ compact?: boolean;
632
+ noncollapsible?: boolean;
633
+ hideHeading?: boolean;
634
+ additionalProperties?: boolean;
635
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
636
+ }> & Readonly<{}>, {
637
+ level: number;
638
+ noncollapsible: boolean;
639
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
640
+ props: {
641
+ name: string;
642
+ noncollapsible: boolean;
643
+ value: {
644
+ type: string;
645
+ properties: {
646
+ weight: {
647
+ type: string;
648
+ minimum: number;
649
+ exclusiveMinimum: boolean;
650
+ maximum: number;
651
+ multipleOf: number;
652
+ description: string;
653
+ };
654
+ dimensions: {
655
+ type: string;
656
+ properties: {
657
+ length: {
658
+ type: string;
659
+ minimum: number;
660
+ maximum: number;
661
+ description: string;
662
+ };
663
+ width: {
664
+ type: string;
665
+ minimum: number;
666
+ maximum: number;
667
+ description: string;
668
+ };
669
+ height: {
670
+ type: string;
671
+ minimum: number;
672
+ maximum: number;
673
+ description: string;
674
+ };
675
+ };
676
+ required: string[];
677
+ };
678
+ rating: {
679
+ type: string;
680
+ minimum: number;
681
+ maximum: number;
682
+ multipleOf: number;
683
+ description: string;
684
+ };
685
+ };
686
+ };
687
+ };
688
+ };
689
+ export declare const nestedArrayTupleSchema: {
690
+ component: import("vue").DefineComponent<{
691
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
692
+ level?: number;
693
+ name?: string;
694
+ compact?: boolean;
695
+ noncollapsible?: boolean;
696
+ hideHeading?: boolean;
697
+ additionalProperties?: boolean;
698
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
699
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
700
+ value?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | import("@scalar/openapi-types").OpenAPIV3.SchemaObject | import("@scalar/openapi-types").OpenAPIV3.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3.NonArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.ArraySchemaObject | import("@scalar/openapi-types").OpenAPIV3_1.NonArraySchemaObject;
701
+ level?: number;
702
+ name?: string;
703
+ compact?: boolean;
704
+ noncollapsible?: boolean;
705
+ hideHeading?: boolean;
706
+ additionalProperties?: boolean;
707
+ schemas?: import("@scalar/openapi-types").OpenAPIV2.DefinitionsObject | Record<string, import("@scalar/openapi-types").OpenAPIV3.SchemaObject> | Record<string, import("@scalar/openapi-types").OpenAPIV3_1.SchemaObject> | unknown;
708
+ }> & Readonly<{}>, {
709
+ level: number;
710
+ noncollapsible: boolean;
711
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
712
+ props: {
713
+ name: string;
714
+ noncollapsible: boolean;
715
+ value: {
716
+ type: string;
717
+ properties: {
718
+ gameId: {
719
+ type: string;
720
+ format: string;
721
+ description: string;
722
+ };
723
+ moves: {
724
+ type: string;
725
+ description: string;
726
+ items: {
727
+ type: string;
728
+ minItems: number;
729
+ maxItems: number;
730
+ description: string;
731
+ items: ({
732
+ type: string;
733
+ enum: string[];
734
+ description: string;
735
+ pattern?: undefined;
736
+ } | {
737
+ type: string;
738
+ pattern: string;
739
+ description: string;
740
+ enum?: undefined;
741
+ })[];
742
+ };
743
+ };
744
+ timestamps: {
745
+ type: string;
746
+ description: string;
747
+ items: {
748
+ type: string;
749
+ format: string;
750
+ };
751
+ };
752
+ };
753
+ required: string[];
754
+ };
755
+ };
756
+ };
232
757
  //# sourceMappingURL=Schema.preview.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Schema.preview.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/Schema.preview.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWxB,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoBxB,CAAA;AAWD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO3B,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWtB,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBhC,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BhC,CAAA"}
1
+ {"version":3,"file":"Schema.preview.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/Schema.preview.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWxB,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoBxB,CAAA;AAWD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO3B,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWtB,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBhC,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BhC,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+D9B,CAAA;AAED,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCjC,CAAA;AAED,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCvC,CAAA;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyE/B,CAAA;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+CnC,CAAA;AAED,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkD1C,CAAA;AAED,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDlC,CAAA"}
@@ -15,6 +15,7 @@ type __VLS_Props = {
15
15
  };
16
16
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
17
  level: number;
18
+ noncollapsible: boolean;
18
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
20
  export default _default;
20
21
  //# sourceMappingURL=Schema.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Schema.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/Schema.vue"],"names":[],"mappings":"AAoVA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAU9E,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EACF,SAAS,CAAC,iBAAiB,GAC3B,SAAS,CAAC,YAAY,GACtB,SAAS,CAAC,iBAAiB,GAC3B,SAAS,CAAC,oBAAoB,GAC9B,WAAW,CAAC,YAAY,GACxB,WAAW,CAAC,iBAAiB,GAC7B,WAAW,CAAC,oBAAoB,CAAA;IACpC,gCAAgC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,+DAA+D;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,2CAA2C;IAC3C,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,+FAA+F;IAC/F,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,OAAO,CAAC,EACJ,SAAS,CAAC,iBAAiB,GAC3B,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,YAAY,CAAC,GACxC,OAAO,CAAA;CACZ,CAAC;;WAfQ,MAAM;;AAgYlB,wBAOG"}
1
+ {"version":3,"file":"Schema.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Content/Schema/Schema.vue"],"names":[],"mappings":"AAmVA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAU9E,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EACF,SAAS,CAAC,iBAAiB,GAC3B,SAAS,CAAC,YAAY,GACtB,SAAS,CAAC,iBAAiB,GAC3B,SAAS,CAAC,oBAAoB,GAC9B,WAAW,CAAC,YAAY,GACxB,WAAW,CAAC,iBAAiB,GAC7B,WAAW,CAAC,oBAAoB,CAAA;IACpC,gCAAgC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,+DAA+D;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,2CAA2C;IAC3C,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,+FAA+F;IAC/F,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,OAAO,CAAC,EACJ,SAAS,CAAC,iBAAiB,GAC3B,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,YAAY,CAAC,GACxC,OAAO,CAAA;CACZ,CAAC;;WAfQ,MAAM;oBAMG,OAAO;;AAuX5B,wBAOG"}
@@ -1,7 +1,7 @@
1
1
  import o from "./Schema.vue2.js";
2
2
  /* empty css */
3
3
  import t from "../../../_virtual/_plugin-vue_export-helper.js";
4
- const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-60b202cd"]]);
4
+ const a = /* @__PURE__ */ t(o, [["__scopeId", "data-v-8c9c6e0d"]]);
5
5
  export {
6
- c as default
6
+ a as default
7
7
  };