@scalar/api-reference 0.1.29 → 0.1.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/style.css CHANGED
@@ -1,2661 +1 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');@import url('https://fonts.googleapis.com/css?family=JetBrains%20Mono');@import 'node_modules/modern-normalize/modern-normalize.css';@import 'node_modules/modern-normalize/modern-normalize.css';.cm-scroller,
2
- .custom-scroll {
3
- overflow-y: scroll;
4
- scrollbar-color: transparent transparent;
5
- scrollbar-width: thin;
6
- -webkit-overflow-scrolling: touch;
7
- }
8
- .custom-scroll-self-contain-overflow {
9
- overscroll-behavior: contain;
10
- }
11
- .custom-scroll-extra-padding-right {
12
- padding-right: 12px !important;
13
- }
14
- @supports (-moz-appearance: none) {
15
- .cm-scroller,
16
- .custom-scroll {
17
- padding-right: 12px;
18
- }
19
- .custom-scroll-extra-padding-right {
20
- padding-right: 24px !important;
21
- }
22
- }
23
- .cm-scroller:hover,
24
- .custom-scroll:hover {
25
- scrollbar-color: var(--theme-scrollbar-color) transparent;
26
- }
27
- .cm-scroller:hover::-webkit-scrollbar-thumb,
28
- .custom-scroll:hover::-webkit-scrollbar-thumb {
29
- background: var(--theme-scrollbar-color);
30
- background-clip: content-box;
31
- border: 3px solid transparent;
32
- }
33
- .cm-scroller::-webkit-scrollbar-thumb:active,
34
- .custom-scroll::-webkit-scrollbar-thumb:active {
35
- background: var(--theme-scrollbar-color-active);
36
- background-clip: content-box;
37
- border: 3px solid transparent;
38
- }
39
- .cm-scroller::-webkit-scrollbar-corner,
40
- .custom-scroll::-webkit-scrollbar-corner {
41
- background: transparent;
42
- }
43
- .cm-scroller::-webkit-scrollbar,
44
- .custom-scroll::-webkit-scrollbar {
45
- height: 12px;
46
- width: 12px;
47
- }
48
- .cm-scroller::-webkit-scrollbar-track,
49
- .custom-scroll::-webkit-scrollbar-track {
50
- background: transparent;
51
- }
52
- .cm-scroller::-webkit-scrollbar-thumb,
53
- .custom-scroll::-webkit-scrollbar-thumb {
54
- border-radius: 20px;
55
- background: transparent;
56
- background-clip: content-box;
57
- border: 3px solid transparent;
58
- }
59
- @media (pointer: coarse) {
60
- .cm-scroller,
61
- .custom-scroll {
62
- padding-right: 12px;
63
- }
64
- .custom-scroll-extra-padding-right {
65
- padding-right: 24px !important;
66
- }
67
- }
68
-
69
- .sidebar-search[data-v-62a174a2] {
70
- display: flex;
71
- align-items: center;
72
- position: relative;
73
- /* Sub */
74
- --margin-x: 12px;
75
- width: calc(100% - 2 * var(--margin-x));
76
- margin: 12px var(--margin-x) 6px var(--margin-x);
77
- padding: 0 12px;
78
-
79
- color: var(--sidebar-color-2, var(--theme-color-2));
80
- outline: none;
81
- border-radius: var(--theme-radius-lg);
82
- border: 1px solid var(--theme-border-color);
83
- /* prettier-ignore */
84
- background: var(--scalar-api-reference-sidebar-search-background, var(--theme-background-1));
85
- cursor: pointer;
86
- appearance: none;
87
- }
88
- .sidebar-search-input[data-v-62a174a2] {
89
- font-size: var(--theme-small);
90
- font-weight: var(--theme-semibold);
91
- line-height: 31px;
92
-
93
- user-select: none;
94
- z-index: 10;
95
- position: relative;
96
- display: block;
97
- }
98
- .search-icon[data-v-62a174a2] {
99
- padding: 0;
100
- margin-right: 9px;
101
- width: 12px;
102
- }
103
-
104
- .loader-wrapper[data-v-a0429592] {
105
- position: relative;
106
- height: var(--a8cfd54e);
107
- width: var(--a8cfd54e);
108
-
109
- display: flex;
110
- align-items: center;
111
- justify-content: center;
112
-
113
- --loader-size: 50%;
114
- }
115
-
116
- /*SVG Positioning for Loader Objects*/
117
- .svg-loader[data-v-a0429592] {
118
- width: var(--loader-size);
119
- height: var(--loader-size);
120
- top: 1rem;
121
- right: 0.9rem;
122
- overflow: visible;
123
-
124
- fill: none;
125
- background-color: transparent;
126
- stroke: currentColor;
127
- }
128
- .svg-path[data-v-a0429592] {
129
- stroke-width: 14;
130
- fill: none;
131
- transition: 0.3s;
132
- }
133
- .svg-x-mark[data-v-a0429592] {
134
- stroke-dasharray: 57;
135
- stroke-dashoffset: 57;
136
- transition-delay: 0s;
137
- }
138
- .svg-check-mark[data-v-a0429592] {
139
- stroke-dasharray: 149;
140
- stroke-dashoffset: 149;
141
- transition-delay: 0s;
142
- }
143
- .icon-is-invalid .svg-x-mark[data-v-a0429592] {
144
- stroke-dashoffset: 0;
145
- transition-delay: 0.3s;
146
- }
147
- .icon-is-valid .svg-check-mark[data-v-a0429592] {
148
- stroke-dashoffset: 0;
149
- transition-delay: 0.3s;
150
- }
151
- .circular-loader[data-v-a0429592] {
152
- animation: rotate-a0429592 0.7s linear infinite,fade-in-a0429592 0.4s;
153
-
154
- transform-origin: center center;
155
- transform: scale(5);
156
-
157
- background: transparent;
158
- }
159
- .loader-path[data-v-a0429592] {
160
- stroke-dasharray: 50, 200;
161
- stroke-dashoffset: -100;
162
- stroke-linecap: round;
163
- }
164
- .loader-path-off[data-v-a0429592] {
165
- stroke-dasharray: 50, 200;
166
- stroke-dashoffset: -100;
167
- transition: opacity 0.3s;
168
- opacity: 0;
169
- }
170
- @keyframes fade-in-a0429592 {
171
- 0% {
172
- opacity: 0;
173
- }
174
- 70% {
175
- opacity: 0;
176
- }
177
- 100% {
178
- opacity: 1;
179
- }
180
- }
181
- @keyframes rotate-a0429592 {
182
- from {
183
- transform: scale(5) rotate(0deg);
184
- }
185
- to {
186
- transform: scale(5) rotate(360deg);
187
- }
188
- }
189
-
190
- .flow-button[data-v-59eee5f4] {
191
- display: flex;
192
- align-items: center;
193
- justify-content: center;
194
- z-index: 1;
195
- position: relative;
196
- appearance: none;
197
- -webkit-appearance: none;
198
- height: 40px;
199
- padding: 0px 24px;
200
- border-radius: var(--theme-radius-lg);
201
- color: var(--theme-button-1-color);
202
- font-size: var(--theme-small);
203
- font-weight: 500;
204
- cursor: pointer;
205
- background: var(--theme-button-1);
206
- border: none;
207
- width: 100%;
208
- box-shadow: rgba(0, 0, 0, 0.09) 0px 1px 4px;
209
- }
210
- .flow-button[data-v-59eee5f4]:hover,
211
- .flow-button[data-v-59eee5f4]:focus-visible {
212
- background: var(--theme-button-1-hover);
213
- }
214
- .flow-button[data-v-59eee5f4]:active {
215
- box-shadow: none;
216
- background: var(--theme-button-1);
217
- }
218
- .flow-button[disabled][data-v-59eee5f4] {
219
- background: var(--theme-background-2);
220
- color: var(--theme-color-3);
221
- cursor: unset;
222
- box-shadow: none;
223
- }
224
- .flow-button.flow-button-icon-only[data-v-59eee5f4] {
225
- width: 24px;
226
- height: 24px;
227
- padding: 0;
228
- }
229
-
230
- /* ----------------------------------------------------- */
231
- .flow-button-outlined[data-v-59eee5f4] {
232
- background: var(--theme-background-1);
233
- color: var(--theme-color-1);
234
- padding: 11px 23px;
235
- border: 1px solid var(--theme-border-color);
236
- box-shadow: rgba(0, 0, 0, 0.09) 0px 1px 4px;
237
- }
238
- .flow-button-outlined[data-v-59eee5f4]:hover,
239
- .flow-button-outlined[data-v-59eee5f4]:focus-visible {
240
- background: var(--theme-background-2);
241
- }
242
- .flow-button-outlined[data-v-59eee5f4]:active {
243
- background: var(--theme-background-2);
244
- }
245
- .flow-button-outlined[disabled][data-v-59eee5f4] {
246
- background: var(--theme-background-2);
247
- color: var(--theme-color-3);
248
- cursor: unset;
249
- box-shadow: none;
250
- }
251
-
252
- /* ----------------------------------------------------- */
253
- .flow-button-clear[data-v-59eee5f4] {
254
- background: transparent;
255
- box-shadow: none;
256
- color: var(--theme-color-3);
257
- }
258
- .flow-button-clear[data-v-59eee5f4]:active {
259
- background: transparent;
260
- }
261
- .flow-button-clear[data-v-59eee5f4]:hover,
262
- .flow-button-clear[data-v-59eee5f4]:focus-visible {
263
- background: var(--theme-background-2);
264
- box-shadow: none;
265
- }
266
- .flow-button-clear[disabled][data-v-59eee5f4] {
267
- background: var(--theme-background-2);
268
- color: var(--theme-color-3);
269
- cursor: unset;
270
- box-shadow: none;
271
- }
272
-
273
- /* ----------------------------------------------------- */
274
- .flow-button-text[data-v-59eee5f4] {
275
- background: transparent;
276
- box-shadow: none;
277
- color: var(--theme-color-3);
278
- }
279
- .flow-button-text[data-v-59eee5f4]:active {
280
- background: transparent;
281
- }
282
- .flow-button-text[data-v-59eee5f4]:hover,
283
- .flow-button-text[data-v-59eee5f4]:focus-visible {
284
- color: var(--theme-color-2);
285
- background: transparent;
286
- box-shadow: none;
287
- }
288
- .flow-button-text[disabled][data-v-59eee5f4] {
289
- background: transparent;
290
- color: var(--theme-color-ghost);
291
- cursor: unset;
292
- box-shadow: none;
293
- }
294
-
295
- /* ----------------------------------------------------- */
296
- .flow-button--delete[data-v-59eee5f4] {
297
- background: var(--theme-error-color);
298
- color: white;
299
- }
300
- .flow-button--delete[data-v-59eee5f4]:active {
301
- background: var(--theme-error-color);
302
- }
303
- .flow-button--delete[data-v-59eee5f4]:hover {
304
- background: var(--theme-error-color);
305
- opacity: 0.86;
306
- }
307
-
308
- /* ----------------------------------------------------- */
309
- .flow-button-loader[data-v-59eee5f4] {
310
- position: absolute;
311
- right: 8px;
312
- }
313
- .flow-button-decorator[data-v-59eee5f4] {
314
- margin-right: 9px;
315
- color: currentColor;
316
- display: flex;
317
- align-items: center;
318
- height: 14px;
319
- width: 14px;
320
- }
321
- .flow-button-icon-only .flow-button-decorator[data-v-59eee5f4] {
322
- margin-right: 0;
323
- }
324
-
325
- .action-menu[data-v-fa8f9095] {
326
- position: absolute;
327
- top: 5px;
328
- right: 5px;
329
- display: flex;
330
- gap: 6px;
331
- }
332
- /**
333
- * Some awkwardness to make the dropdown buttons hidden when not hovered
334
- * but still show when the panel is open and focused
335
- */
336
- .action-menu[data-v-fa8f9095] .button-wrapper button {
337
- /* Hide the icons by default */
338
- opacity: 0;
339
- width: 20px;
340
- height: 20px;
341
- padding: 4px;
342
- }
343
- .action-menu[data-v-fa8f9095]:hover .button-wrapper button,
344
- .action-menu[data-v-fa8f9095] .button-wrapper button:hover,
345
- .sidebar-heading:hover ~ .action-menu[data-v-fa8f9095] .button-wrapper button,
346
- .action-menu[data-v-fa8f9095] .button-wrapper button[aria-expanded='true'] {
347
- opacity: 1;
348
- }
349
- .sidebar-heading[data-v-fa8f9095]:has(~ .action-menu:hover) {
350
- /* prettier-ignore */
351
- color: var(--sidebar-color-1, var(--theme-color-1));
352
- /* prettier-ignore */
353
- background: var(--sidebar-item-hover-background, var(--theme-background-2));
354
- }
355
-
356
- .sidebar {
357
- --theme-sidebar-indent-base: 6px;
358
- /* prettier-ignore */
359
- background: var(--sidebar-background-1, var(--theme-background-1));
360
- }
361
-
362
- /* ----------------------------------------------------- */
363
- /* Main sidebar styles */
364
- .sidebar {
365
- flex: 1;
366
- height: 100%;
367
- display: flex;
368
- flex-direction: column;
369
- /* prettier-ignore */
370
- background: var(--sidebar-background-1, var(--theme-background-1));
371
- --sidebar-level: 0;
372
- }
373
- .pages {
374
- padding-top: 9px;
375
- padding-bottom: 9px;
376
- }
377
- .sidebar-group {
378
- list-style: none;
379
- width: 100%;
380
- }
381
- .sidebar-heading {
382
- display: flex;
383
- gap: 6px;
384
-
385
- /* prettier-ignore */
386
- color: var(--sidebar-color-2, var(--theme-color-2));
387
- font-size: var(--theme-mini);
388
- font-weight: var(--theme-semibold);
389
- word-break: break-word;
390
- line-height: 1.385;
391
- display: flex;
392
- align-items: center;
393
- max-width: 100%;
394
- position: relative;
395
- cursor: pointer;
396
- /* prettier-ignore */
397
- border-radius: 0 var(--theme-radius-lg) var(--theme-radius-lg) 0;
398
- flex: 1;
399
- padding-right: 12px;
400
- user-select: none;
401
- }
402
-
403
- /* Folder/page collapse icon */
404
- .toggle-nested-icon {
405
- border: none;
406
- position: absolute !important;
407
- left: 2px;
408
- top: 50%;
409
- transform: translateY(-50%);
410
- color: currentColor;
411
- }
412
- .toggle-nested-icon:hover,
413
- .toggle-nested-icon:focus-visible {
414
- color: currentColor;
415
- filter: drop-shadow(0 0.125px 0 currentColor)
416
- drop-shadow(0 -0.125px 0 currentColor);
417
- }
418
-
419
- /* We indent each level of nesting further */
420
- .sidebar-indent-nested .sidebar-heading {
421
- /* prettier-ignore */
422
- padding-left: calc((var(--sidebar-level) * var(--theme-sidebar-indent-base)) + 24px) !important;
423
- }
424
-
425
- /* Collapse/expand icons must also be offset */
426
- .sidebar-indent-nested .sidebar-heading .toggle-nested-icon {
427
- /* prettier-ignore */
428
- left: calc((var(--sidebar-level) * var(--theme-sidebar-indent-base)) + 2px) !important;
429
- }
430
- .sidebar-heading-link {
431
- padding-right: 12px;
432
- padding: 6px 0;
433
- display: flex;
434
- align-items: center;
435
- }
436
-
437
- /* Sidebar link icon */
438
- .link-icon {
439
- position: relative;
440
- left: 4px;
441
- }
442
- .sidebar-icon {
443
- display: flex;
444
- align-items: center;
445
- justify-content: center;
446
- margin-right: 6px;
447
-
448
- width: 13px;
449
- height: 13px;
450
- }
451
- .sidebar-icon > svg {
452
- width: 13px;
453
- height: 13px;
454
- }
455
- .sidebar-heading:hover {
456
- /* prettier-ignore */
457
- color: var(--sidebar-color-1, var(--theme-color-1));
458
- /* prettier-ignore */
459
- background: var(--sidebar-item-hover-background, var(--theme-background-2));
460
- }
461
- .active_page.sidebar-heading:hover,
462
- .active_page.sidebar-heading,
463
- .marc_active .sidebar-heading {
464
- /* prettier-ignore */
465
- background: var(--sidebar-item-active-background, var(--theme-background-accent)) !important;
466
- /* prettier-ignore */
467
- color: var(--theme-color-accent, var(--theme-background-accent)) !important;
468
- }
469
- .sidebar-group-item {
470
- position: relative;
471
- }
472
-
473
- /* Change font colors and weights for nested items */
474
- .sidebar-indent-nested .sidebar-heading {
475
- /* prettier-ignore */
476
- color: var(--sidebar-color-1, var(--theme-color-1));
477
- }
478
- .sidebar-indent-nested .sidebar-indent-nested .sidebar-heading {
479
- /* prettier-ignore */
480
- color: var(--sidebar-color-2, var(--theme-color-2));
481
- }
482
- .sidebar-indent-nested > div:has(.active_page) .sidebar-heading {
483
- font-weight: var(--theme-bold);
484
- }
485
- .sidebar-mobile-header {
486
- display: flex;
487
- align-items: center;
488
- gap: 12px;
489
- height: 100%;
490
- width: 100%;
491
- padding: 0 6px;
492
- }
493
- .sidebar-mobile-breadcrumbs {
494
- flex: 1;
495
- min-width: 0;
496
- overflow: hidden;
497
- white-space: nowrap;
498
- text-overflow: ellipsis;
499
- font-size: var(--theme-small);
500
- font-weight: var(--theme-semibold);
501
- }
502
- .sidebar-mobile-actions {
503
- display: flex;
504
- flex-direction: row;
505
- gap: 4px;
506
- height: 24px;
507
- align-items: center;
508
- padding: 0 4px;
509
- }
510
- .sidebar-mobile-actions .sidebar-mobile-darkmode-toggle {
511
- height: 16px;
512
- width: 16px;
513
- }
514
- @media (max-width: 1000px) {
515
- .sidebar {
516
- min-height: 0;
517
- }
518
- .pages {
519
- padding-top: 12px;
520
- }
521
- }
522
- @media (max-width: 500px) {
523
- .header-item-link.header-item-active,
524
- .sidebar-section,
525
- .sidebar-heading {
526
- font-size: var(--theme-micro);
527
- }
528
- }
529
-
530
- .scalar-api-client__container .scalar-api-client[data-v-cd5e89a0] {
531
- width: calc(100% - var(--scalar-api-reference-theme-sidebar-width));
532
- }
533
- .scalar-api-client__container[data-v-cd5e89a0] {
534
- position: absolute;
535
- right: 0;
536
- left: 0;
537
- bottom: 0;
538
- top: 0;
539
- z-index: 9;
540
- border-radius: 0;
541
- box-shadow: none;
542
- opacity: 1;
543
- overflow: hidden;
544
- pointer-events: all;
545
- background: var(--theme-background-1) !important;
546
- border-radius: var(--theme-radius-lg);
547
- box-shadow: var(--theme-shadow-1);
548
- height: 100%;
549
- overflow: hidden;
550
- display: flex;
551
- flex-direction: column;
552
- }
553
- @media screen and (max-width: 1265px) {
554
- .scalar-api-client__container[data-v-cd5e89a0] {
555
- width: 100vw !important;
556
- }
557
- }
558
- .scalar-api-client__navigation[data-v-cd5e89a0] {
559
- width: 100%;
560
- display: flex;
561
- align-items: center;
562
- padding: 11px 12px;
563
- height: var(--scalar-api-reference-theme-header-height);
564
- background-color: var(--theme-background-1);
565
- z-index: 10;
566
- position: sticky;
567
- border-bottom: 1px solid var(--theme-border-color);
568
- top: 0;
569
- }
570
- .scalar-api-client__close[data-v-cd5e89a0] {
571
- appearance: none;
572
- border: none;
573
- outline: none;
574
- display: flex;
575
- align-items: center;
576
- background: transparent;
577
- font-size: 14px;
578
- color: var(--theme-color-1);
579
- font-weight: var(--theme-semibold);
580
- }
581
- .scalar-api-client__close[data-v-cd5e89a0]:hover {
582
- cursor: pointer;
583
- }
584
- /*
585
- TODO: Markup is missing
586
- .scalar-api-client__close__icon {
587
- width: 28px;
588
- height: 28px;
589
- border-radius: var(--theme-radius-lg);
590
- margin-right: 12px;
591
- display: flex;
592
- justify-content: center;
593
- align-items: center;
594
- color: var(--theme-color-2);
595
- }
596
- .scalar-api-client__close__icon:hover {
597
- background: var(--theme-background-2);
598
- }
599
- .scalar-api-client__close__icon svg {
600
- width: 12px;
601
- height: 12px;
602
- transform: rotate(180deg);
603
- } */
604
- .api-client-drawer[data-v-cd5e89a0] {
605
- background: var(--theme-background-1);
606
- height: calc(100vh - 58px);
607
- width: calc(100vw - 8px);
608
- border-radius: 12px;
609
- overflow: hidden;
610
- visibility: visible;
611
- position: fixed;
612
- bottom: 4px;
613
- left: 4px;
614
- z-index: 9999;
615
- opacity: 0;
616
- animation: apiclientfadein-cd5e89a0 0.35s forwards;
617
- }
618
- @keyframes apiclientfadein-cd5e89a0 {
619
- from {
620
- transform: translate3d(0, 20px, 0) scale(0.985);
621
- opacity: 0;
622
- }
623
- to {
624
- transform: translate3d(0, 0, 0) scale(1);
625
- opacity: 1;
626
- }
627
- }
628
- .api-client-drawer-exit[data-v-cd5e89a0] {
629
- position: fixed;
630
- top: 0;
631
- left: 0;
632
- width: 100vw;
633
- height: 100vh;
634
- background: rgba(0, 0, 0, 0.44);
635
- transition: all 0.3s ease-in-out;
636
- z-index: 9998;
637
- cursor: pointer;
638
- animation: drawerexitfadein-cd5e89a0 0.35s forwards;
639
- }
640
- @keyframes drawerexitfadein-cd5e89a0 {
641
- from {
642
- opacity: 0;
643
- }
644
- to {
645
- opacity: 1;
646
- }
647
- }
648
- .scalar-api-client-height[data-v-cd5e89a0] {
649
- height: 100%;
650
- }
651
- .scalar-api-client-height .sidebar[data-v-cd5e89a0] {
652
- flex: 1 1 0%;
653
- flex-grow: 1;
654
- flex-shrink: 1;
655
- flex-basis: 0%;
656
- height: 100%;
657
- display: flex;
658
- flex-direction: column;
659
- width: var(--scalar-api-reference-theme-sidebar-width);
660
- border-right: 1px solid var(--theme-border-color);
661
- }
662
-
663
- .card[data-v-632b8afa] {
664
- border-radius: var(--theme-radius-lg);
665
- overflow: hidden;
666
- border: 1px solid var(--theme-border-color);
667
- }
668
-
669
- .card-content[data-v-872d61e3] {
670
- overflow: auto;
671
- padding: 10px 12px;
672
- border-bottom: 1px solid var(--theme-border-color);
673
- }
674
- .card-content[data-v-872d61e3]:last-of-type,
675
- .card-content.card--borderless[data-v-872d61e3] {
676
- border-bottom: none;
677
- }
678
- .card--muted[data-v-872d61e3] {
679
- background: var(--theme-background-2);
680
- }
681
- .card--frameless[data-v-872d61e3] {
682
- padding: 0;
683
- }
684
-
685
- .card-header[data-v-397189f8] {
686
- font-weight: var(--theme-semibold);
687
- font-size: var(--theme-mini);
688
- color: var(--theme-color-3);
689
- }
690
- .card-header-title[data-v-397189f8] {
691
- text-transform: uppercase;
692
- }
693
- .card-header-slots[data-v-397189f8] {
694
- display: flex;
695
- justify-content: space-between;
696
- align-items: center;
697
- }
698
- .card-header-actions[data-v-397189f8] {
699
- display: flex;
700
- align-items: center;
701
- }
702
-
703
- .card-footer[data-v-0b2d0026] {
704
- border-top: 1px solid var(--theme-border-color);
705
- }
706
-
707
- .tab-list[data-v-d1f27904] {
708
- display: flex;
709
- gap: 6px;
710
- position: relative;
711
- }
712
-
713
- .tab[data-v-200cb238] {
714
- background: none;
715
- border: none;
716
- font-size: var(--theme-micro);
717
- font-family: var(--theme-font);
718
- color: var(--theme-color-2);
719
- font-weight: var(--theme-semibold);
720
- line-height: calc(var(--theme-micro) + 2px);
721
- cursor: pointer;
722
- }
723
- .tab-selected[data-v-200cb238] {
724
- color: var(--theme-color-1);
725
- text-decoration: underline;
726
- text-underline-offset: var(--theme-micro);
727
- }
728
-
729
- .markdown[data-v-e041250f] * {
730
- margin-top: 12px;
731
- }
732
- .markdown[data-v-e041250f] h1,
733
- .markdown[data-v-e041250f] h2,
734
- .markdown[data-v-e041250f] h3,
735
- .markdown[data-v-e041250f] h4,
736
- .markdown[data-v-e041250f] h5,
737
- .markdown[data-v-e041250f] h6 {
738
- font-size: var(--font-size);
739
- margin: 12px 0 6px;
740
- }
741
- .markdown[data-v-e041250f] p {
742
- font-size: var(--font-size, var(--theme-paragraph));
743
- /* prettier-ignore */
744
- color: var(--theme-color-1);
745
- font-weight: var(--font-weight, var(--theme-small));
746
- line-height: 1.5;
747
- }
748
- .markdown[data-v-e041250f] ul,
749
- .markdown[data-v-e041250f] ol {
750
- padding-left: 24px;
751
- line-height: 1.5;
752
- margin: 12px 0;
753
- }
754
- .markdown[data-v-e041250f] ul {
755
- list-style: disc;
756
- }
757
- .markdown[data-v-e041250f] ol {
758
- list-style: decimal;
759
- }
760
- .markdown[data-v-e041250f] ul.contains-task-list {
761
- list-style: none;
762
- padding-left: 0;
763
- }
764
- .markdown[data-v-e041250f] li {
765
- margin: 6px 0;
766
- }
767
- .markdown[data-v-e041250f] code {
768
- font-family: var(--theme-font-code);
769
- background-color: var(--theme-background-2);
770
- box-shadow: 0 0 0 1px var(--theme-border-color);
771
- font-size: var(--theme-micro);
772
- border-radius: 2px;
773
- padding: 0 3px;
774
- }
775
- .markdown[data-v-e041250f] pre code {
776
- display: block;
777
- white-space: pre;
778
- padding: 3px;
779
- margin: 12px 0;
780
- -webkit-overflow-scrolling: touch;
781
- overflow-x: scroll;
782
- max-width: 100%;
783
- min-width: 100px;
784
- }
785
- .markdown[data-v-e041250f] blockquote {
786
- border-left: 3px solid var(--theme-border-color);
787
- padding-left: 12px;
788
- }
789
- .markdown[data-v-e041250f] table {
790
- position: relative;
791
- border-collapse: collapse;
792
- table-layout: fixed;
793
- width: 100%;
794
- margin: 0;
795
- overflow: hidden;
796
- box-shadow: 0 0 0 1px var(--theme-border-color);
797
- border-radius: var(--theme-radius-lg);
798
- }
799
- .markdown[data-v-e041250f] td,
800
- .markdown[data-v-e041250f] th {
801
- min-width: 1em;
802
- padding: 6px;
803
- vertical-align: top;
804
- box-sizing: border-box;
805
- position: relative;
806
- word-break: break-all;
807
- border-right: 1px solid var(--theme-border-color);
808
- border-bottom: 1px solid var(--theme-border-color);
809
- }
810
- .markdown[data-v-e041250f] td > *,
811
- .markdown[data-v-e041250f] th > * {
812
- margin-bottom: 0;
813
- }
814
- .markdown.parameter-description[data-v-e041250f] p {
815
- margin-top: 4px;
816
- font-size: var(--theme-small);
817
- color: var(--theme-color-2);
818
- line-height: initial;
819
- }
820
- .markdown[data-v-e041250f] td:first-of-type,
821
- .markdown[data-v-e041250f] th:first-of-type {
822
- border-left: none;
823
- }
824
- .markdown[data-v-e041250f] td:last-of-type,
825
- .markdown[data-v-e041250f] th:last-of-type {
826
- border-right: none;
827
- }
828
- .markdown[data-v-e041250f] tr:last-of-type td {
829
- border-bottom: none;
830
- }
831
- .markdown[data-v-e041250f] th {
832
- font-weight: bold !important;
833
- text-align: left;
834
- border-left-color: transparent;
835
- background: var(--theme-background-2);
836
- }
837
-
838
- .base-url[data-v-e66bcf92] {
839
- color: var(--theme-color-2);
840
- font-size: var(--theme-mini);
841
- cursor: pointer;
842
- display: flex;
843
- font-family: var(--theme-font-code);
844
- flex-direction: column;
845
- }
846
-
847
- .client-libraries-content[data-v-474a477f] {
848
- display: flex;
849
- justify-content: center;
850
- gap: 6px;
851
- padding: 0 12px;
852
- }
853
- .code-languages[data-v-474a477f] {
854
- display: flex;
855
- align-items: center;
856
- justify-content: center;
857
- flex-direction: column;
858
- max-width: 68px;
859
- width: 100%;
860
- padding: 12px 0;
861
- position: relative;
862
- cursor: pointer;
863
- white-space: nowrap;
864
- }
865
- /* remove php and c on mobile */
866
- @media screen and (max-width: 450px) {
867
- .code-languages[data-v-474a477f]:nth-of-type(4),
868
- .code-languages[data-v-474a477f]:nth-of-type(6) {
869
- display: none;
870
- }
871
- }
872
- .code-languages-icon[data-v-474a477f] {
873
- max-width: 48px;
874
- width: 100%;
875
- max-height: 48px;
876
- aspect-ratio: 1;
877
- padding: 7px;
878
- display: flex;
879
- align-items: center;
880
- justify-content: center;
881
- position: relative;
882
- color: var(--theme-code-language-color-supersede, #fff);
883
- }
884
- .code-languages-background[data-v-474a477f] {
885
- border-radius: 12px;
886
- position: relative;
887
- overflow: hidden;
888
- box-shadow: 0 0 0 1px var(--theme-code-languages-border-color);
889
- }
890
- .code-languages-background[data-v-474a477f]:before {
891
- content: '';
892
- width: 100%;
893
- height: 100%;
894
- position: absolute;
895
- top: 0;
896
- left: 0;
897
- pointer-events: none;
898
- background: var(--theme-code-languages-background-supersede);
899
- }
900
- .code-languages-icon__shell[data-v-474a477f] {
901
- background: #000;
902
- }
903
- .code-languages-icon__ruby[data-v-474a477f] {
904
- background: #d91404;
905
- }
906
- .code-languages-icon__php[data-v-474a477f] {
907
- background: #6181b6;
908
- }
909
- .code-languages-icon__python[data-v-474a477f] {
910
- background: #306998;
911
- }
912
- .code-languages-icon__more[data-v-474a477f] {
913
- background: var(--theme-background-3);
914
- }
915
- .code-languages-icon__node[data-v-474a477f] {
916
- background: #83cd29;
917
- }
918
- .code-languages-icon__c[data-v-474a477f] {
919
- background: #03599c;
920
- }
921
- .code-languages-icon__csharp[data-v-474a477f] {
922
- background: #68217a;
923
- }
924
- .code-languages-icon__cplusplus[data-v-474a477f] {
925
- background: #9c033a;
926
- }
927
- .code-languages-icon__clojure[data-v-474a477f] {
928
- background: #5881d8;
929
- }
930
- .code-languages-icon__go[data-v-474a477f] {
931
- background: #00acd7;
932
- }
933
- .code-languages-icon__http[data-v-474a477f] {
934
- background: #005b9b;
935
- }
936
- .code-languages-icon__java[data-v-474a477f] {
937
- background: #ea2d2e;
938
- }
939
- .code-languages-icon__javascript[data-v-474a477f] {
940
- background: #f0db4f;
941
- }
942
- .code-languages-icon__kotlin[data-v-474a477f] {
943
- background: #7f6cb1;
944
- }
945
- .code-languages-icon__objc[data-v-474a477f] {
946
- background: #0b5a9d;
947
- }
948
- .code-languages-icon__ocaml[data-v-474a477f] {
949
- background: #f29100;
950
- }
951
- .code-languages-icon__powershell[data-v-474a477f] {
952
- background: #2671be;
953
- }
954
- .code-languages-icon__r[data-v-474a477f] {
955
- background: #cbced0;
956
- }
957
- .code-languages-icon__swift[data-v-474a477f] {
958
- background: #f05138;
959
- }
960
- .code-languages__loading .code-languages-icon[data-v-474a477f]:before {
961
- border: 1px solid rgba(255, 255, 255, 0.44);
962
- border-top: 1px solid white;
963
- animation: codeloader-474a477f 0.45s linear infinite;
964
- background: transparent;
965
- width: 18px;
966
- height: 18px;
967
- content: '';
968
- border-radius: 50%;
969
- }
970
- .code-languages__loading .code-languages-icon svg[data-v-474a477f] {
971
- display: none;
972
- }
973
- .code-languages__active[data-v-474a477f]:after {
974
- content: '';
975
- position: absolute;
976
- bottom: 0;
977
- height: 2px;
978
- width: 100%;
979
- background: var(--theme-color-1);
980
- }
981
- @keyframes codeloader-474a477f {
982
- 0% {
983
- transform: rotate(0deg);
984
- }
985
- to {
986
- transform: rotate(1turn);
987
- }
988
- }
989
- .code-languages span[data-v-474a477f] {
990
- margin-top: 3px;
991
- color: var(--theme-color-2);
992
- font-size: var(--theme-micro);
993
- }
994
- .code-languages__active span[data-v-474a477f] {
995
- color: var(--theme-color-1);
996
- }
997
- .code-languages__select select[data-v-474a477f] {
998
- opacity: 0;
999
- width: 100%;
1000
- height: 100%;
1001
- position: absolute;
1002
- top: 0;
1003
- left: 0;
1004
- cursor: pointer;
1005
- z-index: 1;
1006
- }
1007
- .code-languages__select span[data-v-474a477f] {
1008
- position: relative;
1009
- display: flex;
1010
- align-items: center;
1011
- }
1012
- .code-languages__select span[data-v-474a477f]:after {
1013
- content: '';
1014
- width: 8px;
1015
- height: 8px;
1016
- background: var(--theme-background-1);
1017
- box-shadow: 1px 1px 0 currentColor;
1018
- display: block;
1019
- transform: rotate(45deg);
1020
- margin-left: 5px;
1021
- margin-top: -7px;
1022
- }
1023
-
1024
- .heading[data-v-5de9da25] {
1025
- margin-top: 0px !important;
1026
- }
1027
- .loading[data-v-5de9da25] {
1028
- background: var(--theme-background-2);
1029
- animation: loading-skeleton-5de9da25 2s infinite alternate;
1030
- border-radius: var(--theme-radius-lg);
1031
- }
1032
- .heading.loading[data-v-5de9da25] {
1033
- width: 80%;
1034
- }
1035
- .tag-description .loading[data-v-5de9da25] {
1036
- height: 20px;
1037
- margin-bottom: 4px;
1038
- width: 100%;
1039
- display: inline-block;
1040
- }
1041
- .tag-description .loading[data-v-5de9da25]:first-of-type {
1042
- margin-top: 12px;
1043
- }
1044
- .tag-description .loading[data-v-5de9da25]:last-of-type {
1045
- width: 40%;
1046
- }
1047
- @keyframes loading-skeleton-5de9da25 {
1048
- from {
1049
- background: var(--theme-background-2);
1050
- }
1051
- to {
1052
- background: var(--theme-background-3);
1053
- }
1054
- }
1055
-
1056
- .parameter p {
1057
- margin-top: 6px;
1058
- }
1059
- .parameter .parameter-child {
1060
- border: 1px solid var(--theme-border-color);
1061
- border-radius: 20px;
1062
- margin-top: 12px;
1063
- width: fit-content;
1064
- }
1065
- .parameter .parameter {
1066
- border: none !important;
1067
- }
1068
- .parameter-child-trigger {
1069
- padding: 6px 12px;
1070
- cursor: pointer;
1071
- font-weight: 500;
1072
- color: var(--theme-color-3);
1073
- font-size: var(--theme-micro);
1074
- display: flex;
1075
- align-items: center;
1076
- user-select: none;
1077
- }
1078
- .parameter-child-trigger:has(+ .parameter li:first-of-type:last-of-type) {
1079
- display: none;
1080
- }
1081
- .parameter-child-trigger:hover {
1082
- color: var(--theme-color-1);
1083
- }
1084
- .parameter-child-trigger > span:before {
1085
- content: 'Show ';
1086
- }
1087
- .parameter-child__open > .parameter-child-trigger span:before {
1088
- content: 'Hide ';
1089
- }
1090
- .parameter-child-trigger svg {
1091
- height: 10px;
1092
- width: 10px;
1093
- margin-right: 6px;
1094
- }
1095
- .parameter-child__open .parameter-child-trigger svg {
1096
- transform: rotate(45deg);
1097
- }
1098
- .parameter .parameter li:first-of-type {
1099
- border-top: none;
1100
- }
1101
- .parameter .parameter li {
1102
- padding: 12px;
1103
- }
1104
- .parameter-child__open > .parameter {
1105
- display: block;
1106
- }
1107
- .parameter .parameter-child__open {
1108
- width: 100%;
1109
- border-radius: 6px;
1110
- }
1111
- .parameter .parameter-child__open > svg {
1112
- transform: rotate(45deg);
1113
- }
1114
- .parameter-child__open > .parameter-child-trigger {
1115
- border-bottom: 1px solid var(--theme-border-color);
1116
- }
1117
- .parameter {
1118
- list-style: none;
1119
- font-size: var(--theme-small);
1120
- }
1121
- .parameter li {
1122
- border-top: 1px solid var(--theme-border-color);
1123
- padding: 12px 0;
1124
- }
1125
- .parameter-name {
1126
- font-weight: 500;
1127
- margin-right: 6px;
1128
- font-family: var(--theme-font-code);
1129
- font-size: 13px;
1130
- color: var(--theme-color-1);
1131
- }
1132
- .parameter-type,
1133
- .parameter-required {
1134
- color: var(--theme-color-3);
1135
- font-weight: var(--theme-semibold);
1136
- margin-right: 6px;
1137
- position: relative;
1138
- }
1139
- .marc_required {
1140
- text-transform: uppercase;
1141
- font-size: 11px;
1142
- font-weight: var(--theme-bold);
1143
- color: #ffb040;
1144
- }
1145
- .parameter-options {
1146
- position: relative;
1147
- }
1148
- .copy .parameter-description:empty {
1149
- display: none;
1150
- }
1151
-
1152
- .heading[data-v-4870ef25] {
1153
- margin-top: 0px !important;
1154
- }
1155
- .tag-description[data-v-4870ef25] {
1156
- margin-top: 12px;
1157
- }
1158
-
1159
- .request-method--post[data-v-9951d57c] {
1160
- color: var(--theme-post-color);
1161
- }
1162
- .request-method--patch[data-v-9951d57c] {
1163
- color: var(--theme-patch-color);
1164
- }
1165
- .request-method--get[data-v-9951d57c] {
1166
- color: var(--theme-get-color);
1167
- }
1168
- .request-method--delete[data-v-9951d57c] {
1169
- color: var(--theme-delete-color);
1170
- }
1171
- .request-method--put[data-v-9951d57c] {
1172
- color: var(--theme-put-color);
1173
- }
1174
- .request-path[data-v-9951d57c] {
1175
- margin-left: 6px;
1176
- color: var(--theme-color-2);
1177
- white-space: nowrap;
1178
- overflow: hidden;
1179
- cursor: default;
1180
- text-overflow: ellipsis;
1181
- text-transform: none !important;
1182
- }
1183
- .language-select[data-v-9951d57c] {
1184
- position: relative;
1185
- padding-right: 9px;
1186
- border-right: 1px solid var(--theme-border-color);
1187
- }
1188
- .language-select select[data-v-9951d57c] {
1189
- border: none;
1190
- outline: none;
1191
- cursor: pointer;
1192
- background: var(--theme-background-3);
1193
- box-shadow: -2px 0 0 0 var(--theme-background-3);
1194
- z-index: 2;
1195
- position: absolute;
1196
- top: 0;
1197
- left: 0;
1198
- width: 100%;
1199
- height: 100%;
1200
- opacity: 0;
1201
- appearance: none;
1202
- }
1203
- .language-select span[data-v-9951d57c] {
1204
- font-size: 12px;
1205
- color: var(--theme-color-3);
1206
- font-weight: var(--theme-semibold);
1207
- display: flex;
1208
- align-items: center;
1209
- justify-content: center;
1210
- }
1211
- .language-select span[data-v-9951d57c]:after {
1212
- content: '';
1213
- width: 7px;
1214
- height: 7px;
1215
- transform: rotate(45deg) translate3d(-2px, -2px, 0);
1216
- display: block;
1217
- margin-left: 6px;
1218
- box-shadow: 1px 1px 0 currentColor;
1219
- }
1220
- .language-select span[data-v-9951d57c]:hover {
1221
- background: var(--theme-background-2);
1222
- }
1223
- .copy-button[data-v-9951d57c] {
1224
- appearance: none;
1225
- -webkit-appearance: none;
1226
- outline: none;
1227
- background: transparent;
1228
- display: flex;
1229
- cursor: pointer;
1230
- color: var(--theme-color-3);
1231
- margin-left: 6px;
1232
- border: none;
1233
- border-radius: 3px;
1234
- }
1235
- .copy-button[data-v-9951d57c]:hover {
1236
- color: var(--theme-color-1);
1237
- }
1238
- .copy-button svg[data-v-9951d57c] {
1239
- width: 13px;
1240
- height: 13px;
1241
- }
1242
- .show-api-client-button[data-v-9951d57c] {
1243
- width: 100%;
1244
- display: block;
1245
- appearance: none;
1246
- outline: none;
1247
- border: none;
1248
- border-radius: var(--theme-radius-lg);
1249
- height: 35px;
1250
- display: flex;
1251
- justify-content: center;
1252
- cursor: pointer;
1253
- align-items: center;
1254
- font-weight: var(--theme-bold);
1255
- font-size: var(--theme-micro);
1256
- text-transform: uppercase;
1257
- border: 1px solid currentColor;
1258
- background: var(--theme-button-1);
1259
- color: var(--theme-button-1-color);
1260
- }
1261
- .show-api-client-button[data-v-9951d57c]:hover {
1262
- background: var(--theme-button-1-hover);
1263
- }
1264
- .show-api-client-button svg[data-v-9951d57c] {
1265
- height: 12px;
1266
- width: auto;
1267
- margin-right: 6px;
1268
- }
1269
- .request-method[data-v-9951d57c] {
1270
- font-family: var(--theme-font-code);
1271
- }
1272
- .request-path[data-v-9951d57c] {
1273
- font-family: var(--theme-font-code);
1274
- }
1275
-
1276
- .code-copy[data-v-c9b38270] {
1277
- display: flex;
1278
- appearance: none;
1279
- -webkit-appearance: none;
1280
- outline: none;
1281
- background: transparent;
1282
- cursor: pointer;
1283
- color: var(--theme-color-3);
1284
- border: none;
1285
- }
1286
- .code-copy[data-v-c9b38270]:hover {
1287
- color: var(--theme-color-1);
1288
- }
1289
- .code-copy svg[data-v-c9b38270] {
1290
- width: 13px;
1291
- height: 13px;
1292
- }
1293
- .description[data-v-c9b38270] {
1294
- font-weight: var(--theme-semibold);
1295
- font-size: var(--theme-micro);
1296
- }
1297
- .scalar-api-reference__empty-state[data-v-c9b38270] {
1298
- border: 1px dashed var(--theme-border-color);
1299
- width: 100%;
1300
- text-align: center;
1301
- font-size: var(--theme-micro);
1302
- padding: 20px;
1303
- color: var(--theme-color-2);
1304
- }
1305
-
1306
- .endpoints[data-v-18af7819] {
1307
- overflow: auto;
1308
- background: var(--theme-background-2);
1309
- }
1310
- .endpoints span + span[data-v-18af7819] {
1311
- text-align: left;
1312
- margin-left: 12px;
1313
- text-transform: initial;
1314
- }
1315
-
1316
- .scalar-logo-animation[data-v-16147dd7] {
1317
- width: 38px;
1318
- height: 38px;
1319
- position: relative;
1320
- display: flex;
1321
- align-items: center;
1322
- }
1323
- .scalar-logo-animation .line[data-v-16147dd7]:before {
1324
- content: '';
1325
- width: 100%;
1326
- height: 100%;
1327
- background: #4c4316;
1328
- display: block;
1329
- position: absolute;
1330
- }
1331
- .scalar-logo-animation .line[data-v-16147dd7] {
1332
- position: absolute;
1333
- width: 100%;
1334
- height: 1px;
1335
- overflow: hidden;
1336
- }
1337
- .scalar-logo-animation .line-2[data-v-16147dd7] {
1338
- transform: rotate(90deg);
1339
- }
1340
- .scalar-logo-animation .line-3[data-v-16147dd7] {
1341
- transform: rotate(45deg);
1342
- }
1343
- .scalar-logo-animation .line-4[data-v-16147dd7] {
1344
- transform: rotate(-45deg);
1345
- }
1346
- .scalar-logo-animation-load[data-v-16147dd7] {
1347
- animation: rotate-16147dd7 2s linear infinite;
1348
- }
1349
- @keyframes rotate-16147dd7 {
1350
- from {
1351
- transform: rotate(0deg);
1352
- }
1353
- to {
1354
- transform: rotate(360deg);
1355
- }
1356
- }
1357
-
1358
- .render-loading[data-v-914a90eb] {
1359
- height: calc(
1360
- var(--scalar-api-reference-full-height) -
1361
- var(--scalar-api-reference-theme-header-height)
1362
- );
1363
- display: flex;
1364
- align-items: center;
1365
- justify-content: center;
1366
- }
1367
- .show-more[data-v-914a90eb] {
1368
- background: var(--theme-background-1);
1369
- appearance: none;
1370
- border: none;
1371
- border: 1px solid var(--theme-border-color);
1372
- margin: auto;
1373
- padding: 8px 12px;
1374
- border-radius: 30px;
1375
- color: var(--theme-color-1);
1376
- font-weight: var(--theme-semibold);
1377
- font-size: var(--theme-small);
1378
- display: flex;
1379
- align-items: center;
1380
- justify-content: center;
1381
- margin-top: -48px;
1382
- margin-bottom: 48px;
1383
- position: relative;
1384
- }
1385
- .show-more[data-v-914a90eb]:hover {
1386
- color: var(--theme-color-2);
1387
- cursor: pointer;
1388
- }
1389
- .show-more-icon[data-v-914a90eb] {
1390
- width: 14px;
1391
- height: 14px;
1392
- margin-left: 3px;
1393
- }
1394
- .show-more[data-v-914a90eb]:active {
1395
- box-shadow: 0 0 0 1px var(--theme-border-color);
1396
- }
1397
- @media (max-width: 1165px) {
1398
- .show-more[data-v-914a90eb] {
1399
- margin-top: -24px;
1400
- margin-bottom: 24px;
1401
- }
1402
- }
1403
-
1404
- .modal-layout[data-v-3f4ab567] {
1405
- position: fixed;
1406
- width: 100vw;
1407
- height: 100vh;
1408
- top: 0;
1409
- left: 0;
1410
- z-index: 1001;
1411
- background: rgba(0, 0, 0, 0.44);
1412
- padding: 20px;
1413
- opacity: 0;
1414
- animation: modal-fade-3f4ab567 0.2s forwards;
1415
- }
1416
- .modal-body[data-v-3f4ab567] {
1417
- padding: 24px 12px 18px 24px;
1418
- max-height: calc(100vh - 240px);
1419
- background: var(--theme-background-1);
1420
- border-radius: var(--theme-radius-lg);
1421
- font-family: var(--theme-font);
1422
- }
1423
- .modal[data-v-3f4ab567] {
1424
- margin: 80px auto 0;
1425
- position: relative;
1426
- background: var(--theme-background-2);
1427
- border-radius: var(--theme-radius-lg);
1428
- color: var(--theme-color-1);
1429
- width: 100%;
1430
- text-align: left;
1431
- line-height: 1.4;
1432
- opacity: 0;
1433
- transform: scale(0.98);
1434
- animation: modal-pop-3f4ab567 0.15s 0.15s forwards;
1435
- display: flex;
1436
- flex-direction: column;
1437
- }
1438
- .modal-content-large[data-v-3f4ab567] {
1439
- max-width: 800px;
1440
- }
1441
- .modal-content-normal[data-v-3f4ab567] {
1442
- max-width: 640px;
1443
- }
1444
- .modal-content-small[data-v-3f4ab567] {
1445
- max-width: 480px;
1446
- }
1447
- @keyframes modal-fade-3f4ab567 {
1448
- from {
1449
- opacity: 0;
1450
- }
1451
- to {
1452
- opacity: 1;
1453
- }
1454
- }
1455
- @keyframes modal-pop-3f4ab567 {
1456
- 0% {
1457
- opacity: 0;
1458
- }
1459
- 100% {
1460
- opacity: 1;
1461
- transform: scale(1);
1462
- }
1463
- }
1464
- .modal-header[data-v-3f4ab567] {
1465
- padding: 12px 24px;
1466
- color: var(--theme-color-1);
1467
- font-size: var(--theme-font-size-4);
1468
- text-align: left;
1469
- font-weight: 600;
1470
- border-radius: var(--theme-radius-lg) var(--theme-radius-lg) 0 0;
1471
- }
1472
-
1473
- .post[data-v-6fd55f49] {
1474
- color: var(--theme-post-color);
1475
- }
1476
- .patch[data-v-6fd55f49] {
1477
- color: var(--theme-patch-color);
1478
- }
1479
- .get[data-v-6fd55f49] {
1480
- color: var(--theme-get-color);
1481
- }
1482
- .delete[data-v-6fd55f49] {
1483
- color: var(--theme-delete-color);
1484
- }
1485
- .put[data-v-6fd55f49] {
1486
- color: var(--theme-put-color);
1487
- }
1488
- .ref-search-input[data-v-6fd55f49] {
1489
- width: 100%;
1490
- background: transparent;
1491
- padding: 12px;
1492
- font-size: 13px;
1493
- outline: none;
1494
- border: 1px solid var(--theme-border-color);
1495
- border-radius: var(--theme-radius);
1496
- color: var(--theme-color-1);
1497
- font-weight: var(--theme-semibold);
1498
- font-size: var(--theme-font-size-3);
1499
- appearance: none;
1500
- margin-bottom: 12px;
1501
- }
1502
- .ref-search-input[data-v-6fd55f49]::-webkit-input-placeholder,
1503
- .ref-search-input[data-v-6fd55f49]::placeholder {
1504
- color: var(--theme-color-3);
1505
- font-family: var(--theme-font);
1506
- font-weight: var(--theme-regular);
1507
- }
1508
- .item-entry[data-v-6fd55f49] {
1509
- appearance: none;
1510
- background: transparent;
1511
- border: none;
1512
- outline: none;
1513
- padding: 6px 0;
1514
- width: 100%;
1515
- font-size: var(--theme-font-size-3);
1516
- text-align: left;
1517
- border-bottom: 1px solid var(--theme-border-color);
1518
- }
1519
- .item-entry[data-v-6fd55f49]:hover {
1520
- background: var(--theme-background-2);
1521
- border-radius: var(--theme-radius);
1522
- border-bottom-color: transparent;
1523
- box-shadow: 0 0 0 1px var(--theme-background-2);
1524
- width: calc(100% + 12px);
1525
- padding: 6px;
1526
- position: relative;
1527
- left: -6px;
1528
- z-index: 10;
1529
- }
1530
- .item-entry[data-v-6fd55f49]:has(+ .item-entry:hover) {
1531
- border-bottom-color: transparent;
1532
- }
1533
- .item-entry em[data-v-6fd55f49] {
1534
- display: none;
1535
- font-size: var(--theme-font-size-4);
1536
- color: var(--theme-color-3);
1537
- }
1538
- .item-entry:hover em[data-v-6fd55f49] {
1539
- display: block;
1540
- }
1541
- .item-entry-verb[data-v-6fd55f49] {
1542
- font-family: var(--theme-font-code);
1543
- min-width: 100px;
1544
- display: inline-block;
1545
- text-align: right;
1546
- }
1547
- .item-entry-heading[data-v-6fd55f49] {
1548
- display: flex;
1549
- justify-content: space-between;
1550
- }
1551
-
1552
-
1553
- * {
1554
- text-rendering: optimizeLegibility;
1555
- -webkit-font-smoothing: antialiased;
1556
- -moz-osx-font-smoothing: grayscale;
1557
- }
1558
- /* fonts */
1559
- :root {
1560
- --app-header-height: 50px;
1561
- --theme-border-width: 1px;
1562
- --theme-radius: 3px;
1563
- --theme-radius-lg: 6px;
1564
- --theme-radius-xl: 8px;
1565
-
1566
- --theme-header-height: 50px;
1567
- --theme-sidebar-width: 250px;
1568
- --theme-toc-width: 250px;
1569
-
1570
- /* TYPOGRAPHY ------------------------------------ */
1571
- --theme-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
1572
- Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
1573
- --theme-font-code: 'JetBrains Mono';
1574
-
1575
- /** Font sizes for rendered text content (editor styles or static content) */
1576
- --theme-heading-1: 40px; /* Editor Page heading */
1577
- --theme-page-description: 24px;
1578
- --theme-heading-2: 24px; /* Editor section headings */
1579
- --theme-heading-3: 20px;
1580
- --theme-heading-4: 16px;
1581
- --theme-heading-5: 16px;
1582
- --theme-heading-6: 16px;
1583
-
1584
- --theme-paragraph: 16px;
1585
- --theme-small: 14px;
1586
- --theme-mini: 13px;
1587
- --theme-micro: 12px;
1588
- --theme-bold: 600;
1589
- --theme-semibold: 500;
1590
- --theme-regular: 400;
1591
-
1592
- /* Font sizes for interactive applications (not rendered text content) */
1593
- --theme-font-size-1: 24px;
1594
- --theme-font-size-2: 16px;
1595
- --theme-font-size-3: 14px;
1596
- --theme-font-size-4: 13px;
1597
- --theme-font-size-5: 12px;
1598
-
1599
- --theme-line-height-1: 32px;
1600
- --theme-line-height-2: 24px;
1601
- --theme-line-height-3: 20px;
1602
- --theme-line-height-4: 18px;
1603
- --theme-line-height-5: 16px;
1604
-
1605
- --theme-font-medium: 500;
1606
- --theme-font-bold: 700;
1607
-
1608
- /* let's clean these up please :) */
1609
- --scalar-api-reference-theme-header-height: 0;
1610
- --scalar-api-reference-theme-sidebar-width: 250px;
1611
- --scalar-api-reference-theme-toc-width: 250px;
1612
- --scalar-api-reference-app-header-height: 100px;
1613
- --scalar-api-reference-col-width-1: 250px;
1614
- --scalar-api-reference-col-width-2: calc(50% - 150px);
1615
- --scalar-api-reference-col-width-3: calc(50% - 150px);
1616
- --scalar-api-reference-document-height: 100vh;
1617
- --scalar-api-reference-full-height: 100%;
1618
- }
1619
- @media (max-width: 460px) {
1620
- :root {
1621
- --theme-font-size-1: 22px;
1622
- --theme-font-size-2: 14px;
1623
- --theme-font-size-3: 12px;
1624
- }
1625
- }
1626
- @media (max-width: 720px) {
1627
- :root {
1628
- --theme-heading-1: 24px;
1629
- --theme-page-description: 20px;
1630
- }
1631
- }
1632
- .light-mode {
1633
- color-scheme: light;
1634
- --theme-color-1: #2a2f45;
1635
- --theme-color-2: #757575;
1636
- --theme-color-3: #8e8e8e;
1637
- --theme-color-disabled: #b4b1b1;
1638
- --theme-color-ghost: #a7a7a7;
1639
- --theme-color-accent: #0099ff;
1640
- --theme-background-1: #fff;
1641
- --theme-background-2: #f6f6f6;
1642
- --theme-background-3: #e7e7e7;
1643
- --theme-background-4: rgba(0, 0, 0, 0.06);
1644
- --theme-background-accent: #8ab4f81f;
1645
-
1646
- --theme-border-color: rgba(0, 0, 0, 0.1);
1647
- --theme-scrollbar-color: rgba(0, 0, 0, 0.18);
1648
- --theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);
1649
- --theme-lifted-brightness: 1;
1650
- --theme-backdrop-brightness: 1;
1651
-
1652
- --theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);
1653
- --theme-shadow-2: rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,
1654
- rgba(0, 0, 0, 0.08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;
1655
-
1656
- --theme-button-1: rgb(49 53 56);
1657
- --theme-button-1-color: #fff;
1658
- --theme-button-1-hover: rgb(28 31 33);
1659
-
1660
- --theme-error-color: #ae262f;
1661
- --theme-warning-color: #d89c6a;
1662
- --theme-success-color: #26ae42;
1663
-
1664
- /* REST API Client Colors */
1665
- --theme-post-color: #00a67d;
1666
- --theme-post-background: #00a67d1a;
1667
- --theme-delete-color: #ef0006;
1668
- --theme-delete-background: #ef00061a;
1669
- --theme-patch-color: #b2b062;
1670
- --theme-patch-background: #ffe6001a;
1671
- --theme-get-color: #0082d0;
1672
- --theme-get-background: #0082d01a;
1673
- --theme-put-color: #f3830e;
1674
- --theme-put-background: #f3830e1a;
1675
-
1676
- /* Misc Scalar Branding */
1677
- --scalar-brand: #faf6e9;
1678
- }
1679
- .dark-mode {
1680
- color-scheme: dark;
1681
- --theme-color-1: rgba(255, 255, 255, 0.9);
1682
- --theme-color-2: rgba(255, 255, 255, 0.62);
1683
- --theme-color-3: rgba(255, 255, 255, 0.44);
1684
- --theme-color-disabled: rgba(255, 255, 255, 0.34);
1685
- --theme-color-ghost: rgba(255, 255, 255, 0.26);
1686
- --theme-color-accent: #8ab4f8;
1687
- --theme-background-1: #1a1a1a;
1688
- --theme-background-2: #252525;
1689
- --theme-background-3: #323232;
1690
- --theme-background-4: rgba(255, 255, 255, 0.06);
1691
- --theme-background-accent: #8ab4f81f;
1692
-
1693
- --theme-border-color: rgba(255, 255, 255, 0.1);
1694
- --theme-scrollbar-color: rgba(255, 255, 255, 0.24);
1695
- --theme-scrollbar-color-active: rgba(255, 255, 255, 0.48);
1696
- --theme-lifted-brightness: 1.45;
1697
- --theme-backdrop-brightness: 0.5;
1698
-
1699
- --theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, 0.1);
1700
- --theme-shadow-2: rgba(15, 15, 15, 0.2) 0px 3px 6px,
1701
- rgba(15, 15, 15, 0.4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, 0.1);
1702
-
1703
- --theme-button-1: #f6f6f6;
1704
- --theme-button-1-color: #000;
1705
- --theme-button-1-hover: #e7e7e7;
1706
-
1707
- --theme-error-color: #ff0011;
1708
- --theme-success-color: #26ae42;
1709
-
1710
- /* REST API Client Colors */
1711
- --theme-post-color: #7ee787;
1712
- --theme-post-background: #7ee78714;
1713
- --theme-delete-color: #e77e7e;
1714
- --theme-delete-background: #e77e7e24;
1715
- --theme-patch-color: #b2b062;
1716
- --theme-patch-background: #b2b06229;
1717
- --theme-get-color: #79c0ff;
1718
- --theme-get-background: #79c0ff21;
1719
- --theme-put-color: #e9950c;
1720
- --theme-put-background: #e9950c21;
1721
-
1722
- /* Misc Scalar Branding */
1723
- --scalar-brand: #8b7256;
1724
- }
1725
-
1726
- /** CSS Normalize */
1727
- .scalar-api-reference {
1728
-
1729
- }
1730
- .scalar-api-reference ul,
1731
- .scalar-api-reference ol {
1732
- padding: 0;
1733
- }
1734
- .scalar-api-reference p {
1735
- margin: 0;
1736
- }
1737
- /** Utilities, how do we deal with them? */
1738
- .flex {
1739
- display: flex;
1740
- }
1741
- .flex-col {
1742
- display: flex;
1743
- min-height: 0;
1744
- flex-direction: column;
1745
- }
1746
- .gap-1 {
1747
- gap: 12px;
1748
- }
1749
- .sr-only {
1750
- position: absolute;
1751
- width: 1px;
1752
- height: 1px;
1753
- padding: 0;
1754
- margin: -1px;
1755
- overflow: hidden;
1756
- clip: rect(0, 0, 0, 0);
1757
- border: 0;
1758
- }
1759
- /** TODO: Move to components */
1760
- .codemenu-topbar {
1761
- background: var(--theme-background-2);
1762
- border-bottom: 1px solid var(--theme-border-color);
1763
- padding: 0 7px 0 12px;
1764
- border-radius: var(--theme-radius) var(--theme-radius) 0 0;
1765
- }
1766
- .codemenu {
1767
- display: flex;
1768
- position: relative;
1769
- justify-content: space-between;
1770
- align-items: center;
1771
- min-height: 35px;
1772
- }
1773
- .codemenu-tabs {
1774
- display: flex;
1775
- position: relative;
1776
- column-gap: 6px;
1777
- }
1778
- .codemenu-item {
1779
- position: relative;
1780
- display: flex;
1781
- align-items: center;
1782
- }
1783
- .codemenu-item-key {
1784
- font-size: var(--theme-micro);
1785
- color: var(--theme-color-3);
1786
- padding: 6px 4px;
1787
- cursor: pointer;
1788
- user-select: none;
1789
- display: flex;
1790
- align-items: center;
1791
- justify-content: center;
1792
- font-weight: var(--theme-semibold);
1793
- position: relative;
1794
- margin-left: -4px;
1795
- margin-right: -4px;
1796
- border-radius: var(--theme-radius-lg);
1797
- text-transform: uppercase;
1798
- }
1799
- .codemenu-item-key:hover {
1800
- background: var(--scalar-api-reference-theme-background-3);
1801
- }
1802
- .codemenu-item:first-of-type:last-of-type .codemenu-item-key,
1803
- .codemenu-item__active .codemenu-item-key {
1804
- color: var(--theme-color-1);
1805
- }
1806
- .codemenu-item:first-of-type:last-of-type:after,
1807
- .codemenu-item__active:after {
1808
- content: '';
1809
- width: 100%;
1810
- height: 1px;
1811
- position: absolute;
1812
- bottom: -4px;
1813
- background: var(--theme-color-1);
1814
- }
1815
- .codemenu-item__disabled {
1816
- pointer-events: none;
1817
- }
1818
- .endpoint {
1819
- display: flex;
1820
- white-space: nowrap;
1821
- cursor: pointer;
1822
- }
1823
- .endpoint span:first-of-type {
1824
- text-transform: uppercase;
1825
- }
1826
- .codemenu .endpoint {
1827
- overflow: hidden;
1828
- }
1829
- .endpoint .post {
1830
- color: var(--theme-post-color);
1831
- }
1832
- .endpoint .patch {
1833
- color: var(--theme-patch-color);
1834
- }
1835
- .endpoint .get {
1836
- color: var(--theme-get-color);
1837
- }
1838
- .endpoint .delete {
1839
- color: var(--theme-delete-color);
1840
- }
1841
- .endpoint .put {
1842
- color: var(--theme-put-color);
1843
- }
1844
- .endpoint .post,
1845
- .endpoint .get,
1846
- .endpoint .delete,
1847
- .endpoint .put {
1848
- white-space: nowrap;
1849
- }
1850
- .endpoint span {
1851
- color: var(--theme-color-2);
1852
- min-width: 62px;
1853
- display: inline-block;
1854
- text-align: right;
1855
- line-height: 1.55;
1856
- font-family: var(--theme-font-code);
1857
- font-size: var(--theme-mini);
1858
- cursor: pointer;
1859
- }
1860
- .languages .example-item-endpoints {
1861
- background: var(--theme-background-2);
1862
- width: 100%;
1863
- border-top: 1px solid var(--theme-border-color);
1864
- }
1865
- .endpoint-response p {
1866
- margin-top: 6px;
1867
- font-size: var(--theme-small);
1868
- min-height: auto;
1869
- line-height: 17px;
1870
- }
1871
- .codemenu .endpoint span {
1872
- text-align: left;
1873
- min-width: auto;
1874
- }
1875
- .endpoint-response {
1876
- border-top: 1px solid var(--theme-border-color);
1877
- padding: 12px 0;
1878
- font-size: var(--theme-small);
1879
- }
1880
- .tag-description {
1881
- margin-top: 12px;
1882
- }
1883
- .reference .endpoint-title {
1884
- display: flex;
1885
- margin-bottom: 12px;
1886
- margin-top: 24px;
1887
- }
1888
- .copy .title {
1889
- font-size: var(--theme-heading-4);
1890
- font-weight: var(--theme-semibold);
1891
- color: var(--theme-color-1);
1892
- line-height: 1.45;
1893
- }
1894
- .endpoint-response__headers {
1895
- padding-bottom: 0;
1896
- }
1897
- .endpoint-response__headers + .endpoint-response {
1898
- border-top: none;
1899
- }
1900
- /* ----------------------------------------------------- */
1901
- .reference {
1902
- position: relative;
1903
- padding: 0 60px;
1904
- width: 100%;
1905
- }
1906
- .reference:not(:last-of-type) {
1907
- border-bottom: 1px solid var(--theme-border-color);
1908
- }
1909
- .reference .reference-container {
1910
- position: relative;
1911
- display: flex;
1912
- gap: 48px;
1913
-
1914
- max-width: 1120px;
1915
- margin: auto;
1916
- padding: 90px 0;
1917
- }
1918
- .reference-container + .reference-container {
1919
- border-top: 1px solid var(--theme-border-color);
1920
- }
1921
- .reference-container .copy,
1922
- .reference-container .example {
1923
- flex: 1;
1924
- min-width: 0;
1925
- }
1926
- .response .cm-editor {
1927
- max-height: calc(50vh - 90px);
1928
- }
1929
- .example {
1930
- padding-top: 48px;
1931
- top: 12px;
1932
- height: fit-content;
1933
- position: sticky;
1934
- }
1935
- .copy .tag-description a {
1936
- color: var(--theme-color-1);
1937
- text-decoration: underline;
1938
- }
1939
- /* ----------------------------------------------------- */
1940
- /* Responsive styles for narrow reference container (900px) */
1941
- .references-narrow .reference {
1942
- padding: 0 30px;
1943
- }
1944
- @media screen and (max-width: 1000px) {
1945
- .references-narrow .reference {
1946
- padding: 0 24px;
1947
- }
1948
- }
1949
- .references-narrow .reference-container {
1950
- flex-direction: column;
1951
- gap: 24px;
1952
- padding: 48px 0;
1953
- }
1954
- .references-narrow .example {
1955
- padding-top: 0;
1956
- }
1957
- .editor-heading h1 {
1958
- font-size: var(--font-size, var(--theme-heading-2));
1959
- font-weight: var(--font-weight, var(--theme-bold));
1960
- /* prettier-ignore */
1961
- color: var(--theme-color-1);
1962
- line-height: 1.45;
1963
- }
1964
- /** Layout */
1965
- /* ----------------------------------------------------- */
1966
- /* Document Layouts */
1967
- .document {
1968
- flex: 1;
1969
- overflow-y: auto;
1970
- overflow-x: hidden;
1971
-
1972
- /* Fallback to 100vh if the element height is not specified */
1973
- --full-height: var(--scalar-api-reference-full-height, 100vh);
1974
- /* --theme-header-height: 50px; */
1975
- /* --scalar-api-reference-theme-sidebar-width: 200px; */
1976
- /* --theme-toc-width: 200px; */
1977
-
1978
- --document-height: calc(
1979
- var(--scalar-api-reference-full-height) -
1980
- var(--scalar-api-reference-theme-header-height)
1981
- );
1982
-
1983
- --col-width-1: var(--scalar-api-reference-theme-sidebar-width);
1984
- --col-width-2: auto;
1985
- --col-width-3: var(--scalar-api-reference-theme-toc-width);
1986
-
1987
- display: grid;
1988
-
1989
- grid-template-rows:
1990
- var(--scalar-api-reference-theme-header-height)
1991
- auto
1992
- auto;
1993
-
1994
- grid-template-columns:
1995
- var(--scalar-api-reference-col-width-1)
1996
- var(--scalar-api-reference-col-width-2)
1997
- var(--scalar-api-reference-col-width-3);
1998
-
1999
- grid-template-areas:
2000
- 'header header header'
2001
- 'sidebar content aside'
2002
- 'sidebar footer footer';
2003
- }
2004
- .document.hide-aside-left {
2005
- --col-width-1: 0;
2006
- }
2007
- .document.hide-aside-right {
2008
- --col-width-3: 0;
2009
- }
2010
- .document.hide-aside-left .layout-aside-left .layout-aside-content,
2011
- .document.hide-aside-right .layout-aside-right .layout-aside-content {
2012
- border-right-color: transparent;
2013
- border-left-color: transparent;
2014
- display: none;
2015
- }
2016
- .document.footer-below-sidebar {
2017
- grid-template-areas:
2018
- 'header header header'
2019
- 'sidebar content aside'
2020
- 'footer footer footer';
2021
- }
2022
- .layout-header {
2023
- grid-area: header;
2024
- position: sticky;
2025
- top: 0;
2026
- z-index: 10;
2027
- }
2028
- .layout-content {
2029
- grid-area: content;
2030
- min-width: 0;
2031
- background: var(--theme-background-1);
2032
- display: flex;
2033
- }
2034
- /* Measures the visible viewport of the editor */
2035
- .layout-content-viewport {
2036
- position: fixed;
2037
- left: var(--scalar-api-reference-theme-sidebar-width);
2038
- right: var(--scalar-api-reference-theme-toc-width);
2039
- top: calc(
2040
- var(--scalar-api-reference-app-header-height) +
2041
- var(--scalar-api-reference-theme-header-height)
2042
- );
2043
- bottom: 0;
2044
- pointer-events: none;
2045
- }
2046
- .layout-aside-left {
2047
- position: relative;
2048
- grid-area: sidebar;
2049
- border-right: 1px solid var(--theme-border-color);
2050
- }
2051
- .layout-aside-right {
2052
- position: relative;
2053
- grid-area: aside;
2054
- background: var(--theme-background-1);
2055
- }
2056
- .layout-aside-content {
2057
- position: sticky;
2058
- top: var(--scalar-api-reference-theme-header-height);
2059
- height: var(--scalar-api-reference-document-height);
2060
- overflow-y: auto;
2061
- display: flex;
2062
- flex-direction: column;
2063
- }
2064
- .layout-footer {
2065
- grid-area: footer;
2066
- }
2067
- /* ----------------------------------------------------- */
2068
- /* Document layout modified for references */
2069
- .document.layout-swagger-editor {
2070
- /* Fallback to 100vh if the element height is not specified */
2071
- --full-height: var(--scalar-api-reference-full-height, 100vh);
2072
- /* --theme-header-height: 50px; */
2073
- /* --scalar-api-reference-theme-sidebar-width: 200px; */
2074
- /* --theme-toc-width: 200px; */
2075
-
2076
- --document-height: calc(
2077
- var(--scalar-api-reference-full-height) -
2078
- var(--scalar-api-reference-theme-header-height)
2079
- );
2080
-
2081
- --col-width-1: var(--scalar-api-reference-theme-sidebar-width);
2082
- --col-width-2: calc(
2083
- 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2)
2084
- );
2085
- --col-width-3: calc(
2086
- 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2)
2087
- );
2088
-
2089
- display: grid;
2090
-
2091
- grid-template-rows:
2092
- var(--scalar-api-reference-theme-header-height)
2093
- auto;
2094
-
2095
- grid-template-columns:
2096
- var(--scalar-api-reference-col-width-1)
2097
- var(--scalar-api-reference-col-width-2)
2098
- var(--scalar-api-reference-col-width-3);
2099
-
2100
- grid-template-areas:
2101
- 'header header header'
2102
- 'sidebar content aside'
2103
- 'sidebar content footer';
2104
- }
2105
- .document.layout-swagger-editor .layout-content {
2106
- position: sticky;
2107
- top: var(--scalar-api-reference-theme-header-height);
2108
- height: var(--scalar-api-reference-document-height);
2109
- }
2110
- .document.preview {
2111
- --col-width-2: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));
2112
- --col-width-3: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));
2113
-
2114
- grid-template-areas:
2115
- 'header header'
2116
- 'sidebar aside'
2117
- 'sidebar footer';
2118
- }
2119
- .document.layout-swagger-editor.footer-below-sidebar.preview {
2120
- grid-template-areas:
2121
- 'header header'
2122
- 'sidebar aside'
2123
- 'footer footer';
2124
- }
2125
- .document.layout-swagger-editor.hide-aside-left {
2126
- --col-width-1: 0;
2127
- --col-width-2: 50%;
2128
- --col-width-3: 50%;
2129
- }
2130
- /* ----------------------------------------------------- */
2131
- /* Responsive styles */
2132
- @media (max-width: 1150px) {
2133
- .document.layout-swagger-editor {
2134
- --col-width-3: 0;
2135
- --col-width-2: auto;
2136
- }
2137
- }
2138
- @media (max-width: 1000px) {
2139
- .document,
2140
- .document.layout-swagger-editor {
2141
- /** Content area heights are restricted using just the template row defs */
2142
- grid-template-rows:
2143
- var(--scalar-api-reference-theme-header-height)
2144
- auto
2145
- auto
2146
- auto;
2147
-
2148
- grid-template-columns: 100%;
2149
-
2150
- grid-template-areas:
2151
- 'sidebar'
2152
- 'content'
2153
- 'aside'
2154
- 'footer';
2155
- }
2156
- .layout-aside-left,
2157
- .layout-aside-right,
2158
- .layout-aside-content {
2159
- position: static;
2160
- max-height: unset;
2161
- }
2162
- .layout-aside-left {
2163
- position: sticky;
2164
- top: 0;
2165
- height: var(--scalar-api-reference-theme-header-height);
2166
- border-bottom: 1px solid var(--theme-border-color);
2167
-
2168
- width: 100%;
2169
- z-index: 10;
2170
- border-right: none;
2171
- }
2172
- .layout-aside-left .layout-aside-content {
2173
- position: absolute;
2174
-
2175
- /* Offset by 1px to avoid gap */
2176
- top: calc(100% - 1px);
2177
- left: 0;
2178
- width: 100%;
2179
-
2180
- /* Offset by 2px to fill screen and compensate for gap */
2181
- height: calc(var(--scalar-api-reference-document-height) + 2px);
2182
-
2183
- border-top: 1px solid var(--theme-border-color);
2184
- display: flex;
2185
- flex-direction: column;
2186
- }
2187
- }
2188
-
2189
- /** CSS Normalize */
2190
- .scalar-api-reference {
2191
-
2192
- }
2193
- .scalar-api-reference ul,
2194
- .scalar-api-reference ol {
2195
- padding: 0;
2196
- }
2197
- .scalar-api-reference p {
2198
- margin: 0;
2199
- }
2200
- /** Utilities, how do we deal with them? */
2201
- .flex {
2202
- display: flex;
2203
- }
2204
- .flex-col {
2205
- display: flex;
2206
- min-height: 0;
2207
- flex-direction: column;
2208
- }
2209
- .gap-1 {
2210
- gap: 12px;
2211
- }
2212
- .sr-only {
2213
- position: absolute;
2214
- width: 1px;
2215
- height: 1px;
2216
- padding: 0;
2217
- margin: -1px;
2218
- overflow: hidden;
2219
- clip: rect(0, 0, 0, 0);
2220
- border: 0;
2221
- }
2222
- /** TODO: Move to components */
2223
- .codemenu-topbar {
2224
- background: var(--theme-background-2);
2225
- border-bottom: 1px solid var(--theme-border-color);
2226
- padding: 0 7px 0 12px;
2227
- border-radius: var(--theme-radius) var(--theme-radius) 0 0;
2228
- }
2229
- .codemenu {
2230
- display: flex;
2231
- position: relative;
2232
- justify-content: space-between;
2233
- align-items: center;
2234
- min-height: 35px;
2235
- }
2236
- .codemenu-tabs {
2237
- display: flex;
2238
- position: relative;
2239
- column-gap: 6px;
2240
- }
2241
- .codemenu-item {
2242
- position: relative;
2243
- display: flex;
2244
- align-items: center;
2245
- }
2246
- .codemenu-item-key {
2247
- font-size: var(--theme-micro);
2248
- color: var(--theme-color-3);
2249
- padding: 6px 4px;
2250
- cursor: pointer;
2251
- user-select: none;
2252
- display: flex;
2253
- align-items: center;
2254
- justify-content: center;
2255
- font-weight: var(--theme-semibold);
2256
- position: relative;
2257
- margin-left: -4px;
2258
- margin-right: -4px;
2259
- border-radius: var(--theme-radius-lg);
2260
- text-transform: uppercase;
2261
- }
2262
- .codemenu-item-key:hover {
2263
- background: var(--scalar-api-reference-theme-background-3);
2264
- }
2265
- .codemenu-item:first-of-type:last-of-type .codemenu-item-key,
2266
- .codemenu-item__active .codemenu-item-key {
2267
- color: var(--theme-color-1);
2268
- }
2269
- .codemenu-item:first-of-type:last-of-type:after,
2270
- .codemenu-item__active:after {
2271
- content: '';
2272
- width: 100%;
2273
- height: 1px;
2274
- position: absolute;
2275
- bottom: -4px;
2276
- background: var(--theme-color-1);
2277
- }
2278
- .codemenu-item__disabled {
2279
- pointer-events: none;
2280
- }
2281
- .endpoint {
2282
- display: flex;
2283
- white-space: nowrap;
2284
- cursor: pointer;
2285
- }
2286
- .endpoint span:first-of-type {
2287
- text-transform: uppercase;
2288
- }
2289
- .codemenu .endpoint {
2290
- overflow: hidden;
2291
- }
2292
- .endpoint .post {
2293
- color: var(--theme-post-color);
2294
- }
2295
- .endpoint .patch {
2296
- color: var(--theme-patch-color);
2297
- }
2298
- .endpoint .get {
2299
- color: var(--theme-get-color);
2300
- }
2301
- .endpoint .delete {
2302
- color: var(--theme-delete-color);
2303
- }
2304
- .endpoint .put {
2305
- color: var(--theme-put-color);
2306
- }
2307
- .endpoint .post,
2308
- .endpoint .get,
2309
- .endpoint .delete,
2310
- .endpoint .put {
2311
- white-space: nowrap;
2312
- }
2313
- .endpoint span {
2314
- color: var(--theme-color-2);
2315
- min-width: 62px;
2316
- display: inline-block;
2317
- text-align: right;
2318
- line-height: 1.55;
2319
- font-family: var(--theme-font-code);
2320
- font-size: var(--theme-mini);
2321
- cursor: pointer;
2322
- }
2323
- .languages .example-item-endpoints {
2324
- background: var(--theme-background-2);
2325
- width: 100%;
2326
- border-top: 1px solid var(--theme-border-color);
2327
- }
2328
- .endpoint-response p {
2329
- margin-top: 6px;
2330
- font-size: var(--theme-small);
2331
- min-height: auto;
2332
- line-height: 17px;
2333
- }
2334
- .codemenu .endpoint span {
2335
- text-align: left;
2336
- min-width: auto;
2337
- }
2338
- .endpoint-response {
2339
- border-top: 1px solid var(--theme-border-color);
2340
- padding: 12px 0;
2341
- font-size: var(--theme-small);
2342
- }
2343
- .tag-description {
2344
- margin-top: 12px;
2345
- }
2346
- .reference .endpoint-title {
2347
- display: flex;
2348
- margin-bottom: 12px;
2349
- margin-top: 24px;
2350
- }
2351
- .copy .title {
2352
- font-size: var(--theme-heading-4);
2353
- font-weight: var(--theme-semibold);
2354
- color: var(--theme-color-1);
2355
- line-height: 1.45;
2356
- }
2357
- .endpoint-response__headers {
2358
- padding-bottom: 0;
2359
- }
2360
- .endpoint-response__headers + .endpoint-response {
2361
- border-top: none;
2362
- }
2363
- /* ----------------------------------------------------- */
2364
- .reference {
2365
- position: relative;
2366
- padding: 0 60px;
2367
- width: 100%;
2368
- }
2369
- .reference:not(:last-of-type) {
2370
- border-bottom: 1px solid var(--theme-border-color);
2371
- }
2372
- .reference .reference-container {
2373
- position: relative;
2374
- display: flex;
2375
- gap: 48px;
2376
-
2377
- max-width: 1120px;
2378
- margin: auto;
2379
- padding: 90px 0;
2380
- }
2381
- .reference-container + .reference-container {
2382
- border-top: 1px solid var(--theme-border-color);
2383
- }
2384
- .reference-container .copy,
2385
- .reference-container .example {
2386
- flex: 1;
2387
- min-width: 0;
2388
- }
2389
- .response .cm-editor {
2390
- max-height: calc(50vh - 90px);
2391
- }
2392
- .example {
2393
- padding-top: 48px;
2394
- top: 12px;
2395
- height: fit-content;
2396
- position: sticky;
2397
- }
2398
- .copy .tag-description a {
2399
- color: var(--theme-color-1);
2400
- text-decoration: underline;
2401
- }
2402
- /* ----------------------------------------------------- */
2403
- /* Responsive styles for narrow reference container (900px) */
2404
- .references-narrow .reference {
2405
- padding: 0 30px;
2406
- }
2407
- @media screen and (max-width: 1000px) {
2408
- .references-narrow .reference {
2409
- padding: 0 24px;
2410
- }
2411
- }
2412
- .references-narrow .reference-container {
2413
- flex-direction: column;
2414
- gap: 24px;
2415
- padding: 48px 0;
2416
- }
2417
- .references-narrow .example {
2418
- padding-top: 0;
2419
- }
2420
- .editor-heading h1 {
2421
- font-size: var(--font-size, var(--theme-heading-2));
2422
- font-weight: var(--font-weight, var(--theme-bold));
2423
- /* prettier-ignore */
2424
- color: var(--theme-color-1);
2425
- line-height: 1.45;
2426
- }
2427
- /** Layout */
2428
- /* ----------------------------------------------------- */
2429
- /* Document Layouts */
2430
- .document {
2431
- flex: 1;
2432
- overflow-y: auto;
2433
- overflow-x: hidden;
2434
-
2435
- /* Fallback to 100vh if the element height is not specified */
2436
- --full-height: var(--scalar-api-reference-full-height, 100vh);
2437
- /* --theme-header-height: 50px; */
2438
- /* --scalar-api-reference-theme-sidebar-width: 200px; */
2439
- /* --theme-toc-width: 200px; */
2440
-
2441
- --document-height: calc(
2442
- var(--scalar-api-reference-full-height) -
2443
- var(--scalar-api-reference-theme-header-height)
2444
- );
2445
-
2446
- --col-width-1: var(--scalar-api-reference-theme-sidebar-width);
2447
- --col-width-2: auto;
2448
- --col-width-3: var(--scalar-api-reference-theme-toc-width);
2449
-
2450
- display: grid;
2451
-
2452
- grid-template-rows:
2453
- var(--scalar-api-reference-theme-header-height)
2454
- auto
2455
- auto;
2456
-
2457
- grid-template-columns:
2458
- var(--col-width-1)
2459
- var(--col-width-2)
2460
- var(--col-width-3);
2461
-
2462
- grid-template-areas:
2463
- 'header header header'
2464
- 'sidebar content aside'
2465
- 'sidebar footer footer';
2466
- }
2467
- .document.hide-aside-left {
2468
- --col-width-1: 0;
2469
- }
2470
- .document.hide-aside-right {
2471
- --col-width-3: 0;
2472
- }
2473
- .document.hide-aside-left .layout-aside-left .layout-aside-content,
2474
- .document.hide-aside-right .layout-aside-right .layout-aside-content {
2475
- border-right-color: transparent;
2476
- border-left-color: transparent;
2477
- display: none;
2478
- }
2479
- .document.footer-below-sidebar {
2480
- grid-template-areas:
2481
- 'header header header'
2482
- 'sidebar content aside'
2483
- 'footer footer footer';
2484
- }
2485
- .layout-header {
2486
- grid-area: header;
2487
- position: sticky;
2488
- top: 0;
2489
- z-index: 10;
2490
- }
2491
- .layout-content {
2492
- grid-area: content;
2493
- min-width: 0;
2494
- background: var(--theme-background-1);
2495
- }
2496
- /* Measures the visible viewport of the editor */
2497
- .layout-content-viewport {
2498
- position: fixed;
2499
- left: var(--scalar-api-reference-theme-sidebar-width);
2500
- right: var(--scalar-api-reference-theme-toc-width);
2501
- top: calc(
2502
- var(--scalar-api-reference-app-header-height) +
2503
- var(--scalar-api-reference-theme-header-height)
2504
- );
2505
- bottom: 0;
2506
- pointer-events: none;
2507
- }
2508
- .layout-aside-left {
2509
- position: relative;
2510
- grid-area: sidebar;
2511
- border-right: 1px solid var(--theme-border-color);
2512
- }
2513
- .layout-aside-right {
2514
- position: relative;
2515
- grid-area: aside;
2516
- background: var(--theme-background-1);
2517
- }
2518
- .layout-aside-content {
2519
- position: sticky;
2520
- top: var(--scalar-api-reference-theme-header-height);
2521
- height: var(--scalar-api-reference-document-height);
2522
- overflow-y: auto;
2523
- display: flex;
2524
- flex-direction: column;
2525
- }
2526
- .layout-footer {
2527
- grid-area: footer;
2528
- }
2529
- /* ----------------------------------------------------- */
2530
- /* Document layout modified for references */
2531
- .document.layout-swagger-editor {
2532
- /* Fallback to 100vh if the element height is not specified */
2533
- --full-height: var(--scalar-api-reference-full-height, 100vh);
2534
- /* --theme-header-height: 50px; */
2535
- /* --scalar-api-reference-theme-sidebar-width: 200px; */
2536
- /* --theme-toc-width: 200px; */
2537
-
2538
- --document-height: calc(
2539
- var(--scalar-api-reference-full-height) -
2540
- var(--scalar-api-reference-theme-header-height)
2541
- );
2542
-
2543
- --col-width-1: var(--scalar-api-reference-theme-sidebar-width);
2544
- --col-width-2: calc(
2545
- 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2)
2546
- );
2547
- --col-width-3: calc(
2548
- 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2)
2549
- );
2550
-
2551
- display: grid;
2552
-
2553
- grid-template-rows:
2554
- var(--scalar-api-reference-theme-header-height)
2555
- auto;
2556
-
2557
- grid-template-columns:
2558
- var(--col-width-1)
2559
- var(--col-width-2)
2560
- var(--col-width-3);
2561
-
2562
- grid-template-areas:
2563
- 'header header header'
2564
- 'sidebar content aside'
2565
- 'sidebar content footer';
2566
- }
2567
- .document.layout-swagger-editor .layout-content {
2568
- position: sticky;
2569
- top: var(--scalar-api-reference-theme-header-height);
2570
- height: var(--scalar-api-reference-document-height);
2571
- }
2572
- .document.preview {
2573
- --col-width-2: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));
2574
- --col-width-3: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));
2575
- max-height: 100vh;
2576
- grid-template-areas:
2577
- 'header header'
2578
- 'sidebar aside'
2579
- 'sidebar footer';
2580
- }
2581
- .document.layout-swagger-editor.footer-below-sidebar.preview {
2582
- grid-template-areas:
2583
- 'header header'
2584
- 'sidebar aside'
2585
- 'footer footer';
2586
- }
2587
- .document.layout-swagger-editor.hide-aside-left {
2588
- --col-width-1: 0;
2589
- --col-width-2: 50%;
2590
- --col-width-3: 50%;
2591
- }
2592
- /* ----------------------------------------------------- */
2593
- /* Responsive styles */
2594
- @media (max-width: 1150px) {
2595
- .document.layout-swagger-editor {
2596
- --col-width-3: 0;
2597
- --col-width-2: auto;
2598
- }
2599
- }
2600
- @media (max-width: 1000px) {
2601
- .document,
2602
- .document.layout-swagger-editor {
2603
- /** Content area heights are restricted using just the template row defs */
2604
- grid-template-rows:
2605
- var(--scalar-api-reference-theme-header-height)
2606
- auto
2607
- auto
2608
- auto;
2609
-
2610
- grid-template-columns: 100%;
2611
-
2612
- grid-template-areas:
2613
- 'sidebar'
2614
- 'content'
2615
- 'aside'
2616
- 'footer';
2617
- }
2618
- .layout-aside-left,
2619
- .layout-aside-right,
2620
- .layout-aside-content {
2621
- position: static;
2622
- max-height: unset;
2623
- }
2624
- .layout-aside-left {
2625
- position: sticky;
2626
- top: 0;
2627
- height: var(--scalar-api-reference-theme-header-height);
2628
- border-bottom: 1px solid var(--theme-border-color);
2629
-
2630
- width: 100%;
2631
- z-index: 10;
2632
- border-right: none;
2633
- }
2634
- .layout-aside-left .layout-aside-content {
2635
- position: absolute;
2636
-
2637
- /* Offset by 1px to avoid gap */
2638
- top: calc(100% - 1px);
2639
- left: 0;
2640
- width: 100%;
2641
-
2642
- /* Offset by 2px to fill screen and compensate for gap */
2643
- height: calc(var(--scalar-api-reference-document-height) + 2px);
2644
-
2645
- border-top: 1px solid var(--theme-border-color);
2646
- display: flex;
2647
- flex-direction: column;
2648
- }
2649
- }
2650
- :root {
2651
- /* ?? layout stuff */
2652
- --scalar-api-reference-theme-header-height: 0;
2653
- --scalar-api-reference-theme-sidebar-width: 300px;
2654
- --scalar-api-reference-theme-toc-width: 300px;
2655
- --scalar-api-reference-app-header-height: 100px;
2656
- --scalar-api-reference-col-width-1: 300px;
2657
- --scalar-api-reference-col-width-2: calc(50% - 150px);
2658
- --scalar-api-reference-col-width-3: calc(50% - 150px);
2659
- --scalar-api-reference-document-height: 100vh;
2660
- --scalar-api-reference-full-height: 100%;
2661
- }
1
+ @import"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap";@import"https://fonts.googleapis.com/css?family=JetBrains%20Mono";@import"node_modules/modern-normalize/modern-normalize.css";.cm-scroller,.custom-scroll{overflow-y:scroll;scrollbar-color:transparent transparent;scrollbar-width:thin;-webkit-overflow-scrolling:touch}.custom-scroll-self-contain-overflow{overscroll-behavior:contain}.custom-scroll-extra-padding-right{padding-right:12px!important}@supports (-moz-appearance: none){.cm-scroller,.custom-scroll{padding-right:12px}.custom-scroll-extra-padding-right{padding-right:24px!important}}.cm-scroller:hover,.custom-scroll:hover{scrollbar-color:var(--theme-scrollbar-color) transparent}.cm-scroller:hover::-webkit-scrollbar-thumb,.custom-scroll:hover::-webkit-scrollbar-thumb{background:var(--theme-scrollbar-color);background-clip:content-box;border:3px solid transparent}.cm-scroller::-webkit-scrollbar-thumb:active,.custom-scroll::-webkit-scrollbar-thumb:active{background:var(--theme-scrollbar-color-active);background-clip:content-box;border:3px solid transparent}.cm-scroller::-webkit-scrollbar-corner,.custom-scroll::-webkit-scrollbar-corner{background:transparent}.cm-scroller::-webkit-scrollbar,.custom-scroll::-webkit-scrollbar{height:12px;width:12px}.cm-scroller::-webkit-scrollbar-track,.custom-scroll::-webkit-scrollbar-track{background:transparent}.cm-scroller::-webkit-scrollbar-thumb,.custom-scroll::-webkit-scrollbar-thumb{border-radius:20px;background:transparent;background-clip:content-box;border:3px solid transparent}@media (pointer: coarse){.cm-scroller,.custom-scroll{padding-right:12px}.custom-scroll-extra-padding-right{padding-right:24px!important}}.sidebar-search[data-v-f87e89f2]{display:flex;align-items:center;position:relative;--margin-x: 12px;width:calc(100% - 2 * var(--margin-x));margin:12px var(--margin-x) 6px var(--margin-x);padding:0 3px 0 12px;color:var(--sidebar-color-2, var(--theme-color-2));outline:none;border-radius:var(--theme-radius-lg);border:1px solid var(--theme-border-color);background:var(--scalar-api-reference-sidebar-search-background, var(--theme-background-1));cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.sidebar-search-input[data-v-f87e89f2]{font-size:var(--theme-small);font-weight:var(--theme-semibold);height:31px;-webkit-user-select:none;user-select:none;z-index:10;position:relative;display:flex;width:100%;justify-content:space-between;align-items:center}.sidebar-search-shortcut[data-v-f87e89f2]{text-transform:uppercase}.sidebar-search-key[data-v-f87e89f2]{background-color:var(--theme-background-2);padding:3px 5px;margin:2px;border-radius:var(--theme-radius);color:var(--theme-color-3)}.search-icon[data-v-f87e89f2]{padding:0;margin-right:9px;width:12px}.loader-wrapper[data-v-a0429592]{position:relative;height:var(--a8cfd54e);width:var(--a8cfd54e);display:flex;align-items:center;justify-content:center;--loader-size: 50%}.svg-loader[data-v-a0429592]{width:var(--loader-size);height:var(--loader-size);top:1rem;right:.9rem;overflow:visible;fill:none;background-color:transparent;stroke:currentColor}.svg-path[data-v-a0429592]{stroke-width:14;fill:none;transition:.3s}.svg-x-mark[data-v-a0429592]{stroke-dasharray:57;stroke-dashoffset:57;transition-delay:0s}.svg-check-mark[data-v-a0429592]{stroke-dasharray:149;stroke-dashoffset:149;transition-delay:0s}.icon-is-invalid .svg-x-mark[data-v-a0429592],.icon-is-valid .svg-check-mark[data-v-a0429592]{stroke-dashoffset:0;transition-delay:.3s}.circular-loader[data-v-a0429592]{animation:rotate-a0429592 .7s linear infinite,fade-in-a0429592 .4s;transform-origin:center center;transform:scale(5);background:transparent}.loader-path[data-v-a0429592]{stroke-dasharray:50,200;stroke-dashoffset:-100;stroke-linecap:round}.loader-path-off[data-v-a0429592]{stroke-dasharray:50,200;stroke-dashoffset:-100;transition:opacity .3s;opacity:0}@keyframes fade-in-a0429592{0%{opacity:0}70%{opacity:0}to{opacity:1}}@keyframes rotate-a0429592{0%{transform:scale(5) rotate(0)}to{transform:scale(5) rotate(360deg)}}.flow-button[data-v-59eee5f4]{display:flex;align-items:center;justify-content:center;z-index:1;position:relative;-moz-appearance:none;appearance:none;-webkit-appearance:none;height:40px;padding:0 24px;border-radius:var(--theme-radius-lg);color:var(--theme-button-1-color);font-size:var(--theme-small);font-weight:500;cursor:pointer;background:var(--theme-button-1);border:none;width:100%;box-shadow:#00000017 0 1px 4px}.flow-button[data-v-59eee5f4]:hover,.flow-button[data-v-59eee5f4]:focus-visible{background:var(--theme-button-1-hover)}.flow-button[data-v-59eee5f4]:active{box-shadow:none;background:var(--theme-button-1)}.flow-button[disabled][data-v-59eee5f4]{background:var(--theme-background-2);color:var(--theme-color-3);cursor:unset;box-shadow:none}.flow-button.flow-button-icon-only[data-v-59eee5f4]{width:24px;height:24px;padding:0}.flow-button-outlined[data-v-59eee5f4]{background:var(--theme-background-1);color:var(--theme-color-1);padding:11px 23px;border:1px solid var(--theme-border-color);box-shadow:#00000017 0 1px 4px}.flow-button-outlined[data-v-59eee5f4]:hover,.flow-button-outlined[data-v-59eee5f4]:focus-visible{background:var(--theme-background-2)}.flow-button-outlined[data-v-59eee5f4]:active{background:var(--theme-background-2)}.flow-button-outlined[disabled][data-v-59eee5f4]{background:var(--theme-background-2);color:var(--theme-color-3);cursor:unset;box-shadow:none}.flow-button-clear[data-v-59eee5f4]{background:transparent;box-shadow:none;color:var(--theme-color-3)}.flow-button-clear[data-v-59eee5f4]:active{background:transparent}.flow-button-clear[data-v-59eee5f4]:hover,.flow-button-clear[data-v-59eee5f4]:focus-visible{background:var(--theme-background-2);box-shadow:none}.flow-button-clear[disabled][data-v-59eee5f4]{background:var(--theme-background-2);color:var(--theme-color-3);cursor:unset;box-shadow:none}.flow-button-text[data-v-59eee5f4]{background:transparent;box-shadow:none;color:var(--theme-color-3)}.flow-button-text[data-v-59eee5f4]:active{background:transparent}.flow-button-text[data-v-59eee5f4]:hover,.flow-button-text[data-v-59eee5f4]:focus-visible{color:var(--theme-color-2);background:transparent;box-shadow:none}.flow-button-text[disabled][data-v-59eee5f4]{background:transparent;color:var(--theme-color-ghost);cursor:unset;box-shadow:none}.flow-button--delete[data-v-59eee5f4]{background:var(--theme-error-color);color:#fff}.flow-button--delete[data-v-59eee5f4]:active{background:var(--theme-error-color)}.flow-button--delete[data-v-59eee5f4]:hover{background:var(--theme-error-color);opacity:.86}.flow-button-loader[data-v-59eee5f4]{position:absolute;right:8px}.flow-button-decorator[data-v-59eee5f4]{margin-right:9px;color:currentColor;display:flex;align-items:center;height:14px;width:14px}.flow-button-icon-only .flow-button-decorator[data-v-59eee5f4]{margin-right:0}.action-menu[data-v-fa8f9095]{position:absolute;top:5px;right:5px;display:flex;gap:6px}.action-menu[data-v-fa8f9095] .button-wrapper button{opacity:0;width:20px;height:20px;padding:4px}.action-menu[data-v-fa8f9095]:hover .button-wrapper button,.action-menu[data-v-fa8f9095] .button-wrapper button:hover,.sidebar-heading:hover~.action-menu[data-v-fa8f9095] .button-wrapper button,.action-menu[data-v-fa8f9095] .button-wrapper button[aria-expanded=true]{opacity:1}.sidebar-heading[data-v-fa8f9095]:has(~.action-menu:hover){color:var(--sidebar-color-1, var(--theme-color-1));background:var(--sidebar-item-hover-background, var(--theme-background-2))}.sidebar{--theme-sidebar-indent-base: 6px;background:var(--sidebar-background-1, var(--theme-background-1))}.sidebar{flex:1;height:100%;display:flex;flex-direction:column;background:var(--sidebar-background-1, var(--theme-background-1));--sidebar-level: 0}.pages{padding-top:9px;padding-bottom:9px}.sidebar-group{list-style:none;width:100%}.sidebar-heading{gap:6px;color:var(--sidebar-color-2, var(--theme-color-2));font-size:var(--theme-mini);font-weight:var(--theme-semibold);word-break:break-word;line-height:1.385;display:flex;align-items:center;max-width:100%;position:relative;cursor:pointer;border-radius:0 var(--theme-radius-lg) var(--theme-radius-lg) 0;flex:1;padding-right:12px;-webkit-user-select:none;user-select:none}.toggle-nested-icon{border:none;position:absolute!important;left:2px;top:50%;transform:translateY(-50%);color:currentColor}.toggle-nested-icon:hover,.toggle-nested-icon:focus-visible{color:currentColor;filter:drop-shadow(0 .125px 0 currentColor) drop-shadow(0 -.125px 0 currentColor)}.sidebar-indent-nested .sidebar-heading{padding-left:calc((var(--sidebar-level) * var(--theme-sidebar-indent-base)) + 24px)!important}.sidebar-indent-nested .sidebar-heading .toggle-nested-icon{left:calc((var(--sidebar-level) * var(--theme-sidebar-indent-base)) + 2px)!important}.sidebar-heading-link{padding:6px 0;display:flex;align-items:center}.link-icon{position:relative;left:4px}.sidebar-icon{display:flex;align-items:center;justify-content:center;margin-right:6px;width:13px;height:13px}.sidebar-icon>svg{width:13px;height:13px}.sidebar-heading:hover{color:var(--sidebar-color-1, var(--theme-color-1));background:var(--sidebar-item-hover-background, var(--theme-background-2))}.active_page.sidebar-heading:hover,.active_page.sidebar-heading,.marc_active .sidebar-heading{background:var(--sidebar-item-active-background, var(--theme-background-accent))!important;color:var(--theme-color-accent, var(--theme-background-accent))!important}.sidebar-group-item{position:relative}.sidebar-indent-nested .sidebar-heading{color:var(--sidebar-color-1, var(--theme-color-1))}.sidebar-indent-nested .sidebar-indent-nested .sidebar-heading{color:var(--sidebar-color-2, var(--theme-color-2))}.sidebar-indent-nested>div:has(.active_page) .sidebar-heading{font-weight:var(--theme-bold)}.sidebar-mobile-header{display:flex;align-items:center;gap:12px;height:100%;width:100%;padding:0 6px}.sidebar-mobile-breadcrumbs{flex:1;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:var(--theme-small);font-weight:var(--theme-semibold)}.sidebar-mobile-actions{display:flex;flex-direction:row;gap:4px;height:24px;align-items:center;padding:0 4px}.sidebar-mobile-actions .sidebar-mobile-darkmode-toggle{height:16px;width:16px}@media (max-width: 1000px){.sidebar{min-height:0}.pages{padding-top:12px}}@media (max-width: 500px){.header-item-link.header-item-active,.sidebar-section,.sidebar-heading{font-size:var(--theme-micro)}}.scalar-api-client__container .scalar-api-client[data-v-cd5e89a0]{width:calc(100% - var(--scalar-api-reference-theme-sidebar-width))}.scalar-api-client__container[data-v-cd5e89a0]{position:absolute;right:0;left:0;bottom:0;top:0;z-index:9;border-radius:0;box-shadow:none;opacity:1;pointer-events:all;background:var(--theme-background-1)!important;border-radius:var(--theme-radius-lg);box-shadow:var(--theme-shadow-1);height:100%;overflow:hidden;display:flex;flex-direction:column}@media screen and (max-width: 1265px){.scalar-api-client__container[data-v-cd5e89a0]{width:100vw!important}}.scalar-api-client__navigation[data-v-cd5e89a0]{width:100%;display:flex;align-items:center;padding:11px 12px;height:var(--scalar-api-reference-theme-header-height);background-color:var(--theme-background-1);z-index:10;position:sticky;border-bottom:1px solid var(--theme-border-color);top:0}.scalar-api-client__close[data-v-cd5e89a0]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:none;display:flex;align-items:center;background:transparent;font-size:14px;color:var(--theme-color-1);font-weight:var(--theme-semibold)}.scalar-api-client__close[data-v-cd5e89a0]:hover{cursor:pointer}.api-client-drawer[data-v-cd5e89a0]{background:var(--theme-background-1);height:calc(100vh - 58px);width:calc(100vw - 8px);border-radius:12px;overflow:hidden;visibility:visible;position:fixed;bottom:4px;left:4px;z-index:9999;opacity:0;animation:apiclientfadein-cd5e89a0 .35s forwards}@keyframes apiclientfadein-cd5e89a0{0%{transform:translate3d(0,20px,0) scale(.985);opacity:0}to{transform:translateZ(0) scale(1);opacity:1}}.api-client-drawer-exit[data-v-cd5e89a0]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.44);transition:all .3s ease-in-out;z-index:9998;cursor:pointer;animation:drawerexitfadein-cd5e89a0 .35s forwards}@keyframes drawerexitfadein-cd5e89a0{0%{opacity:0}to{opacity:1}}.scalar-api-client-height[data-v-cd5e89a0]{height:100%}.scalar-api-client-height .sidebar[data-v-cd5e89a0]{flex:1 1 0%;flex-grow:1;flex-shrink:1;flex-basis:0%;height:100%;display:flex;flex-direction:column;width:var(--scalar-api-reference-theme-sidebar-width);border-right:1px solid var(--theme-border-color)}.card[data-v-632b8afa]{border-radius:var(--theme-radius-lg);overflow:hidden;border:1px solid var(--theme-border-color)}.card-content[data-v-872d61e3]{overflow:auto;padding:10px 12px;border-bottom:1px solid var(--theme-border-color)}.card-content[data-v-872d61e3]:last-of-type,.card-content.card--borderless[data-v-872d61e3]{border-bottom:none}.card--muted[data-v-872d61e3]{background:var(--theme-background-2)}.card--frameless[data-v-872d61e3]{padding:0}.card-header[data-v-397189f8]{font-weight:var(--theme-semibold);font-size:var(--theme-mini);color:var(--theme-color-3)}.card-header-title[data-v-397189f8]{text-transform:uppercase}.card-header-slots[data-v-397189f8]{display:flex;justify-content:space-between;align-items:center}.card-header-actions[data-v-397189f8]{display:flex;align-items:center}.card-footer[data-v-0b2d0026]{border-top:1px solid var(--theme-border-color)}.tab-list[data-v-d1f27904]{display:flex;gap:6px;position:relative}.tab[data-v-200cb238]{background:none;border:none;font-size:var(--theme-micro);font-family:var(--theme-font);color:var(--theme-color-2);font-weight:var(--theme-semibold);line-height:calc(var(--theme-micro) + 2px);cursor:pointer}.tab-selected[data-v-200cb238]{color:var(--theme-color-1);text-decoration:underline;text-underline-offset:var(--theme-micro)}.markdown[data-v-e041250f] *{margin-top:12px}.markdown[data-v-e041250f] h1,.markdown[data-v-e041250f] h2,.markdown[data-v-e041250f] h3,.markdown[data-v-e041250f] h4,.markdown[data-v-e041250f] h5,.markdown[data-v-e041250f] h6{font-size:var(--font-size);margin:12px 0 6px}.markdown[data-v-e041250f] p{font-size:var(--font-size, var(--theme-paragraph));color:var(--theme-color-1);font-weight:var(--font-weight, var(--theme-small));line-height:1.5}.markdown[data-v-e041250f] ul,.markdown[data-v-e041250f] ol{padding-left:24px;line-height:1.5;margin:12px 0}.markdown[data-v-e041250f] ul{list-style:disc}.markdown[data-v-e041250f] ol{list-style:decimal}.markdown[data-v-e041250f] ul.contains-task-list{list-style:none;padding-left:0}.markdown[data-v-e041250f] li{margin:6px 0}.markdown[data-v-e041250f] code{font-family:var(--theme-font-code);background-color:var(--theme-background-2);box-shadow:0 0 0 1px var(--theme-border-color);font-size:var(--theme-micro);border-radius:2px;padding:0 3px}.markdown[data-v-e041250f] pre code{display:block;white-space:pre;padding:3px;margin:12px 0;-webkit-overflow-scrolling:touch;overflow-x:scroll;max-width:100%;min-width:100px}.markdown[data-v-e041250f] blockquote{border-left:3px solid var(--theme-border-color);padding-left:12px}.markdown[data-v-e041250f] table{position:relative;border-collapse:collapse;table-layout:fixed;width:100%;margin:0;overflow:hidden;box-shadow:0 0 0 1px var(--theme-border-color);border-radius:var(--theme-radius-lg)}.markdown[data-v-e041250f] td,.markdown[data-v-e041250f] th{min-width:1em;padding:6px;vertical-align:top;box-sizing:border-box;position:relative;word-break:break-all;border-right:1px solid var(--theme-border-color);border-bottom:1px solid var(--theme-border-color)}.markdown[data-v-e041250f] td>*,.markdown[data-v-e041250f] th>*{margin-bottom:0}.markdown.parameter-description[data-v-e041250f] p{margin-top:4px;font-size:var(--theme-small);color:var(--theme-color-2);line-height:initial}.markdown[data-v-e041250f] td:first-of-type,.markdown[data-v-e041250f] th:first-of-type{border-left:none}.markdown[data-v-e041250f] td:last-of-type,.markdown[data-v-e041250f] th:last-of-type{border-right:none}.markdown[data-v-e041250f] tr:last-of-type td{border-bottom:none}.markdown[data-v-e041250f] th{font-weight:700!important;text-align:left;border-left-color:transparent;background:var(--theme-background-2)}.base-url[data-v-e66bcf92]{color:var(--theme-color-2);font-size:var(--theme-mini);cursor:pointer;display:flex;font-family:var(--theme-font-code);flex-direction:column}.client-libraries-content[data-v-474a477f]{display:flex;justify-content:center;gap:6px;padding:0 12px}.code-languages[data-v-474a477f]{display:flex;align-items:center;justify-content:center;flex-direction:column;max-width:68px;width:100%;padding:12px 0;position:relative;cursor:pointer;white-space:nowrap}@media screen and (max-width: 450px){.code-languages[data-v-474a477f]:nth-of-type(4),.code-languages[data-v-474a477f]:nth-of-type(6){display:none}}.code-languages-icon[data-v-474a477f]{max-width:48px;width:100%;max-height:48px;aspect-ratio:1;padding:7px;display:flex;align-items:center;justify-content:center;position:relative;color:var(--theme-code-language-color-supersede, #fff)}.code-languages-background[data-v-474a477f]{border-radius:12px;position:relative;overflow:hidden;box-shadow:0 0 0 1px var(--theme-code-languages-border-color)}.code-languages-background[data-v-474a477f]:before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;pointer-events:none;background:var(--theme-code-languages-background-supersede)}.code-languages-icon__shell[data-v-474a477f]{background:#000}.code-languages-icon__ruby[data-v-474a477f]{background:#d91404}.code-languages-icon__php[data-v-474a477f]{background:#6181b6}.code-languages-icon__python[data-v-474a477f]{background:#306998}.code-languages-icon__more[data-v-474a477f]{background:var(--theme-background-3)}.code-languages-icon__node[data-v-474a477f]{background:#83cd29}.code-languages-icon__c[data-v-474a477f]{background:#03599c}.code-languages-icon__csharp[data-v-474a477f]{background:#68217a}.code-languages-icon__cplusplus[data-v-474a477f]{background:#9c033a}.code-languages-icon__clojure[data-v-474a477f]{background:#5881d8}.code-languages-icon__go[data-v-474a477f]{background:#00acd7}.code-languages-icon__http[data-v-474a477f]{background:#005b9b}.code-languages-icon__java[data-v-474a477f]{background:#ea2d2e}.code-languages-icon__javascript[data-v-474a477f]{background:#f0db4f}.code-languages-icon__kotlin[data-v-474a477f]{background:#7f6cb1}.code-languages-icon__objc[data-v-474a477f]{background:#0b5a9d}.code-languages-icon__ocaml[data-v-474a477f]{background:#f29100}.code-languages-icon__powershell[data-v-474a477f]{background:#2671be}.code-languages-icon__r[data-v-474a477f]{background:#cbced0}.code-languages-icon__swift[data-v-474a477f]{background:#f05138}.code-languages__loading .code-languages-icon[data-v-474a477f]:before{border:1px solid rgba(255,255,255,.44);border-top:1px solid white;animation:codeloader-474a477f .45s linear infinite;background:transparent;width:18px;height:18px;content:"";border-radius:50%}.code-languages__loading .code-languages-icon svg[data-v-474a477f]{display:none}.code-languages__active[data-v-474a477f]:after{content:"";position:absolute;bottom:0;height:2px;width:100%;background:var(--theme-color-1)}@keyframes codeloader-474a477f{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.code-languages span[data-v-474a477f]{margin-top:3px;color:var(--theme-color-2);font-size:var(--theme-micro)}.code-languages__active span[data-v-474a477f]{color:var(--theme-color-1)}.code-languages__select select[data-v-474a477f]{opacity:0;width:100%;height:100%;position:absolute;top:0;left:0;cursor:pointer;z-index:1}.code-languages__select span[data-v-474a477f]{position:relative;display:flex;align-items:center}.code-languages__select span[data-v-474a477f]:after{content:"";width:8px;height:8px;background:var(--theme-background-1);box-shadow:1px 1px 0 currentColor;display:block;transform:rotate(45deg);margin-left:5px;margin-top:-7px}.heading[data-v-5de9da25]{margin-top:0!important}.loading[data-v-5de9da25]{background:var(--theme-background-2);animation:loading-skeleton-5de9da25 2s infinite alternate;border-radius:var(--theme-radius-lg)}.heading.loading[data-v-5de9da25]{width:80%}.tag-description .loading[data-v-5de9da25]{height:20px;margin-bottom:4px;width:100%;display:inline-block}.tag-description .loading[data-v-5de9da25]:first-of-type{margin-top:12px}.tag-description .loading[data-v-5de9da25]:last-of-type{width:40%}@keyframes loading-skeleton-5de9da25{0%{background:var(--theme-background-2)}to{background:var(--theme-background-3)}}.parameter p{margin-top:6px}.parameter .parameter-child{border:1px solid var(--theme-border-color);border-radius:20px;margin-top:12px;width:fit-content}.parameter .parameter{border:none!important}.parameter-child-trigger{padding:6px 12px;cursor:pointer;font-weight:500;color:var(--theme-color-3);font-size:var(--theme-micro);display:flex;align-items:center;-webkit-user-select:none;user-select:none}.parameter-child-trigger:has(+.parameter li:first-of-type:last-of-type){display:none}.parameter-child-trigger:hover{color:var(--theme-color-1)}.parameter-child-trigger>span:before{content:"Show "}.parameter-child__open>.parameter-child-trigger span:before{content:"Hide "}.parameter-child-trigger svg{height:10px;width:10px;margin-right:6px}.parameter-child__open .parameter-child-trigger svg{transform:rotate(45deg)}.parameter .parameter li:first-of-type{border-top:none}.parameter .parameter li{padding:12px}.parameter-child__open>.parameter{display:block}.parameter .parameter-child__open{width:100%;border-radius:6px}.parameter .parameter-child__open>svg{transform:rotate(45deg)}.parameter-child__open>.parameter-child-trigger{border-bottom:1px solid var(--theme-border-color)}.parameter{list-style:none;font-size:var(--theme-small)}.parameter li{border-top:1px solid var(--theme-border-color);padding:12px 0}.parameter-name{font-weight:500;margin-right:6px;font-family:var(--theme-font-code);font-size:13px;color:var(--theme-color-1)}.parameter-type,.parameter-required{color:var(--theme-color-3);font-weight:var(--theme-semibold);margin-right:6px;position:relative}.marc_required{text-transform:uppercase;font-size:11px;font-weight:var(--theme-bold);color:#ffb040}.parameter-options{position:relative}.copy .parameter-description:empty{display:none}.heading[data-v-4870ef25]{margin-top:0!important}.tag-description[data-v-4870ef25]{margin-top:12px}.request-method--post[data-v-9951d57c]{color:var(--theme-post-color)}.request-method--patch[data-v-9951d57c]{color:var(--theme-patch-color)}.request-method--get[data-v-9951d57c]{color:var(--theme-get-color)}.request-method--delete[data-v-9951d57c]{color:var(--theme-delete-color)}.request-method--put[data-v-9951d57c]{color:var(--theme-put-color)}.request-path[data-v-9951d57c]{margin-left:6px;color:var(--theme-color-2);white-space:nowrap;overflow:hidden;cursor:default;text-overflow:ellipsis;text-transform:none!important}.language-select[data-v-9951d57c]{position:relative;padding-right:9px;border-right:1px solid var(--theme-border-color)}.language-select select[data-v-9951d57c]{border:none;outline:none;cursor:pointer;background:var(--theme-background-3);box-shadow:-2px 0 0 0 var(--theme-background-3);z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.language-select span[data-v-9951d57c]{font-size:12px;color:var(--theme-color-3);font-weight:var(--theme-semibold);display:flex;align-items:center;justify-content:center}.language-select span[data-v-9951d57c]:after{content:"";width:7px;height:7px;transform:rotate(45deg) translate3d(-2px,-2px,0);display:block;margin-left:6px;box-shadow:1px 1px 0 currentColor}.language-select span[data-v-9951d57c]:hover{background:var(--theme-background-2)}.copy-button[data-v-9951d57c]{-moz-appearance:none;appearance:none;-webkit-appearance:none;outline:none;background:transparent;display:flex;cursor:pointer;color:var(--theme-color-3);margin-left:6px;border:none;border-radius:3px}.copy-button[data-v-9951d57c]:hover{color:var(--theme-color-1)}.copy-button svg[data-v-9951d57c]{width:13px;height:13px}.show-api-client-button[data-v-9951d57c]{width:100%;display:block;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:none;border:none;border-radius:var(--theme-radius-lg);height:35px;display:flex;justify-content:center;cursor:pointer;align-items:center;font-weight:var(--theme-bold);font-size:var(--theme-micro);text-transform:uppercase;border:1px solid currentColor;background:var(--theme-button-1);color:var(--theme-button-1-color)}.show-api-client-button[data-v-9951d57c]:hover{background:var(--theme-button-1-hover)}.show-api-client-button svg[data-v-9951d57c]{height:12px;width:auto;margin-right:6px}.request-method[data-v-9951d57c],.request-path[data-v-9951d57c]{font-family:var(--theme-font-code)}.code-copy[data-v-c9b38270]{display:flex;-moz-appearance:none;appearance:none;-webkit-appearance:none;outline:none;background:transparent;cursor:pointer;color:var(--theme-color-3);border:none}.code-copy[data-v-c9b38270]:hover{color:var(--theme-color-1)}.code-copy svg[data-v-c9b38270]{width:13px;height:13px}.description[data-v-c9b38270]{font-weight:var(--theme-semibold);font-size:var(--theme-micro)}.scalar-api-reference__empty-state[data-v-c9b38270]{border:1px dashed var(--theme-border-color);width:100%;text-align:center;font-size:var(--theme-micro);padding:20px;color:var(--theme-color-2)}.endpoints[data-v-18af7819]{overflow:auto;background:var(--theme-background-2)}.endpoints span+span[data-v-18af7819]{text-align:left;margin-left:12px;text-transform:initial}.scalar-logo-animation[data-v-16147dd7]{width:38px;height:38px;position:relative;display:flex;align-items:center}.scalar-logo-animation .line[data-v-16147dd7]:before{content:"";width:100%;height:100%;background:#4c4316;display:block;position:absolute}.scalar-logo-animation .line[data-v-16147dd7]{position:absolute;width:100%;height:1px;overflow:hidden}.scalar-logo-animation .line-2[data-v-16147dd7]{transform:rotate(90deg)}.scalar-logo-animation .line-3[data-v-16147dd7]{transform:rotate(45deg)}.scalar-logo-animation .line-4[data-v-16147dd7]{transform:rotate(-45deg)}.scalar-logo-animation-load[data-v-16147dd7]{animation:rotate-16147dd7 2s linear infinite}@keyframes rotate-16147dd7{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.render-loading[data-v-914a90eb]{height:calc(var(--scalar-api-reference-full-height) - var(--scalar-api-reference-theme-header-height));display:flex;align-items:center;justify-content:center}.show-more[data-v-914a90eb]{background:var(--theme-background-1);-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;border:1px solid var(--theme-border-color);margin:-48px auto 48px;padding:8px 12px;border-radius:30px;color:var(--theme-color-1);font-weight:var(--theme-semibold);font-size:var(--theme-small);display:flex;align-items:center;justify-content:center;position:relative}.show-more[data-v-914a90eb]:hover{color:var(--theme-color-2);cursor:pointer}.show-more-icon[data-v-914a90eb]{width:14px;height:14px;margin-left:3px}.show-more[data-v-914a90eb]:active{box-shadow:0 0 0 1px var(--theme-border-color)}@media (max-width: 1165px){.show-more[data-v-914a90eb]{margin-top:-24px;margin-bottom:24px}}.modal-layout[data-v-3f4ab567]{position:fixed;width:100vw;height:100vh;top:0;left:0;z-index:1001;background:rgba(0,0,0,.44);padding:20px;opacity:0;animation:modal-fade-3f4ab567 .2s forwards}.modal-body[data-v-3f4ab567]{padding:24px 12px 18px 24px;max-height:calc(100vh - 240px);background:var(--theme-background-1);border-radius:var(--theme-radius-lg);font-family:var(--theme-font)}.modal[data-v-3f4ab567]{margin:80px auto 0;position:relative;background:var(--theme-background-2);border-radius:var(--theme-radius-lg);color:var(--theme-color-1);width:100%;text-align:left;line-height:1.4;opacity:0;transform:scale(.98);animation:modal-pop-3f4ab567 .15s .15s forwards;display:flex;flex-direction:column}.modal-content-large[data-v-3f4ab567]{max-width:800px}.modal-content-normal[data-v-3f4ab567]{max-width:640px}.modal-content-small[data-v-3f4ab567]{max-width:480px}@keyframes modal-fade-3f4ab567{0%{opacity:0}to{opacity:1}}@keyframes modal-pop-3f4ab567{0%{opacity:0}to{opacity:1;transform:scale(1)}}.modal-header[data-v-3f4ab567]{padding:12px 24px;color:var(--theme-color-1);font-size:var(--theme-font-size-4);text-align:left;font-weight:600;border-radius:var(--theme-radius-lg) var(--theme-radius-lg) 0 0}.ref-search-input[data-v-bee36e88]{width:100%;background:transparent;padding:12px;font-size:13px;outline:none;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius);color:var(--theme-color-1);font-weight:var(--theme-semibold);font-size:var(--theme-font-size-3);-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-bottom:12px}.ref-search-input[data-v-bee36e88]::-webkit-input-placeholder,.ref-search-input[data-v-bee36e88]::placeholder{color:var(--theme-color-3);font-family:var(--theme-font);font-weight:var(--theme-regular)}.item-entry[data-v-bee36e88]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;outline:none;padding:6px 12px;width:100%;font-size:var(--theme-font-size-3);text-align:left;border-radius:var(--theme-radius);display:flex;flex-direction:column;gap:6px}.item-entry--active[data-v-bee36e88],.item-entry[data-v-bee36e88]:hover{background:var(--theme-background-2);box-shadow:0 0 0 1px var(--theme-background-2)}.item-entry-title[data-v-bee36e88]{font-weight:var(--theme-semibold)}.item-entry-request[data-v-bee36e88]{display:flex;gap:3px;font-family:var(--theme-font-code)}.item-entry-http-verb[data-v-bee36e88]{text-transform:uppercase}.item-entry-http-verb--post[data-v-bee36e88]{color:var(--theme-post-color)}.item-entry-http-verb--patch[data-v-bee36e88]{color:var(--theme-patch-color)}.item-entry-http-verb--get[data-v-bee36e88]{color:var(--theme-get-color)}.item-entry-http-verb--delete[data-v-bee36e88]{color:var(--theme-delete-color)}.item-entry-http-verb--put[data-v-bee36e88]{color:var(--theme-put-color)}.item-entry-path[data-v-bee36e88]{color:var(--theme-color-3)}*{text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--app-header-height: 50px;--theme-border-width: 1px;--theme-radius: 3px;--theme-radius-lg: 6px;--theme-radius-xl: 8px;--theme-header-height: 50px;--theme-sidebar-width: 250px;--theme-toc-width: 250px;--theme-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--theme-font-code: "JetBrains Mono";--theme-heading-1: 40px;--theme-page-description: 24px;--theme-heading-2: 24px;--theme-heading-3: 20px;--theme-heading-4: 16px;--theme-heading-5: 16px;--theme-heading-6: 16px;--theme-paragraph: 16px;--theme-small: 14px;--theme-mini: 13px;--theme-micro: 12px;--theme-bold: 600;--theme-semibold: 500;--theme-regular: 400;--theme-font-size-1: 24px;--theme-font-size-2: 16px;--theme-font-size-3: 14px;--theme-font-size-4: 13px;--theme-font-size-5: 12px;--theme-line-height-1: 32px;--theme-line-height-2: 24px;--theme-line-height-3: 20px;--theme-line-height-4: 18px;--theme-line-height-5: 16px;--theme-font-medium: 500;--theme-font-bold: 700;--scalar-api-reference-theme-header-height: 0;--scalar-api-reference-theme-sidebar-width: 250px;--scalar-api-reference-theme-toc-width: 250px;--scalar-api-reference-app-header-height: 100px;--scalar-api-reference-col-width-1: 250px;--scalar-api-reference-col-width-2:calc(50% - 150px);--scalar-api-reference-col-width-3:calc(50% - 150px);--scalar-api-reference-document-height: 100vh;--scalar-api-reference-full-height: 100%}@media (max-width: 460px){:root{--theme-font-size-1: 22px;--theme-font-size-2: 14px;--theme-font-size-3: 12px}}@media (max-width: 720px){:root{--theme-heading-1: 24px;--theme-page-description: 20px}}.light-mode{color-scheme:light;--theme-color-1: #2a2f45;--theme-color-2: #757575;--theme-color-3: #8e8e8e;--theme-color-disabled: #b4b1b1;--theme-color-ghost: #a7a7a7;--theme-color-accent: #0099ff;--theme-background-1: #fff;--theme-background-2: #f6f6f6;--theme-background-3: #e7e7e7;--theme-background-4: rgba(0, 0, 0, .06);--theme-background-accent: #8ab4f81f;--theme-border-color: rgba(0, 0, 0, .1);--theme-scrollbar-color: rgba(0, 0, 0, .18);--theme-scrollbar-color-active: rgba(0, 0, 0, .36);--theme-lifted-brightness: 1;--theme-backdrop-brightness: 1;--theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, .11);--theme-shadow-2: rgba(0, 0, 0, .08) 0px 13px 20px 0px, rgba(0, 0, 0, .08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;--theme-button-1: rgb(49 53 56);--theme-button-1-color: #fff;--theme-button-1-hover: rgb(28 31 33);--theme-error-color: #ae262f;--theme-warning-color: #d89c6a;--theme-success-color: #26ae42;--theme-post-color: #00a67d;--theme-post-background: #00a67d1a;--theme-delete-color: #ef0006;--theme-delete-background: #ef00061a;--theme-patch-color: #b2b062;--theme-patch-background: #ffe6001a;--theme-get-color: #0082d0;--theme-get-background: #0082d01a;--theme-put-color: #f3830e;--theme-put-background: #f3830e1a;--scalar-brand: #faf6e9}.dark-mode{color-scheme:dark;--theme-color-1: rgba(255, 255, 255, .9);--theme-color-2: rgba(255, 255, 255, .62);--theme-color-3: rgba(255, 255, 255, .44);--theme-color-disabled: rgba(255, 255, 255, .34);--theme-color-ghost: rgba(255, 255, 255, .26);--theme-color-accent: #8ab4f8;--theme-background-1: #1a1a1a;--theme-background-2: #252525;--theme-background-3: #323232;--theme-background-4: rgba(255, 255, 255, .06);--theme-background-accent: #8ab4f81f;--theme-border-color: rgba(255, 255, 255, .1);--theme-scrollbar-color: rgba(255, 255, 255, .24);--theme-scrollbar-color-active: rgba(255, 255, 255, .48);--theme-lifted-brightness: 1.45;--theme-backdrop-brightness: .5;--theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, .1);--theme-shadow-2: rgba(15, 15, 15, .2) 0px 3px 6px, rgba(15, 15, 15, .4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, .1);--theme-button-1: #f6f6f6;--theme-button-1-color: #000;--theme-button-1-hover: #e7e7e7;--theme-error-color: #ff0011;--theme-success-color: #26ae42;--theme-post-color: #7ee787;--theme-post-background: #7ee78714;--theme-delete-color: #e77e7e;--theme-delete-background: #e77e7e24;--theme-patch-color: #b2b062;--theme-patch-background: #b2b06229;--theme-get-color: #79c0ff;--theme-get-background: #79c0ff21;--theme-put-color: #e9950c;--theme-put-background: #e9950c21;--scalar-brand: #8b7256}.document{flex:1;overflow-y:auto;overflow-x:hidden;--full-height: var(--scalar-api-reference-full-height, 100vh);--document-height: calc( var(--scalar-api-reference-full-height) - var(--scalar-api-reference-theme-header-height) );--col-width-1: var(--scalar-api-reference-theme-sidebar-width);--col-width-2: auto;--col-width-3: var(--scalar-api-reference-theme-toc-width);display:grid;grid-template-rows:var(--scalar-api-reference-theme-header-height) auto auto;grid-template-columns:var(--scalar-api-reference-col-width-1) var(--scalar-api-reference-col-width-2) var(--scalar-api-reference-col-width-3);grid-template-areas:"header header header" "sidebar content aside" "sidebar footer footer"}.layout-content{grid-area:content;min-width:0;background:var(--theme-background-1);display:flex}.document.layout-swagger-editor{--full-height: var(--scalar-api-reference-full-height, 100vh);--document-height: calc( var(--scalar-api-reference-full-height) - var(--scalar-api-reference-theme-header-height) );--col-width-1: var(--scalar-api-reference-theme-sidebar-width);--col-width-2: calc( 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2) );--col-width-3: calc( 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2) );display:grid;grid-template-rows:var(--scalar-api-reference-theme-header-height) auto;grid-template-columns:var(--scalar-api-reference-col-width-1) var(--scalar-api-reference-col-width-2) var(--scalar-api-reference-col-width-3);grid-template-areas:"header header header" "sidebar content aside" "sidebar content footer"}.document.preview{--col-width-2: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));--col-width-3: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));grid-template-areas:"header header" "sidebar aside" "sidebar footer"}.scalar-api-reference ul,.scalar-api-reference ol{padding:0}.scalar-api-reference p{margin:0}.flex{display:flex}.flex-col{display:flex;min-height:0;flex-direction:column}.gap-1{gap:12px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.codemenu-topbar{background:var(--theme-background-2);border-bottom:1px solid var(--theme-border-color);padding:0 7px 0 12px;border-radius:var(--theme-radius) var(--theme-radius) 0 0}.codemenu{display:flex;position:relative;justify-content:space-between;align-items:center;min-height:35px}.codemenu-tabs{display:flex;position:relative;column-gap:6px}.codemenu-item{position:relative;display:flex;align-items:center}.codemenu-item-key{font-size:var(--theme-micro);color:var(--theme-color-3);padding:6px 4px;cursor:pointer;-webkit-user-select:none;user-select:none;display:flex;align-items:center;justify-content:center;font-weight:var(--theme-semibold);position:relative;margin-left:-4px;margin-right:-4px;border-radius:var(--theme-radius-lg);text-transform:uppercase}.codemenu-item-key:hover{background:var(--scalar-api-reference-theme-background-3)}.codemenu-item:first-of-type:last-of-type .codemenu-item-key,.codemenu-item__active .codemenu-item-key{color:var(--theme-color-1)}.codemenu-item:first-of-type:last-of-type:after,.codemenu-item__active:after{content:"";width:100%;height:1px;position:absolute;bottom:-4px;background:var(--theme-color-1)}.codemenu-item__disabled{pointer-events:none}.endpoint{display:flex;white-space:nowrap;cursor:pointer}.endpoint span:first-of-type{text-transform:uppercase}.codemenu .endpoint{overflow:hidden}.endpoint .post{color:var(--theme-post-color)}.endpoint .patch{color:var(--theme-patch-color)}.endpoint .get{color:var(--theme-get-color)}.endpoint .delete{color:var(--theme-delete-color)}.endpoint .put{color:var(--theme-put-color)}.endpoint .post,.endpoint .get,.endpoint .delete,.endpoint .put{white-space:nowrap}.endpoint span{color:var(--theme-color-2);min-width:62px;display:inline-block;text-align:right;line-height:1.55;font-family:var(--theme-font-code);font-size:var(--theme-mini);cursor:pointer}.languages .example-item-endpoints{background:var(--theme-background-2);width:100%;border-top:1px solid var(--theme-border-color)}.endpoint-response p{margin-top:6px;font-size:var(--theme-small);min-height:auto;line-height:17px}.codemenu .endpoint span{text-align:left;min-width:auto}.endpoint-response{border-top:1px solid var(--theme-border-color);padding:12px 0;font-size:var(--theme-small)}.tag-description{margin-top:12px}.reference .endpoint-title{display:flex;margin-bottom:12px;margin-top:24px}.copy .title{font-size:var(--theme-heading-4);font-weight:var(--theme-semibold);color:var(--theme-color-1);line-height:1.45}.endpoint-response__headers{padding-bottom:0}.endpoint-response__headers+.endpoint-response{border-top:none}.reference{position:relative;padding:0 60px;width:100%}.reference:not(:last-of-type){border-bottom:1px solid var(--theme-border-color)}.reference .reference-container{position:relative;display:flex;gap:48px;max-width:1120px;margin:auto;padding:90px 0}.reference-container+.reference-container{border-top:1px solid var(--theme-border-color)}.reference-container .copy,.reference-container .example{flex:1;min-width:0}.response .cm-editor{max-height:calc(50vh - 90px)}.example{padding-top:48px;top:12px;height:fit-content;position:sticky}.copy .tag-description a{color:var(--theme-color-1);text-decoration:underline}.references-narrow .reference{padding:0 30px}@media screen and (max-width: 1000px){.references-narrow .reference{padding:0 24px}}.references-narrow .reference-container{flex-direction:column;gap:24px;padding:48px 0}.references-narrow .example{padding-top:0}.editor-heading h1{font-size:var(--font-size, var(--theme-heading-2));font-weight:var(--font-weight, var(--theme-bold));color:var(--theme-color-1);line-height:1.45}.document{flex:1;overflow-y:auto;overflow-x:hidden;--full-height: var(--scalar-api-reference-full-height, 100vh);--document-height: calc( var(--scalar-api-reference-full-height) - var(--scalar-api-reference-theme-header-height) );--col-width-1: var(--scalar-api-reference-theme-sidebar-width);--col-width-2: auto;--col-width-3: var(--scalar-api-reference-theme-toc-width);display:grid;grid-template-rows:var(--scalar-api-reference-theme-header-height) auto auto;grid-template-columns:var(--col-width-1) var(--col-width-2) var(--col-width-3);grid-template-areas:"header header header" "sidebar content aside" "sidebar footer footer"}.document.hide-aside-left{--col-width-1: 0}.document.hide-aside-right{--col-width-3: 0}.document.hide-aside-left .layout-aside-left .layout-aside-content,.document.hide-aside-right .layout-aside-right .layout-aside-content{border-right-color:transparent;border-left-color:transparent;display:none}.document.footer-below-sidebar{grid-template-areas:"header header header" "sidebar content aside" "footer footer footer"}.layout-header{grid-area:header;position:sticky;top:0;z-index:10}.layout-content{grid-area:content;min-width:0;background:var(--theme-background-1)}.layout-content-viewport{position:fixed;left:var(--scalar-api-reference-theme-sidebar-width);right:var(--scalar-api-reference-theme-toc-width);top:calc(var(--scalar-api-reference-app-header-height) + var(--scalar-api-reference-theme-header-height));bottom:0;pointer-events:none}.layout-aside-left{position:relative;grid-area:sidebar;border-right:1px solid var(--theme-border-color)}.layout-aside-right{position:relative;grid-area:aside;background:var(--theme-background-1)}.layout-aside-content{position:sticky;top:var(--scalar-api-reference-theme-header-height);height:var(--scalar-api-reference-document-height);overflow-y:auto;display:flex;flex-direction:column}.layout-footer{grid-area:footer}.document.layout-swagger-editor{--full-height: var(--scalar-api-reference-full-height, 100vh);--document-height: calc( var(--scalar-api-reference-full-height) - var(--scalar-api-reference-theme-header-height) );--col-width-1: var(--scalar-api-reference-theme-sidebar-width);--col-width-2: calc( 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2) );--col-width-3: calc( 50% - (var(--scalar-api-reference-theme-sidebar-width) / 2) );display:grid;grid-template-rows:var(--scalar-api-reference-theme-header-height) auto;grid-template-columns:var(--col-width-1) var(--col-width-2) var(--col-width-3);grid-template-areas:"header header header" "sidebar content aside" "sidebar content footer"}.document.layout-swagger-editor .layout-content{position:sticky;top:var(--scalar-api-reference-theme-header-height);height:var(--scalar-api-reference-document-height)}.document.preview{--col-width-2: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));--col-width-3: calc(100% - (var(--scalar-api-reference-theme-sidebar-width)));max-height:100vh;grid-template-areas:"header header" "sidebar aside" "sidebar footer"}.document.layout-swagger-editor.footer-below-sidebar.preview{grid-template-areas:"header header" "sidebar aside" "footer footer"}.document.layout-swagger-editor.hide-aside-left{--col-width-1: 0;--col-width-2: 50%;--col-width-3: 50%}@media (max-width: 1150px){.document.layout-swagger-editor{--col-width-3: 0;--col-width-2: auto}}@media (max-width: 1000px){.document,.document.layout-swagger-editor{grid-template-rows:var(--scalar-api-reference-theme-header-height) auto auto auto;grid-template-columns:100%;grid-template-areas:"sidebar" "content" "aside" "footer"}.layout-aside-left,.layout-aside-right,.layout-aside-content{position:static;max-height:unset}.layout-aside-left{position:sticky;top:0;height:var(--scalar-api-reference-theme-header-height);border-bottom:1px solid var(--theme-border-color);width:100%;z-index:10;border-right:none}.layout-aside-left .layout-aside-content{position:absolute;top:calc(100% - 1px);left:0;width:100%;height:calc(var(--scalar-api-reference-document-height) + 2px);border-top:1px solid var(--theme-border-color);display:flex;flex-direction:column}}:root{--scalar-api-reference-theme-header-height: 0;--scalar-api-reference-theme-sidebar-width: 300px;--scalar-api-reference-theme-toc-width: 300px;--scalar-api-reference-app-header-height: 100px;--scalar-api-reference-col-width-1: 300px;--scalar-api-reference-col-width-2:calc(50% - 150px);--scalar-api-reference-col-width-3:calc(50% - 150px);--scalar-api-reference-document-height: 100vh;--scalar-api-reference-full-height: 100%}