-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
9596 lines (9596 loc) · 354 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": "EDSAssetTracker",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "EDSAssetTracker",
"version": "0.0.1",
"dependencies": {
"@adobe/aio-sdk": "^5",
"@adobe/exc-app": "^1.3.0",
"cloudevents": "^4.0.2",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.5",
"uuid": "^8.0.0"
},
"devDependencies": {
"@openwhisk/wskdebug": "^1.3.0",
"eslint": "^8",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-analytics": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-analytics/-/aio-lib-analytics-4.0.1.tgz",
"integrity": "sha512-cIANwhP5sbFjPVDuk13ixCje2065ejcmjfKHR/YYofN79zoOY9JOaf/p3bWgrPD3o8AlO4CKCCdgbTPUI4AypA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"swagger-client": "^3.19.10"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-campaign-standard": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-campaign-standard/-/aio-lib-campaign-standard-4.0.1.tgz",
"integrity": "sha512-UrZVOtQtANdcJoOl5BGihNl/YjcpIsj8uXk+/Wd/wdHvO1pF3DSPH2BKo2c0syfq2A9rTF5mRr8CTvBUZzFrBQ==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"swagger-client": "3.20.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ast": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ast/-/apidom-ast-0.99.2.tgz",
"integrity": "sha512-poNlXWAU2XBl192+lo5sC6loB3qGvwK30V1pta6Hs200KeTayVsMMRL4R6wDDYEtsbv7M3vQaFKcRGbYUk/SgA==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"unraw": "^3.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-core": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-core/-/apidom-core-0.99.2.tgz",
"integrity": "sha512-deudG9eCxqgPnZyIcZzpmDxF0cja0hdPFS2hB0Op6aB4TKc9mOP1+1iEIDI3Tlx/nzgIayyAl1bblyhK3yH5fQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"minim": "~0.23.8",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"short-unique-id": "^5.0.2",
"stampit": "^4.3.2"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-error": {
"version": "0.99.0",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-error/-/apidom-error-0.99.0.tgz",
"integrity": "sha512-ZdFdn+GeIo23X2GKFrfH4Y5KY8yTzVF1l/Mqjs8+nD30LTbYg6f3ITHn429dk8fDT3NT69fG+gGm60FAFaKkeQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-json-pointer": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-json-pointer/-/apidom-json-pointer-0.99.2.tgz",
"integrity": "sha512-bZENmE3H2si1yP38VLUAdhoMWNxkh98+/dCOESaw3R5zXHG04di3ShbYsCG0StkigF+eCfCdaj6XoikQOGSkiA==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-api-design-systems": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-api-design-systems/-/apidom-ns-api-design-systems-0.99.2.tgz",
"integrity": "sha512-854ioZ/FB5DNiJcMinD9/a6dj6h/poOsKcb4POhPTzMSM0fHLIQUp//Ufhx7qL6qsepwtLapkgZ3/hAYN7lnBg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-asyncapi-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-asyncapi-2/-/apidom-ns-asyncapi-2-0.99.2.tgz",
"integrity": "sha512-HF38kCszKYQqhQ6VMEMqd5r7gPGBRpHwPcoYaRJSDeOST/qLLG78xpoCJKQEyL3PQprea0gXKz1LG1uslDHgtQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-json-schema-draft-7": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-json-schema-draft-4": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-json-schema-draft-4/-/apidom-ns-json-schema-draft-4-0.99.2.tgz",
"integrity": "sha512-vgCRaqDLI/SmTECZeKO47RGFFx6MCpOcbSm60sV0/ZJxeK+TgkNjIRJTyuRQNts44K863CWgY+bwzzn1zhNqUg==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.4"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-json-schema-draft-6": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-json-schema-draft-6/-/apidom-ns-json-schema-draft-6-0.99.2.tgz",
"integrity": "sha512-ayKGsd65a6p/k4s5L2el+vMoMi8kc/bLXVszWszFDET1eZNvhKwEMLylGzKMfnwAFgpj+kJOKn4MZsD6PK6U/A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.4"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-json-schema-draft-7": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-json-schema-draft-7/-/apidom-ns-json-schema-draft-7-0.99.2.tgz",
"integrity": "sha512-Rn2YeQKxj6hSijQAzGRRxMYDRIedqHjE69z9xigVbvm+iDXxLJIwasuzFa7BIMRDZF5eAJkBPHXTiU9cXVsl6w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-6": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.4"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-openapi-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-openapi-2/-/apidom-ns-openapi-2-0.99.2.tgz",
"integrity": "sha512-4YlBvMkxSJIWrOQmsHiVuQ2VkbcWgUnOm7uiRq+8d88ur9mKI5XbP5iUvxCASuONmCqlaSU2+qoM1qesy73XPw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-openapi-3-0": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-openapi-3-0/-/apidom-ns-openapi-3-0-0.99.2.tgz",
"integrity": "sha512-fcT597Ty3kqTkoBr1jeZ3Lfbu0a+CKd1l2ojY6RBF/5+dWNux+CRZ9qosax2XZbN+nJhSdvGLLvGvuKaV3Ybug==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-openapi-3-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-openapi-3-1/-/apidom-ns-openapi-3-1-0.99.2.tgz",
"integrity": "sha512-ubO8vi1dYpIV2a3IKhTkBCf125udoCeUZIc9wrhOFwwHHIKeInGR5L6yxlNhOQm0/doYCth77vEqcuTBpxaIrw==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-workflows-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-workflows-1/-/apidom-ns-workflows-1-0.99.2.tgz",
"integrity": "sha512-lm8G7cbCRXukN4UOb/bPszUiSbvN1ymvwQ2PEkyZN+DzJvYfgRuAxXt7xd2EDKJcxeH4igpAnkKoIoBoSOHg+w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-api-design-systems-json": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-api-design-systems-json/-/apidom-parser-adapter-api-design-systems-json-0.99.2.tgz",
"integrity": "sha512-7WPbiUJEWggVmxsssFfW/8JGk8Yu4C9ELneh805kMsgl/DOm6hcHxqT5gXXSwamH0ZQlTmSnHl2OZSlG+U5KKQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-api-design-systems": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-api-design-systems-yaml": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-api-design-systems-yaml/-/apidom-parser-adapter-api-design-systems-yaml-0.99.2.tgz",
"integrity": "sha512-ezOA1fjBAQPQ5X0DGYnuFyZMBSBCsaT6k9KDRr7B37Do9yj8YKa/lTlg5usXOrcLm4VgcyJGTKhAJi9kfzCKcA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-api-design-systems": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-asyncapi-json-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-asyncapi-json-2/-/apidom-parser-adapter-asyncapi-json-2-0.99.2.tgz",
"integrity": "sha512-b1ncaIc4dD0FGqty3iRCDUA/uHdd7nH271C06blQ+S9Id4D/xXxzd84z8LeNIJNLhCcnueuMKgUkGzvXP+raAA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-asyncapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-asyncapi-yaml-2/-/apidom-parser-adapter-asyncapi-yaml-2-0.99.2.tgz",
"integrity": "sha512-NuwuwdORyZPhEpxwyEgslyGfVnwIuyDvF5TDT0cLCMOIFDqbE/n77c4FAh/nQUARDEXRthiDb5pdMo/+rOxjFg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-asyncapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-json": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-json/-/apidom-parser-adapter-json-0.99.2.tgz",
"integrity": "sha512-wy2WF71bLX1wEJkgmPRCEnXicV155KCelPQhCtzAGGo/B3+OuhknovBWXZNStvoJqZ/2A4a5pvYrgHoVoIKchg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"tree-sitter": "=0.20.4",
"tree-sitter-json": "=0.20.2",
"web-tree-sitter": "=0.20.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-json-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-json-2/-/apidom-parser-adapter-openapi-json-2-0.99.2.tgz",
"integrity": "sha512-z+ATszNWaO2JlixM9h4QpTAW2fE5nPCY4IDcScuWbch8gtKBmv61+53nahYb7tc3W/X0mMqhc1LyTCy5QC2L/w==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-json-3-0": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-json-3-0/-/apidom-parser-adapter-openapi-json-3-0-0.99.2.tgz",
"integrity": "sha512-78PFDsF67tWDjPCGAD9cNHage8p5Vs2+zili1AF2zch3JkJA/KxBt+5va4A8w1fYaUaXi8LnMkM8VvEIAsNaOw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-json-3-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-json-3-1/-/apidom-parser-adapter-openapi-json-3-1-0.99.2.tgz",
"integrity": "sha512-WQmm14C0EH0dcMzvgrGPeLkWKXyFwyunK9rrRt7xRLn8sL1Em0dC31hiVdgypo3DLrz9YW3PStpSQjEedJaWUQ==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-yaml-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-yaml-2/-/apidom-parser-adapter-openapi-yaml-2-0.99.2.tgz",
"integrity": "sha512-rEoE54T8KKRxtdxXgvaYba+GX8853mwcw5nzdrrvOy2tNKqsJANPeJcrQmjVYqJX7SU0HuZPK3zBvyqMyKoNsg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-yaml-3-0/-/apidom-parser-adapter-openapi-yaml-3-0-0.99.2.tgz",
"integrity": "sha512-l7ve45cfAj+imE8flypjdo49zpfp0m29stpOO/q2fCD5/46wT3Z4Ve3aKhil8/TRFEX26VOKoYVNjpeUWzUMaw==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-yaml-3-1/-/apidom-parser-adapter-openapi-yaml-3-1-0.99.2.tgz",
"integrity": "sha512-1ab06o/M6MAJ0Js4C1bifpj/R0T0mw26Qk4dR7qKzel9dDuEkIRMQF7JHnf2pojZE+aR59Eb4iAMKmxzokHZdA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-workflows-json-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-workflows-json-1/-/apidom-parser-adapter-workflows-json-1-0.99.2.tgz",
"integrity": "sha512-VsFVmwTX/OfsXyBmIEp5Y+adqBF4Cj/cM/55KPM3mIEmKbc+PK3M08TIotMk1FdCiTafe+I28OZL+WMVujNm1A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-workflows-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-workflows-yaml-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-workflows-yaml-1/-/apidom-parser-adapter-workflows-yaml-1-0.99.2.tgz",
"integrity": "sha512-yK+48YcllFc8mY711ZJ7uTfPVZmJdujIHbvGLOMxMODmETkZlEjfoTAwNTWvutcuA6cxK70tKUD8vz5572ALQA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-workflows-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-yaml-1-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-yaml-1-2/-/apidom-parser-adapter-yaml-1-2-0.99.2.tgz",
"integrity": "sha512-eU6Rd58WzzcOYOajwp9UCURhXVO8SUCrau14W6BuF1DbJCr85FmOigy4yu2b9UWsK44ZPzH8KeyhSYwTkqkgLA==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"tree-sitter": "=0.20.4",
"tree-sitter-yaml": "=0.5.0",
"web-tree-sitter": "=0.20.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-reference": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-reference/-/apidom-reference-0.99.2.tgz",
"integrity": "sha512-QwAnCCEUbicPAVPWYOOpSI8rcj2e7TTybn1chGfdogV+NMLprGXBk/A86hO9CaSLMXkCA2rERUznSNSZWC996g==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@types/ramda": "~0.29.6",
"axios": "^1.4.0",
"minimatch": "^7.4.3",
"process": "^0.11.10",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"stampit": "^4.3.2"
},
"optionalDependencies": {
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-json-pointer": "^0.99.2",
"@swagger-api/apidom-ns-asyncapi-2": "^0.99.2",
"@swagger-api/apidom-ns-openapi-2": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@swagger-api/apidom-ns-workflows-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-api-design-systems-json": "^0.99.2",
"@swagger-api/apidom-parser-adapter-api-design-systems-yaml": "^0.99.2",
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-json-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-json-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-yaml-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-workflows-json-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-workflows-yaml-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@types/ramda": {
"version": "0.29.12",
"resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.29.12.tgz",
"integrity": "sha512-sgIEjpJhdQPB52gDF4aphs9nl0xe54CR22DPdWqT8gQHjZYmVApgA0R3/CpMbl0Y8az2TEZrPNL2zy0EvjbkLA==",
"license": "MIT",
"dependencies": {
"types-ramda": "^0.29.10"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/cookie": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
"integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
"license": "MIT",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/minimatch": {
"version": "7.4.6",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz",
"integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==",
"license": "ISC",
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/swagger-client": {
"version": "3.20.0",
"resolved": "https://registry.npmjs.org/swagger-client/-/swagger-client-3.20.0.tgz",
"integrity": "sha512-5RLge2NIE1UppIT/AjUPEceT05hcBAzjiQkrXJYjpxsbFV/UDH3pp+fsrWbAeuZtgRdhNB9KDo+szLoUpzkydQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.13",
"@swagger-api/apidom-core": ">=0.74.1 <1.0.0",
"@swagger-api/apidom-json-pointer": ">=0.74.1 <1.0.0",
"@swagger-api/apidom-ns-openapi-3-1": ">=0.74.1 <1.0.0",
"@swagger-api/apidom-reference": ">=0.74.1 <1.0.0",
"cookie": "~0.5.0",
"cross-fetch": "^3.1.5",
"deepmerge": "~4.3.0",
"fast-json-patch": "^3.0.0-1",
"form-data-encoder": "^1.4.3",
"formdata-node": "^4.0.0",
"is-plain-object": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"qs": "^6.10.2",
"traverse": "~0.6.6",
"url": "~0.11.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/types-ramda": {
"version": "0.29.10",
"resolved": "https://registry.npmjs.org/types-ramda/-/types-ramda-0.29.10.tgz",
"integrity": "sha512-5PJiW/eiTPyXXBYGZOYGezMl6qj7keBiZheRwfjJZY26QPHsNrjfJnz0mru6oeqqoTHOni893Jfd6zyUXfQRWg==",
"license": "MIT",
"dependencies": {
"ts-toolbelt": "^9.6.0"
}
},
"node_modules/@adobe/aio-lib-core-config": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-config/-/aio-lib-core-config-5.0.1.tgz",
"integrity": "sha512-OQmQublmy/uXM1HC6qXfxSAXEl85nExh/yiajlEfJheKuJ9iPWwVWXR5vBHVVDlOXgWEVMWRUQPMIUu1lmR5lA==",
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "16.3.1",
"hjson": "^3.1.2",
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-errors": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-errors/-/aio-lib-core-errors-4.0.1.tgz",
"integrity": "sha512-zrQm9TJh13wEHH5O2TQAUQvYGGe01R9DHzKy+b6B0URbl2lcuqXyNiUx896lpcgXD2bzUoH7ARRH97aCW2tlfw==",
"license": "Apache-2.0"
},
"node_modules/@adobe/aio-lib-core-logging": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-3.0.1.tgz",
"integrity": "sha512-WvhFXy5sCIBHwGNP6QS2LiGVWeFb6vxKiZ62W0ahwN5SqHqaBoimBDvTysdH9gANGLShELPPT2gb4255sElf5w==",
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-networking": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-networking/-/aio-lib-core-networking-5.0.2.tgz",
"integrity": "sha512-Jj5/feIQQm2O59Aprp+tXUYQeJ5zKJrZGQhhD4Du9ApZ5Ulz1Qq360thQg9nWMdy8yAWWbA/bY2WmOm9/uqudg==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-config": "^5.0.0",
"@adobe/aio-lib-core-errors": "^4.0.0",
"@adobe/aio-lib-core-logging": "^3.0.0",
"fetch-retry": "^5.0.4",
"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": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-tvm": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-tvm/-/aio-lib-core-tvm-4.0.2.tgz",
"integrity": "sha512-i69Wh8j8PSTH06gDN/UqTu6e7258Hs0k18Cz51aYYeeg7NIWeqzQEnys9kNp8gcV75GzQLOYfzhRgVHRcxWHLQ==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"fs-extra": "^11.1.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"upath": "^2.0.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-tvm/node_modules/upath": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz",
"integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==",
"license": "MIT",
"engines": {
"node": ">=4",
"yarn": "*"
}
},
"node_modules/@adobe/aio-lib-customer-profile": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-customer-profile/-/aio-lib-customer-profile-3.0.1.tgz",
"integrity": "sha512-OnfrzIVd9GopPvuTM7mQmBZi/FNFd9/N403r42RrQXjcQnO8juoadlvhjaQMeb9vrAPZ4VO1PxyTCWyR/t2W4g==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"change-case": "^4.1.1",
"swagger-client": "^3.19.10",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-customer-profile/node_modules/uuid": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@adobe/aio-lib-env": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-env/-/aio-lib-env-3.0.1.tgz",
"integrity": "sha512-UaLosV8jBowEA2ho4BNmWuHhrNCFbx26kJAr2SAIdEm4lZ/D8av8FUSMOEyAKJ/dfO2HCnLKMy77ie2AU7HI3g==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-config": "^5.0.0",
"@adobe/aio-lib-core-logging": "^3.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-events": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-events/-/aio-lib-events-4.0.1.tgz",
"integrity": "sha512-n6y7daoHoz79o06+kIJzHcOTbD7j9jt2YCT7njtms6Aoj8fbkiBuGBIjCx+XxXy1TJJxfwUrL5TZjbzeroHiXw==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-state": "^3",
"crypto-js": "^4.0.0",
"http-link-header": "^1.0.2",
"node-fetch": "^2.6.0",
"rxjs": "^7.8.1",
"valid-url": "^1.0.9"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-files": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-files/-/aio-lib-files-4.1.0.tgz",
"integrity": "sha512-0ct24VQltQnIMe3VEHrSVAiareSZBwjuc7QGghBjrdcIkUCw8VfnAInp8GVPxrYvZtvgNpQd2vPBNo5fld0vUg==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-tvm": "^4",
"@adobe/aio-lib-env": "^3.0.0",
"@azure/storage-blob": "^12.3.0",
"@types/hapi__joi": "^17.1.13",
"fs-extra": "^11.1.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.0",
"upath": "^1.2.0",
"uuid": "^9.0.0",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-files/node_modules/uuid": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@adobe/aio-lib-state": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-state/-/aio-lib-state-3.0.2.tgz",
"integrity": "sha512-ZwZUM5jVUmI0+8GmSwQ99pZVAa9Hii9afwje8X+4+D+SVmifi8K7hndP5LXR0W/NR67oC3ceEY6Uh+KNcgJdGQ==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-tvm": "^4",
"@azure/cosmos": "^3.17.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-target": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-target/-/aio-lib-target-4.0.1.tgz",
"integrity": "sha512-cBMXnFEx0UNrjxZqqEVbnzfaCxbs39l3QH8vAUN9+rmbuaDv8dJhjzLyUmIHBy3D2NsZCNKP6pEk277uYKLkLA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"swagger-client": "^3.19.10"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-sdk": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-sdk/-/aio-sdk-5.0.1.tgz",
"integrity": "sha512-+LvAOxIu2Incr3A5+j7AaGG0LM9AmJb/2jL9JWfgx0t3w4IHDAc0MzH9NVk3JrHIIaamnP8evCWIbyoewqLg2A==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-analytics": "^4",
"@adobe/aio-lib-campaign-standard": "^4",
"@adobe/aio-lib-customer-profile": "^3",
"@adobe/aio-lib-events": "^4",
"@adobe/aio-lib-files": "^4",
"@adobe/aio-lib-state": "^3",
"@adobe/aio-lib-target": "^4",
"@adobe/aio-sdk-core": "^3"
}
},
"node_modules/@adobe/aio-sdk-core": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-sdk-core/-/aio-sdk-core-3.0.0.tgz",
"integrity": "sha512-M1or6szOAtuNN7owyTeojQ+yyaIBKa9u0hRkl0mFmv5WnO7Edfk5uP8ZBGYhfJ9XkEZz6c2NKNvR36dqrrmDnA==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-core-tvm": "^4"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/exc-app": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@adobe/exc-app/-/exc-app-1.4.2.tgz",
"integrity": "sha512-Ae9x1W582FdjccDIrJu0m2I08CxGe/QZZVk47jQnvhKcXIFL5gdJjXXI40Ftl+KIWdkg3Ca+VuihZdn3Xu6lbg==",
"license": "CC-BY-ND-4.0",
"peerDependencies": {
"@apollo/client": "^3.8.9",
"graphql-tag": "^2.12.6"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@apollo/client": {
"version": "3.10.8",
"resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.10.8.tgz",
"integrity": "sha512-UaaFEitRrPRWV836wY2L7bd3HRCfbMie1jlYMcmazFAK23MVhz/Uq7VG1nwbotPb5xzFsw5RF4Wnp2G3dWPM3g==",
"license": "MIT",
"peer": true,
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"@wry/caches": "^1.0.0",
"@wry/equality": "^0.5.6",
"@wry/trie": "^0.5.0",
"graphql-tag": "^2.12.6",
"hoist-non-react-statics": "^3.3.2",
"optimism": "^0.18.0",
"prop-types": "^15.7.2",
"rehackt": "^0.1.0",
"response-iterator": "^0.2.6",
"symbol-observable": "^4.0.0",
"ts-invariant": "^0.10.3",
"tslib": "^2.3.0",
"zen-observable-ts": "^1.2.5"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0",
"graphql-ws": "^5.5.5",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"subscriptions-transport-ws": "^0.9.0 || ^0.11.0"
},
"peerDependenciesMeta": {
"graphql-ws": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"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==",
"license": "MIT",
"dependencies": {
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@azure/core-auth": {
"version": "1.7.2",
"resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.7.2.tgz",
"integrity": "sha512-Igm/S3fDYmnMq1uKS38Ae1/m37B3zigdlZw+kocwEhh5GjyKjPrXKO2J6rzpC1wAxrNil/jX9BJRqBshyjnF3g==",
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-util": "^1.1.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-auth/node_modules/@azure/abort-controller": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
"license": "MIT",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-client": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.2.tgz",
"integrity": "sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==",
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-auth": "^1.4.0",
"@azure/core-rest-pipeline": "^1.9.1",
"@azure/core-tracing": "^1.0.0",
"@azure/core-util": "^1.6.1",
"@azure/logger": "^1.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-client/node_modules/@azure/abort-controller": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
"license": "MIT",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-http-compat": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@azure/core-http-compat/-/core-http-compat-2.1.2.tgz",
"integrity": "sha512-5MnV1yqzZwgNLLjlizsU3QqOeQChkIXw781Fwh1xdAqJR5AA32IUaq6xv1BICJvfbHoa+JYcaij2HFkhLbNTJQ==",
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-client": "^1.3.0",
"@azure/core-rest-pipeline": "^1.3.0"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-http-compat/node_modules/@azure/abort-controller": {
"version": "2.1.2",