@salesforce/templates 66.8.0 → 66.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/templates/project/reactexternalapp/AGENT.md +3 -3
- package/lib/templates/project/reactexternalapp/CHANGELOG.md +484 -0
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +751 -343
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package.json +3 -3
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountObjectDetailPage.tsx +7 -9
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountSearch.tsx +7 -15
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/api/objectSearchService.ts +14 -19
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/NumericRangeFilter.tsx +9 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/SearchFilter.tsx +5 -3
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/TextFilter.tsx +5 -3
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useAsyncData.ts +11 -4
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/api/userProfileApi.ts +12 -11
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/authenticationConfig.ts +9 -9
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/context/AuthContext.tsx +21 -4
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/forms/auth-form.tsx +15 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/hooks/form.tsx +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layouts/privateRouteLayout.tsx +2 -11
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ChangePassword.tsx +21 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ForgotPassword.tsx +20 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Login.tsx +20 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Profile.tsx +80 -43
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Register.tsx +16 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ResetPassword.tsx +20 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/utils/helpers.ts +15 -52
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/api/graphqlClient.ts +13 -13
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/components/alerts/status-alert.tsx +11 -8
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/components/ui/input.tsx +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/hooks/useAsyncData.ts +67 -0
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +7 -9
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/pages/AccountSearch.tsx +7 -15
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/routes.tsx +19 -25
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/tsconfig.json +4 -6
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/vite-env.d.ts +0 -3
- package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleAuthUtils.cls-meta.xml +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleChangePassword.cls-meta.xml +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleForgotPassword.cls-meta.xml +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleLogin.cls-meta.xml +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleRegistration.cls-meta.xml +1 -1
- package/lib/templates/project/reactexternalapp/_p_/_m_/package.xml +1 -1
- package/lib/templates/project/reactexternalapp/package.json +1 -1
- package/lib/templates/project/reactexternalapp/scripts/org-setup.config.json +0 -1
- package/lib/templates/project/reactexternalapp/scripts/org-setup.mjs +528 -44
- package/lib/templates/project/reactexternalapp/sfdx-project.json +1 -1
- package/lib/templates/project/reactinternalapp/AGENT.md +3 -3
- package/lib/templates/project/reactinternalapp/CHANGELOG.md +484 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +759 -351
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package.json +4 -4
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/reactinternalapp.uibundle-meta.xml +1 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountObjectDetailPage.tsx +7 -9
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountSearch.tsx +7 -15
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/api/objectSearchService.ts +14 -19
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/NumericRangeFilter.tsx +9 -5
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/SearchFilter.tsx +5 -3
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/TextFilter.tsx +5 -3
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useAsyncData.ts +11 -4
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/api/graphqlClient.ts +13 -13
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/AgentforceConversationClient.tsx +40 -44
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/alerts/status-alert.tsx +11 -8
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/ui/input.tsx +1 -1
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/hooks/useAsyncData.ts +67 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +7 -9
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountSearch.tsx +7 -15
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/conversation.ts +9 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/globals.d.ts +13 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/tsconfig.json +4 -6
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/vite-env.d.ts +0 -3
- package/lib/templates/project/reactinternalapp/_p_/_m_/applications/reactinternalapp.app-meta.xml +17 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/permissionsets/reactinternalapp_Access.permissionset-meta.xml +9 -0
- package/lib/templates/project/reactinternalapp/package.json +1 -1
- package/lib/templates/project/reactinternalapp/scripts/org-setup.config.json +6 -3
- package/lib/templates/project/reactinternalapp/scripts/org-setup.mjs +528 -44
- package/lib/templates/project/reactinternalapp/sfdx-project.json +1 -1
- package/lib/templates/uiBundles/reactbasic/package-lock.json +751 -343
- package/lib/templates/uiBundles/reactbasic/package.json +3 -3
- package/lib/templates/uiBundles/reactbasic/src/api/graphqlClient.ts +13 -13
- package/lib/templates/uiBundles/reactbasic/src/components/alerts/status-alert.tsx +11 -8
- package/lib/templates/uiBundles/reactbasic/src/components/ui/input.tsx +1 -1
- package/lib/templates/uiBundles/reactbasic/src/hooks/useAsyncData.ts +67 -0
- package/lib/templates/uiBundles/reactbasic/tsconfig.json +4 -6
- package/lib/templates/uiBundles/reactbasic/vite-env.d.ts +0 -3
- package/package.json +5 -5
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useCachedAsyncData.ts +0 -188
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layout/card-skeleton.tsx +0 -38
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layouts/authenticationRouteLayout.tsx +0 -21
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useCachedAsyncData.ts +0 -188
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"name": "base-react-app",
|
|
9
9
|
"version": "1.59.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@salesforce/sdk
|
|
12
|
-
"@salesforce/ui-bundle": "^
|
|
11
|
+
"@salesforce/platform-sdk": "^10.2.2",
|
|
12
|
+
"@salesforce/ui-bundle": "^10.2.2",
|
|
13
13
|
"@tailwindcss/vite": "^4.1.17",
|
|
14
14
|
"@tanstack/react-form": "^1.27.7",
|
|
15
15
|
"class-variance-authority": "^0.7.1",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
37
37
|
"@graphql-tools/utils": "^11.0.0",
|
|
38
38
|
"@playwright/test": "^1.49.0",
|
|
39
|
-
"@salesforce/vite-plugin-ui-bundle": "^
|
|
39
|
+
"@salesforce/vite-plugin-ui-bundle": "^10.2.2",
|
|
40
40
|
"@testing-library/jest-dom": "^6.6.3",
|
|
41
41
|
"@testing-library/react": "^16.1.0",
|
|
42
42
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -591,39 +591,283 @@
|
|
|
591
591
|
"node": ">=6.9.0"
|
|
592
592
|
}
|
|
593
593
|
},
|
|
594
|
+
"node_modules/@conduit-client/command-base": {
|
|
595
|
+
"version": "3.19.6",
|
|
596
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-base/-/command-base-3.19.6.tgz",
|
|
597
|
+
"integrity": "sha512-zbjMSv4d0SEPR63/HTa4lFoJtMHUMQ810GprFFR9U3OcZZ4PCyUQeyM8DIja/IsRgH7HDDEL7DnhF5mpT5UxDA==",
|
|
598
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
599
|
+
"dependencies": {
|
|
600
|
+
"@conduit-client/utils": "3.19.6"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"node_modules/@conduit-client/command-cache-control": {
|
|
604
|
+
"version": "3.19.6",
|
|
605
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-cache-control/-/command-cache-control-3.19.6.tgz",
|
|
606
|
+
"integrity": "sha512-ReZdJa5S65sGqXWocq6PkUEodon9xaBHzdpPHrdhFADotjhJY2wYQ9/050tnQ7TVg31IkeUZNNrj4WPEdYwV7w==",
|
|
607
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
608
|
+
"dependencies": {
|
|
609
|
+
"@conduit-client/command-base": "3.19.6",
|
|
610
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
611
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
612
|
+
"@conduit-client/utils": "3.19.6"
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
"node_modules/@conduit-client/command-http-cache-control": {
|
|
616
|
+
"version": "3.19.6",
|
|
617
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-http-cache-control/-/command-http-cache-control-3.19.6.tgz",
|
|
618
|
+
"integrity": "sha512-41bjECK4JByGKpj6chojO25i1sgOnvQoklvzgW6L9BuLE5d3uzBw6JmY5srAOiaP1t0ZYHeHm+lLnuZ7R3BjRA==",
|
|
619
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
620
|
+
"dependencies": {
|
|
621
|
+
"@conduit-client/command-base": "3.19.6",
|
|
622
|
+
"@conduit-client/command-cache-control": "3.19.6",
|
|
623
|
+
"@conduit-client/service-aura-network": "3.19.6",
|
|
624
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
625
|
+
"@conduit-client/service-fetch-network": "3.19.6",
|
|
626
|
+
"@conduit-client/service-pubsub": "3.19.6",
|
|
627
|
+
"@conduit-client/utils": "3.19.6"
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"node_modules/@conduit-client/jsonschema-validate": {
|
|
631
|
+
"version": "3.19.6",
|
|
632
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/jsonschema-validate/-/jsonschema-validate-3.19.6.tgz",
|
|
633
|
+
"integrity": "sha512-XVEzbVc568gW3gu5YZh9CAVMZNjQ5hdTkR9M8ApsXX7GYhxy41Vl9F6Kkig9SFr6K0xDxAmfldvHSxkqHFebXw==",
|
|
634
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
635
|
+
"dependencies": {
|
|
636
|
+
"@conduit-client/utils": "3.19.6"
|
|
637
|
+
}
|
|
638
|
+
},
|
|
594
639
|
"node_modules/@conduit-client/jwt-manager": {
|
|
595
|
-
"version": "3.
|
|
596
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.
|
|
597
|
-
"integrity": "sha512-
|
|
640
|
+
"version": "3.19.6",
|
|
641
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.19.6.tgz",
|
|
642
|
+
"integrity": "sha512-tpkg0DtJxTdW/zac+nm8wCpSw2wavYtOfVDHfmAAtH/FF39PWjcam7ldyru1G95NR2JbvAxbLQZefC+Dt0n5kg==",
|
|
598
643
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
599
644
|
"dependencies": {
|
|
600
645
|
"jwt-decode": "~3.1.2"
|
|
601
646
|
}
|
|
602
647
|
},
|
|
648
|
+
"node_modules/@conduit-client/onestore-graphql-parser": {
|
|
649
|
+
"version": "3.19.6",
|
|
650
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/onestore-graphql-parser/-/onestore-graphql-parser-3.19.6.tgz",
|
|
651
|
+
"integrity": "sha512-zz02oNZjrxWQDAt7jN3yKurCdQTp2Jz3Cp9fhkZhJ/NNUqElcQUPK/3ruUX5MhwpjbbVU4KXvNNqwjg0We7UoA==",
|
|
652
|
+
"license": "MIT",
|
|
653
|
+
"dependencies": {
|
|
654
|
+
"@conduit-client/jsonschema-validate": "3.19.6",
|
|
655
|
+
"@conduit-client/utils": "3.19.6",
|
|
656
|
+
"graphql": "16.11.0"
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
"node_modules/@conduit-client/onestore-graphql-parser/node_modules/graphql": {
|
|
660
|
+
"version": "16.11.0",
|
|
661
|
+
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.11.0.tgz",
|
|
662
|
+
"integrity": "sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==",
|
|
663
|
+
"license": "MIT",
|
|
664
|
+
"engines": {
|
|
665
|
+
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"node_modules/@conduit-client/service-aura-network": {
|
|
669
|
+
"version": "3.19.6",
|
|
670
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-aura-network/-/service-aura-network-3.19.6.tgz",
|
|
671
|
+
"integrity": "sha512-H8+Uq0A8e9QYtYrvVfkoha7ozQP8aCTqn9vYKt1WzehkzRI+webIZjNeCrJtFsXEW+s2Shwy2P3C3GY6tF/rUg==",
|
|
672
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
673
|
+
"dependencies": {
|
|
674
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
675
|
+
"@conduit-client/utils": "3.19.6"
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"node_modules/@conduit-client/service-cache": {
|
|
679
|
+
"version": "3.19.6",
|
|
680
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache/-/service-cache-3.19.6.tgz",
|
|
681
|
+
"integrity": "sha512-WBQJgOXLZsAyWBnaOnliwgs+tx9JJsCGtLV31oqXrLbjxONk1NYNFbbpW70a8wLBJ0ZKFd4s/+nNicKwiGvRWw==",
|
|
682
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
683
|
+
"dependencies": {
|
|
684
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
685
|
+
"@conduit-client/utils": "3.19.6"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"node_modules/@conduit-client/service-cache-control": {
|
|
689
|
+
"version": "3.19.6",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache-control/-/service-cache-control-3.19.6.tgz",
|
|
691
|
+
"integrity": "sha512-pQ2ipf9FZs2vPjG3d837kpGWQGK0fmj73spn6VUWy0jiewlZZ6L/uzZzV9smMv65yAHVWnBO6ZMi/jVp+y0YsQ==",
|
|
692
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
693
|
+
"dependencies": {
|
|
694
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
695
|
+
"@conduit-client/service-cache-inclusion-policy": "3.19.6",
|
|
696
|
+
"@conduit-client/utils": "3.19.6"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
"node_modules/@conduit-client/service-cache-inclusion-policy": {
|
|
700
|
+
"version": "3.19.6",
|
|
701
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache-inclusion-policy/-/service-cache-inclusion-policy-3.19.6.tgz",
|
|
702
|
+
"integrity": "sha512-q7kJguFTNdb5/RKykBXgDttWBwT7+tcS4zWwEaHXmDTlb4iTOlb5JfpSgFoEkx4mY1+QsiM179g4sP38IN+0jQ==",
|
|
703
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
704
|
+
"dependencies": {
|
|
705
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
706
|
+
"@conduit-client/utils": "3.19.6"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
603
709
|
"node_modules/@conduit-client/service-fetch-network": {
|
|
604
|
-
"version": "3.
|
|
605
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.
|
|
606
|
-
"integrity": "sha512-
|
|
710
|
+
"version": "3.19.6",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.19.6.tgz",
|
|
712
|
+
"integrity": "sha512-yOsiRyOrM03tmX92oVbThJs7jZfjiVBQZiGkV+I+980TrJGnAwvaZlQVeG4Ncb285HtpBzkUnuc05Eol/tlCgw==",
|
|
713
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
714
|
+
"dependencies": {
|
|
715
|
+
"@conduit-client/jwt-manager": "3.19.6",
|
|
716
|
+
"@conduit-client/service-retry": "3.19.6",
|
|
717
|
+
"@conduit-client/utils": "3.19.6"
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"node_modules/@conduit-client/service-instrumentation": {
|
|
721
|
+
"version": "3.19.6",
|
|
722
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation/-/service-instrumentation-3.19.6.tgz",
|
|
723
|
+
"integrity": "sha512-o+tR7hbwc2SNMYvKMW4IT0Z2JkO2BpCXiWchz/5N7GiKW1Xuhl/8jLY7mzmm96OVZGktPp4p4FHGlUiTdlqiSQ==",
|
|
724
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
725
|
+
"dependencies": {
|
|
726
|
+
"@conduit-client/service-instrumentation-noop": "3.19.6",
|
|
727
|
+
"@conduit-client/service-instrumentation-o11y": "3.19.6",
|
|
728
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
729
|
+
"@conduit-client/utils": "3.19.6",
|
|
730
|
+
"@opentelemetry/api": "1.7.0"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"node_modules/@conduit-client/service-instrumentation-noop": {
|
|
734
|
+
"version": "3.19.6",
|
|
735
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-noop/-/service-instrumentation-noop-3.19.6.tgz",
|
|
736
|
+
"integrity": "sha512-4OuCYyNJnfDqIWXlTTxfhEkMbanIruZrMr8Rzx+MBPuYSqMSJmzCRD1Imf9nh84RedmdC4OlOxdgF6FVgYRcfQ==",
|
|
737
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
738
|
+
"dependencies": {
|
|
739
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
740
|
+
"@conduit-client/utils": "3.19.6",
|
|
741
|
+
"@opentelemetry/api": "1.7.0"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"node_modules/@conduit-client/service-instrumentation-noop/node_modules/@opentelemetry/api": {
|
|
745
|
+
"version": "1.7.0",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
747
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
748
|
+
"license": "Apache-2.0",
|
|
749
|
+
"engines": {
|
|
750
|
+
"node": ">=8.0.0"
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
"node_modules/@conduit-client/service-instrumentation-o11y": {
|
|
754
|
+
"version": "3.19.6",
|
|
755
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-o11y/-/service-instrumentation-o11y-3.19.6.tgz",
|
|
756
|
+
"integrity": "sha512-NQU9jeob5ARas8HpcyMADvhEyQk76YaBvWV6qGdQi22vPK636FCZDucysL++Q2iCSrszX5SS++0q4HEQo1mFog==",
|
|
607
757
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
608
758
|
"dependencies": {
|
|
609
|
-
"@conduit-client/
|
|
610
|
-
"@conduit-client/
|
|
611
|
-
"@
|
|
759
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
760
|
+
"@conduit-client/utils": "3.19.6",
|
|
761
|
+
"@opentelemetry/api": "1.7.0",
|
|
762
|
+
"o11y": "252.7.0"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/@opentelemetry/api": {
|
|
766
|
+
"version": "1.7.0",
|
|
767
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
768
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
769
|
+
"license": "Apache-2.0",
|
|
770
|
+
"engines": {
|
|
771
|
+
"node": ">=8.0.0"
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y": {
|
|
775
|
+
"version": "252.7.0",
|
|
776
|
+
"resolved": "https://registry.npmjs.org/o11y/-/o11y-252.7.0.tgz",
|
|
777
|
+
"integrity": "sha512-/P79vBumoxplQ4aqjW8GoVEMk7Uj50HOmZQAyNtu/FE8FuPXSh9rnkguxUDfN5l1oWI8Eyktrnu3XRs56OkQVQ==",
|
|
778
|
+
"license": "BSD-3-Clause",
|
|
779
|
+
"dependencies": {
|
|
780
|
+
"o11y_schema": "252.11.0",
|
|
781
|
+
"protobufjs": "7.2.4",
|
|
782
|
+
"web-vitals": "3.5.2"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y_schema": {
|
|
786
|
+
"version": "252.11.0",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-252.11.0.tgz",
|
|
788
|
+
"integrity": "sha512-gdzht1/LRbnJZZGtR2M6ACopNLiwuUs0yP8OGnDbpCTJITwDS9S5wb7qbxUMY2kyhXkGR3oD8RY0C1S6+/1rRQ==",
|
|
789
|
+
"license": "BSD-3-Clause"
|
|
790
|
+
},
|
|
791
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/protobufjs": {
|
|
792
|
+
"version": "7.2.4",
|
|
793
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz",
|
|
794
|
+
"integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==",
|
|
795
|
+
"hasInstallScript": true,
|
|
796
|
+
"license": "BSD-3-Clause",
|
|
797
|
+
"dependencies": {
|
|
798
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
799
|
+
"@protobufjs/base64": "^1.1.2",
|
|
800
|
+
"@protobufjs/codegen": "^2.0.4",
|
|
801
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
802
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
803
|
+
"@protobufjs/float": "^1.0.2",
|
|
804
|
+
"@protobufjs/inquire": "^1.1.0",
|
|
805
|
+
"@protobufjs/path": "^1.1.2",
|
|
806
|
+
"@protobufjs/pool": "^1.1.0",
|
|
807
|
+
"@protobufjs/utf8": "^1.1.0",
|
|
808
|
+
"@types/node": ">=13.7.0",
|
|
809
|
+
"long": "^5.0.0"
|
|
810
|
+
},
|
|
811
|
+
"engines": {
|
|
812
|
+
"node": ">=12.0.0"
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/web-vitals": {
|
|
816
|
+
"version": "3.5.2",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz",
|
|
818
|
+
"integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==",
|
|
819
|
+
"license": "Apache-2.0"
|
|
820
|
+
},
|
|
821
|
+
"node_modules/@conduit-client/service-instrumentation-types": {
|
|
822
|
+
"version": "3.19.6",
|
|
823
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-types/-/service-instrumentation-types-3.19.6.tgz",
|
|
824
|
+
"integrity": "sha512-BZ6BsYa2StM2+bGWnv/cB4SXaS9fCTQX1bL9z0UqIZbPmBYhtr640/SirAl8z2pqnl0Qd5OZnYAlpyLSqJoKOg==",
|
|
825
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
826
|
+
"dependencies": {
|
|
827
|
+
"@conduit-client/utils": "3.19.6",
|
|
828
|
+
"@opentelemetry/api": "1.7.0"
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"node_modules/@conduit-client/service-instrumentation-types/node_modules/@opentelemetry/api": {
|
|
832
|
+
"version": "1.7.0",
|
|
833
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
834
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
835
|
+
"license": "Apache-2.0",
|
|
836
|
+
"engines": {
|
|
837
|
+
"node": ">=8.0.0"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
"node_modules/@conduit-client/service-instrumentation/node_modules/@opentelemetry/api": {
|
|
841
|
+
"version": "1.7.0",
|
|
842
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
843
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
844
|
+
"license": "Apache-2.0",
|
|
845
|
+
"engines": {
|
|
846
|
+
"node": ">=8.0.0"
|
|
847
|
+
}
|
|
848
|
+
},
|
|
849
|
+
"node_modules/@conduit-client/service-pubsub": {
|
|
850
|
+
"version": "3.19.6",
|
|
851
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-pubsub/-/service-pubsub-3.19.6.tgz",
|
|
852
|
+
"integrity": "sha512-HgWWiXMX43jorZNtqEHx/8cxRImcga6ycjCS6NRPnYStsndIBZIR53GnKcXbPvvaO/v5BhA3WWiWwSYe38OF2A==",
|
|
853
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
854
|
+
"dependencies": {
|
|
855
|
+
"@conduit-client/utils": "3.19.6"
|
|
612
856
|
}
|
|
613
857
|
},
|
|
614
858
|
"node_modules/@conduit-client/service-retry": {
|
|
615
|
-
"version": "3.
|
|
616
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.
|
|
617
|
-
"integrity": "sha512-
|
|
859
|
+
"version": "3.19.6",
|
|
860
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.19.6.tgz",
|
|
861
|
+
"integrity": "sha512-Zb1V2un+X3iFFN/eiY+V+G9cfvRqK2ppHjKWVF+SXRY52fOKVbEvbRA/n/YM/xemfA4PiMcmNzOrhvHwYNImaw==",
|
|
618
862
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
619
863
|
"dependencies": {
|
|
620
|
-
"@conduit-client/utils": "3.
|
|
864
|
+
"@conduit-client/utils": "3.19.6"
|
|
621
865
|
}
|
|
622
866
|
},
|
|
623
867
|
"node_modules/@conduit-client/utils": {
|
|
624
|
-
"version": "3.
|
|
625
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.
|
|
626
|
-
"integrity": "sha512-
|
|
868
|
+
"version": "3.19.6",
|
|
869
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.19.6.tgz",
|
|
870
|
+
"integrity": "sha512-sEE8RIz1+LxPJJVkBsSATgQBEn91pKdiEahUqisnodmnct+uLbI+bi/k4NPXoNMSIZM7W2VgEWFQDHF2GXZ28w==",
|
|
627
871
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
628
872
|
},
|
|
629
873
|
"node_modules/@csstools/color-helpers": {
|
|
@@ -748,9 +992,9 @@
|
|
|
748
992
|
"license": "MIT"
|
|
749
993
|
},
|
|
750
994
|
"node_modules/@dotenvx/dotenvx": {
|
|
751
|
-
"version": "1.
|
|
752
|
-
"resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.
|
|
753
|
-
"integrity": "sha512-
|
|
995
|
+
"version": "1.71.0",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.71.0.tgz",
|
|
997
|
+
"integrity": "sha512-KEUw/mGu+EDRhYWRTNGHIimVCs9NvMFaIXOGrHSXoCteKLE5EsJnmPjOPpYorjXVg/0xG0fbdVw720azw1z4ag==",
|
|
754
998
|
"license": "BSD-3-Clause",
|
|
755
999
|
"dependencies": {
|
|
756
1000
|
"commander": "^11.1.0",
|
|
@@ -1937,9 +2181,9 @@
|
|
|
1937
2181
|
}
|
|
1938
2182
|
},
|
|
1939
2183
|
"node_modules/@graphql-tools/delegate": {
|
|
1940
|
-
"version": "12.0.
|
|
1941
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.
|
|
1942
|
-
"integrity": "sha512-
|
|
2184
|
+
"version": "12.0.17",
|
|
2185
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.17.tgz",
|
|
2186
|
+
"integrity": "sha512-pIVszWEm69rF+bkM0jUyM1KdIxGzygQbIp1GtV1CuEGRB8lN1uFY1eeTzM2nudHXg8cj+XSVO8cnRpph+o8Dmg==",
|
|
1943
2187
|
"dev": true,
|
|
1944
2188
|
"license": "MIT",
|
|
1945
2189
|
"dependencies": {
|
|
@@ -2337,13 +2581,13 @@
|
|
|
2337
2581
|
}
|
|
2338
2582
|
},
|
|
2339
2583
|
"node_modules/@graphql-tools/wrap": {
|
|
2340
|
-
"version": "11.1.
|
|
2341
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.
|
|
2342
|
-
"integrity": "sha512-
|
|
2584
|
+
"version": "11.1.16",
|
|
2585
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.16.tgz",
|
|
2586
|
+
"integrity": "sha512-JW1XGFTmltXa537J2bAr8dN/n6EWwiBuM9q8V8mWqZ0eWrf++/TT3/mlV3c0M8B8nrS/lqSsotIwPAtVZR8sWQ==",
|
|
2343
2587
|
"dev": true,
|
|
2344
2588
|
"license": "MIT",
|
|
2345
2589
|
"dependencies": {
|
|
2346
|
-
"@graphql-tools/delegate": "^12.0.
|
|
2590
|
+
"@graphql-tools/delegate": "^12.0.17",
|
|
2347
2591
|
"@graphql-tools/schema": "^10.0.29",
|
|
2348
2592
|
"@graphql-tools/utils": "^11.0.0",
|
|
2349
2593
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -3133,6 +3377,16 @@
|
|
|
3133
3377
|
"integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
|
|
3134
3378
|
"license": "MIT"
|
|
3135
3379
|
},
|
|
3380
|
+
"node_modules/@opentelemetry/api": {
|
|
3381
|
+
"version": "1.9.1",
|
|
3382
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.1.tgz",
|
|
3383
|
+
"integrity": "sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==",
|
|
3384
|
+
"extraneous": true,
|
|
3385
|
+
"license": "Apache-2.0",
|
|
3386
|
+
"engines": {
|
|
3387
|
+
"node": ">=8.0.0"
|
|
3388
|
+
}
|
|
3389
|
+
},
|
|
3136
3390
|
"node_modules/@pinojs/redact": {
|
|
3137
3391
|
"version": "0.4.0",
|
|
3138
3392
|
"resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
|
|
@@ -3162,6 +3416,69 @@
|
|
|
3162
3416
|
"dev": true,
|
|
3163
3417
|
"license": "MIT"
|
|
3164
3418
|
},
|
|
3419
|
+
"node_modules/@protobufjs/aspromise": {
|
|
3420
|
+
"version": "1.1.2",
|
|
3421
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
3422
|
+
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
|
|
3423
|
+
"license": "BSD-3-Clause"
|
|
3424
|
+
},
|
|
3425
|
+
"node_modules/@protobufjs/base64": {
|
|
3426
|
+
"version": "1.1.2",
|
|
3427
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
|
3428
|
+
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
|
|
3429
|
+
"license": "BSD-3-Clause"
|
|
3430
|
+
},
|
|
3431
|
+
"node_modules/@protobufjs/codegen": {
|
|
3432
|
+
"version": "2.0.5",
|
|
3433
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
|
|
3434
|
+
"integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
|
|
3435
|
+
"license": "BSD-3-Clause"
|
|
3436
|
+
},
|
|
3437
|
+
"node_modules/@protobufjs/eventemitter": {
|
|
3438
|
+
"version": "1.1.1",
|
|
3439
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
|
|
3440
|
+
"integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
|
|
3441
|
+
"license": "BSD-3-Clause"
|
|
3442
|
+
},
|
|
3443
|
+
"node_modules/@protobufjs/fetch": {
|
|
3444
|
+
"version": "1.1.1",
|
|
3445
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
|
|
3446
|
+
"integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
|
|
3447
|
+
"license": "BSD-3-Clause",
|
|
3448
|
+
"dependencies": {
|
|
3449
|
+
"@protobufjs/aspromise": "^1.1.1"
|
|
3450
|
+
}
|
|
3451
|
+
},
|
|
3452
|
+
"node_modules/@protobufjs/float": {
|
|
3453
|
+
"version": "1.0.2",
|
|
3454
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
|
3455
|
+
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
|
|
3456
|
+
"license": "BSD-3-Clause"
|
|
3457
|
+
},
|
|
3458
|
+
"node_modules/@protobufjs/inquire": {
|
|
3459
|
+
"version": "1.1.2",
|
|
3460
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
|
|
3461
|
+
"integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
|
|
3462
|
+
"license": "BSD-3-Clause"
|
|
3463
|
+
},
|
|
3464
|
+
"node_modules/@protobufjs/path": {
|
|
3465
|
+
"version": "1.1.2",
|
|
3466
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
|
3467
|
+
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
|
|
3468
|
+
"license": "BSD-3-Clause"
|
|
3469
|
+
},
|
|
3470
|
+
"node_modules/@protobufjs/pool": {
|
|
3471
|
+
"version": "1.1.0",
|
|
3472
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
|
3473
|
+
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
|
|
3474
|
+
"license": "BSD-3-Clause"
|
|
3475
|
+
},
|
|
3476
|
+
"node_modules/@protobufjs/utf8": {
|
|
3477
|
+
"version": "1.1.1",
|
|
3478
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
3479
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
3480
|
+
"license": "BSD-3-Clause"
|
|
3481
|
+
},
|
|
3165
3482
|
"node_modules/@radix-ui/number": {
|
|
3166
3483
|
"version": "1.1.1",
|
|
3167
3484
|
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
|
|
@@ -4675,9 +4992,9 @@
|
|
|
4675
4992
|
"license": "MIT"
|
|
4676
4993
|
},
|
|
4677
4994
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
4678
|
-
"version": "4.
|
|
4679
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
4680
|
-
"integrity": "sha512-
|
|
4995
|
+
"version": "4.61.0",
|
|
4996
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.61.0.tgz",
|
|
4997
|
+
"integrity": "sha512-dnxczajOqt0gesZlN5pGQ1s1imQVrsmCw5G2Ci4oM+0WvNz3pyRnlWrT7McoZIb8VlFwCawdmbWRmxRn7HI+VQ==",
|
|
4681
4998
|
"cpu": [
|
|
4682
4999
|
"arm"
|
|
4683
5000
|
],
|
|
@@ -4688,9 +5005,9 @@
|
|
|
4688
5005
|
]
|
|
4689
5006
|
},
|
|
4690
5007
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
4691
|
-
"version": "4.
|
|
4692
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
4693
|
-
"integrity": "sha512-
|
|
5008
|
+
"version": "4.61.0",
|
|
5009
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.61.0.tgz",
|
|
5010
|
+
"integrity": "sha512-Bp3JpGP00Vu3f238ivRrjf7z3xSzVPXqCmaJYA9t2c+c8vKYvOzmXF7LkkeUalTEGd6cZcSWe+PFIP3Vy48fRg==",
|
|
4694
5011
|
"cpu": [
|
|
4695
5012
|
"arm64"
|
|
4696
5013
|
],
|
|
@@ -4701,9 +5018,9 @@
|
|
|
4701
5018
|
]
|
|
4702
5019
|
},
|
|
4703
5020
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
4704
|
-
"version": "4.
|
|
4705
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
4706
|
-
"integrity": "sha512-
|
|
5021
|
+
"version": "4.61.0",
|
|
5022
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.61.0.tgz",
|
|
5023
|
+
"integrity": "sha512-zaYIpr670mUmmZ1tVzUFplbQbG7h3Gugx3L5FoqhsC2m/YnLlR1a7zVLmXNPy+iY1tFPEbNG+HHBXZGyId0G5w==",
|
|
4707
5024
|
"cpu": [
|
|
4708
5025
|
"arm64"
|
|
4709
5026
|
],
|
|
@@ -4714,9 +5031,9 @@
|
|
|
4714
5031
|
]
|
|
4715
5032
|
},
|
|
4716
5033
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
4717
|
-
"version": "4.
|
|
4718
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
4719
|
-
"integrity": "sha512
|
|
5034
|
+
"version": "4.61.0",
|
|
5035
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.61.0.tgz",
|
|
5036
|
+
"integrity": "sha512-+P49fvkv2dSoeevUW+lgZ/I2JHSsJCK1Lyjj7Cu6E4UHG4tS9XIefzIjo5qhgELjAclnen1rLzK2PMKJdo+Dyg==",
|
|
4720
5037
|
"cpu": [
|
|
4721
5038
|
"x64"
|
|
4722
5039
|
],
|
|
@@ -4727,9 +5044,9 @@
|
|
|
4727
5044
|
]
|
|
4728
5045
|
},
|
|
4729
5046
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
4730
|
-
"version": "4.
|
|
4731
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
4732
|
-
"integrity": "sha512
|
|
5047
|
+
"version": "4.61.0",
|
|
5048
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.61.0.tgz",
|
|
5049
|
+
"integrity": "sha512-l3FAAOyKJXH2ea6KNFN+MMgC/rnE94YGLXs2ehYqDcCoHt1DpvgWX75BhUJxN38XojP7Ul+4H8PRn7EdyqSDrw==",
|
|
4733
5050
|
"cpu": [
|
|
4734
5051
|
"arm64"
|
|
4735
5052
|
],
|
|
@@ -4740,9 +5057,9 @@
|
|
|
4740
5057
|
]
|
|
4741
5058
|
},
|
|
4742
5059
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
4743
|
-
"version": "4.
|
|
4744
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
4745
|
-
"integrity": "sha512-
|
|
5060
|
+
"version": "4.61.0",
|
|
5061
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.61.0.tgz",
|
|
5062
|
+
"integrity": "sha512-VokPN3TSctKj65cyCNPaUh4vMFA8awxOot/0sp+4J7ZlNRKQEhXhawqPwajoi8H5ZFt61i0ugZJuTKXBjGJ17Q==",
|
|
4746
5063
|
"cpu": [
|
|
4747
5064
|
"x64"
|
|
4748
5065
|
],
|
|
@@ -4753,9 +5070,9 @@
|
|
|
4753
5070
|
]
|
|
4754
5071
|
},
|
|
4755
5072
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
4756
|
-
"version": "4.
|
|
4757
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
4758
|
-
"integrity": "sha512-
|
|
5073
|
+
"version": "4.61.0",
|
|
5074
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.61.0.tgz",
|
|
5075
|
+
"integrity": "sha512-DxH0P3wxm+Yzs/p3zrk9dw1rURu8p0Nv5+MRK/L7OtnLNg5rLZraSBFZ8iUXOd9f2BlhJyEpIZUH/emjq4UJ4g==",
|
|
4759
5076
|
"cpu": [
|
|
4760
5077
|
"arm"
|
|
4761
5078
|
],
|
|
@@ -4769,9 +5086,9 @@
|
|
|
4769
5086
|
]
|
|
4770
5087
|
},
|
|
4771
5088
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
4772
|
-
"version": "4.
|
|
4773
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
4774
|
-
"integrity": "sha512-
|
|
5089
|
+
"version": "4.61.0",
|
|
5090
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.61.0.tgz",
|
|
5091
|
+
"integrity": "sha512-T6ZvMNe84kAz6TBWHC7hGAoEtzP1LWYw/AqayGWEF6uISt3Abk/st06LqRD9THd7Xz3NxzurUpzAuEAUbZf+nw==",
|
|
4775
5092
|
"cpu": [
|
|
4776
5093
|
"arm"
|
|
4777
5094
|
],
|
|
@@ -4785,9 +5102,9 @@
|
|
|
4785
5102
|
]
|
|
4786
5103
|
},
|
|
4787
5104
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
4788
|
-
"version": "4.
|
|
4789
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
4790
|
-
"integrity": "sha512-
|
|
5105
|
+
"version": "4.61.0",
|
|
5106
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.61.0.tgz",
|
|
5107
|
+
"integrity": "sha512-q/4hzvQkDs8b4jIBab1pnLiiM0ayTZsN2amBFPDzuyZxjEd4wDwx0UJFYM3cOZzSf5Kw8fnWSprJzIBMkcR44Q==",
|
|
4791
5108
|
"cpu": [
|
|
4792
5109
|
"arm64"
|
|
4793
5110
|
],
|
|
@@ -4801,9 +5118,9 @@
|
|
|
4801
5118
|
]
|
|
4802
5119
|
},
|
|
4803
5120
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
4804
|
-
"version": "4.
|
|
4805
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
4806
|
-
"integrity": "sha512-
|
|
5121
|
+
"version": "4.61.0",
|
|
5122
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.61.0.tgz",
|
|
5123
|
+
"integrity": "sha512-vvYWX3akdEAY6km+9wAqFDnk6pQsbJKVnj7xawcvs/+fdlYBGp+U+Qq/lLfpIxYIZvZLHMAKD9HLdacSx/r3dw==",
|
|
4807
5124
|
"cpu": [
|
|
4808
5125
|
"arm64"
|
|
4809
5126
|
],
|
|
@@ -4817,9 +5134,9 @@
|
|
|
4817
5134
|
]
|
|
4818
5135
|
},
|
|
4819
5136
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
4820
|
-
"version": "4.
|
|
4821
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
4822
|
-
"integrity": "sha512-
|
|
5137
|
+
"version": "4.61.0",
|
|
5138
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.61.0.tgz",
|
|
5139
|
+
"integrity": "sha512-DePa5cqOxDP/Zp0VOXpeWaGew5iIv5DXp9NYbzkX5PFQyWVX9184WCTh3hvr/7lhXo8ZVlbFLkz8+o/q1dU6gA==",
|
|
4823
5140
|
"cpu": [
|
|
4824
5141
|
"loong64"
|
|
4825
5142
|
],
|
|
@@ -4833,9 +5150,9 @@
|
|
|
4833
5150
|
]
|
|
4834
5151
|
},
|
|
4835
5152
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
4836
|
-
"version": "4.
|
|
4837
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.
|
|
4838
|
-
"integrity": "sha512-
|
|
5153
|
+
"version": "4.61.0",
|
|
5154
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.61.0.tgz",
|
|
5155
|
+
"integrity": "sha512-LV8aWMB8UChglMCEzs7RkN0GsH29RJaLLqwm9fCIjlqwxQTiWAqNcc7wjBkH31hV0PU/yVxGYvrYsgfea2qw6g==",
|
|
4839
5156
|
"cpu": [
|
|
4840
5157
|
"loong64"
|
|
4841
5158
|
],
|
|
@@ -4849,9 +5166,9 @@
|
|
|
4849
5166
|
]
|
|
4850
5167
|
},
|
|
4851
5168
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
4852
|
-
"version": "4.
|
|
4853
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
4854
|
-
"integrity": "sha512-
|
|
5169
|
+
"version": "4.61.0",
|
|
5170
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.61.0.tgz",
|
|
5171
|
+
"integrity": "sha512-QoNSnwQtaeNu5grdBbsL0tt1uyl5EnS8DA8Mr3nluMXbhdQNyhN+G4tBax7VCdxLKj8YJ0/4OO9Ho84jMnJtKA==",
|
|
4855
5172
|
"cpu": [
|
|
4856
5173
|
"ppc64"
|
|
4857
5174
|
],
|
|
@@ -4865,9 +5182,9 @@
|
|
|
4865
5182
|
]
|
|
4866
5183
|
},
|
|
4867
5184
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
4868
|
-
"version": "4.
|
|
4869
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.
|
|
4870
|
-
"integrity": "sha512
|
|
5185
|
+
"version": "4.61.0",
|
|
5186
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.61.0.tgz",
|
|
5187
|
+
"integrity": "sha512-/zZp5MKapIIApE8trN8qLGNSiRN9TUoaUZ1cmVu4XnVdd5LQLOXTtyi+vtfUbNnT3iyjzpPqYeKXmvJ+gJGYWw==",
|
|
4871
5188
|
"cpu": [
|
|
4872
5189
|
"ppc64"
|
|
4873
5190
|
],
|
|
@@ -4881,9 +5198,9 @@
|
|
|
4881
5198
|
]
|
|
4882
5199
|
},
|
|
4883
5200
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
4884
|
-
"version": "4.
|
|
4885
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
4886
|
-
"integrity": "sha512-
|
|
5201
|
+
"version": "4.61.0",
|
|
5202
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.61.0.tgz",
|
|
5203
|
+
"integrity": "sha512-RbrzcD3aJ1k3UbtMRRBNwojdVVyXjuVAFTfn/xPa6EEl6GE9Sm/akPgFTb9aAC9pMKGJ6CtWxaGrqWcabH+ySg==",
|
|
4887
5204
|
"cpu": [
|
|
4888
5205
|
"riscv64"
|
|
4889
5206
|
],
|
|
@@ -4897,9 +5214,9 @@
|
|
|
4897
5214
|
]
|
|
4898
5215
|
},
|
|
4899
5216
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
4900
|
-
"version": "4.
|
|
4901
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
4902
|
-
"integrity": "sha512-
|
|
5217
|
+
"version": "4.61.0",
|
|
5218
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.61.0.tgz",
|
|
5219
|
+
"integrity": "sha512-ZF+onDsBso8PJf1XaG9lB+O9RnBpKGnY6OrzC4CSHrtC1jb6jWLTKK4bRqdoCXHd22gyr2hiYmEAm8Wns/BOCw==",
|
|
4903
5220
|
"cpu": [
|
|
4904
5221
|
"riscv64"
|
|
4905
5222
|
],
|
|
@@ -4913,9 +5230,9 @@
|
|
|
4913
5230
|
]
|
|
4914
5231
|
},
|
|
4915
5232
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
4916
|
-
"version": "4.
|
|
4917
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
4918
|
-
"integrity": "sha512-
|
|
5233
|
+
"version": "4.61.0",
|
|
5234
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.61.0.tgz",
|
|
5235
|
+
"integrity": "sha512-Atk0aSIk5Zx2Wuh9dgRQgLP0Koc8hOeYpbWryMXyk8G8/HmPkwPPkMqIIDhrXHHYqfUzSJA/I7IWSBv8xSmRBA==",
|
|
4919
5236
|
"cpu": [
|
|
4920
5237
|
"s390x"
|
|
4921
5238
|
],
|
|
@@ -4929,9 +5246,9 @@
|
|
|
4929
5246
|
]
|
|
4930
5247
|
},
|
|
4931
5248
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
4932
|
-
"version": "4.
|
|
4933
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
4934
|
-
"integrity": "sha512-
|
|
5249
|
+
"version": "4.61.0",
|
|
5250
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.61.0.tgz",
|
|
5251
|
+
"integrity": "sha512-0uMOcf3eZ5K+K4cYHkdxShFMPlPXCOdfDFEFn9dNYAEEd2cVvmOfH7zFgRVoDgmtQ1m9k5q7qfrHzyMAubKYUA==",
|
|
4935
5252
|
"cpu": [
|
|
4936
5253
|
"x64"
|
|
4937
5254
|
],
|
|
@@ -4945,9 +5262,9 @@
|
|
|
4945
5262
|
]
|
|
4946
5263
|
},
|
|
4947
5264
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
4948
|
-
"version": "4.
|
|
4949
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
4950
|
-
"integrity": "sha512
|
|
5265
|
+
"version": "4.61.0",
|
|
5266
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.61.0.tgz",
|
|
5267
|
+
"integrity": "sha512-mvFtE4A/t/7hRJ7X8Ozmu8FsIkAUat2nzl12pgU337BRmq87AQUJztwHz2Zv5/tjo9/C95E66CK03SI/ToEDJw==",
|
|
4951
5268
|
"cpu": [
|
|
4952
5269
|
"x64"
|
|
4953
5270
|
],
|
|
@@ -4961,9 +5278,9 @@
|
|
|
4961
5278
|
]
|
|
4962
5279
|
},
|
|
4963
5280
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
4964
|
-
"version": "4.
|
|
4965
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.
|
|
4966
|
-
"integrity": "sha512-
|
|
5281
|
+
"version": "4.61.0",
|
|
5282
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.61.0.tgz",
|
|
5283
|
+
"integrity": "sha512-z9b9+aTxvt8n2rNltMPvyaUfB8NJ+CVyOrGK/MdIKHx7B+lXmZpm/XbRsU7Rpf3fRqJ2uS6mBJiJveCtq8LHDg==",
|
|
4967
5284
|
"cpu": [
|
|
4968
5285
|
"x64"
|
|
4969
5286
|
],
|
|
@@ -4974,9 +5291,9 @@
|
|
|
4974
5291
|
]
|
|
4975
5292
|
},
|
|
4976
5293
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
4977
|
-
"version": "4.
|
|
4978
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
4979
|
-
"integrity": "sha512-
|
|
5294
|
+
"version": "4.61.0",
|
|
5295
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.61.0.tgz",
|
|
5296
|
+
"integrity": "sha512-jXaXFqKMehsOc+g8R6oo33RRC6w07G9jDBxAE5eAKX7mOcCbZloYIPNhfG9Wl+P9O9IWHFO4OJgPi1Ml2qkt7w==",
|
|
4980
5297
|
"cpu": [
|
|
4981
5298
|
"arm64"
|
|
4982
5299
|
],
|
|
@@ -4987,9 +5304,9 @@
|
|
|
4987
5304
|
]
|
|
4988
5305
|
},
|
|
4989
5306
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
4990
|
-
"version": "4.
|
|
4991
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
4992
|
-
"integrity": "sha512-
|
|
5307
|
+
"version": "4.61.0",
|
|
5308
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.61.0.tgz",
|
|
5309
|
+
"integrity": "sha512-OXNWVFocS2IA4+QplhTZZ2a+8hPZR7T8KuozsNmJKK8y7cp83StHvGksfHzPG3wczWTczyWHVQuqeiTUbjiyBg==",
|
|
4993
5310
|
"cpu": [
|
|
4994
5311
|
"arm64"
|
|
4995
5312
|
],
|
|
@@ -5000,9 +5317,9 @@
|
|
|
5000
5317
|
]
|
|
5001
5318
|
},
|
|
5002
5319
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
5003
|
-
"version": "4.
|
|
5004
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
5005
|
-
"integrity": "sha512-
|
|
5320
|
+
"version": "4.61.0",
|
|
5321
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.61.0.tgz",
|
|
5322
|
+
"integrity": "sha512-AlAbNtBO637LxSldqV43z0FfXoGfl2TW1DgAg/bs7aQswFbDewz2SJm3BUhiGfbOVtW571xbc9p+REdxhyN/Eg==",
|
|
5006
5323
|
"cpu": [
|
|
5007
5324
|
"ia32"
|
|
5008
5325
|
],
|
|
@@ -5013,9 +5330,9 @@
|
|
|
5013
5330
|
]
|
|
5014
5331
|
},
|
|
5015
5332
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
5016
|
-
"version": "4.
|
|
5017
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
5018
|
-
"integrity": "sha512-
|
|
5333
|
+
"version": "4.61.0",
|
|
5334
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.61.0.tgz",
|
|
5335
|
+
"integrity": "sha512-QRSrQXyJ1M4tjNXdR0/G/IgV6lzfQQJYBjlWIEYkY2Xs86DRl/iEpQ4blMDjJxSl7n19eDKKXMg0AmuBVYy8pQ==",
|
|
5019
5336
|
"cpu": [
|
|
5020
5337
|
"x64"
|
|
5021
5338
|
],
|
|
@@ -5026,9 +5343,9 @@
|
|
|
5026
5343
|
]
|
|
5027
5344
|
},
|
|
5028
5345
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
5029
|
-
"version": "4.
|
|
5030
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
5031
|
-
"integrity": "sha512-
|
|
5346
|
+
"version": "4.61.0",
|
|
5347
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.61.0.tgz",
|
|
5348
|
+
"integrity": "sha512-tkuFxhvKO/HlGd0VsINF6vHSYH8AF8W0TcNxKDK6JZmrehngFj78pToc8iemtnvwilDjs2G/qSzYFhe9U8q+fw==",
|
|
5032
5349
|
"cpu": [
|
|
5033
5350
|
"x64"
|
|
5034
5351
|
],
|
|
@@ -5080,6 +5397,12 @@
|
|
|
5080
5397
|
"node": ">=10"
|
|
5081
5398
|
}
|
|
5082
5399
|
},
|
|
5400
|
+
"node_modules/@salesforce/jsonrpc": {
|
|
5401
|
+
"version": "10.2.2",
|
|
5402
|
+
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-10.2.2.tgz",
|
|
5403
|
+
"integrity": "sha512-55ceeP49ZFuFgxHm659xLw4EssHJnDZgenropQuVR/RpyuKPSPxjBU2dVBXnxHL32Ok7yGrwxa8qbywfzq37sw==",
|
|
5404
|
+
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5405
|
+
},
|
|
5083
5406
|
"node_modules/@salesforce/kit": {
|
|
5084
5407
|
"version": "3.2.6",
|
|
5085
5408
|
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.2.6.tgz",
|
|
@@ -5089,21 +5412,26 @@
|
|
|
5089
5412
|
"@salesforce/ts-types": "^2.0.12"
|
|
5090
5413
|
}
|
|
5091
5414
|
},
|
|
5092
|
-
"node_modules/@salesforce/sdk
|
|
5093
|
-
"version": "
|
|
5094
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-
|
|
5095
|
-
"integrity": "sha512-
|
|
5096
|
-
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5097
|
-
},
|
|
5098
|
-
"node_modules/@salesforce/sdk-data": {
|
|
5099
|
-
"version": "1.135.0",
|
|
5100
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-data/-/sdk-data-1.135.0.tgz",
|
|
5101
|
-
"integrity": "sha512-A9ZPgl1GcJUxYF8VNaO6O+k11PZEhaXOiDnwLu5Mxe4IbdiRiSDjExSgF/1JyVlJwHRK/LcNJ+qrkMudyd1lKg==",
|
|
5415
|
+
"node_modules/@salesforce/platform-sdk": {
|
|
5416
|
+
"version": "10.2.2",
|
|
5417
|
+
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-10.2.2.tgz",
|
|
5418
|
+
"integrity": "sha512-4GMgDAoZJ0Z1yhkOtWSDoLsrJfFU+ZzHf4d34cgLH1v9POvqB36YwenNzN2zOYpLfidKeGoXuR9S/U9eEgbxCg==",
|
|
5102
5419
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5103
5420
|
"dependencies": {
|
|
5104
|
-
"@conduit-client/
|
|
5105
|
-
"@conduit-client/
|
|
5106
|
-
"@
|
|
5421
|
+
"@conduit-client/command-http-cache-control": "3.19.6",
|
|
5422
|
+
"@conduit-client/onestore-graphql-parser": "3.19.6",
|
|
5423
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
5424
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
5425
|
+
"@conduit-client/service-cache-inclusion-policy": "3.19.6",
|
|
5426
|
+
"@conduit-client/service-fetch-network": "3.19.6",
|
|
5427
|
+
"@conduit-client/service-pubsub": "3.19.6",
|
|
5428
|
+
"@conduit-client/service-retry": "3.19.6",
|
|
5429
|
+
"@conduit-client/utils": "3.19.6",
|
|
5430
|
+
"@salesforce/jsonrpc": "^10.2.2"
|
|
5431
|
+
},
|
|
5432
|
+
"peerDependencies": {
|
|
5433
|
+
"o11y": ">=260.0.0",
|
|
5434
|
+
"o11y_schema": ">=260.63.0"
|
|
5107
5435
|
}
|
|
5108
5436
|
},
|
|
5109
5437
|
"node_modules/@salesforce/ts-types": {
|
|
@@ -5116,13 +5444,13 @@
|
|
|
5116
5444
|
}
|
|
5117
5445
|
},
|
|
5118
5446
|
"node_modules/@salesforce/ui-bundle": {
|
|
5119
|
-
"version": "
|
|
5120
|
-
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-
|
|
5121
|
-
"integrity": "sha512-
|
|
5447
|
+
"version": "10.2.2",
|
|
5448
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-10.2.2.tgz",
|
|
5449
|
+
"integrity": "sha512-6ljxZ/wUVwx+IeFUXzlHfUOffi/eNyVhGe8IGp8FFtA1OTf73F0zjIUHrg9JIMYjxAtn3xya1EHbb5xkX3LKxg==",
|
|
5122
5450
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5123
5451
|
"dependencies": {
|
|
5124
5452
|
"@salesforce/core": "^8.23.4",
|
|
5125
|
-
"@salesforce/sdk
|
|
5453
|
+
"@salesforce/platform-sdk": "^10.2.2",
|
|
5126
5454
|
"micromatch": "^4.0.8",
|
|
5127
5455
|
"path-to-regexp": "^8.3.0"
|
|
5128
5456
|
},
|
|
@@ -5130,16 +5458,29 @@
|
|
|
5130
5458
|
"node": ">=20.0.0"
|
|
5131
5459
|
}
|
|
5132
5460
|
},
|
|
5461
|
+
"node_modules/@salesforce/ui-design-mode": {
|
|
5462
|
+
"version": "10.2.2",
|
|
5463
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-design-mode/-/ui-design-mode-10.2.2.tgz",
|
|
5464
|
+
"integrity": "sha512-30Fj7dcD57fWwkR3qENapC1kUF+dJdW/2dRNfc8ILL1by6DfADawn2twMmSYSMwf0g/+xEiI0fP7JwM6oDdbuQ==",
|
|
5465
|
+
"dev": true,
|
|
5466
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5467
|
+
"dependencies": {
|
|
5468
|
+
"@babel/helper-plugin-utils": "^7.28.3"
|
|
5469
|
+
},
|
|
5470
|
+
"engines": {
|
|
5471
|
+
"node": ">=20.0.0"
|
|
5472
|
+
}
|
|
5473
|
+
},
|
|
5133
5474
|
"node_modules/@salesforce/vite-plugin-ui-bundle": {
|
|
5134
|
-
"version": "
|
|
5135
|
-
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-
|
|
5136
|
-
"integrity": "sha512-
|
|
5475
|
+
"version": "10.2.2",
|
|
5476
|
+
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-10.2.2.tgz",
|
|
5477
|
+
"integrity": "sha512-0HWjGF93O3ShVCr6mVX/MnZFaamMpBwgnD00ZXN7QzAcp+TV2NVteuc2QfVozBwgmhwNS2h7Zj9rM9zvakbVFQ==",
|
|
5137
5478
|
"dev": true,
|
|
5138
5479
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5139
5480
|
"dependencies": {
|
|
5140
5481
|
"@babel/core": "^7.28.4",
|
|
5141
|
-
"@
|
|
5142
|
-
"@salesforce/ui-
|
|
5482
|
+
"@salesforce/ui-bundle": "^10.2.2",
|
|
5483
|
+
"@salesforce/ui-design-mode": "^10.2.2"
|
|
5143
5484
|
},
|
|
5144
5485
|
"engines": {
|
|
5145
5486
|
"node": ">=20.0.0"
|
|
@@ -5829,7 +6170,6 @@
|
|
|
5829
6170
|
"version": "1.0.9",
|
|
5830
6171
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
5831
6172
|
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
5832
|
-
"dev": true,
|
|
5833
6173
|
"license": "MIT"
|
|
5834
6174
|
},
|
|
5835
6175
|
"node_modules/@types/json-schema": {
|
|
@@ -5849,9 +6189,9 @@
|
|
|
5849
6189
|
}
|
|
5850
6190
|
},
|
|
5851
6191
|
"node_modules/@types/react": {
|
|
5852
|
-
"version": "19.2.
|
|
5853
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.
|
|
5854
|
-
"integrity": "sha512-
|
|
6192
|
+
"version": "19.2.16",
|
|
6193
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.16.tgz",
|
|
6194
|
+
"integrity": "sha512-esJiCAnl0kfpNdE69f3So4WJUXy95dLZydX0KwK46riIHDzHM7O9Vtf9xCHW0PXIqvgqNrswl522kA/5yx+F4w==",
|
|
5855
6195
|
"devOptional": true,
|
|
5856
6196
|
"license": "MIT",
|
|
5857
6197
|
"dependencies": {
|
|
@@ -5900,17 +6240,17 @@
|
|
|
5900
6240
|
}
|
|
5901
6241
|
},
|
|
5902
6242
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
5903
|
-
"version": "8.60.
|
|
5904
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.
|
|
5905
|
-
"integrity": "sha512-
|
|
6243
|
+
"version": "8.60.1",
|
|
6244
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.1.tgz",
|
|
6245
|
+
"integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
|
|
5906
6246
|
"dev": true,
|
|
5907
6247
|
"license": "MIT",
|
|
5908
6248
|
"dependencies": {
|
|
5909
6249
|
"@eslint-community/regexpp": "^4.12.2",
|
|
5910
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
5911
|
-
"@typescript-eslint/type-utils": "8.60.
|
|
5912
|
-
"@typescript-eslint/utils": "8.60.
|
|
5913
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6250
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6251
|
+
"@typescript-eslint/type-utils": "8.60.1",
|
|
6252
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
6253
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5914
6254
|
"ignore": "^7.0.5",
|
|
5915
6255
|
"natural-compare": "^1.4.0",
|
|
5916
6256
|
"ts-api-utils": "^2.5.0"
|
|
@@ -5923,7 +6263,7 @@
|
|
|
5923
6263
|
"url": "https://opencollective.com/typescript-eslint"
|
|
5924
6264
|
},
|
|
5925
6265
|
"peerDependencies": {
|
|
5926
|
-
"@typescript-eslint/parser": "^8.60.
|
|
6266
|
+
"@typescript-eslint/parser": "^8.60.1",
|
|
5927
6267
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
5928
6268
|
"typescript": ">=4.8.4 <6.1.0"
|
|
5929
6269
|
}
|
|
@@ -5939,16 +6279,16 @@
|
|
|
5939
6279
|
}
|
|
5940
6280
|
},
|
|
5941
6281
|
"node_modules/@typescript-eslint/parser": {
|
|
5942
|
-
"version": "8.60.
|
|
5943
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.
|
|
5944
|
-
"integrity": "sha512-
|
|
6282
|
+
"version": "8.60.1",
|
|
6283
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.1.tgz",
|
|
6284
|
+
"integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
|
|
5945
6285
|
"dev": true,
|
|
5946
6286
|
"license": "MIT",
|
|
5947
6287
|
"dependencies": {
|
|
5948
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
5949
|
-
"@typescript-eslint/types": "8.60.
|
|
5950
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
5951
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6288
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6289
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6290
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
6291
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5952
6292
|
"debug": "^4.4.3"
|
|
5953
6293
|
},
|
|
5954
6294
|
"engines": {
|
|
@@ -5964,14 +6304,14 @@
|
|
|
5964
6304
|
}
|
|
5965
6305
|
},
|
|
5966
6306
|
"node_modules/@typescript-eslint/project-service": {
|
|
5967
|
-
"version": "8.60.
|
|
5968
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.
|
|
5969
|
-
"integrity": "sha512-
|
|
6307
|
+
"version": "8.60.1",
|
|
6308
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.1.tgz",
|
|
6309
|
+
"integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
|
|
5970
6310
|
"dev": true,
|
|
5971
6311
|
"license": "MIT",
|
|
5972
6312
|
"dependencies": {
|
|
5973
|
-
"@typescript-eslint/tsconfig-utils": "^8.60.
|
|
5974
|
-
"@typescript-eslint/types": "^8.60.
|
|
6313
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.1",
|
|
6314
|
+
"@typescript-eslint/types": "^8.60.1",
|
|
5975
6315
|
"debug": "^4.4.3"
|
|
5976
6316
|
},
|
|
5977
6317
|
"engines": {
|
|
@@ -5986,14 +6326,14 @@
|
|
|
5986
6326
|
}
|
|
5987
6327
|
},
|
|
5988
6328
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
5989
|
-
"version": "8.60.
|
|
5990
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.
|
|
5991
|
-
"integrity": "sha512-
|
|
6329
|
+
"version": "8.60.1",
|
|
6330
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.1.tgz",
|
|
6331
|
+
"integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
|
|
5992
6332
|
"dev": true,
|
|
5993
6333
|
"license": "MIT",
|
|
5994
6334
|
"dependencies": {
|
|
5995
|
-
"@typescript-eslint/types": "8.60.
|
|
5996
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6335
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6336
|
+
"@typescript-eslint/visitor-keys": "8.60.1"
|
|
5997
6337
|
},
|
|
5998
6338
|
"engines": {
|
|
5999
6339
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6004,9 +6344,9 @@
|
|
|
6004
6344
|
}
|
|
6005
6345
|
},
|
|
6006
6346
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
6007
|
-
"version": "8.60.
|
|
6008
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.
|
|
6009
|
-
"integrity": "sha512-
|
|
6347
|
+
"version": "8.60.1",
|
|
6348
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.1.tgz",
|
|
6349
|
+
"integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
|
|
6010
6350
|
"dev": true,
|
|
6011
6351
|
"license": "MIT",
|
|
6012
6352
|
"engines": {
|
|
@@ -6021,15 +6361,15 @@
|
|
|
6021
6361
|
}
|
|
6022
6362
|
},
|
|
6023
6363
|
"node_modules/@typescript-eslint/type-utils": {
|
|
6024
|
-
"version": "8.60.
|
|
6025
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.
|
|
6026
|
-
"integrity": "sha512-
|
|
6364
|
+
"version": "8.60.1",
|
|
6365
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.1.tgz",
|
|
6366
|
+
"integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
|
|
6027
6367
|
"dev": true,
|
|
6028
6368
|
"license": "MIT",
|
|
6029
6369
|
"dependencies": {
|
|
6030
|
-
"@typescript-eslint/types": "8.60.
|
|
6031
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
6032
|
-
"@typescript-eslint/utils": "8.60.
|
|
6370
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6371
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
6372
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
6033
6373
|
"debug": "^4.4.3",
|
|
6034
6374
|
"ts-api-utils": "^2.5.0"
|
|
6035
6375
|
},
|
|
@@ -6046,9 +6386,9 @@
|
|
|
6046
6386
|
}
|
|
6047
6387
|
},
|
|
6048
6388
|
"node_modules/@typescript-eslint/types": {
|
|
6049
|
-
"version": "8.60.
|
|
6050
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.
|
|
6051
|
-
"integrity": "sha512-
|
|
6389
|
+
"version": "8.60.1",
|
|
6390
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
|
|
6391
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
6052
6392
|
"dev": true,
|
|
6053
6393
|
"license": "MIT",
|
|
6054
6394
|
"engines": {
|
|
@@ -6060,16 +6400,16 @@
|
|
|
6060
6400
|
}
|
|
6061
6401
|
},
|
|
6062
6402
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
6063
|
-
"version": "8.60.
|
|
6064
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.
|
|
6065
|
-
"integrity": "sha512-
|
|
6403
|
+
"version": "8.60.1",
|
|
6404
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.1.tgz",
|
|
6405
|
+
"integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
|
|
6066
6406
|
"dev": true,
|
|
6067
6407
|
"license": "MIT",
|
|
6068
6408
|
"dependencies": {
|
|
6069
|
-
"@typescript-eslint/project-service": "8.60.
|
|
6070
|
-
"@typescript-eslint/tsconfig-utils": "8.60.
|
|
6071
|
-
"@typescript-eslint/types": "8.60.
|
|
6072
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6409
|
+
"@typescript-eslint/project-service": "8.60.1",
|
|
6410
|
+
"@typescript-eslint/tsconfig-utils": "8.60.1",
|
|
6411
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6412
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
6073
6413
|
"debug": "^4.4.3",
|
|
6074
6414
|
"minimatch": "^10.2.2",
|
|
6075
6415
|
"semver": "^7.7.3",
|
|
@@ -6140,16 +6480,16 @@
|
|
|
6140
6480
|
}
|
|
6141
6481
|
},
|
|
6142
6482
|
"node_modules/@typescript-eslint/utils": {
|
|
6143
|
-
"version": "8.60.
|
|
6144
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.
|
|
6145
|
-
"integrity": "sha512-
|
|
6483
|
+
"version": "8.60.1",
|
|
6484
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.1.tgz",
|
|
6485
|
+
"integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
|
|
6146
6486
|
"dev": true,
|
|
6147
6487
|
"license": "MIT",
|
|
6148
6488
|
"dependencies": {
|
|
6149
6489
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
6150
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
6151
|
-
"@typescript-eslint/types": "8.60.
|
|
6152
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
6490
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6491
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6492
|
+
"@typescript-eslint/typescript-estree": "8.60.1"
|
|
6153
6493
|
},
|
|
6154
6494
|
"engines": {
|
|
6155
6495
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6164,13 +6504,13 @@
|
|
|
6164
6504
|
}
|
|
6165
6505
|
},
|
|
6166
6506
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
6167
|
-
"version": "8.60.
|
|
6168
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.
|
|
6169
|
-
"integrity": "sha512-
|
|
6507
|
+
"version": "8.60.1",
|
|
6508
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
|
|
6509
|
+
"integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
|
|
6170
6510
|
"dev": true,
|
|
6171
6511
|
"license": "MIT",
|
|
6172
6512
|
"dependencies": {
|
|
6173
|
-
"@typescript-eslint/types": "8.60.
|
|
6513
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6174
6514
|
"eslint-visitor-keys": "^5.0.0"
|
|
6175
6515
|
},
|
|
6176
6516
|
"engines": {
|
|
@@ -6216,16 +6556,16 @@
|
|
|
6216
6556
|
}
|
|
6217
6557
|
},
|
|
6218
6558
|
"node_modules/@vitest/expect": {
|
|
6219
|
-
"version": "4.1.
|
|
6220
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.
|
|
6221
|
-
"integrity": "sha512-
|
|
6559
|
+
"version": "4.1.8",
|
|
6560
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.8.tgz",
|
|
6561
|
+
"integrity": "sha512-h3nDO677RDLEGlBxyQ5CW8RlMThSKSRLUePLOx09gNIWRL40edgA1GCZSZgf1W55MFAG6/Sw14KeaAnqv0NKdQ==",
|
|
6222
6562
|
"dev": true,
|
|
6223
6563
|
"license": "MIT",
|
|
6224
6564
|
"dependencies": {
|
|
6225
6565
|
"@standard-schema/spec": "^1.1.0",
|
|
6226
6566
|
"@types/chai": "^5.2.2",
|
|
6227
|
-
"@vitest/spy": "4.1.
|
|
6228
|
-
"@vitest/utils": "4.1.
|
|
6567
|
+
"@vitest/spy": "4.1.8",
|
|
6568
|
+
"@vitest/utils": "4.1.8",
|
|
6229
6569
|
"chai": "^6.2.2",
|
|
6230
6570
|
"tinyrainbow": "^3.1.0"
|
|
6231
6571
|
},
|
|
@@ -6234,13 +6574,13 @@
|
|
|
6234
6574
|
}
|
|
6235
6575
|
},
|
|
6236
6576
|
"node_modules/@vitest/mocker": {
|
|
6237
|
-
"version": "4.1.
|
|
6238
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.
|
|
6239
|
-
"integrity": "sha512-
|
|
6577
|
+
"version": "4.1.8",
|
|
6578
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.8.tgz",
|
|
6579
|
+
"integrity": "sha512-LEiN/xe4OSIbKe9HQIp5OC24agGD9J5CnmMgsLohVVoOPWL9a2sBoR6VBx43jQZb7Kr1l4RCuyCJzcAa0+dojw==",
|
|
6240
6580
|
"dev": true,
|
|
6241
6581
|
"license": "MIT",
|
|
6242
6582
|
"dependencies": {
|
|
6243
|
-
"@vitest/spy": "4.1.
|
|
6583
|
+
"@vitest/spy": "4.1.8",
|
|
6244
6584
|
"estree-walker": "^3.0.3",
|
|
6245
6585
|
"magic-string": "^0.30.21"
|
|
6246
6586
|
},
|
|
@@ -6261,9 +6601,9 @@
|
|
|
6261
6601
|
}
|
|
6262
6602
|
},
|
|
6263
6603
|
"node_modules/@vitest/pretty-format": {
|
|
6264
|
-
"version": "4.1.
|
|
6265
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.
|
|
6266
|
-
"integrity": "sha512-
|
|
6604
|
+
"version": "4.1.8",
|
|
6605
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.8.tgz",
|
|
6606
|
+
"integrity": "sha512-9GasEBxpZ1VYIpqHf/0+YGg121uSNwCKOJqIrTwWP/TB7DmFCiaBpNl3aPZzoLWfWkuqhbH8vJIVobZkvdo2cA==",
|
|
6267
6607
|
"dev": true,
|
|
6268
6608
|
"license": "MIT",
|
|
6269
6609
|
"dependencies": {
|
|
@@ -6274,13 +6614,13 @@
|
|
|
6274
6614
|
}
|
|
6275
6615
|
},
|
|
6276
6616
|
"node_modules/@vitest/runner": {
|
|
6277
|
-
"version": "4.1.
|
|
6278
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.
|
|
6279
|
-
"integrity": "sha512-
|
|
6617
|
+
"version": "4.1.8",
|
|
6618
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.8.tgz",
|
|
6619
|
+
"integrity": "sha512-EmVxeBAfMJvycdjd6Hm+RbFBbA9fKvo0Kx37hNpBYoYeavH3RNsBXWDooR1mgD52dCrxIIuP7UotpfiwOikvcg==",
|
|
6280
6620
|
"dev": true,
|
|
6281
6621
|
"license": "MIT",
|
|
6282
6622
|
"dependencies": {
|
|
6283
|
-
"@vitest/utils": "4.1.
|
|
6623
|
+
"@vitest/utils": "4.1.8",
|
|
6284
6624
|
"pathe": "^2.0.3"
|
|
6285
6625
|
},
|
|
6286
6626
|
"funding": {
|
|
@@ -6288,14 +6628,14 @@
|
|
|
6288
6628
|
}
|
|
6289
6629
|
},
|
|
6290
6630
|
"node_modules/@vitest/snapshot": {
|
|
6291
|
-
"version": "4.1.
|
|
6292
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.
|
|
6293
|
-
"integrity": "sha512-
|
|
6631
|
+
"version": "4.1.8",
|
|
6632
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.8.tgz",
|
|
6633
|
+
"integrity": "sha512-acfZboRmAIf05DEKcBQy33VXojFJjtUdLyo7oOmV9kebb2xdU01UknNiPuPZoJZQyO7DF0gZdTGTpeAzET9QPQ==",
|
|
6294
6634
|
"dev": true,
|
|
6295
6635
|
"license": "MIT",
|
|
6296
6636
|
"dependencies": {
|
|
6297
|
-
"@vitest/pretty-format": "4.1.
|
|
6298
|
-
"@vitest/utils": "4.1.
|
|
6637
|
+
"@vitest/pretty-format": "4.1.8",
|
|
6638
|
+
"@vitest/utils": "4.1.8",
|
|
6299
6639
|
"magic-string": "^0.30.21",
|
|
6300
6640
|
"pathe": "^2.0.3"
|
|
6301
6641
|
},
|
|
@@ -6304,9 +6644,9 @@
|
|
|
6304
6644
|
}
|
|
6305
6645
|
},
|
|
6306
6646
|
"node_modules/@vitest/spy": {
|
|
6307
|
-
"version": "4.1.
|
|
6308
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.
|
|
6309
|
-
"integrity": "sha512-
|
|
6647
|
+
"version": "4.1.8",
|
|
6648
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.8.tgz",
|
|
6649
|
+
"integrity": "sha512-6EevtBp6OZOPF7bmz36HrGMeP3txgVSrgebWxHOafDXGkhIzfXK14f8KF6MuFfgXXUeHxmpD3BQxkV00/3s5mA==",
|
|
6310
6650
|
"dev": true,
|
|
6311
6651
|
"license": "MIT",
|
|
6312
6652
|
"funding": {
|
|
@@ -6314,13 +6654,13 @@
|
|
|
6314
6654
|
}
|
|
6315
6655
|
},
|
|
6316
6656
|
"node_modules/@vitest/ui": {
|
|
6317
|
-
"version": "4.1.
|
|
6318
|
-
"resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-4.1.
|
|
6319
|
-
"integrity": "sha512-
|
|
6657
|
+
"version": "4.1.8",
|
|
6658
|
+
"resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-4.1.8.tgz",
|
|
6659
|
+
"integrity": "sha512-RUS2ZU2TsduVrI+9c12uTNaKrNUTsm6yFt3fueEUB9iKvyC2UP83F+sqIz00HQIah4UOL1TMoDAki8K0NjGvsA==",
|
|
6320
6660
|
"dev": true,
|
|
6321
6661
|
"license": "MIT",
|
|
6322
6662
|
"dependencies": {
|
|
6323
|
-
"@vitest/utils": "4.1.
|
|
6663
|
+
"@vitest/utils": "4.1.8",
|
|
6324
6664
|
"fflate": "^0.8.2",
|
|
6325
6665
|
"flatted": "^3.4.2",
|
|
6326
6666
|
"pathe": "^2.0.3",
|
|
@@ -6332,17 +6672,17 @@
|
|
|
6332
6672
|
"url": "https://opencollective.com/vitest"
|
|
6333
6673
|
},
|
|
6334
6674
|
"peerDependencies": {
|
|
6335
|
-
"vitest": "4.1.
|
|
6675
|
+
"vitest": "4.1.8"
|
|
6336
6676
|
}
|
|
6337
6677
|
},
|
|
6338
6678
|
"node_modules/@vitest/utils": {
|
|
6339
|
-
"version": "4.1.
|
|
6340
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.
|
|
6341
|
-
"integrity": "sha512-
|
|
6679
|
+
"version": "4.1.8",
|
|
6680
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.8.tgz",
|
|
6681
|
+
"integrity": "sha512-uOJamYALNhfJ6iolExyQM40yIQwDqYnkKtQ5VCiSe17E33H0aQ/u+1GlRuz4LZBk6Mm3sg90G9hEbmEt37C1Zg==",
|
|
6342
6682
|
"dev": true,
|
|
6343
6683
|
"license": "MIT",
|
|
6344
6684
|
"dependencies": {
|
|
6345
|
-
"@vitest/pretty-format": "4.1.
|
|
6685
|
+
"@vitest/pretty-format": "4.1.8",
|
|
6346
6686
|
"convert-source-map": "^2.0.0",
|
|
6347
6687
|
"tinyrainbow": "^3.1.0"
|
|
6348
6688
|
},
|
|
@@ -6639,9 +6979,9 @@
|
|
|
6639
6979
|
}
|
|
6640
6980
|
},
|
|
6641
6981
|
"node_modules/ansis": {
|
|
6642
|
-
"version": "4.3.
|
|
6643
|
-
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.
|
|
6644
|
-
"integrity": "sha512-
|
|
6982
|
+
"version": "4.3.1",
|
|
6983
|
+
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.1.tgz",
|
|
6984
|
+
"integrity": "sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==",
|
|
6645
6985
|
"license": "ISC",
|
|
6646
6986
|
"engines": {
|
|
6647
6987
|
"node": ">=14"
|
|
@@ -6980,9 +7320,9 @@
|
|
|
6980
7320
|
}
|
|
6981
7321
|
},
|
|
6982
7322
|
"node_modules/baseline-browser-mapping": {
|
|
6983
|
-
"version": "2.10.
|
|
6984
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
6985
|
-
"integrity": "sha512-
|
|
7323
|
+
"version": "2.10.33",
|
|
7324
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.33.tgz",
|
|
7325
|
+
"integrity": "sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==",
|
|
6986
7326
|
"license": "Apache-2.0",
|
|
6987
7327
|
"bin": {
|
|
6988
7328
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -7995,9 +8335,9 @@
|
|
|
7995
8335
|
"license": "MIT"
|
|
7996
8336
|
},
|
|
7997
8337
|
"node_modules/date-fns": {
|
|
7998
|
-
"version": "4.
|
|
7999
|
-
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.
|
|
8000
|
-
"integrity": "sha512
|
|
8338
|
+
"version": "4.4.0",
|
|
8339
|
+
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.4.0.tgz",
|
|
8340
|
+
"integrity": "sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==",
|
|
8001
8341
|
"license": "MIT",
|
|
8002
8342
|
"funding": {
|
|
8003
8343
|
"type": "github",
|
|
@@ -11327,9 +11667,19 @@
|
|
|
11327
11667
|
"license": "MIT"
|
|
11328
11668
|
},
|
|
11329
11669
|
"node_modules/js-yaml": {
|
|
11330
|
-
"version": "4.
|
|
11331
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.
|
|
11332
|
-
"integrity": "sha512-
|
|
11670
|
+
"version": "4.2.0",
|
|
11671
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
|
|
11672
|
+
"integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
|
|
11673
|
+
"funding": [
|
|
11674
|
+
{
|
|
11675
|
+
"type": "github",
|
|
11676
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
11677
|
+
},
|
|
11678
|
+
{
|
|
11679
|
+
"type": "github",
|
|
11680
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
11681
|
+
}
|
|
11682
|
+
],
|
|
11333
11683
|
"license": "MIT",
|
|
11334
11684
|
"dependencies": {
|
|
11335
11685
|
"argparse": "^2.0.1"
|
|
@@ -12195,6 +12545,12 @@
|
|
|
12195
12545
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
12196
12546
|
}
|
|
12197
12547
|
},
|
|
12548
|
+
"node_modules/long": {
|
|
12549
|
+
"version": "5.3.2",
|
|
12550
|
+
"resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
|
|
12551
|
+
"integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
|
|
12552
|
+
"license": "Apache-2.0"
|
|
12553
|
+
},
|
|
12198
12554
|
"node_modules/loose-envify": {
|
|
12199
12555
|
"version": "1.4.0",
|
|
12200
12556
|
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
@@ -12507,25 +12863,25 @@
|
|
|
12507
12863
|
}
|
|
12508
12864
|
},
|
|
12509
12865
|
"node_modules/msw/node_modules/@inquirer/ansi": {
|
|
12510
|
-
"version": "2.0.
|
|
12511
|
-
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.
|
|
12512
|
-
"integrity": "sha512-
|
|
12866
|
+
"version": "2.0.7",
|
|
12867
|
+
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.7.tgz",
|
|
12868
|
+
"integrity": "sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==",
|
|
12513
12869
|
"license": "MIT",
|
|
12514
12870
|
"engines": {
|
|
12515
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12871
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12516
12872
|
}
|
|
12517
12873
|
},
|
|
12518
12874
|
"node_modules/msw/node_modules/@inquirer/confirm": {
|
|
12519
|
-
"version": "6.1.
|
|
12520
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.
|
|
12521
|
-
"integrity": "sha512-
|
|
12875
|
+
"version": "6.1.1",
|
|
12876
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.1.tgz",
|
|
12877
|
+
"integrity": "sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==",
|
|
12522
12878
|
"license": "MIT",
|
|
12523
12879
|
"dependencies": {
|
|
12524
|
-
"@inquirer/core": "^11.2.
|
|
12525
|
-
"@inquirer/type": "^4.0.
|
|
12880
|
+
"@inquirer/core": "^11.2.1",
|
|
12881
|
+
"@inquirer/type": "^4.0.7"
|
|
12526
12882
|
},
|
|
12527
12883
|
"engines": {
|
|
12528
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12884
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12529
12885
|
},
|
|
12530
12886
|
"peerDependencies": {
|
|
12531
12887
|
"@types/node": ">=18"
|
|
@@ -12537,21 +12893,21 @@
|
|
|
12537
12893
|
}
|
|
12538
12894
|
},
|
|
12539
12895
|
"node_modules/msw/node_modules/@inquirer/core": {
|
|
12540
|
-
"version": "11.2.
|
|
12541
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.
|
|
12542
|
-
"integrity": "sha512-
|
|
12896
|
+
"version": "11.2.1",
|
|
12897
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.1.tgz",
|
|
12898
|
+
"integrity": "sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==",
|
|
12543
12899
|
"license": "MIT",
|
|
12544
12900
|
"dependencies": {
|
|
12545
|
-
"@inquirer/ansi": "^2.0.
|
|
12546
|
-
"@inquirer/figures": "^2.0.
|
|
12547
|
-
"@inquirer/type": "^4.0.
|
|
12901
|
+
"@inquirer/ansi": "^2.0.7",
|
|
12902
|
+
"@inquirer/figures": "^2.0.7",
|
|
12903
|
+
"@inquirer/type": "^4.0.7",
|
|
12548
12904
|
"cli-width": "^4.1.0",
|
|
12549
12905
|
"fast-wrap-ansi": "^0.2.0",
|
|
12550
|
-
"mute-stream": "^
|
|
12906
|
+
"mute-stream": "^3.0.0",
|
|
12551
12907
|
"signal-exit": "^4.1.0"
|
|
12552
12908
|
},
|
|
12553
12909
|
"engines": {
|
|
12554
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12910
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12555
12911
|
},
|
|
12556
12912
|
"peerDependencies": {
|
|
12557
12913
|
"@types/node": ">=18"
|
|
@@ -12563,21 +12919,21 @@
|
|
|
12563
12919
|
}
|
|
12564
12920
|
},
|
|
12565
12921
|
"node_modules/msw/node_modules/@inquirer/figures": {
|
|
12566
|
-
"version": "2.0.
|
|
12567
|
-
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.
|
|
12568
|
-
"integrity": "sha512-
|
|
12922
|
+
"version": "2.0.7",
|
|
12923
|
+
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.7.tgz",
|
|
12924
|
+
"integrity": "sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==",
|
|
12569
12925
|
"license": "MIT",
|
|
12570
12926
|
"engines": {
|
|
12571
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12927
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12572
12928
|
}
|
|
12573
12929
|
},
|
|
12574
12930
|
"node_modules/msw/node_modules/@inquirer/type": {
|
|
12575
|
-
"version": "4.0.
|
|
12576
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.
|
|
12577
|
-
"integrity": "sha512-
|
|
12931
|
+
"version": "4.0.7",
|
|
12932
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.7.tgz",
|
|
12933
|
+
"integrity": "sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==",
|
|
12578
12934
|
"license": "MIT",
|
|
12579
12935
|
"engines": {
|
|
12580
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12936
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12581
12937
|
},
|
|
12582
12938
|
"peerDependencies": {
|
|
12583
12939
|
"@types/node": ">=18"
|
|
@@ -12589,12 +12945,12 @@
|
|
|
12589
12945
|
}
|
|
12590
12946
|
},
|
|
12591
12947
|
"node_modules/msw/node_modules/mute-stream": {
|
|
12592
|
-
"version": "
|
|
12593
|
-
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-
|
|
12594
|
-
"integrity": "sha512-
|
|
12948
|
+
"version": "3.0.0",
|
|
12949
|
+
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
|
|
12950
|
+
"integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
|
|
12595
12951
|
"license": "ISC",
|
|
12596
12952
|
"engines": {
|
|
12597
|
-
"node": "^
|
|
12953
|
+
"node": "^20.17.0 || >=22.9.0"
|
|
12598
12954
|
}
|
|
12599
12955
|
},
|
|
12600
12956
|
"node_modules/msw/node_modules/path-to-regexp": {
|
|
@@ -12604,9 +12960,9 @@
|
|
|
12604
12960
|
"license": "MIT"
|
|
12605
12961
|
},
|
|
12606
12962
|
"node_modules/msw/node_modules/type-fest": {
|
|
12607
|
-
"version": "5.
|
|
12608
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.
|
|
12609
|
-
"integrity": "sha512-
|
|
12963
|
+
"version": "5.7.0",
|
|
12964
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.7.0.tgz",
|
|
12965
|
+
"integrity": "sha512-1URUxUqfHFM1c+zfSPsa3gnkO7Aq21qyH75SIduNYz4SzY964rn1X2vCMQaHSHhktiw+0kPa2iyb6PUpXqB6Vg==",
|
|
12610
12966
|
"license": "(MIT OR CC0-1.0)",
|
|
12611
12967
|
"dependencies": {
|
|
12612
12968
|
"tagged-tag": "^1.0.0"
|
|
@@ -12819,6 +13175,32 @@
|
|
|
12819
13175
|
"dev": true,
|
|
12820
13176
|
"license": "MIT"
|
|
12821
13177
|
},
|
|
13178
|
+
"node_modules/o11y": {
|
|
13179
|
+
"version": "264.6.0",
|
|
13180
|
+
"resolved": "https://registry.npmjs.org/o11y/-/o11y-264.6.0.tgz",
|
|
13181
|
+
"integrity": "sha512-v3x29+PphNaORbOrYi6ucsx391hwJk+mxf4XGGoRB6+BcI0W3/fhazaXBCBtEZOnU2YDLgpFd8B4CzCmBFiKFQ==",
|
|
13182
|
+
"license": "BSD-3-Clause",
|
|
13183
|
+
"peer": true,
|
|
13184
|
+
"dependencies": {
|
|
13185
|
+
"o11y_schema": "260.5.0",
|
|
13186
|
+
"protobufjs": "7.5.5",
|
|
13187
|
+
"web-vitals": "^5.1.0"
|
|
13188
|
+
}
|
|
13189
|
+
},
|
|
13190
|
+
"node_modules/o11y_schema": {
|
|
13191
|
+
"version": "264.70.0",
|
|
13192
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.70.0.tgz",
|
|
13193
|
+
"integrity": "sha512-3FVh/krlBe1+CnQZUrZkIH1JsI7cpSxorbosSLXLOOPyE8wHNRXUT5hfaH2XlhlAQMneoK+EBM2uioRvoXZSHA==",
|
|
13194
|
+
"license": "BSD-3-Clause",
|
|
13195
|
+
"peer": true
|
|
13196
|
+
},
|
|
13197
|
+
"node_modules/o11y/node_modules/o11y_schema": {
|
|
13198
|
+
"version": "260.5.0",
|
|
13199
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-260.5.0.tgz",
|
|
13200
|
+
"integrity": "sha512-0qrtqE394CODoPovUBdQQ2efHls6Z2xP6jvLitEGKSEj1KcCyeBLx2dHwTUtv66zwZTKjSp27QLFF4PZhengEQ==",
|
|
13201
|
+
"license": "BSD-3-Clause",
|
|
13202
|
+
"peer": true
|
|
13203
|
+
},
|
|
12822
13204
|
"node_modules/object-assign": {
|
|
12823
13205
|
"version": "4.1.1",
|
|
12824
13206
|
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
@@ -13806,6 +14188,31 @@
|
|
|
13806
14188
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
13807
14189
|
"license": "ISC"
|
|
13808
14190
|
},
|
|
14191
|
+
"node_modules/protobufjs": {
|
|
14192
|
+
"version": "7.5.5",
|
|
14193
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.5.tgz",
|
|
14194
|
+
"integrity": "sha512-3wY1AxV+VBNW8Yypfd1yQY9pXnqTAN+KwQxL8iYm3/BjKYMNg4i0owhEe26PWDOMaIrzeeF98Lqd5NGz4omiIg==",
|
|
14195
|
+
"hasInstallScript": true,
|
|
14196
|
+
"license": "BSD-3-Clause",
|
|
14197
|
+
"peer": true,
|
|
14198
|
+
"dependencies": {
|
|
14199
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
14200
|
+
"@protobufjs/base64": "^1.1.2",
|
|
14201
|
+
"@protobufjs/codegen": "^2.0.4",
|
|
14202
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
14203
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
14204
|
+
"@protobufjs/float": "^1.0.2",
|
|
14205
|
+
"@protobufjs/inquire": "^1.1.0",
|
|
14206
|
+
"@protobufjs/path": "^1.1.2",
|
|
14207
|
+
"@protobufjs/pool": "^1.1.0",
|
|
14208
|
+
"@protobufjs/utf8": "^1.1.0",
|
|
14209
|
+
"@types/node": ">=13.7.0",
|
|
14210
|
+
"long": "^5.0.0"
|
|
14211
|
+
},
|
|
14212
|
+
"engines": {
|
|
14213
|
+
"node": ">=12.0.0"
|
|
14214
|
+
}
|
|
14215
|
+
},
|
|
13809
14216
|
"node_modules/proxy-addr": {
|
|
13810
14217
|
"version": "2.0.7",
|
|
13811
14218
|
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
@@ -14009,9 +14416,9 @@
|
|
|
14009
14416
|
}
|
|
14010
14417
|
},
|
|
14011
14418
|
"node_modules/react": {
|
|
14012
|
-
"version": "19.2.
|
|
14013
|
-
"resolved": "https://registry.npmjs.org/react/-/react-19.2.
|
|
14014
|
-
"integrity": "sha512-
|
|
14419
|
+
"version": "19.2.7",
|
|
14420
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
|
|
14421
|
+
"integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
|
|
14015
14422
|
"license": "MIT",
|
|
14016
14423
|
"engines": {
|
|
14017
14424
|
"node": ">=0.10.0"
|
|
@@ -14040,15 +14447,15 @@
|
|
|
14040
14447
|
}
|
|
14041
14448
|
},
|
|
14042
14449
|
"node_modules/react-dom": {
|
|
14043
|
-
"version": "19.2.
|
|
14044
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.
|
|
14045
|
-
"integrity": "sha512-
|
|
14450
|
+
"version": "19.2.7",
|
|
14451
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
|
|
14452
|
+
"integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
|
|
14046
14453
|
"license": "MIT",
|
|
14047
14454
|
"dependencies": {
|
|
14048
14455
|
"scheduler": "^0.27.0"
|
|
14049
14456
|
},
|
|
14050
14457
|
"peerDependencies": {
|
|
14051
|
-
"react": "^19.2.
|
|
14458
|
+
"react": "^19.2.7"
|
|
14052
14459
|
}
|
|
14053
14460
|
},
|
|
14054
14461
|
"node_modules/react-is": {
|
|
@@ -14413,12 +14820,12 @@
|
|
|
14413
14820
|
"license": "MIT"
|
|
14414
14821
|
},
|
|
14415
14822
|
"node_modules/rollup": {
|
|
14416
|
-
"version": "4.
|
|
14417
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
14418
|
-
"integrity": "sha512-
|
|
14823
|
+
"version": "4.61.0",
|
|
14824
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.61.0.tgz",
|
|
14825
|
+
"integrity": "sha512-T9mWdbWfQtp0B5lv/HX+wrhYsmXRlcWnXXmJbXqKJhlRaoS6KMhq0gpyzW4UJfclcxrEdLnTgjT2NjruLONu0g==",
|
|
14419
14826
|
"license": "MIT",
|
|
14420
14827
|
"dependencies": {
|
|
14421
|
-
"@types/estree": "1.0.
|
|
14828
|
+
"@types/estree": "1.0.9"
|
|
14422
14829
|
},
|
|
14423
14830
|
"bin": {
|
|
14424
14831
|
"rollup": "dist/bin/rollup"
|
|
@@ -14428,40 +14835,34 @@
|
|
|
14428
14835
|
"npm": ">=8.0.0"
|
|
14429
14836
|
},
|
|
14430
14837
|
"optionalDependencies": {
|
|
14431
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
14432
|
-
"@rollup/rollup-android-arm64": "4.
|
|
14433
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
14434
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
14435
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
14436
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
14437
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
14438
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
14439
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
14440
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
14441
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
14442
|
-
"@rollup/rollup-linux-loong64-musl": "4.
|
|
14443
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.
|
|
14444
|
-
"@rollup/rollup-linux-ppc64-musl": "4.
|
|
14445
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
14446
|
-
"@rollup/rollup-linux-riscv64-musl": "4.
|
|
14447
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
14448
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
14449
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
14450
|
-
"@rollup/rollup-openbsd-x64": "4.
|
|
14451
|
-
"@rollup/rollup-openharmony-arm64": "4.
|
|
14452
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
14453
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
14454
|
-
"@rollup/rollup-win32-x64-gnu": "4.
|
|
14455
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
14838
|
+
"@rollup/rollup-android-arm-eabi": "4.61.0",
|
|
14839
|
+
"@rollup/rollup-android-arm64": "4.61.0",
|
|
14840
|
+
"@rollup/rollup-darwin-arm64": "4.61.0",
|
|
14841
|
+
"@rollup/rollup-darwin-x64": "4.61.0",
|
|
14842
|
+
"@rollup/rollup-freebsd-arm64": "4.61.0",
|
|
14843
|
+
"@rollup/rollup-freebsd-x64": "4.61.0",
|
|
14844
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.61.0",
|
|
14845
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.61.0",
|
|
14846
|
+
"@rollup/rollup-linux-arm64-gnu": "4.61.0",
|
|
14847
|
+
"@rollup/rollup-linux-arm64-musl": "4.61.0",
|
|
14848
|
+
"@rollup/rollup-linux-loong64-gnu": "4.61.0",
|
|
14849
|
+
"@rollup/rollup-linux-loong64-musl": "4.61.0",
|
|
14850
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.61.0",
|
|
14851
|
+
"@rollup/rollup-linux-ppc64-musl": "4.61.0",
|
|
14852
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.61.0",
|
|
14853
|
+
"@rollup/rollup-linux-riscv64-musl": "4.61.0",
|
|
14854
|
+
"@rollup/rollup-linux-s390x-gnu": "4.61.0",
|
|
14855
|
+
"@rollup/rollup-linux-x64-gnu": "4.61.0",
|
|
14856
|
+
"@rollup/rollup-linux-x64-musl": "4.61.0",
|
|
14857
|
+
"@rollup/rollup-openbsd-x64": "4.61.0",
|
|
14858
|
+
"@rollup/rollup-openharmony-arm64": "4.61.0",
|
|
14859
|
+
"@rollup/rollup-win32-arm64-msvc": "4.61.0",
|
|
14860
|
+
"@rollup/rollup-win32-ia32-msvc": "4.61.0",
|
|
14861
|
+
"@rollup/rollup-win32-x64-gnu": "4.61.0",
|
|
14862
|
+
"@rollup/rollup-win32-x64-msvc": "4.61.0",
|
|
14456
14863
|
"fsevents": "~2.3.2"
|
|
14457
14864
|
}
|
|
14458
14865
|
},
|
|
14459
|
-
"node_modules/rollup/node_modules/@types/estree": {
|
|
14460
|
-
"version": "1.0.8",
|
|
14461
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
14462
|
-
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
14463
|
-
"license": "MIT"
|
|
14464
|
-
},
|
|
14465
14866
|
"node_modules/router": {
|
|
14466
14867
|
"version": "2.2.0",
|
|
14467
14868
|
"resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
|
|
@@ -15841,18 +16242,18 @@
|
|
|
15841
16242
|
"license": "MIT"
|
|
15842
16243
|
},
|
|
15843
16244
|
"node_modules/tinyexec": {
|
|
15844
|
-
"version": "1.2.
|
|
15845
|
-
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.
|
|
15846
|
-
"integrity": "sha512-
|
|
16245
|
+
"version": "1.2.4",
|
|
16246
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz",
|
|
16247
|
+
"integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==",
|
|
15847
16248
|
"license": "MIT",
|
|
15848
16249
|
"engines": {
|
|
15849
16250
|
"node": ">=18"
|
|
15850
16251
|
}
|
|
15851
16252
|
},
|
|
15852
16253
|
"node_modules/tinyglobby": {
|
|
15853
|
-
"version": "0.2.
|
|
15854
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.
|
|
15855
|
-
"integrity": "sha512-
|
|
16254
|
+
"version": "0.2.17",
|
|
16255
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
16256
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
15856
16257
|
"license": "MIT",
|
|
15857
16258
|
"dependencies": {
|
|
15858
16259
|
"fdir": "^6.5.0",
|
|
@@ -15915,21 +16316,21 @@
|
|
|
15915
16316
|
}
|
|
15916
16317
|
},
|
|
15917
16318
|
"node_modules/tldts": {
|
|
15918
|
-
"version": "7.4.
|
|
15919
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
15920
|
-
"integrity": "sha512-
|
|
16319
|
+
"version": "7.4.2",
|
|
16320
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.2.tgz",
|
|
16321
|
+
"integrity": "sha512-kCwffuaH8ntKtygnWe1b4BJKWiCUH30n5KfoTr6IchcXOwR7chAOFJxFrH3vjANafUYrIA4a7SDL+nn7SiR4Sw==",
|
|
15921
16322
|
"license": "MIT",
|
|
15922
16323
|
"dependencies": {
|
|
15923
|
-
"tldts-core": "^7.4.
|
|
16324
|
+
"tldts-core": "^7.4.2"
|
|
15924
16325
|
},
|
|
15925
16326
|
"bin": {
|
|
15926
16327
|
"tldts": "bin/cli.js"
|
|
15927
16328
|
}
|
|
15928
16329
|
},
|
|
15929
16330
|
"node_modules/tldts-core": {
|
|
15930
|
-
"version": "7.4.
|
|
15931
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
15932
|
-
"integrity": "sha512-
|
|
16331
|
+
"version": "7.4.2",
|
|
16332
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.2.tgz",
|
|
16333
|
+
"integrity": "sha512-nwEyF4vl4RSJjwSjBUmOSxc3BFPoIFdlRthJ6e+5v9P3bHNsoD06UjuqMUspqp7vsEZ1beaHi1km+optiE17yA==",
|
|
15933
16334
|
"license": "MIT"
|
|
15934
16335
|
},
|
|
15935
16336
|
"node_modules/to-regex-range": {
|
|
@@ -16259,16 +16660,16 @@
|
|
|
16259
16660
|
}
|
|
16260
16661
|
},
|
|
16261
16662
|
"node_modules/typescript-eslint": {
|
|
16262
|
-
"version": "8.60.
|
|
16263
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.
|
|
16264
|
-
"integrity": "sha512-
|
|
16663
|
+
"version": "8.60.1",
|
|
16664
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.1.tgz",
|
|
16665
|
+
"integrity": "sha512-6m5hkkRAp8lKvhVpcprAIn5KkehQEh+47oHH2VGnExEh7dhNxXlg6GPAOIu6TxbVQxhebrJDvjl3020ooiWCMA==",
|
|
16265
16666
|
"dev": true,
|
|
16266
16667
|
"license": "MIT",
|
|
16267
16668
|
"dependencies": {
|
|
16268
|
-
"@typescript-eslint/eslint-plugin": "8.60.
|
|
16269
|
-
"@typescript-eslint/parser": "8.60.
|
|
16270
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
16271
|
-
"@typescript-eslint/utils": "8.60.
|
|
16669
|
+
"@typescript-eslint/eslint-plugin": "8.60.1",
|
|
16670
|
+
"@typescript-eslint/parser": "8.60.1",
|
|
16671
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
16672
|
+
"@typescript-eslint/utils": "8.60.1"
|
|
16272
16673
|
},
|
|
16273
16674
|
"engines": {
|
|
16274
16675
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -16522,9 +16923,9 @@
|
|
|
16522
16923
|
}
|
|
16523
16924
|
},
|
|
16524
16925
|
"node_modules/vite": {
|
|
16525
|
-
"version": "7.3.
|
|
16526
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.
|
|
16527
|
-
"integrity": "sha512
|
|
16926
|
+
"version": "7.3.5",
|
|
16927
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.5.tgz",
|
|
16928
|
+
"integrity": "sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==",
|
|
16528
16929
|
"license": "MIT",
|
|
16529
16930
|
"dependencies": {
|
|
16530
16931
|
"esbuild": "^0.27.0",
|
|
@@ -16651,19 +17052,19 @@
|
|
|
16651
17052
|
}
|
|
16652
17053
|
},
|
|
16653
17054
|
"node_modules/vitest": {
|
|
16654
|
-
"version": "4.1.
|
|
16655
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.
|
|
16656
|
-
"integrity": "sha512-
|
|
17055
|
+
"version": "4.1.8",
|
|
17056
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.8.tgz",
|
|
17057
|
+
"integrity": "sha512-flY6ScbCIt9HThs+C5HS7jvGOB560DJtk/Z15IQROTA6zEy49Nh8T/dofWTQL+n3vswqn87sbJNiuqw1SDp5Ig==",
|
|
16657
17058
|
"dev": true,
|
|
16658
17059
|
"license": "MIT",
|
|
16659
17060
|
"dependencies": {
|
|
16660
|
-
"@vitest/expect": "4.1.
|
|
16661
|
-
"@vitest/mocker": "4.1.
|
|
16662
|
-
"@vitest/pretty-format": "4.1.
|
|
16663
|
-
"@vitest/runner": "4.1.
|
|
16664
|
-
"@vitest/snapshot": "4.1.
|
|
16665
|
-
"@vitest/spy": "4.1.
|
|
16666
|
-
"@vitest/utils": "4.1.
|
|
17061
|
+
"@vitest/expect": "4.1.8",
|
|
17062
|
+
"@vitest/mocker": "4.1.8",
|
|
17063
|
+
"@vitest/pretty-format": "4.1.8",
|
|
17064
|
+
"@vitest/runner": "4.1.8",
|
|
17065
|
+
"@vitest/snapshot": "4.1.8",
|
|
17066
|
+
"@vitest/spy": "4.1.8",
|
|
17067
|
+
"@vitest/utils": "4.1.8",
|
|
16667
17068
|
"es-module-lexer": "^2.0.0",
|
|
16668
17069
|
"expect-type": "^1.3.0",
|
|
16669
17070
|
"magic-string": "^0.30.21",
|
|
@@ -16691,12 +17092,12 @@
|
|
|
16691
17092
|
"@edge-runtime/vm": "*",
|
|
16692
17093
|
"@opentelemetry/api": "^1.9.0",
|
|
16693
17094
|
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
16694
|
-
"@vitest/browser-playwright": "4.1.
|
|
16695
|
-
"@vitest/browser-preview": "4.1.
|
|
16696
|
-
"@vitest/browser-webdriverio": "4.1.
|
|
16697
|
-
"@vitest/coverage-istanbul": "4.1.
|
|
16698
|
-
"@vitest/coverage-v8": "4.1.
|
|
16699
|
-
"@vitest/ui": "4.1.
|
|
17095
|
+
"@vitest/browser-playwright": "4.1.8",
|
|
17096
|
+
"@vitest/browser-preview": "4.1.8",
|
|
17097
|
+
"@vitest/browser-webdriverio": "4.1.8",
|
|
17098
|
+
"@vitest/coverage-istanbul": "4.1.8",
|
|
17099
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
17100
|
+
"@vitest/ui": "4.1.8",
|
|
16700
17101
|
"happy-dom": "*",
|
|
16701
17102
|
"jsdom": "*",
|
|
16702
17103
|
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
@@ -16775,6 +17176,13 @@
|
|
|
16775
17176
|
"node": ">= 8"
|
|
16776
17177
|
}
|
|
16777
17178
|
},
|
|
17179
|
+
"node_modules/web-vitals": {
|
|
17180
|
+
"version": "5.3.0",
|
|
17181
|
+
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-5.3.0.tgz",
|
|
17182
|
+
"integrity": "sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g==",
|
|
17183
|
+
"license": "Apache-2.0",
|
|
17184
|
+
"peer": true
|
|
17185
|
+
},
|
|
16778
17186
|
"node_modules/webidl-conversions": {
|
|
16779
17187
|
"version": "7.0.0",
|
|
16780
17188
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
|