forked from adobecom/milo-fg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
20246 lines (20246 loc) · 775 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": "milofg",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "milofg",
"version": "0.0.1",
"dependencies": {
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-files": "^3.0.1",
"@adobe/aio-lib-state": "^2.1.2",
"@adobe/aio-sdk": "^3.0.0",
"@adobe/exc-app": "^0.2.17",
"@azure/msal-node": "^1.17.2",
"cloudevents": "^4.0.2",
"node-fetch": "^2.6.0",
"openwhisk": "^3.21.7",
"regenerator-runtime": "^0.13.5",
"uuid": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@openwhisk/wskdebug": "^1.3.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.2.4"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@adobe/aio-lib-analytics": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-analytics/-/aio-lib-analytics-2.1.1.tgz",
"integrity": "sha512-pi5CzVq0o5d+q5B905Ruvfy+jVWiWtA1Os8QsM3LMLE2gBA5yTcQ+M+0KZw8Woj6e2ihcXJg+e1iOYxwbE5Jvw==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"swagger-client": "3.10.13"
}
},
"node_modules/@adobe/aio-lib-analytics/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-audience-manager-cd": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-audience-manager-cd/-/aio-lib-audience-manager-cd-1.0.3.tgz",
"integrity": "sha512-xgtVgZWlLAW0OVPtgKA/lrHlydgRMt83gQPhhs9tyziXEndL5iNtwaEzSGJa14X9JJIxhcIyU8IFvJ51PYhguA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"cross-fetch": "^3.0.4",
"fetch-mock": "^9.3.1",
"swagger-client": "3.10.13"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-lib-audience-manager-cd/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-campaign-standard": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-campaign-standard/-/aio-lib-campaign-standard-2.1.5.tgz",
"integrity": "sha512-JahUsuD45kJJVKWbO7SogKRdEEKG1xJjuAC4/mJQ7Pcdnwe0NdwwBeiU4phAab36ZJECJtsXN5jgfQPyqHJaRQ==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"node-fetch": "^2.6.1",
"swagger-client": "3.13.5"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/buffer": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.2.1"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/fast-json-patch": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz",
"integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ=="
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/swagger-client": {
"version": "3.13.5",
"resolved": "https://registry.npmjs.org/swagger-client/-/swagger-client-3.13.5.tgz",
"integrity": "sha512-n4+yS0+jvx7PNq95TulWhjN+v9Cz6GRkdloF3LL0JV2eQ8E8a3a+0/XEppsYGIzb7i2/h7ZMcM5hIxIr7Gr1RA==",
"dependencies": {
"@babel/runtime-corejs3": "^7.11.2",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"cookie": "~0.4.1",
"cross-fetch": "^3.0.6",
"deep-extend": "~0.6.0",
"fast-json-patch": "^3.0.0-1",
"isomorphic-form-data": "~2.0.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"qs": "^6.9.4",
"querystring-browser": "^1.0.4",
"traverse": "~0.6.6",
"url": "~0.11.0"
}
},
"node_modules/@adobe/aio-lib-core-config": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-config/-/aio-lib-core-config-3.1.0.tgz",
"integrity": "sha512-8uCZM3hIGh7kOtanTsJlg+aEfd1KX3GPf7ofqLSCnVYDnJQA4lSDnJM6dRsGaU+vKhHf4SFdiT9IuQ+xZlbyDA==",
"dependencies": {
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "8.2.0",
"hjson": "^3.1.2",
"js-yaml": "^3.13.0"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-core-errors": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-errors/-/aio-lib-core-errors-3.1.1.tgz",
"integrity": "sha512-xH0BVALN5DxtsLt1PI1Y9IMEd+APpD+VV7GyFoMmWBdS1daNA1Ciy+ASTB6nykQ1bfzllpDY97Q6+OClI8Y0LA=="
},
"node_modules/@adobe/aio-lib-core-logging": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-2.0.1.tgz",
"integrity": "sha512-1K8S9aQc+lmixRLP/7OvBjtmOk0PfoOsS5gBnIG0Lxb10QRnHAOGtmOj1gQzYMuhawfDF15686avsdFZC5k+KA==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-core-networking": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-networking/-/aio-lib-core-networking-3.0.0.tgz",
"integrity": "sha512-+wn6Mha6htY1aAYMY6BRkOkvWa46tpfXWb1+zhf+HjmiXGYDsxSwdBmdckYTsP3qZ2K5iC80piblPhWopaU8vw==",
"dependencies": {
"@adobe/aio-lib-core-config": "^3.0.0",
"@adobe/aio-lib-core-errors": "^3.1.0",
"@adobe/aio-lib-core-logging": "^2.0.0",
"fetch-retry": "^3.0.1",
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "2.2.4",
"node-fetch": "^2.6.4",
"proxy-from-env": "^1.1.0"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-core-tvm": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-tvm/-/aio-lib-core-tvm-3.0.1.tgz",
"integrity": "sha512-ysbXCJash1wwajMwDOuMUci4kFVPm0/dxqUpJMe6Wcf6LkzJralUOJoWlcmoHFO7ACZbFpHnEy5W2td5Fh0r7g==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.1.0",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-networking": "^3.0.0",
"@adobe/aio-lib-env": "^2.0.0",
"fs-extra": "^9.0.0",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.0",
"upath": "^1.2.0"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-customer-profile": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-customer-profile/-/aio-lib-customer-profile-1.0.5.tgz",
"integrity": "sha512-RAWBPgh8kSQKukWHyLaIWDaVF7R3xZQA80Lb1RVpSsROPmylh2GLvaoVB9odc45wGAYTdlXqvpUQuJatMASgOw==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"change-case": "^4.1.1",
"swagger-client": "3.13.5",
"uuid": "^8.0.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-lib-customer-profile/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-customer-profile/node_modules/buffer": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.2.1"
}
},
"node_modules/@adobe/aio-lib-customer-profile/node_modules/fast-json-patch": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz",
"integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ=="
},
"node_modules/@adobe/aio-lib-customer-profile/node_modules/swagger-client": {
"version": "3.13.5",
"resolved": "https://registry.npmjs.org/swagger-client/-/swagger-client-3.13.5.tgz",
"integrity": "sha512-n4+yS0+jvx7PNq95TulWhjN+v9Cz6GRkdloF3LL0JV2eQ8E8a3a+0/XEppsYGIzb7i2/h7ZMcM5hIxIr7Gr1RA==",
"dependencies": {
"@babel/runtime-corejs3": "^7.11.2",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"cookie": "~0.4.1",
"cross-fetch": "^3.0.6",
"deep-extend": "~0.6.0",
"fast-json-patch": "^3.0.0-1",
"isomorphic-form-data": "~2.0.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"qs": "^6.9.4",
"querystring-browser": "^1.0.4",
"traverse": "~0.6.6",
"url": "~0.11.0"
}
},
"node_modules/@adobe/aio-lib-env": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-env/-/aio-lib-env-2.0.0.tgz",
"integrity": "sha512-ZY2UupgFhq7ijvoLz0p+RWEDGypRyVcAyrOibcxZXwQ0wEncabygJbL5q1qnPpVEV+cxeVJ7kqbaVJCZ5AzW7w==",
"dependencies": {
"@adobe/aio-lib-core-config": "^3.0.0",
"@adobe/aio-lib-core-logging": "^2.0.0"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-events": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-events/-/aio-lib-events-1.1.5.tgz",
"integrity": "sha512-pdtBnNj1WxRuFvHwkmMo9zxRAR5RAkPu8vRNL/P/VSVtp5h7EGrtYcGauIJsXF+v/ARYfR8Y1rMF+dmAqeHYTg==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-networking": "^1.0.0",
"@adobe/aio-lib-state": "^1.1.2",
"cross-fetch": "^3.0.4",
"crypto-js": "^4.0.0",
"http-link-header": "^1.0.2",
"node-fetch": "^2.6.0",
"rxjs": "^6.5.4",
"valid-url": "^1.0.9"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-core-config": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-config/-/aio-lib-core-config-2.0.1.tgz",
"integrity": "sha512-wr2S2c5vAytYO7A8SgYJxuLHHTghntnOok0CShrI04gisXcurJq/nteonFq7kDBVhLnMKFfkUyenLA1GBw2DUw==",
"dependencies": {
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "8.2.0",
"hjson": "^3.1.2",
"js-yaml": "^3.13.0"
},
"engines": {
"node": ">=10.0"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-core-networking": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-networking/-/aio-lib-core-networking-1.0.1.tgz",
"integrity": "sha512-PMpVeSIJ0rrkoftiJ9qOWPFWaUNYiu/0VRnudaxJtvY4qjhAQ7SZftG6+fM7CS0U5HuqNOxRRN2XXocVBGBO9A==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "1.1.0",
"fetch-retry": "^3.0.1",
"node-fetch": "^2.6.0"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-core-networking/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.1.0.tgz",
"integrity": "sha512-HPokpnbYlVHmblDxUmLL4VdUyB2S/c6kelDTl4U420d4K4spVpCHjKRxwjVv1NXy5TkeePhFU6+hGLRn4LFBuw==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-core-tvm": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-tvm/-/aio-lib-core-tvm-2.3.0.tgz",
"integrity": "sha512-0Kvosyn8fMuOsPCCi4sVQyc31O4YcjtMZn7xsRNGZBnM9G3wRNJoz6p4JB4VnNAp6TsjXkXRjIOlHzKX4sTkRA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-networking": "^1.0.0",
"@adobe/aio-lib-env": "^1.0.0",
"fs-extra": "^9.0.0",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.0",
"upath": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-env": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-env/-/aio-lib-env-1.1.0.tgz",
"integrity": "sha512-PdsFBiGSK7A76x4MriSJcyGUfFJSWDy9dKSvzPxONdw0PhjMzdq7Q6oOAlKv60QmkgUYwpMKazUiyrq+/CQ1oQ==",
"dependencies": {
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-logging": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@adobe/aio-lib-state": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-state/-/aio-lib-state-1.1.3.tgz",
"integrity": "sha512-NQbjyxS46E6Wgx0qUngFJ8y7QimeuIqM+KZeN3G/OlY+OMaVnvkpMyJ2QwnaoZBv3ASoN2Hj7wHu3cZ6eqZMEA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-tvm": "^2.0.0",
"@azure/cosmos": "3.16.4",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-lib-events/node_modules/@azure/cosmos": {
"version": "3.16.4",
"resolved": "https://registry.npmjs.org/@azure/cosmos/-/cosmos-3.16.4.tgz",
"integrity": "sha512-jRHFQmF0Q5FUEcGXNrdvO2wHwOeBCkB7PpqeyZ8Mg7LP9LH7QQrD3IhUxQqmCMpSFWebdviH8aRXlm2lKyspzQ==",
"dependencies": {
"@azure/core-auth": "^1.3.0",
"@azure/core-rest-pipeline": "^1.2.0",
"@azure/core-tracing": "^1.0.0",
"debug": "^4.1.1",
"fast-json-stable-stringify": "^2.1.0",
"jsbi": "^3.1.3",
"node-abort-controller": "^3.0.0",
"priorityqueuejs": "^1.0.0",
"semaphore": "^1.0.5",
"tslib": "^2.2.0",
"universal-user-agent": "^6.0.0",
"uuid": "^8.3.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@adobe/aio-lib-files": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-files/-/aio-lib-files-3.0.1.tgz",
"integrity": "sha512-TOLQTC4moD1HSjv51zY3NYxYU9HmTSs+3+kiiUS97zD7/BfjVNOYnLiqEWwrVLpFqMjTcqo0Spw5y19/9dJcJQ==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.1.0",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-tvm": "^3.0.0",
"@adobe/aio-lib-env": "^2.0.0",
"@azure/storage-blob": "^12.3.0",
"@types/hapi__joi": "^16.0.1",
"fs-extra": "^9.0.0",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.0",
"upath": "^1.2.0",
"uuid": "^8.3.1",
"xml-js": "^1.6.11"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-state": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-state/-/aio-lib-state-2.1.2.tgz",
"integrity": "sha512-E2Yg1zTcsSp/kNdyTbX/aLox5BfGJzYTNDiBDpPBCXiW6rZmpQzHdjsyBjOkU3PtqsRkmyQG43UKHiZomrAaQg==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.1.0",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-tvm": "^3.0.0",
"@azure/cosmos": "^3.17.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
},
"node_modules/@adobe/aio-lib-target": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-target/-/aio-lib-target-2.1.2.tgz",
"integrity": "sha512-YpE7YNTkHhB4jCQDGPec03HSjrvy0j/PBVjz9X8Di16kdS2ejTEtbRGUFkFiIuH8NXE5ays1KOtz7IKDojXJcA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"swagger-client": "3.13.5"
}
},
"node_modules/@adobe/aio-lib-target/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-lib-target/node_modules/buffer": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.2.1"
}
},
"node_modules/@adobe/aio-lib-target/node_modules/fast-json-patch": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-3.1.1.tgz",
"integrity": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ=="
},
"node_modules/@adobe/aio-lib-target/node_modules/swagger-client": {
"version": "3.13.5",
"resolved": "https://registry.npmjs.org/swagger-client/-/swagger-client-3.13.5.tgz",
"integrity": "sha512-n4+yS0+jvx7PNq95TulWhjN+v9Cz6GRkdloF3LL0JV2eQ8E8a3a+0/XEppsYGIzb7i2/h7ZMcM5hIxIr7Gr1RA==",
"dependencies": {
"@babel/runtime-corejs3": "^7.11.2",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"cookie": "~0.4.1",
"cross-fetch": "^3.0.6",
"deep-extend": "~0.6.0",
"fast-json-patch": "^3.0.0-1",
"isomorphic-form-data": "~2.0.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"qs": "^6.9.4",
"querystring-browser": "^1.0.4",
"traverse": "~0.6.6",
"url": "~0.11.0"
}
},
"node_modules/@adobe/aio-sdk": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-sdk/-/aio-sdk-3.0.0.tgz",
"integrity": "sha512-AKNMvFXPuJilKchrm+SoIGE1Vp0iRYcqaGVEX5GoDzrbeVGPWzNrRIIHwe6ZkObQ1xHTibU7Yt99vDrIZOU83A==",
"dependencies": {
"@adobe/aio-lib-analytics": "^2.0.0",
"@adobe/aio-lib-audience-manager-cd": "^1.0.1",
"@adobe/aio-lib-campaign-standard": "^2.1.1",
"@adobe/aio-lib-customer-profile": "^1.0.2",
"@adobe/aio-lib-events": "^1.0.0",
"@adobe/aio-lib-files": "^2.0.0",
"@adobe/aio-lib-state": "^1.0.3",
"@adobe/aio-lib-target": "^2.0.2",
"@adobe/aio-sdk-core": "^1.1.0"
}
},
"node_modules/@adobe/aio-sdk-core": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-sdk-core/-/aio-sdk-core-1.4.0.tgz",
"integrity": "sha512-QiDZZreh38dynMbyado3OEJltpRRd9kUtgsvdlwhsKbpNBzNSsgccLXwXekR3Pl15Qg9JXXhlimc6lIOZ3/wOA==",
"dependencies": {
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-errors": "^3.0.1",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-networking": "^1.0.1",
"@adobe/aio-lib-core-tvm": "^2.0.0"
}
},
"node_modules/@adobe/aio-sdk-core/node_modules/@adobe/aio-lib-core-config": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-config/-/aio-lib-core-config-2.0.1.tgz",
"integrity": "sha512-wr2S2c5vAytYO7A8SgYJxuLHHTghntnOok0CShrI04gisXcurJq/nteonFq7kDBVhLnMKFfkUyenLA1GBw2DUw==",
"dependencies": {
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "8.2.0",
"hjson": "^3.1.2",
"js-yaml": "^3.13.0"
},
"engines": {
"node": ">=10.0"
}
},
"node_modules/@adobe/aio-sdk-core/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-sdk-core/node_modules/@adobe/aio-lib-core-networking": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-networking/-/aio-lib-core-networking-1.0.1.tgz",
"integrity": "sha512-PMpVeSIJ0rrkoftiJ9qOWPFWaUNYiu/0VRnudaxJtvY4qjhAQ7SZftG6+fM7CS0U5HuqNOxRRN2XXocVBGBO9A==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "1.1.0",
"fetch-retry": "^3.0.1",
"node-fetch": "^2.6.0"
}
},
"node_modules/@adobe/aio-sdk-core/node_modules/@adobe/aio-lib-core-networking/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.1.0.tgz",
"integrity": "sha512-HPokpnbYlVHmblDxUmLL4VdUyB2S/c6kelDTl4U420d4K4spVpCHjKRxwjVv1NXy5TkeePhFU6+hGLRn4LFBuw==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-sdk-core/node_modules/@adobe/aio-lib-core-tvm": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-tvm/-/aio-lib-core-tvm-2.3.0.tgz",
"integrity": "sha512-0Kvosyn8fMuOsPCCi4sVQyc31O4YcjtMZn7xsRNGZBnM9G3wRNJoz6p4JB4VnNAp6TsjXkXRjIOlHzKX4sTkRA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-networking": "^1.0.0",
"@adobe/aio-lib-env": "^1.0.0",
"fs-extra": "^9.0.0",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.0",
"upath": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-sdk-core/node_modules/@adobe/aio-lib-env": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-env/-/aio-lib-env-1.1.0.tgz",
"integrity": "sha512-PdsFBiGSK7A76x4MriSJcyGUfFJSWDy9dKSvzPxONdw0PhjMzdq7Q6oOAlKv60QmkgUYwpMKazUiyrq+/CQ1oQ==",
"dependencies": {
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-logging": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-core-config": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-config/-/aio-lib-core-config-2.0.1.tgz",
"integrity": "sha512-wr2S2c5vAytYO7A8SgYJxuLHHTghntnOok0CShrI04gisXcurJq/nteonFq7kDBVhLnMKFfkUyenLA1GBw2DUw==",
"dependencies": {
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "8.2.0",
"hjson": "^3.1.2",
"js-yaml": "^3.13.0"
},
"engines": {
"node": ">=10.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.2.0.tgz",
"integrity": "sha512-+9B6GBspO1SYaaeqjIr7b0uwuwKuOl1J7zOHab431hz9yrOFODvYsFPTQPmCtKiLCkn7KOn8TAhASLXUn5RY6g==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-core-networking": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-networking/-/aio-lib-core-networking-1.0.1.tgz",
"integrity": "sha512-PMpVeSIJ0rrkoftiJ9qOWPFWaUNYiu/0VRnudaxJtvY4qjhAQ7SZftG6+fM7CS0U5HuqNOxRRN2XXocVBGBO9A==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "1.1.0",
"fetch-retry": "^3.0.1",
"node-fetch": "^2.6.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-core-networking/node_modules/@adobe/aio-lib-core-logging": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-1.1.0.tgz",
"integrity": "sha512-HPokpnbYlVHmblDxUmLL4VdUyB2S/c6kelDTl4U420d4K4spVpCHjKRxwjVv1NXy5TkeePhFU6+hGLRn4LFBuw==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-core-tvm": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-tvm/-/aio-lib-core-tvm-2.3.0.tgz",
"integrity": "sha512-0Kvosyn8fMuOsPCCi4sVQyc31O4YcjtMZn7xsRNGZBnM9G3wRNJoz6p4JB4VnNAp6TsjXkXRjIOlHzKX4sTkRA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-networking": "^1.0.0",
"@adobe/aio-lib-env": "^1.0.0",
"fs-extra": "^9.0.0",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.0",
"upath": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-env": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-env/-/aio-lib-env-1.1.0.tgz",
"integrity": "sha512-PdsFBiGSK7A76x4MriSJcyGUfFJSWDy9dKSvzPxONdw0PhjMzdq7Q6oOAlKv60QmkgUYwpMKazUiyrq+/CQ1oQ==",
"dependencies": {
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-logging": "^1.2.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-files": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-files/-/aio-lib-files-2.2.1.tgz",
"integrity": "sha512-wZiIpeyWwqJSrT1ACJJBPbBRb9a8Ze7Hhyou3W0CEffEtzWYwMNT1Bk7Q/ga0ypDIKkCr0xU/0SPsGV9Vdnjrg==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-tvm": "^2.2.1",
"@adobe/aio-lib-env": "^1.1.0",
"@azure/storage-blob": "^12.3.0",
"@types/hapi__joi": "^16.0.1",
"fs-extra": "^9.0.0",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.0",
"upath": "^1.2.0",
"uuid": "^8.3.1",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@adobe/aio-lib-state": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-state/-/aio-lib-state-1.1.3.tgz",
"integrity": "sha512-NQbjyxS46E6Wgx0qUngFJ8y7QimeuIqM+KZeN3G/OlY+OMaVnvkpMyJ2QwnaoZBv3ASoN2Hj7wHu3cZ6eqZMEA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"@adobe/aio-lib-core-tvm": "^2.0.0",
"@azure/cosmos": "3.16.4",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@adobe/aio-sdk/node_modules/@azure/cosmos": {
"version": "3.16.4",
"resolved": "https://registry.npmjs.org/@azure/cosmos/-/cosmos-3.16.4.tgz",
"integrity": "sha512-jRHFQmF0Q5FUEcGXNrdvO2wHwOeBCkB7PpqeyZ8Mg7LP9LH7QQrD3IhUxQqmCMpSFWebdviH8aRXlm2lKyspzQ==",
"dependencies": {
"@azure/core-auth": "^1.3.0",
"@azure/core-rest-pipeline": "^1.2.0",
"@azure/core-tracing": "^1.0.0",
"debug": "^4.1.1",
"fast-json-stable-stringify": "^2.1.0",
"jsbi": "^3.1.3",
"node-abort-controller": "^3.0.0",
"priorityqueuejs": "^1.0.0",
"semaphore": "^1.0.5",
"tslib": "^2.2.0",
"universal-user-agent": "^6.0.0",
"uuid": "^8.3.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@adobe/exc-app": {
"version": "0.2.47",
"resolved": "https://registry.npmjs.org/@adobe/exc-app/-/exc-app-0.2.47.tgz",
"integrity": "sha512-r3N/L9L6btNWeArPi+VVGjUf+RC7ZdU64d4mkUE5Nb7ZJDwsNmazpt3bU/44Ka8ex/uLjIaJ6dy96MG9kgVkZQ==",
"dependencies": {
"@apollo/client": "3.4.16",
"graphql": "^15.0.0",
"graphql-tag": "2.12.5"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
"integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@apollo/client": {
"version": "3.4.16",
"resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.4.16.tgz",
"integrity": "sha512-iF4zEYwvebkri0BZQyv8zfavPfVEafsK0wkOofa6eC2yZu50J18uTutKtC174rjHZ2eyxZ8tV7NvAPKRT+OtZw==",
"dependencies": {
"@graphql-typed-document-node/core": "^3.0.0",
"@wry/context": "^0.6.0",
"@wry/equality": "^0.5.0",
"@wry/trie": "^0.3.0",
"graphql-tag": "^2.12.3",
"hoist-non-react-statics": "^3.3.2",
"optimism": "^0.16.1",
"prop-types": "^15.7.2",
"symbol-observable": "^4.0.0",
"ts-invariant": "^0.9.0",
"tslib": "^2.3.0",
"zen-observable-ts": "~1.1.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0",
"react": "^16.8.0 || ^17.0.0",
"subscriptions-transport-ws": "^0.9.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"subscriptions-transport-ws": {
"optional": true
}
}
},
"node_modules/@azure/abort-controller": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.1.0.tgz",
"integrity": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==",
"dependencies": {
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@azure/core-auth": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.4.0.tgz",
"integrity": "sha512-HFrcTgmuSuukRf/EdPmqBrc5l6Q5Uu+2TbuhaKbgaCpP2TfAeiNaQPAadxO+CYBRHGUzIDteMAjFspFLDLnKVQ==",
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@azure/core-http": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-3.0.2.tgz",
"integrity": "sha512-o1wR9JrmoM0xEAa0Ue7Sp8j+uJvmqYaGoHOCT5qaVYmvgmnZDC0OvQimPA/JR3u77Sz6D1y3Xmk1y69cDU9q9A==",
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-auth": "^1.3.0",
"@azure/core-tracing": "1.0.0-preview.13",
"@azure/core-util": "^1.1.1",
"@azure/logger": "^1.0.0",
"@types/node-fetch": "^2.5.0",
"@types/tunnel": "^0.0.3",
"form-data": "^4.0.0",
"node-fetch": "^2.6.7",
"process": "^0.11.10",
"tslib": "^2.2.0",
"tunnel": "^0.0.6",
"uuid": "^8.3.0",
"xml2js": "^0.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@azure/core-http/node_modules/@azure/core-tracing": {
"version": "1.0.0-preview.13",
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.13.tgz",
"integrity": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==",
"dependencies": {
"@opentelemetry/api": "^1.0.1",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@azure/core-lro": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.5.3.tgz",
"integrity": "sha512-ubkOf2YCnVtq7KqEJQqAI8dDD5rH1M6OP5kW0KO/JQyTaxLA0N0pjFWvvaysCj9eHMNBcuuoZXhhl0ypjod2DA==",
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-util": "^1.2.0",
"@azure/logger": "^1.0.0",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@azure/core-paging": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.5.0.tgz",
"integrity": "sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==",
"dependencies": {
"tslib": "^2.2.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@azure/core-rest-pipeline": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.11.0.tgz",
"integrity": "sha512-nB4KXl6qAyJmBVLWA7SakT4tzpYZTCk4pvRBeI+Ye0WYSOrlTqlMhc4MSS/8atD3ufeYWdkN380LLoXlUUzThw==",
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-auth": "^1.4.0",
"@azure/core-tracing": "^1.0.1",
"@azure/core-util": "^1.3.0",
"@azure/logger": "^1.0.0",
"form-data": "^4.0.0",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@azure/core-rest-pipeline/node_modules/@tootallnate/once": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
"integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==",
"engines": {
"node": ">= 10"
}
},
"node_modules/@azure/core-rest-pipeline/node_modules/http-proxy-agent": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz",
"integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==",
"dependencies": {
"@tootallnate/once": "2",
"agent-base": "6",
"debug": "4"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/@azure/core-rest-pipeline/node_modules/https-proxy-agent": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
"dependencies": {
"agent-base": "6",
"debug": "4"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/@azure/core-tracing": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.1.tgz",
"integrity": "sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==",
"dependencies": {
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@azure/core-util": {
"version": "1.3.2",