forked from arc-archive/api-request-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
1280 lines (1280 loc) · 60.3 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@api-components/api-request-panel",
"version": "5.1.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@advanced-rest-client/arc-definitions": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-definitions/-/arc-definitions-3.1.1.tgz",
"integrity": "sha512-AbnR14AdFwlVSqWF83senQVM5JjllBoRq5uCGBGw8gLhIXylG+nlk+9sOLlpWCeAaxYiiGGqw/Lw4Ke57xf6Hw=="
},
"@advanced-rest-client/arc-events": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-events/-/arc-events-0.2.13.tgz",
"integrity": "sha512-I5Cx+jYqS4BXoJ1+noWMDbUefTctCqmzZkpfxF0brld8icn/lAeaHV9yu4rizdjx+sc3ps+Co57SmIC9MrTvYw==",
"requires": {
"@advanced-rest-client/arc-types": "^0.2.40"
}
},
"@advanced-rest-client/arc-fit-mixin": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.1.tgz",
"integrity": "sha512-r7QWIOKRRY4+Cn7/cILJKMf63V5nlb/Ej6B58DftLXOMJ5hqKPKdJWuXB+DRHAwAEfF+FhCmY5HfibSmCskj+Q==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-icons": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.1.2.tgz",
"integrity": "sha512-tcEc7vIzgSPu3uWycvxXcrecl5aoXzXQPbpDGKEhL7k6rFH3h6QmPwNC+AQmYpBhJcVKRVuY42zcX+uXb92GYQ==",
"requires": {
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-marked": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-marked/-/arc-marked-1.1.0.tgz",
"integrity": "sha512-MxDtVlOBLz/ovzRrG69+OWMQWDvE6M1/+NxS3FvsAYAxRCtbyJpzqJOvo3BOtX46U9icWgBGWP8Pzx7ixzCFww==",
"requires": {
"dompurify": "^2.1.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"marked": "^0.7.0"
}
},
"@advanced-rest-client/arc-overlay-mixin": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.1.7.tgz",
"integrity": "sha512-Q3JHK2F0S5lFv3Xrp9DYuswzXC0O421i3PkGELfaznvRnuOD/0r8irlgShWXWltQbl9A79uKG11mnfU37aRXUA==",
"requires": {
"@advanced-rest-client/arc-fit-mixin": "^1.2.1",
"@advanced-rest-client/arc-resizable-mixin": "^1.1.2",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-resizable-mixin": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.2.0.tgz",
"integrity": "sha512-hc8XjY6CfQDANuf0TfsfE6EWJwlXBZTtmv2h4luLZgHz55XPlWO7w2XI/YAZX6xQpcsR3cGv0eDnj9CkOaCcCQ==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-types": {
"version": "0.2.47",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.47.tgz",
"integrity": "sha512-SvndHSMFap8nTSmxev3cu8at/WYxox6EIAXj7e4YXYCIRiYv8Ge+BlftD9lhiKjqoiojOv70V74rHsj83XSl3w=="
},
"@advanced-rest-client/authorization-method": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization-method/-/authorization-method-0.2.2.tgz",
"integrity": "sha512-h5w7OxUho7AO5BzdyyclRWbH/DYFyq1b2gXAQj76uyGx6OyeivGJo12ucge8Cx0JAXLIsLL1zC35kbzKGGBlVQ==",
"requires": {
"@advanced-rest-client/arc-events": "^0.2.5",
"@advanced-rest-client/arc-icons": "^3.1.2",
"@advanced-rest-client/arc-types": "^0.2.27",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@advanced-rest-client/oauth2-scope-selector": "^4.0.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-checkbox": "^1.1.3",
"@anypoint-web-components/anypoint-dialog": "^0.1.6",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20",
"@anypoint-web-components/anypoint-input": "^0.2.23",
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/anypoint-switch": "^0.1.4",
"@open-wc/dedupe-mixin": "^1.3.0",
"@polymer/paper-spinner": "^3.0.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},
"dependencies": {
"@anypoint-web-components/anypoint-dropdown-menu": {
"version": "0.1.20",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.20.tgz",
"integrity": "sha512-iqV6KkorsP7vUtNX/zKv3Pxy/oktXbijdjCDjHwzxJ/jzuokJc+Y4VhnLdQ3B0dNUn+D2Mg3lhppy1FwLl6oZg==",
"requires": {
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
}
}
},
"@advanced-rest-client/clipboard-copy": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/clipboard-copy/-/clipboard-copy-3.0.1.tgz",
"integrity": "sha512-nuadCt6g/bhhbiUcC64yyPsZIgyWwSJvB6dD2Xpoe1G78FhqYU3bCLPco4iN5voFlo9TgDryxOaagPwcz/AUqA=="
},
"@advanced-rest-client/code-mirror": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror/-/code-mirror-3.1.4.tgz",
"integrity": "sha512-GgFx6Go0owxXx5/m+Fw2anT7QSvhaTG7B1uZ3Yi9TKnrGDGW/fYJqkNhbZtjvtza/KxBNh/lfz8MKTpuNTK3lQ==",
"requires": {
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@polymer/paper-styles": "^3.0.0",
"@types/codemirror": "^0.0.100",
"codemirror": "^5.58.3",
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/code-mirror-hint": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror-hint/-/code-mirror-hint-3.0.2.tgz",
"integrity": "sha512-T9uD0NO8IDxFqCVzzDlrGEMCAxtAPOutRZBrxU4MYqYHoNADHcv9C0bPefQqZV63KgApc6LBTWuzT4v1kelWkA==",
"requires": {
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/code-mirror-linter": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror-linter/-/code-mirror-linter-3.0.2.tgz",
"integrity": "sha512-jFdQsRztepCvGGRZbKTILeLxJTzycsw5iJ2pf5SmEiQlANOwBqXUp/9KvSkZksck/QnDsZDrJASv1MQ9OnJzhg==",
"requires": {
"codemirror": "^5.58.1",
"jsonlint": "^1.6.3",
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/content-type-selector": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/content-type-selector/-/content-type-selector-3.1.3.tgz",
"integrity": "sha512-H2Z1mLbLbY1aVHqq16d9WTt7F8eG/XmfFbOFP0ZHAUfoa6l7ibsTJFMtrLR7IouOHiWSZJJPLZnOApwrrgUoIg==",
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.10",
"@anypoint-web-components/anypoint-item": "^1.0.3",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/date-time": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/date-time/-/date-time-3.0.2.tgz",
"integrity": "sha512-e5hJSVex/EHMo0YWZprOZUQs4KO/Bkt0KAUzjGrOZbpoafuK1Zs1Szu52KtEh7iui9jaTloWqhasrpnkqsgMDQ=="
},
"@advanced-rest-client/events-target-mixin": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/events-target-mixin/-/events-target-mixin-3.2.3.tgz",
"integrity": "sha512-rXdou8ZqOhtb8BEp5YFJXi1i3xugIuH3k154mdcuObkd5LR/HEHdACKKaYyGe7ATmaBy5mzvr7l4WZFpiTigNg==",
"requires": {
"@open-wc/dedupe-mixin": "^1.2.18"
}
},
"@advanced-rest-client/files-payload-editor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/files-payload-editor/-/files-payload-editor-3.1.0.tgz",
"integrity": "sha512-5NJ3GyJx0eUhxHlzzU8bYsFlugh5LjSWOtECgcIbh1Tcf4w5rdppkV4sILKw0TTeP16peqOq7jlvxV066ZK9eg==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/validatable-mixin": "^1.1.1",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/form-data-editor": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/form-data-editor/-/form-data-editor-3.0.7.tgz",
"integrity": "sha512-x/zUrwt3JCXioxHkpUKrpv/BtKVj5YREV0Eqid8RJSpypZS1fp7ylWrvVl1G82pwkRdmlIiQVgRj+rjn9Y3PTA==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/arc-marked": "^1.0.4",
"@advanced-rest-client/markdown-styles": "^3.1.0",
"@advanced-rest-client/payload-parser-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-input": "^0.2.5",
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@api-components/api-form-mixin": "^3.0.3",
"@api-components/api-property-form-item": "^3.0.9",
"@polymer/iron-form": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/headers-list-view": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/headers-list-view/-/headers-list-view-3.0.3.tgz",
"integrity": "sha512-PqDjw/W0OvdBqwkZcllUVsNN65Rh3RX8lr2NWxOJbGynRwo0lta6fiAG+Pr52w9USjDN1MlYPfW690EAMUM7kw==",
"requires": {
"@advanced-rest-client/headers-parser-mixin": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/headers-parser-mixin": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/headers-parser-mixin/-/headers-parser-mixin-3.2.0.tgz",
"integrity": "sha512-/kpQtZ4xZGuISolGekDyVO/WLRc/nYCYSpk2FMUbtn1X6mU52xzuVObnCbX4ySCrwjztEpXlu0h3si/UwXqJBw==",
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@advanced-rest-client/http-method-selector": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/http-method-selector/-/http-method-selector-3.0.5.tgz",
"integrity": "sha512-h2sDgIAKeYHVR3OsVg+/BEIjT89C8Yp9y69VnixvvEPeWx42/gj9jCY2qTtdZpjbkfVKPnyDffSFGBpqKBkBwA==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.4",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.11",
"@anypoint-web-components/anypoint-input": "^0.2.9",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-radio-button": "^0.1.3",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/json-table": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/json-table/-/json-table-3.2.0.tgz",
"integrity": "sha512-RCMhLzlRgIk2gK57LzJPHi9Czgr2jLj++eDStwpTUvETdwdLIt1ijDzfeHIMTGeNQAG1C2IZTytIV1L1npRsKg==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.16",
"@anypoint-web-components/anypoint-item": "^1.0.7",
"@anypoint-web-components/anypoint-listbox": "^1.1.4",
"@open-wc/dedupe-mixin": "^1.2.17",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/json-viewer": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/json-viewer/-/json-viewer-3.1.4.tgz",
"integrity": "sha512-DawyuGmKV4iupvF2Ed7/jBlypablncBRw3ZyR3Cone+2ELjkO/KpHho2EbgGWJ2id6/JzxCoq/A5oYDp4JZITQ==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.4",
"@polymer/iron-collapse": "^3.0.0",
"@polymer/paper-spinner": "^3.0.2",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/markdown-styles": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/markdown-styles/-/markdown-styles-3.1.3.tgz",
"integrity": "sha512-Vru2fA8P1SEtqEEw8HJ2B6bqFZIZhgHB1em93N5EkJlFWU6J97Zt5njoz3iWVbqdZyLerRFbR2t436SzbV4gfg==",
"requires": {
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/multipart-payload-editor": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/multipart-payload-editor/-/multipart-payload-editor-4.1.0.tgz",
"integrity": "sha512-KXKWYpVrbDon1qQgVNTEobCUEB6ucpb7aJWL6cUZVxOkts2dQJPj1reSzzSYJSHPxDomb27xnEfRbovL38B5jw==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/markdown-styles": "^3.1.2",
"@advanced-rest-client/multipart-payload-transformer": "^3.0.0",
"@advanced-rest-client/prism-highlight": "^4.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-input": "^0.2.14",
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@api-components/api-form-mixin": "^3.0.4",
"@api-components/api-property-form-item": "^3.0.12",
"@api-components/api-view-model-transformer": "^4.1.0",
"@polymer/iron-form": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"@polymer/prism-element": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"prismjs": "^1.20.0"
}
},
"@advanced-rest-client/multipart-payload-transformer": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/multipart-payload-transformer/-/multipart-payload-transformer-3.0.0.tgz",
"integrity": "sha512-P3uejpZL7SBSCvkruwlKKTtfmkPUuKK5CKO92Tbgq7Tscb1bmZQ9jYxeS2XfroDiG0It2zyJqFoXIwSSOLwpoA==",
"requires": {
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/oauth-authorization": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/oauth-authorization/-/oauth-authorization-5.0.3.tgz",
"integrity": "sha512-2PibisZeuSwvKHgiH2wGgdVxurORu+9jqUIEZgC8wryD2wXUmJohg2po9LqoQtwg6xNgD0K64eLZHDYSX6y02A==",
"requires": {
"@advanced-rest-client/arc-events": "^0.2.13",
"@advanced-rest-client/arc-types": "^0.2.45",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@advanced-rest-client/headers-parser-mixin": "^3.2.0",
"@polymer/iron-meta": "^3.0.0",
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/oauth2-scope-selector": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/oauth2-scope-selector/-/oauth2-scope-selector-4.0.0.tgz",
"integrity": "sha512-PbK3pTD9Dr57rDAlaOoN1JSuoljsFQsI+vm0nUt48wTXtFNx3EV/26JdeZ1QfTvKWGPFDlOsEut8oMSaokIPHw==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.2",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.7",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-input": "^0.2.22",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/payload-parser-mixin": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/payload-parser-mixin/-/payload-parser-mixin-3.0.0.tgz",
"integrity": "sha512-I0ZqVIWVx8Mdvx5eDJeYyhUm8nd12BaQoODjdTLw8bKp/+F0g7K1wv0AMDvdiXq2Pj9PGeufIMPBXngM5bp0WA==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@advanced-rest-client/prism-highlight": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/prism-highlight/-/prism-highlight-4.0.2.tgz",
"integrity": "sha512-wk9u0wLgkap21140jYfyhy6O88L8o7VTgd1auPQTLncHcoMN3r6MCcIVi6xqsKebhJpO4TxkbERLfU9F2r+f9w==",
"requires": {
"lit-element": "^2.0.1",
"prismjs": "^1.11.0"
}
},
"@advanced-rest-client/raw-payload-editor": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/raw-payload-editor/-/raw-payload-editor-3.0.6.tgz",
"integrity": "sha512-c6uZRDHfOKn90vY+FC3xsvEmmD5j91gtSTVWwDQOWp4HMF4GEP4huS6oTjXsLxdF15fifIBmnI1cF+BIrCf+bg==",
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.0.0",
"@advanced-rest-client/code-mirror": "^3.0.3",
"@advanced-rest-client/code-mirror-linter": "^3.0.0",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@advanced-rest-client/payload-parser-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/request-timings": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/request-timings/-/request-timings-3.0.2.tgz",
"integrity": "sha512-urTf0ZV1ZoMJeddDVz00+5EVL0nJq1i8vrX8UMlT2w8AsKh+i8kn1cSjOCNuVPaFQ7ZWu4inHHYxxXlIaNlx8w==",
"requires": {
"@advanced-rest-client/date-time": "^3.0.2",
"@polymer/paper-progress": "^3.0.0",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/response-body-view": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/response-body-view/-/response-body-view-3.0.8.tgz",
"integrity": "sha512-KeneMUj69Zd0WnTS7W9LAzWflVfrBuZGZRM4iktDtRtvWHuJVLPrLkCBHngisSj2tg3hXLxAKU2VqO6wl8DsOA==",
"requires": {
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/json-table": "^3.1.3",
"@advanced-rest-client/json-viewer": "^3.1.3",
"@advanced-rest-client/response-highlighter": "^3.0.1",
"@advanced-rest-client/response-raw-viewer": "^3.0.1",
"@anypoint-web-components/anypoint-button": "^1.0.11",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/response-error-view": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/response-error-view/-/response-error-view-3.0.4.tgz",
"integrity": "sha512-q4m1KPW+N2imxzSH5OTDeOJklernx/C33NyGzVr3iIzreV2zXIoI2o82Rq3mIIzgUXu1i/eDl3PBsL4jtgKjlw==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.4",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@polymer/iron-icon": "^3.0.0",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/response-highlighter": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/response-highlighter/-/response-highlighter-3.0.3.tgz",
"integrity": "sha512-t3+lgDhjIeMqpr5A9etIlYXJCW8mBTOi+A6ERY1ueyyWo41a5EpbsTDCS7lPlRpktOs9Iz6bxjx715qQi2S7Tg==",
"requires": {
"@advanced-rest-client/prism-highlight": "^4.0.2",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/response-raw-viewer": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/response-raw-viewer/-/response-raw-viewer-3.0.2.tgz",
"integrity": "sha512-Q06SdtVIjoNm7QoAdL31e9svJ/o0aWPNoPrBpxyAEWyWK5PxPh27zT2+ccGnUd+fErLKPFtDJbxYSn7Y69Ok3Q==",
"requires": {
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/response-status-view": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/response-status-view/-/response-status-view-3.0.4.tgz",
"integrity": "sha512-A143vbdgzt+zxGkjrvyvEReiZefXVRfP5SkkVc89rgIcQ2NwQwnJRq5BdTDrt8ELkBiIgQvsheD2FWWxdkSL7A==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.4",
"@advanced-rest-client/headers-list-view": "^3.0.3",
"@advanced-rest-client/request-timings": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-tabs": "^0.1.10",
"@polymer/iron-collapse": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/response-view": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/response-view/-/response-view-3.0.4.tgz",
"integrity": "sha512-ZdAtR4oNQLTQoYUpsIKS2ZryGmWs1AeL/N3nNH9poBl03ePNz+Q+vMXGaj+3YsLry/syYukPCXnEbEtDRbPHuw==",
"requires": {
"@advanced-rest-client/response-body-view": "^3.0.4",
"@advanced-rest-client/response-error-view": "^3.0.1",
"@advanced-rest-client/response-status-view": "^3.0.2",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/url-parser": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/url-parser/-/url-parser-3.1.0.tgz",
"integrity": "sha512-2+kP2/3nW//JpzHdnTS7rNeHXFJAqOBT+EdWia1dyMnj3OWsi6VTvcfN9NiAx+DQB+5BemqQ4ampgXx8tHT2BA=="
},
"@advanced-rest-client/uuid-generator": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/uuid-generator/-/uuid-generator-3.1.1.tgz",
"integrity": "sha512-FGC/8jodMca8j4qlSxn4+D+5PrrJfUzYkCxkfjNp9uSzMEuuSiBONIwKVKoCSu6HehBHvLpuGdmIh4KLE6RMJg=="
},
"@anypoint-web-components/anypoint-autocomplete": {
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-autocomplete/-/anypoint-autocomplete-0.2.8.tgz",
"integrity": "sha512-VprriG126tHjkzfopJ/fWykGa5VW1n/bawqnkv46IFZj2+yVDEj+0U/7wQMlKzvkKopj7rVQYlD9rn7lbNc1PQ==",
"requires": {
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.4.0"
}
},
"@anypoint-web-components/anypoint-button": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.1.1.tgz",
"integrity": "sha512-S+cfMd5GRepD+133ajGwCNGG+nzTQnH88kcXzbG+Nsl2yC7FQRNNO6N0VQFsfuRl7e+FwWAp3W2iM/HxoAO1kg==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.1",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.3.1"
}
},
"@anypoint-web-components/anypoint-checkbox": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-checkbox/-/anypoint-checkbox-1.1.3.tgz",
"integrity": "sha512-z/yfnAMyXb/dyKIvE6Dm/5UJ6U1dm+nJ+p2Ss9Vx6awAtpcHfsjZd1mAwsdeiTzgN8qgFlhdCxMkNBctQmbmxA==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-form-mixins": "^1.2.2",
"lit-element": "^2.4.0"
}
},
"@anypoint-web-components/anypoint-control-mixins": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-control-mixins/-/anypoint-control-mixins-1.1.3.tgz",
"integrity": "sha512-LRhwEav2ZpDBRKiGo3Upu4B0ur/j8+2JxeqHGwxcXc8ORuiJLVxcorURuKhLyvEjk5fP5pI0S0KGIUj66N1KQg==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dialog": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dialog/-/anypoint-dialog-0.1.6.tgz",
"integrity": "sha512-BAne4mYs8zp2RlzoB8RWDqRIHvke7ezMQj8qGT6xgHO96j5p8uF2tjbaX5Py50JXeMDsvj8JuZUPJFlzqAxWOA==",
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.1.6",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dropdown": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown/-/anypoint-dropdown-1.1.4.tgz",
"integrity": "sha512-t84wYqpeljd2+41Ci/ME82o1R2qL1gn3mLTmHx3J+oS8ou0FOGhSHKKuxchF0Y87ydE1fGmWdE6Im4FIwLUCKQ==",
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.1.7",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dropdown-menu": {
"version": "0.1.19",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.19.tgz",
"integrity": "sha512-n0xAGe7gSoiybWXXqdWaWqSVZEJxZCLeblO1Xy2866u7Lozs49w+ohFP/kCtUH1+hxkk/HuhGoHUaVs79FfSHA==",
"requires": {
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-form-mixins": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-form-mixins/-/anypoint-form-mixins-1.2.2.tgz",
"integrity": "sha512-Z9aC5WZOr58GnabwPhVq8OpZ6Yk6RU/HGX/uC9mP2h5cohTqCCwZBgyDmRE5YzjBidaWR+9mCUPKJsxl9Z9AEA==",
"requires": {
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-input": {
"version": "0.2.23",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-input/-/anypoint-input-0.2.23.tgz",
"integrity": "sha512-nM1cOXJPuSh1maNsM34YmrQDgGSynF5ZuvG3s9Q3jmv+uaf7RtIj94tO/+TZ8RkHSZJ2FtUl0FsWEtP6bTPfNw==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-item": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.0.8.tgz",
"integrity": "sha512-eqS74CXXIHHyU0Q9QbubfOqURQBLlZETRSJ/qs3AE47Hg6qO1Hr8DNy15qwECGsdm/rZ611K73ZJCuQtC0FRSA==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-listbox": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-listbox/-/anypoint-listbox-1.1.6.tgz",
"integrity": "sha512-YkQuORirn6k+erAeB1H1OZgFqc7gOPcGaJoH+TuXW8Sb5gdburU8UtdTnO9CvZ/a+pCcIE35EgrdcInBglXGiQ==",
"requires": {
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-menu-mixin": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-menu-mixin/-/anypoint-menu-mixin-1.1.8.tgz",
"integrity": "sha512-Aq4hEcDeVQc/aCStExqaSOz2soVrwmlwpbW0VdILCIUjCVCIK5WbLvCeYY7H6SVYZpNhCwgfYAELYCTII+e6oQ==",
"requires": {
"@anypoint-web-components/anypoint-selector": "^1.1.6",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-radio-button": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-radio-button/-/anypoint-radio-button-0.1.6.tgz",
"integrity": "sha512-WOT4jXDoa40tPxySjF39pidATUvnlBO7UmqTTNLzsCjxSUy9hETP2yxE7ok4Qe6tvI5vHfaTxcho535a5X0tTQ==",
"requires": {
"@anypoint-web-components/anypoint-form-mixins": "^1.2.1",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"lit-element": "^2.4.0"
}
},
"@anypoint-web-components/anypoint-selector": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-selector/-/anypoint-selector-1.1.6.tgz",
"integrity": "sha512-ErYqKrRC0eYNYMy/QWf9rHaYv9n3cS6bopKpDOn0AruYLsFlfjDQ5lnz84q4yG5WcYRR1UTPHy+GKl9t/kuKww==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-styles": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-styles/-/anypoint-styles-1.0.1.tgz",
"integrity": "sha512-sTsbaVSWuFEaOjFL+9t++E95rV+aQqtnbqqIEhhLei7P/z0v/ySfRxATnyjq6YgfHN0D2axZ3uk7l6nEN6YKHQ==",
"requires": {
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@anypoint-web-components/anypoint-switch": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.4.tgz",
"integrity": "sha512-ltjgMHFuWC80V1+FDI34M+Q6gnNXs0+skfuM6/bbL0SPup5wttQc5OGrZcje7PwxExstUNHIF9+oLzPbHjfShQ==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.1",
"@anypoint-web-components/anypoint-form-mixins": "^1.2.0",
"lit-element": "^2.3.1"
}
},
"@anypoint-web-components/anypoint-tabs": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.12.tgz",
"integrity": "sha512-t3Qe9JPRJCof5LMMVDcOqltDnGvpigUboxASVrovuf0iPeDYgPWjJ59pNgeLFnT20LGsZVgEAGWBnOuuK5XGuw==",
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.1.1",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"@polymer/iron-icon": "^3.0.1",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/validatable-mixin": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validatable-mixin/-/validatable-mixin-1.1.3.tgz",
"integrity": "sha512-cObFmNCIWxbGoYEO7cMUEEB4LQ4n3HEgk1gS7LB/TZSvXzzth00f3lbxkvQsubBIFVEOKFUq5Lo8vuG81t0/2w==",
"requires": {
"@anypoint-web-components/validator-mixin": "^1.1.1",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/validator-mixin": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validator-mixin/-/validator-mixin-1.1.1.tgz",
"integrity": "sha512-SHBFXn/uHP5ptQY/ZV/DzEb0dBYldQF1Rti1q+3lfbUcYiA59QdfsPvOmre6a64NeaHagV/aMd4zj3FNH5hAXg==",
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@api-components/amf-helper-mixin": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.2.tgz",
"integrity": "sha512-1Wbrbg6cn4d6lAWeHSPugHaHQpBEOlgPGSt3TRgSoaYv5wTNFCorvzcM4gte1MQ/CDaWn/UvifjHrotpII0icg=="
},
"@api-components/api-authorization": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@api-components/api-authorization/-/api-authorization-0.3.0.tgz",
"integrity": "sha512-+qkM8EdR/DaLLtZHbnFF2zliAwhWKvgNjoNLMzc1xV/41CuJ2Y6CZlDyg2FSXYclOARW8ht6WOZgZ5/4sbBpSg==",
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.1.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.14",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@api-components/amf-helper-mixin": "^4.0.26",
"@api-components/api-authorization-method": "^0.3.2",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-authorization-method": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@api-components/api-authorization-method/-/api-authorization-method-0.3.2.tgz",
"integrity": "sha512-3kq0w4Nv8yTRMblAjRY2RLHCVB8Onj94fDc/avR7NPYZnAmSA3BIEBpeBWCTjuZ9AzWeFSToMjY1dWsbLsLTtQ==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.2",
"@advanced-rest-client/arc-marked": "^1.1.0",
"@advanced-rest-client/arc-types": "^0.2.14",
"@advanced-rest-client/authorization-method": "^0.2.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@api-components/amf-helper-mixin": "^4.2.0",
"@api-components/api-property-form-item": "^3.0.15",
"@api-components/api-view-model-transformer": "^4.2.2",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@api-components/api-body-editor": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@api-components/api-body-editor/-/api-body-editor-4.0.5.tgz",
"integrity": "sha512-UE7QTIxEA36jRlxrzJcsKZ1YU9A7UAYk75UCLDq+twR+hPlJzYW39UW8sotpviWMd/5V1mPfk75VfIYRPBTYrg==",
"requires": {
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/content-type-selector": "^3.1.3",
"@advanced-rest-client/events-target-mixin": "^3.1.1",
"@advanced-rest-client/files-payload-editor": "^3.0.4",
"@advanced-rest-client/form-data-editor": "^3.0.7",
"@advanced-rest-client/multipart-payload-editor": "^4.0.1",
"@advanced-rest-client/raw-payload-editor": "^3.0.6",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.14",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@api-components/amf-helper-mixin": "^4.1.1",
"@api-components/api-example-generator": "^4.2.0",
"@api-components/api-form-mixin": "^3.0.4",
"@api-components/api-view-model-transformer": "^4.0.3",
"@api-components/raml-aware": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-example-generator": {
"version": "4.4.6",
"resolved": "https://registry.npmjs.org/@api-components/api-example-generator/-/api-example-generator-4.4.6.tgz",
"integrity": "sha512-5C2oVvtrw1AO487nbReOjxJLCDV8r72ggJloqHwY9/U232iq0zumKKQ5zZUIlilRyNQvGj//n8ck4oItcmpVEQ==",
"requires": {
"@api-components/amf-helper-mixin": "^4.1.8",
"lit-element": "^2.4.0"
}
},
"@api-components/api-form-mixin": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@api-components/api-form-mixin/-/api-form-mixin-3.1.3.tgz",
"integrity": "sha512-U+8F/vau3KhG6LEJFW10JdaO482YKvkJamtD2KHYgtdHNmmzQUy2C3vZuesdorUpl5ZbaBM0Em03atTFzNYGlg==",
"requires": {
"@api-components/api-view-model-transformer": "^4.1.1",
"lit-element": "^2.3.1"
}
},
"@api-components/api-headers-editor": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@api-components/api-headers-editor/-/api-headers-editor-4.1.1.tgz",
"integrity": "sha512-s2wsa2/81WFqNsNfaFXUS2rTElLYeyrXfJGSqcW0A33Cd3L+HCX019WBlv0/14hW2qgBauap1I2qVSUGDWvILQ==",
"requires": {
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/code-mirror": "^3.0.1",
"@advanced-rest-client/code-mirror-hint": "^3.0.2",
"@advanced-rest-client/events-target-mixin": "^3.2.0",
"@advanced-rest-client/headers-parser-mixin": "^3.2.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/validatable-mixin": "^1.1.1",
"@api-components/amf-helper-mixin": "^4.1.2",
"@api-components/api-form-mixin": "^3.1.3",
"@api-components/api-headers-form": "^4.1.1",
"@api-components/api-view-model-transformer": "^4.1.1",
"@api-components/raml-aware": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-headers-form": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/@api-components/api-headers-form/-/api-headers-form-4.1.3.tgz",
"integrity": "sha512-Tmroduok5eT1vSI4qzMgh61fH+0BtwHE7jRKDELNgXJ0iE7sPD9ISZ3Oovcz94nDZqXaGbqOK9QuFXTKRJTPiw==",
"requires": {
"@advanced-rest-client/arc-definitions": "^3.1.0",
"@advanced-rest-client/arc-icons": "^3.1.0",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/markdown-styles": "^3.1.2",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-checkbox": "^1.1.2",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.16",
"@anypoint-web-components/anypoint-input": "^0.2.17",
"@anypoint-web-components/anypoint-listbox": "^1.1.4",
"@anypoint-web-components/validatable-mixin": "^1.1.1",
"@api-components/api-form-mixin": "^3.1.3",
"@api-components/api-property-form-item": "^3.0.12",
"@polymer/iron-form": "^3.0.0",
"lit-element": "^2.3.1"
}
},
"@api-components/api-property-form-item": {
"version": "3.0.15",
"resolved": "https://registry.npmjs.org/@api-components/api-property-form-item/-/api-property-form-item-3.0.15.tgz",
"integrity": "sha512-znKSsPUXYGmu3Q2mV+f0VckjU+X3CVisRorHjpKKLu4H/w+WO9GSTUBs4Lllb9nAnNk6ovLcCxckRTxWQzGJRw==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-checkbox": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.17",
"@anypoint-web-components/anypoint-input": "^0.2.22",
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.5",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@api-components/api-request-editor": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/@api-components/api-request-editor/-/api-request-editor-5.1.1.tgz",
"integrity": "sha512-6pIsg/EWAuAr30rjgOIx0uiSgVgVZXNs4g3aPy7yzG85mTxyATM0bPJ+p6uEFa02J9/UKBS5JtZQnlZLEH31Ew==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/events-target-mixin": "^3.1.1",
"@advanced-rest-client/headers-parser-mixin": "^3.1.0",
"@advanced-rest-client/http-method-selector": "^3.0.5",
"@advanced-rest-client/oauth-authorization": "^5.0.0",
"@advanced-rest-client/url-parser": "^3.0.1",
"@advanced-rest-client/uuid-generator": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@api-components/amf-helper-mixin": "^4.1.1",
"@api-components/api-authorization": "^0.3.0",
"@api-components/api-body-editor": "^4.0.4",
"@api-components/api-form-mixin": "^3.1.0",
"@api-components/api-headers-editor": "^4.1.0",
"@api-components/api-server-selector": "^0.6.1",
"@api-components/api-url-data-model": "^5.0.1",
"@api-components/api-url-editor": "^4.0.3",
"@api-components/api-url-params-editor": "^4.1.0",
"@api-components/raml-aware": "^3.0.0",
"@polymer/paper-spinner": "^3.0.2",
"@polymer/paper-toast": "^3.0.0",
"cryptojslib": "^3.1.2",
"jsrsasign": "^8.0.15",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-server-selector": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/@api-components/api-server-selector/-/api-server-selector-0.6.2.tgz",
"integrity": "sha512-LWszmRECZzs1oweMFIEs17D7x4Wox7phjiZwa/42H/Gq6x6uHTtZL0VwgJxzJ3pBWbNrAw1PpNcClznBih40aA==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-dropdown": "^1.1.2",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.16",
"@anypoint-web-components/anypoint-input": "^0.2.14",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@api-components/amf-helper-mixin": "^4.3.2",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
},
"dependencies": {
"@advanced-rest-client/arc-icons": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.2.2.tgz",
"integrity": "sha512-4KC2Amg7Bzaty0q0H2QsyZlfx0ceFdyN/WGrj1UXF98RdXtmKX8tBK9PrgHSnuaBWw1l/u/ZmjmXle6uXG6xvA==",
"requires": {
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
}
}
},
"@api-components/api-url-data-model": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@api-components/api-url-data-model/-/api-url-data-model-5.0.1.tgz",
"integrity": "sha512-9Y0gTkF5/JhQNuZAl42J1I4Ie/UsuS5WUQwvxo+E9rPrJWVZAYPggsQANvZDkeEh2BhYoOE8ca5NhnpAsFcnHw==",
"requires": {
"@api-components/amf-helper-mixin": "^4.1.1",
"@api-components/api-view-model-transformer": "^4.1.0",
"lit-element": "^2.3.1"
}
},
"@api-components/api-url-editor": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@api-components/api-url-editor/-/api-url-editor-4.0.3.tgz",
"integrity": "sha512-9x8GejN+MTRx84DmZ788Dv/LyQ4Azkm0oezNcYQrBTjJj2UG13lnZAu8fsZL+tmbcw3LGvuKxX/Bta+MnynIwQ==",
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-input": "^0.2.6",
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@api-components/api-view-model-transformer": "^4.1.0",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@api-components/api-url-params-editor": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@api-components/api-url-params-editor/-/api-url-params-editor-4.1.0.tgz",
"integrity": "sha512-8VBFHU8sokvU1PFZKZZXQXzgTpnYBPbHATSm56hBuXNxcRbaMr2pA+QxsELFUfSDb3rb1rbBQ7Qhij69ZQYJdg==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/events-target-mixin": "^3.1.1",
"@advanced-rest-client/markdown-styles": "^3.1.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-checkbox": "^1.0.2",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.14",
"@anypoint-web-components/anypoint-input": "^0.2.14",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@api-components/api-form-mixin": "^3.1.0",
"@api-components/api-property-form-item": "^3.0.12",
"@polymer/iron-collapse": "^3.0.0",
"@polymer/iron-form": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-view-model-transformer": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/@api-components/api-view-model-transformer/-/api-view-model-transformer-4.2.2.tgz",
"integrity": "sha512-R+qrjx4daChcuILXMdj3v81iv37WdH2UzeyPhc31pmMY4G3NbOkHE5qmv+2DVB11uPTabjQhFHu2qEuQ+yVHBA==",
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@api-components/amf-helper-mixin": "^4.2.0",
"@api-components/api-example-generator": "^4.4.5",
"lit-element": "^2.4.0"
}
},
"@api-components/raml-aware": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@api-components/raml-aware/-/raml-aware-3.0.0.tgz",
"integrity": "sha512-lWIjd8Wq6tYJmF8ZXyUgQdGq+vhXP7pKY/QcPQdKOn2IXb4/gqTglebtXnxjME41+uKSPQoMSKTEVT/PwX93qQ=="
},
"@open-wc/dedupe-mixin": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@open-wc/dedupe-mixin/-/dedupe-mixin-1.3.0.tgz",
"integrity": "sha512-UfdK1MPnR6T7f3svzzYBfu3qBkkZ/KsPhcpc3JYhsUY4hbpwNF9wEQtD4Z+/mRqMTJrKg++YSxIxE0FBhY3RIw=="
},
"@polymer/font-roboto": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@polymer/font-roboto/-/font-roboto-3.0.2.tgz",
"integrity": "sha512-tx5TauYSmzsIvmSqepUPDYbs4/Ejz2XbZ1IkD7JEGqkdNUJlh+9KU85G56Tfdk/xjEZ8zorFfN09OSwiMrIQWA=="
},
"@polymer/iron-a11y-announcer": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@polymer/iron-a11y-announcer/-/iron-a11y-announcer-3.1.0.tgz",
"integrity": "sha512-lc5i4NKB8kSQHH0Hwu8WS3ym93m+J69OHJWSSBxwd17FI+h2wmgxDzeG9LI4ojMMck17/uc2pLe7g/UHt5/K/A==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-a11y-keys-behavior": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-a11y-keys-behavior/-/iron-a11y-keys-behavior-3.0.1.tgz",
"integrity": "sha512-lnrjKq3ysbBPT/74l0Fj0U9H9C35Tpw2C/tpJ8a+5g8Y3YJs1WSZYnEl1yOkw6sEyaxOq/1DkzH0+60gGu5/PQ==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-ajax": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-ajax/-/iron-ajax-3.0.1.tgz",
"integrity": "sha512-7+TPEAfWsRdhj1Y8UeF1759ktpVu+c3sG16rJiUC3wF9+woQ9xI1zUm2d59i7Yc3aDEJrR/Q8Y262KlOvyGVNg==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-collapse": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-collapse/-/iron-collapse-3.0.1.tgz",
"integrity": "sha512-yg6q5ZyckQR9VL9VmLrSTkSFXWy9AcJC8KtnD5cg0EHRPbakE8I9S/gVAgeP4nMWV2a/BjLLC4IBygcCMDhAGw==",
"requires": {
"@polymer/iron-resizable-behavior": "^3.0.0-pre.26",
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-fit-behavior": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@polymer/iron-fit-behavior/-/iron-fit-behavior-3.0.2.tgz",
"integrity": "sha512-JndryJYbBR3gSN5IlST4rCHsd01+OyvYpRO6z5Zd3C6u5V/m07TwAtcf3aXwZ8WBNt2eLG28OcvdSO7XR2v2pg==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-flex-layout": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-flex-layout/-/iron-flex-layout-3.0.1.tgz",
"integrity": "sha512-7gB869czArF+HZcPTVSgvA7tXYFze9EKckvM95NB7SqYF+NnsQyhoXgKnpFwGyo95lUjUW9TFDLUwDXnCYFtkw==",
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-form": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-form/-/iron-form-3.0.1.tgz",
"integrity": "sha512-JwSQXHjYALsytCeBkXlY8aRwqgZuYIqzOk3iHuugb1RXOdZ7MZHyJhMDVBbscHjxqPKu/KaVzAjrcfwNNafzEA==",
"requires": {
"@polymer/iron-ajax": "^3.0.0-pre.26",
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/iron-icon": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-icon/-/iron-icon-3.0.1.tgz",
"integrity": "sha512-QLPwirk+UPZNaLnMew9VludXA4CWUCenRewgEcGYwdzVgDPCDbXxy6vRJjmweZobMQv/oVLppT2JZtJFnPxX6g==",
"requires": {
"@polymer/iron-flex-layout": "^3.0.0-pre.26",