@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
|
"class-variance-authority": "^0.7.1",
|
|
15
15
|
"clsx": "^2.1.1",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
35
35
|
"@graphql-tools/utils": "^11.0.0",
|
|
36
36
|
"@playwright/test": "^1.49.0",
|
|
37
|
-
"@salesforce/vite-plugin-ui-bundle": "^
|
|
37
|
+
"@salesforce/vite-plugin-ui-bundle": "^10.2.2",
|
|
38
38
|
"@testing-library/jest-dom": "^6.6.3",
|
|
39
39
|
"@testing-library/react": "^16.1.0",
|
|
40
40
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -589,39 +589,283 @@
|
|
|
589
589
|
"node": ">=6.9.0"
|
|
590
590
|
}
|
|
591
591
|
},
|
|
592
|
+
"node_modules/@conduit-client/command-base": {
|
|
593
|
+
"version": "3.19.6",
|
|
594
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-base/-/command-base-3.19.6.tgz",
|
|
595
|
+
"integrity": "sha512-zbjMSv4d0SEPR63/HTa4lFoJtMHUMQ810GprFFR9U3OcZZ4PCyUQeyM8DIja/IsRgH7HDDEL7DnhF5mpT5UxDA==",
|
|
596
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
597
|
+
"dependencies": {
|
|
598
|
+
"@conduit-client/utils": "3.19.6"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"node_modules/@conduit-client/command-cache-control": {
|
|
602
|
+
"version": "3.19.6",
|
|
603
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-cache-control/-/command-cache-control-3.19.6.tgz",
|
|
604
|
+
"integrity": "sha512-ReZdJa5S65sGqXWocq6PkUEodon9xaBHzdpPHrdhFADotjhJY2wYQ9/050tnQ7TVg31IkeUZNNrj4WPEdYwV7w==",
|
|
605
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
606
|
+
"dependencies": {
|
|
607
|
+
"@conduit-client/command-base": "3.19.6",
|
|
608
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
609
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
610
|
+
"@conduit-client/utils": "3.19.6"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"node_modules/@conduit-client/command-http-cache-control": {
|
|
614
|
+
"version": "3.19.6",
|
|
615
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-http-cache-control/-/command-http-cache-control-3.19.6.tgz",
|
|
616
|
+
"integrity": "sha512-41bjECK4JByGKpj6chojO25i1sgOnvQoklvzgW6L9BuLE5d3uzBw6JmY5srAOiaP1t0ZYHeHm+lLnuZ7R3BjRA==",
|
|
617
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
618
|
+
"dependencies": {
|
|
619
|
+
"@conduit-client/command-base": "3.19.6",
|
|
620
|
+
"@conduit-client/command-cache-control": "3.19.6",
|
|
621
|
+
"@conduit-client/service-aura-network": "3.19.6",
|
|
622
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
623
|
+
"@conduit-client/service-fetch-network": "3.19.6",
|
|
624
|
+
"@conduit-client/service-pubsub": "3.19.6",
|
|
625
|
+
"@conduit-client/utils": "3.19.6"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"node_modules/@conduit-client/jsonschema-validate": {
|
|
629
|
+
"version": "3.19.6",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/jsonschema-validate/-/jsonschema-validate-3.19.6.tgz",
|
|
631
|
+
"integrity": "sha512-XVEzbVc568gW3gu5YZh9CAVMZNjQ5hdTkR9M8ApsXX7GYhxy41Vl9F6Kkig9SFr6K0xDxAmfldvHSxkqHFebXw==",
|
|
632
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
633
|
+
"dependencies": {
|
|
634
|
+
"@conduit-client/utils": "3.19.6"
|
|
635
|
+
}
|
|
636
|
+
},
|
|
592
637
|
"node_modules/@conduit-client/jwt-manager": {
|
|
593
|
-
"version": "3.
|
|
594
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.
|
|
595
|
-
"integrity": "sha512-
|
|
638
|
+
"version": "3.19.6",
|
|
639
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.19.6.tgz",
|
|
640
|
+
"integrity": "sha512-tpkg0DtJxTdW/zac+nm8wCpSw2wavYtOfVDHfmAAtH/FF39PWjcam7ldyru1G95NR2JbvAxbLQZefC+Dt0n5kg==",
|
|
596
641
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
597
642
|
"dependencies": {
|
|
598
643
|
"jwt-decode": "~3.1.2"
|
|
599
644
|
}
|
|
600
645
|
},
|
|
646
|
+
"node_modules/@conduit-client/onestore-graphql-parser": {
|
|
647
|
+
"version": "3.19.6",
|
|
648
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/onestore-graphql-parser/-/onestore-graphql-parser-3.19.6.tgz",
|
|
649
|
+
"integrity": "sha512-zz02oNZjrxWQDAt7jN3yKurCdQTp2Jz3Cp9fhkZhJ/NNUqElcQUPK/3ruUX5MhwpjbbVU4KXvNNqwjg0We7UoA==",
|
|
650
|
+
"license": "MIT",
|
|
651
|
+
"dependencies": {
|
|
652
|
+
"@conduit-client/jsonschema-validate": "3.19.6",
|
|
653
|
+
"@conduit-client/utils": "3.19.6",
|
|
654
|
+
"graphql": "16.11.0"
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
"node_modules/@conduit-client/onestore-graphql-parser/node_modules/graphql": {
|
|
658
|
+
"version": "16.11.0",
|
|
659
|
+
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.11.0.tgz",
|
|
660
|
+
"integrity": "sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==",
|
|
661
|
+
"license": "MIT",
|
|
662
|
+
"engines": {
|
|
663
|
+
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
"node_modules/@conduit-client/service-aura-network": {
|
|
667
|
+
"version": "3.19.6",
|
|
668
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-aura-network/-/service-aura-network-3.19.6.tgz",
|
|
669
|
+
"integrity": "sha512-H8+Uq0A8e9QYtYrvVfkoha7ozQP8aCTqn9vYKt1WzehkzRI+webIZjNeCrJtFsXEW+s2Shwy2P3C3GY6tF/rUg==",
|
|
670
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
671
|
+
"dependencies": {
|
|
672
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
673
|
+
"@conduit-client/utils": "3.19.6"
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"node_modules/@conduit-client/service-cache": {
|
|
677
|
+
"version": "3.19.6",
|
|
678
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache/-/service-cache-3.19.6.tgz",
|
|
679
|
+
"integrity": "sha512-WBQJgOXLZsAyWBnaOnliwgs+tx9JJsCGtLV31oqXrLbjxONk1NYNFbbpW70a8wLBJ0ZKFd4s/+nNicKwiGvRWw==",
|
|
680
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
681
|
+
"dependencies": {
|
|
682
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
683
|
+
"@conduit-client/utils": "3.19.6"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"node_modules/@conduit-client/service-cache-control": {
|
|
687
|
+
"version": "3.19.6",
|
|
688
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache-control/-/service-cache-control-3.19.6.tgz",
|
|
689
|
+
"integrity": "sha512-pQ2ipf9FZs2vPjG3d837kpGWQGK0fmj73spn6VUWy0jiewlZZ6L/uzZzV9smMv65yAHVWnBO6ZMi/jVp+y0YsQ==",
|
|
690
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
691
|
+
"dependencies": {
|
|
692
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
693
|
+
"@conduit-client/service-cache-inclusion-policy": "3.19.6",
|
|
694
|
+
"@conduit-client/utils": "3.19.6"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"node_modules/@conduit-client/service-cache-inclusion-policy": {
|
|
698
|
+
"version": "3.19.6",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache-inclusion-policy/-/service-cache-inclusion-policy-3.19.6.tgz",
|
|
700
|
+
"integrity": "sha512-q7kJguFTNdb5/RKykBXgDttWBwT7+tcS4zWwEaHXmDTlb4iTOlb5JfpSgFoEkx4mY1+QsiM179g4sP38IN+0jQ==",
|
|
701
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
702
|
+
"dependencies": {
|
|
703
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
704
|
+
"@conduit-client/utils": "3.19.6"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
601
707
|
"node_modules/@conduit-client/service-fetch-network": {
|
|
602
|
-
"version": "3.
|
|
603
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.
|
|
604
|
-
"integrity": "sha512-
|
|
708
|
+
"version": "3.19.6",
|
|
709
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.19.6.tgz",
|
|
710
|
+
"integrity": "sha512-yOsiRyOrM03tmX92oVbThJs7jZfjiVBQZiGkV+I+980TrJGnAwvaZlQVeG4Ncb285HtpBzkUnuc05Eol/tlCgw==",
|
|
711
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
712
|
+
"dependencies": {
|
|
713
|
+
"@conduit-client/jwt-manager": "3.19.6",
|
|
714
|
+
"@conduit-client/service-retry": "3.19.6",
|
|
715
|
+
"@conduit-client/utils": "3.19.6"
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"node_modules/@conduit-client/service-instrumentation": {
|
|
719
|
+
"version": "3.19.6",
|
|
720
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation/-/service-instrumentation-3.19.6.tgz",
|
|
721
|
+
"integrity": "sha512-o+tR7hbwc2SNMYvKMW4IT0Z2JkO2BpCXiWchz/5N7GiKW1Xuhl/8jLY7mzmm96OVZGktPp4p4FHGlUiTdlqiSQ==",
|
|
722
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
723
|
+
"dependencies": {
|
|
724
|
+
"@conduit-client/service-instrumentation-noop": "3.19.6",
|
|
725
|
+
"@conduit-client/service-instrumentation-o11y": "3.19.6",
|
|
726
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
727
|
+
"@conduit-client/utils": "3.19.6",
|
|
728
|
+
"@opentelemetry/api": "1.7.0"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"node_modules/@conduit-client/service-instrumentation-noop": {
|
|
732
|
+
"version": "3.19.6",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-noop/-/service-instrumentation-noop-3.19.6.tgz",
|
|
734
|
+
"integrity": "sha512-4OuCYyNJnfDqIWXlTTxfhEkMbanIruZrMr8Rzx+MBPuYSqMSJmzCRD1Imf9nh84RedmdC4OlOxdgF6FVgYRcfQ==",
|
|
735
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
736
|
+
"dependencies": {
|
|
737
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
738
|
+
"@conduit-client/utils": "3.19.6",
|
|
739
|
+
"@opentelemetry/api": "1.7.0"
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
"node_modules/@conduit-client/service-instrumentation-noop/node_modules/@opentelemetry/api": {
|
|
743
|
+
"version": "1.7.0",
|
|
744
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
745
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
746
|
+
"license": "Apache-2.0",
|
|
747
|
+
"engines": {
|
|
748
|
+
"node": ">=8.0.0"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"node_modules/@conduit-client/service-instrumentation-o11y": {
|
|
752
|
+
"version": "3.19.6",
|
|
753
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-o11y/-/service-instrumentation-o11y-3.19.6.tgz",
|
|
754
|
+
"integrity": "sha512-NQU9jeob5ARas8HpcyMADvhEyQk76YaBvWV6qGdQi22vPK636FCZDucysL++Q2iCSrszX5SS++0q4HEQo1mFog==",
|
|
605
755
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
606
756
|
"dependencies": {
|
|
607
|
-
"@conduit-client/
|
|
608
|
-
"@conduit-client/
|
|
609
|
-
"@
|
|
757
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
758
|
+
"@conduit-client/utils": "3.19.6",
|
|
759
|
+
"@opentelemetry/api": "1.7.0",
|
|
760
|
+
"o11y": "252.7.0"
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/@opentelemetry/api": {
|
|
764
|
+
"version": "1.7.0",
|
|
765
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
766
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
767
|
+
"license": "Apache-2.0",
|
|
768
|
+
"engines": {
|
|
769
|
+
"node": ">=8.0.0"
|
|
770
|
+
}
|
|
771
|
+
},
|
|
772
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y": {
|
|
773
|
+
"version": "252.7.0",
|
|
774
|
+
"resolved": "https://registry.npmjs.org/o11y/-/o11y-252.7.0.tgz",
|
|
775
|
+
"integrity": "sha512-/P79vBumoxplQ4aqjW8GoVEMk7Uj50HOmZQAyNtu/FE8FuPXSh9rnkguxUDfN5l1oWI8Eyktrnu3XRs56OkQVQ==",
|
|
776
|
+
"license": "BSD-3-Clause",
|
|
777
|
+
"dependencies": {
|
|
778
|
+
"o11y_schema": "252.11.0",
|
|
779
|
+
"protobufjs": "7.2.4",
|
|
780
|
+
"web-vitals": "3.5.2"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y_schema": {
|
|
784
|
+
"version": "252.11.0",
|
|
785
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-252.11.0.tgz",
|
|
786
|
+
"integrity": "sha512-gdzht1/LRbnJZZGtR2M6ACopNLiwuUs0yP8OGnDbpCTJITwDS9S5wb7qbxUMY2kyhXkGR3oD8RY0C1S6+/1rRQ==",
|
|
787
|
+
"license": "BSD-3-Clause"
|
|
788
|
+
},
|
|
789
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/protobufjs": {
|
|
790
|
+
"version": "7.2.4",
|
|
791
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz",
|
|
792
|
+
"integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==",
|
|
793
|
+
"hasInstallScript": true,
|
|
794
|
+
"license": "BSD-3-Clause",
|
|
795
|
+
"dependencies": {
|
|
796
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
797
|
+
"@protobufjs/base64": "^1.1.2",
|
|
798
|
+
"@protobufjs/codegen": "^2.0.4",
|
|
799
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
800
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
801
|
+
"@protobufjs/float": "^1.0.2",
|
|
802
|
+
"@protobufjs/inquire": "^1.1.0",
|
|
803
|
+
"@protobufjs/path": "^1.1.2",
|
|
804
|
+
"@protobufjs/pool": "^1.1.0",
|
|
805
|
+
"@protobufjs/utf8": "^1.1.0",
|
|
806
|
+
"@types/node": ">=13.7.0",
|
|
807
|
+
"long": "^5.0.0"
|
|
808
|
+
},
|
|
809
|
+
"engines": {
|
|
810
|
+
"node": ">=12.0.0"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/web-vitals": {
|
|
814
|
+
"version": "3.5.2",
|
|
815
|
+
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz",
|
|
816
|
+
"integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==",
|
|
817
|
+
"license": "Apache-2.0"
|
|
818
|
+
},
|
|
819
|
+
"node_modules/@conduit-client/service-instrumentation-types": {
|
|
820
|
+
"version": "3.19.6",
|
|
821
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-types/-/service-instrumentation-types-3.19.6.tgz",
|
|
822
|
+
"integrity": "sha512-BZ6BsYa2StM2+bGWnv/cB4SXaS9fCTQX1bL9z0UqIZbPmBYhtr640/SirAl8z2pqnl0Qd5OZnYAlpyLSqJoKOg==",
|
|
823
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
824
|
+
"dependencies": {
|
|
825
|
+
"@conduit-client/utils": "3.19.6",
|
|
826
|
+
"@opentelemetry/api": "1.7.0"
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
"node_modules/@conduit-client/service-instrumentation-types/node_modules/@opentelemetry/api": {
|
|
830
|
+
"version": "1.7.0",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
832
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
833
|
+
"license": "Apache-2.0",
|
|
834
|
+
"engines": {
|
|
835
|
+
"node": ">=8.0.0"
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
"node_modules/@conduit-client/service-instrumentation/node_modules/@opentelemetry/api": {
|
|
839
|
+
"version": "1.7.0",
|
|
840
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
841
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
842
|
+
"license": "Apache-2.0",
|
|
843
|
+
"engines": {
|
|
844
|
+
"node": ">=8.0.0"
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
"node_modules/@conduit-client/service-pubsub": {
|
|
848
|
+
"version": "3.19.6",
|
|
849
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-pubsub/-/service-pubsub-3.19.6.tgz",
|
|
850
|
+
"integrity": "sha512-HgWWiXMX43jorZNtqEHx/8cxRImcga6ycjCS6NRPnYStsndIBZIR53GnKcXbPvvaO/v5BhA3WWiWwSYe38OF2A==",
|
|
851
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
852
|
+
"dependencies": {
|
|
853
|
+
"@conduit-client/utils": "3.19.6"
|
|
610
854
|
}
|
|
611
855
|
},
|
|
612
856
|
"node_modules/@conduit-client/service-retry": {
|
|
613
|
-
"version": "3.
|
|
614
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.
|
|
615
|
-
"integrity": "sha512-
|
|
857
|
+
"version": "3.19.6",
|
|
858
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.19.6.tgz",
|
|
859
|
+
"integrity": "sha512-Zb1V2un+X3iFFN/eiY+V+G9cfvRqK2ppHjKWVF+SXRY52fOKVbEvbRA/n/YM/xemfA4PiMcmNzOrhvHwYNImaw==",
|
|
616
860
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
617
861
|
"dependencies": {
|
|
618
|
-
"@conduit-client/utils": "3.
|
|
862
|
+
"@conduit-client/utils": "3.19.6"
|
|
619
863
|
}
|
|
620
864
|
},
|
|
621
865
|
"node_modules/@conduit-client/utils": {
|
|
622
|
-
"version": "3.
|
|
623
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.
|
|
624
|
-
"integrity": "sha512-
|
|
866
|
+
"version": "3.19.6",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.19.6.tgz",
|
|
868
|
+
"integrity": "sha512-sEE8RIz1+LxPJJVkBsSATgQBEn91pKdiEahUqisnodmnct+uLbI+bi/k4NPXoNMSIZM7W2VgEWFQDHF2GXZ28w==",
|
|
625
869
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
626
870
|
},
|
|
627
871
|
"node_modules/@csstools/color-helpers": {
|
|
@@ -746,9 +990,9 @@
|
|
|
746
990
|
"license": "MIT"
|
|
747
991
|
},
|
|
748
992
|
"node_modules/@dotenvx/dotenvx": {
|
|
749
|
-
"version": "1.
|
|
750
|
-
"resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.
|
|
751
|
-
"integrity": "sha512-
|
|
993
|
+
"version": "1.71.0",
|
|
994
|
+
"resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.71.0.tgz",
|
|
995
|
+
"integrity": "sha512-KEUw/mGu+EDRhYWRTNGHIimVCs9NvMFaIXOGrHSXoCteKLE5EsJnmPjOPpYorjXVg/0xG0fbdVw720azw1z4ag==",
|
|
752
996
|
"license": "BSD-3-Clause",
|
|
753
997
|
"dependencies": {
|
|
754
998
|
"commander": "^11.1.0",
|
|
@@ -1935,9 +2179,9 @@
|
|
|
1935
2179
|
}
|
|
1936
2180
|
},
|
|
1937
2181
|
"node_modules/@graphql-tools/delegate": {
|
|
1938
|
-
"version": "12.0.
|
|
1939
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.
|
|
1940
|
-
"integrity": "sha512-
|
|
2182
|
+
"version": "12.0.17",
|
|
2183
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.17.tgz",
|
|
2184
|
+
"integrity": "sha512-pIVszWEm69rF+bkM0jUyM1KdIxGzygQbIp1GtV1CuEGRB8lN1uFY1eeTzM2nudHXg8cj+XSVO8cnRpph+o8Dmg==",
|
|
1941
2185
|
"dev": true,
|
|
1942
2186
|
"license": "MIT",
|
|
1943
2187
|
"dependencies": {
|
|
@@ -2335,13 +2579,13 @@
|
|
|
2335
2579
|
}
|
|
2336
2580
|
},
|
|
2337
2581
|
"node_modules/@graphql-tools/wrap": {
|
|
2338
|
-
"version": "11.1.
|
|
2339
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.
|
|
2340
|
-
"integrity": "sha512-
|
|
2582
|
+
"version": "11.1.16",
|
|
2583
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.16.tgz",
|
|
2584
|
+
"integrity": "sha512-JW1XGFTmltXa537J2bAr8dN/n6EWwiBuM9q8V8mWqZ0eWrf++/TT3/mlV3c0M8B8nrS/lqSsotIwPAtVZR8sWQ==",
|
|
2341
2585
|
"dev": true,
|
|
2342
2586
|
"license": "MIT",
|
|
2343
2587
|
"dependencies": {
|
|
2344
|
-
"@graphql-tools/delegate": "^12.0.
|
|
2588
|
+
"@graphql-tools/delegate": "^12.0.17",
|
|
2345
2589
|
"@graphql-tools/schema": "^10.0.29",
|
|
2346
2590
|
"@graphql-tools/utils": "^11.0.0",
|
|
2347
2591
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -3131,6 +3375,16 @@
|
|
|
3131
3375
|
"integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
|
|
3132
3376
|
"license": "MIT"
|
|
3133
3377
|
},
|
|
3378
|
+
"node_modules/@opentelemetry/api": {
|
|
3379
|
+
"version": "1.9.1",
|
|
3380
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.1.tgz",
|
|
3381
|
+
"integrity": "sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==",
|
|
3382
|
+
"extraneous": true,
|
|
3383
|
+
"license": "Apache-2.0",
|
|
3384
|
+
"engines": {
|
|
3385
|
+
"node": ">=8.0.0"
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3134
3388
|
"node_modules/@pinojs/redact": {
|
|
3135
3389
|
"version": "0.4.0",
|
|
3136
3390
|
"resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
|
|
@@ -3160,6 +3414,69 @@
|
|
|
3160
3414
|
"dev": true,
|
|
3161
3415
|
"license": "MIT"
|
|
3162
3416
|
},
|
|
3417
|
+
"node_modules/@protobufjs/aspromise": {
|
|
3418
|
+
"version": "1.1.2",
|
|
3419
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
3420
|
+
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
|
|
3421
|
+
"license": "BSD-3-Clause"
|
|
3422
|
+
},
|
|
3423
|
+
"node_modules/@protobufjs/base64": {
|
|
3424
|
+
"version": "1.1.2",
|
|
3425
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
|
3426
|
+
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
|
|
3427
|
+
"license": "BSD-3-Clause"
|
|
3428
|
+
},
|
|
3429
|
+
"node_modules/@protobufjs/codegen": {
|
|
3430
|
+
"version": "2.0.5",
|
|
3431
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
|
|
3432
|
+
"integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
|
|
3433
|
+
"license": "BSD-3-Clause"
|
|
3434
|
+
},
|
|
3435
|
+
"node_modules/@protobufjs/eventemitter": {
|
|
3436
|
+
"version": "1.1.1",
|
|
3437
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
|
|
3438
|
+
"integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
|
|
3439
|
+
"license": "BSD-3-Clause"
|
|
3440
|
+
},
|
|
3441
|
+
"node_modules/@protobufjs/fetch": {
|
|
3442
|
+
"version": "1.1.1",
|
|
3443
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
|
|
3444
|
+
"integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
|
|
3445
|
+
"license": "BSD-3-Clause",
|
|
3446
|
+
"dependencies": {
|
|
3447
|
+
"@protobufjs/aspromise": "^1.1.1"
|
|
3448
|
+
}
|
|
3449
|
+
},
|
|
3450
|
+
"node_modules/@protobufjs/float": {
|
|
3451
|
+
"version": "1.0.2",
|
|
3452
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
|
3453
|
+
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
|
|
3454
|
+
"license": "BSD-3-Clause"
|
|
3455
|
+
},
|
|
3456
|
+
"node_modules/@protobufjs/inquire": {
|
|
3457
|
+
"version": "1.1.2",
|
|
3458
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
|
|
3459
|
+
"integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
|
|
3460
|
+
"license": "BSD-3-Clause"
|
|
3461
|
+
},
|
|
3462
|
+
"node_modules/@protobufjs/path": {
|
|
3463
|
+
"version": "1.1.2",
|
|
3464
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
|
3465
|
+
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
|
|
3466
|
+
"license": "BSD-3-Clause"
|
|
3467
|
+
},
|
|
3468
|
+
"node_modules/@protobufjs/pool": {
|
|
3469
|
+
"version": "1.1.0",
|
|
3470
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
|
3471
|
+
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
|
|
3472
|
+
"license": "BSD-3-Clause"
|
|
3473
|
+
},
|
|
3474
|
+
"node_modules/@protobufjs/utf8": {
|
|
3475
|
+
"version": "1.1.1",
|
|
3476
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
3477
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
3478
|
+
"license": "BSD-3-Clause"
|
|
3479
|
+
},
|
|
3163
3480
|
"node_modules/@radix-ui/number": {
|
|
3164
3481
|
"version": "1.1.1",
|
|
3165
3482
|
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
|
|
@@ -4673,9 +4990,9 @@
|
|
|
4673
4990
|
"license": "MIT"
|
|
4674
4991
|
},
|
|
4675
4992
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
4676
|
-
"version": "4.
|
|
4677
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
4678
|
-
"integrity": "sha512-
|
|
4993
|
+
"version": "4.61.0",
|
|
4994
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.61.0.tgz",
|
|
4995
|
+
"integrity": "sha512-dnxczajOqt0gesZlN5pGQ1s1imQVrsmCw5G2Ci4oM+0WvNz3pyRnlWrT7McoZIb8VlFwCawdmbWRmxRn7HI+VQ==",
|
|
4679
4996
|
"cpu": [
|
|
4680
4997
|
"arm"
|
|
4681
4998
|
],
|
|
@@ -4686,9 +5003,9 @@
|
|
|
4686
5003
|
]
|
|
4687
5004
|
},
|
|
4688
5005
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
4689
|
-
"version": "4.
|
|
4690
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
4691
|
-
"integrity": "sha512-
|
|
5006
|
+
"version": "4.61.0",
|
|
5007
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.61.0.tgz",
|
|
5008
|
+
"integrity": "sha512-Bp3JpGP00Vu3f238ivRrjf7z3xSzVPXqCmaJYA9t2c+c8vKYvOzmXF7LkkeUalTEGd6cZcSWe+PFIP3Vy48fRg==",
|
|
4692
5009
|
"cpu": [
|
|
4693
5010
|
"arm64"
|
|
4694
5011
|
],
|
|
@@ -4699,9 +5016,9 @@
|
|
|
4699
5016
|
]
|
|
4700
5017
|
},
|
|
4701
5018
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
4702
|
-
"version": "4.
|
|
4703
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
4704
|
-
"integrity": "sha512-
|
|
5019
|
+
"version": "4.61.0",
|
|
5020
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.61.0.tgz",
|
|
5021
|
+
"integrity": "sha512-zaYIpr670mUmmZ1tVzUFplbQbG7h3Gugx3L5FoqhsC2m/YnLlR1a7zVLmXNPy+iY1tFPEbNG+HHBXZGyId0G5w==",
|
|
4705
5022
|
"cpu": [
|
|
4706
5023
|
"arm64"
|
|
4707
5024
|
],
|
|
@@ -4712,9 +5029,9 @@
|
|
|
4712
5029
|
]
|
|
4713
5030
|
},
|
|
4714
5031
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
4715
|
-
"version": "4.
|
|
4716
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
4717
|
-
"integrity": "sha512
|
|
5032
|
+
"version": "4.61.0",
|
|
5033
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.61.0.tgz",
|
|
5034
|
+
"integrity": "sha512-+P49fvkv2dSoeevUW+lgZ/I2JHSsJCK1Lyjj7Cu6E4UHG4tS9XIefzIjo5qhgELjAclnen1rLzK2PMKJdo+Dyg==",
|
|
4718
5035
|
"cpu": [
|
|
4719
5036
|
"x64"
|
|
4720
5037
|
],
|
|
@@ -4725,9 +5042,9 @@
|
|
|
4725
5042
|
]
|
|
4726
5043
|
},
|
|
4727
5044
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
4728
|
-
"version": "4.
|
|
4729
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
4730
|
-
"integrity": "sha512
|
|
5045
|
+
"version": "4.61.0",
|
|
5046
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.61.0.tgz",
|
|
5047
|
+
"integrity": "sha512-l3FAAOyKJXH2ea6KNFN+MMgC/rnE94YGLXs2ehYqDcCoHt1DpvgWX75BhUJxN38XojP7Ul+4H8PRn7EdyqSDrw==",
|
|
4731
5048
|
"cpu": [
|
|
4732
5049
|
"arm64"
|
|
4733
5050
|
],
|
|
@@ -4738,9 +5055,9 @@
|
|
|
4738
5055
|
]
|
|
4739
5056
|
},
|
|
4740
5057
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
4741
|
-
"version": "4.
|
|
4742
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
4743
|
-
"integrity": "sha512-
|
|
5058
|
+
"version": "4.61.0",
|
|
5059
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.61.0.tgz",
|
|
5060
|
+
"integrity": "sha512-VokPN3TSctKj65cyCNPaUh4vMFA8awxOot/0sp+4J7ZlNRKQEhXhawqPwajoi8H5ZFt61i0ugZJuTKXBjGJ17Q==",
|
|
4744
5061
|
"cpu": [
|
|
4745
5062
|
"x64"
|
|
4746
5063
|
],
|
|
@@ -4751,9 +5068,9 @@
|
|
|
4751
5068
|
]
|
|
4752
5069
|
},
|
|
4753
5070
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
4754
|
-
"version": "4.
|
|
4755
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
4756
|
-
"integrity": "sha512-
|
|
5071
|
+
"version": "4.61.0",
|
|
5072
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.61.0.tgz",
|
|
5073
|
+
"integrity": "sha512-DxH0P3wxm+Yzs/p3zrk9dw1rURu8p0Nv5+MRK/L7OtnLNg5rLZraSBFZ8iUXOd9f2BlhJyEpIZUH/emjq4UJ4g==",
|
|
4757
5074
|
"cpu": [
|
|
4758
5075
|
"arm"
|
|
4759
5076
|
],
|
|
@@ -4767,9 +5084,9 @@
|
|
|
4767
5084
|
]
|
|
4768
5085
|
},
|
|
4769
5086
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
4770
|
-
"version": "4.
|
|
4771
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
4772
|
-
"integrity": "sha512-
|
|
5087
|
+
"version": "4.61.0",
|
|
5088
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.61.0.tgz",
|
|
5089
|
+
"integrity": "sha512-T6ZvMNe84kAz6TBWHC7hGAoEtzP1LWYw/AqayGWEF6uISt3Abk/st06LqRD9THd7Xz3NxzurUpzAuEAUbZf+nw==",
|
|
4773
5090
|
"cpu": [
|
|
4774
5091
|
"arm"
|
|
4775
5092
|
],
|
|
@@ -4783,9 +5100,9 @@
|
|
|
4783
5100
|
]
|
|
4784
5101
|
},
|
|
4785
5102
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
4786
|
-
"version": "4.
|
|
4787
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
4788
|
-
"integrity": "sha512-
|
|
5103
|
+
"version": "4.61.0",
|
|
5104
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.61.0.tgz",
|
|
5105
|
+
"integrity": "sha512-q/4hzvQkDs8b4jIBab1pnLiiM0ayTZsN2amBFPDzuyZxjEd4wDwx0UJFYM3cOZzSf5Kw8fnWSprJzIBMkcR44Q==",
|
|
4789
5106
|
"cpu": [
|
|
4790
5107
|
"arm64"
|
|
4791
5108
|
],
|
|
@@ -4799,9 +5116,9 @@
|
|
|
4799
5116
|
]
|
|
4800
5117
|
},
|
|
4801
5118
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
4802
|
-
"version": "4.
|
|
4803
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
4804
|
-
"integrity": "sha512-
|
|
5119
|
+
"version": "4.61.0",
|
|
5120
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.61.0.tgz",
|
|
5121
|
+
"integrity": "sha512-vvYWX3akdEAY6km+9wAqFDnk6pQsbJKVnj7xawcvs/+fdlYBGp+U+Qq/lLfpIxYIZvZLHMAKD9HLdacSx/r3dw==",
|
|
4805
5122
|
"cpu": [
|
|
4806
5123
|
"arm64"
|
|
4807
5124
|
],
|
|
@@ -4815,9 +5132,9 @@
|
|
|
4815
5132
|
]
|
|
4816
5133
|
},
|
|
4817
5134
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
4818
|
-
"version": "4.
|
|
4819
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
4820
|
-
"integrity": "sha512-
|
|
5135
|
+
"version": "4.61.0",
|
|
5136
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.61.0.tgz",
|
|
5137
|
+
"integrity": "sha512-DePa5cqOxDP/Zp0VOXpeWaGew5iIv5DXp9NYbzkX5PFQyWVX9184WCTh3hvr/7lhXo8ZVlbFLkz8+o/q1dU6gA==",
|
|
4821
5138
|
"cpu": [
|
|
4822
5139
|
"loong64"
|
|
4823
5140
|
],
|
|
@@ -4831,9 +5148,9 @@
|
|
|
4831
5148
|
]
|
|
4832
5149
|
},
|
|
4833
5150
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
4834
|
-
"version": "4.
|
|
4835
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.
|
|
4836
|
-
"integrity": "sha512-
|
|
5151
|
+
"version": "4.61.0",
|
|
5152
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.61.0.tgz",
|
|
5153
|
+
"integrity": "sha512-LV8aWMB8UChglMCEzs7RkN0GsH29RJaLLqwm9fCIjlqwxQTiWAqNcc7wjBkH31hV0PU/yVxGYvrYsgfea2qw6g==",
|
|
4837
5154
|
"cpu": [
|
|
4838
5155
|
"loong64"
|
|
4839
5156
|
],
|
|
@@ -4847,9 +5164,9 @@
|
|
|
4847
5164
|
]
|
|
4848
5165
|
},
|
|
4849
5166
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
4850
|
-
"version": "4.
|
|
4851
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
4852
|
-
"integrity": "sha512-
|
|
5167
|
+
"version": "4.61.0",
|
|
5168
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.61.0.tgz",
|
|
5169
|
+
"integrity": "sha512-QoNSnwQtaeNu5grdBbsL0tt1uyl5EnS8DA8Mr3nluMXbhdQNyhN+G4tBax7VCdxLKj8YJ0/4OO9Ho84jMnJtKA==",
|
|
4853
5170
|
"cpu": [
|
|
4854
5171
|
"ppc64"
|
|
4855
5172
|
],
|
|
@@ -4863,9 +5180,9 @@
|
|
|
4863
5180
|
]
|
|
4864
5181
|
},
|
|
4865
5182
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
4866
|
-
"version": "4.
|
|
4867
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.
|
|
4868
|
-
"integrity": "sha512
|
|
5183
|
+
"version": "4.61.0",
|
|
5184
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.61.0.tgz",
|
|
5185
|
+
"integrity": "sha512-/zZp5MKapIIApE8trN8qLGNSiRN9TUoaUZ1cmVu4XnVdd5LQLOXTtyi+vtfUbNnT3iyjzpPqYeKXmvJ+gJGYWw==",
|
|
4869
5186
|
"cpu": [
|
|
4870
5187
|
"ppc64"
|
|
4871
5188
|
],
|
|
@@ -4879,9 +5196,9 @@
|
|
|
4879
5196
|
]
|
|
4880
5197
|
},
|
|
4881
5198
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
4882
|
-
"version": "4.
|
|
4883
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
4884
|
-
"integrity": "sha512-
|
|
5199
|
+
"version": "4.61.0",
|
|
5200
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.61.0.tgz",
|
|
5201
|
+
"integrity": "sha512-RbrzcD3aJ1k3UbtMRRBNwojdVVyXjuVAFTfn/xPa6EEl6GE9Sm/akPgFTb9aAC9pMKGJ6CtWxaGrqWcabH+ySg==",
|
|
4885
5202
|
"cpu": [
|
|
4886
5203
|
"riscv64"
|
|
4887
5204
|
],
|
|
@@ -4895,9 +5212,9 @@
|
|
|
4895
5212
|
]
|
|
4896
5213
|
},
|
|
4897
5214
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
4898
|
-
"version": "4.
|
|
4899
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
4900
|
-
"integrity": "sha512-
|
|
5215
|
+
"version": "4.61.0",
|
|
5216
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.61.0.tgz",
|
|
5217
|
+
"integrity": "sha512-ZF+onDsBso8PJf1XaG9lB+O9RnBpKGnY6OrzC4CSHrtC1jb6jWLTKK4bRqdoCXHd22gyr2hiYmEAm8Wns/BOCw==",
|
|
4901
5218
|
"cpu": [
|
|
4902
5219
|
"riscv64"
|
|
4903
5220
|
],
|
|
@@ -4911,9 +5228,9 @@
|
|
|
4911
5228
|
]
|
|
4912
5229
|
},
|
|
4913
5230
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
4914
|
-
"version": "4.
|
|
4915
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
4916
|
-
"integrity": "sha512-
|
|
5231
|
+
"version": "4.61.0",
|
|
5232
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.61.0.tgz",
|
|
5233
|
+
"integrity": "sha512-Atk0aSIk5Zx2Wuh9dgRQgLP0Koc8hOeYpbWryMXyk8G8/HmPkwPPkMqIIDhrXHHYqfUzSJA/I7IWSBv8xSmRBA==",
|
|
4917
5234
|
"cpu": [
|
|
4918
5235
|
"s390x"
|
|
4919
5236
|
],
|
|
@@ -4927,9 +5244,9 @@
|
|
|
4927
5244
|
]
|
|
4928
5245
|
},
|
|
4929
5246
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
4930
|
-
"version": "4.
|
|
4931
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
4932
|
-
"integrity": "sha512-
|
|
5247
|
+
"version": "4.61.0",
|
|
5248
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.61.0.tgz",
|
|
5249
|
+
"integrity": "sha512-0uMOcf3eZ5K+K4cYHkdxShFMPlPXCOdfDFEFn9dNYAEEd2cVvmOfH7zFgRVoDgmtQ1m9k5q7qfrHzyMAubKYUA==",
|
|
4933
5250
|
"cpu": [
|
|
4934
5251
|
"x64"
|
|
4935
5252
|
],
|
|
@@ -4943,9 +5260,9 @@
|
|
|
4943
5260
|
]
|
|
4944
5261
|
},
|
|
4945
5262
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
4946
|
-
"version": "4.
|
|
4947
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
4948
|
-
"integrity": "sha512
|
|
5263
|
+
"version": "4.61.0",
|
|
5264
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.61.0.tgz",
|
|
5265
|
+
"integrity": "sha512-mvFtE4A/t/7hRJ7X8Ozmu8FsIkAUat2nzl12pgU337BRmq87AQUJztwHz2Zv5/tjo9/C95E66CK03SI/ToEDJw==",
|
|
4949
5266
|
"cpu": [
|
|
4950
5267
|
"x64"
|
|
4951
5268
|
],
|
|
@@ -4959,9 +5276,9 @@
|
|
|
4959
5276
|
]
|
|
4960
5277
|
},
|
|
4961
5278
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
4962
|
-
"version": "4.
|
|
4963
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.
|
|
4964
|
-
"integrity": "sha512-
|
|
5279
|
+
"version": "4.61.0",
|
|
5280
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.61.0.tgz",
|
|
5281
|
+
"integrity": "sha512-z9b9+aTxvt8n2rNltMPvyaUfB8NJ+CVyOrGK/MdIKHx7B+lXmZpm/XbRsU7Rpf3fRqJ2uS6mBJiJveCtq8LHDg==",
|
|
4965
5282
|
"cpu": [
|
|
4966
5283
|
"x64"
|
|
4967
5284
|
],
|
|
@@ -4972,9 +5289,9 @@
|
|
|
4972
5289
|
]
|
|
4973
5290
|
},
|
|
4974
5291
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
4975
|
-
"version": "4.
|
|
4976
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
4977
|
-
"integrity": "sha512-
|
|
5292
|
+
"version": "4.61.0",
|
|
5293
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.61.0.tgz",
|
|
5294
|
+
"integrity": "sha512-jXaXFqKMehsOc+g8R6oo33RRC6w07G9jDBxAE5eAKX7mOcCbZloYIPNhfG9Wl+P9O9IWHFO4OJgPi1Ml2qkt7w==",
|
|
4978
5295
|
"cpu": [
|
|
4979
5296
|
"arm64"
|
|
4980
5297
|
],
|
|
@@ -4985,9 +5302,9 @@
|
|
|
4985
5302
|
]
|
|
4986
5303
|
},
|
|
4987
5304
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
4988
|
-
"version": "4.
|
|
4989
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
4990
|
-
"integrity": "sha512-
|
|
5305
|
+
"version": "4.61.0",
|
|
5306
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.61.0.tgz",
|
|
5307
|
+
"integrity": "sha512-OXNWVFocS2IA4+QplhTZZ2a+8hPZR7T8KuozsNmJKK8y7cp83StHvGksfHzPG3wczWTczyWHVQuqeiTUbjiyBg==",
|
|
4991
5308
|
"cpu": [
|
|
4992
5309
|
"arm64"
|
|
4993
5310
|
],
|
|
@@ -4998,9 +5315,9 @@
|
|
|
4998
5315
|
]
|
|
4999
5316
|
},
|
|
5000
5317
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
5001
|
-
"version": "4.
|
|
5002
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
5003
|
-
"integrity": "sha512-
|
|
5318
|
+
"version": "4.61.0",
|
|
5319
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.61.0.tgz",
|
|
5320
|
+
"integrity": "sha512-AlAbNtBO637LxSldqV43z0FfXoGfl2TW1DgAg/bs7aQswFbDewz2SJm3BUhiGfbOVtW571xbc9p+REdxhyN/Eg==",
|
|
5004
5321
|
"cpu": [
|
|
5005
5322
|
"ia32"
|
|
5006
5323
|
],
|
|
@@ -5011,9 +5328,9 @@
|
|
|
5011
5328
|
]
|
|
5012
5329
|
},
|
|
5013
5330
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
5014
|
-
"version": "4.
|
|
5015
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
5016
|
-
"integrity": "sha512-
|
|
5331
|
+
"version": "4.61.0",
|
|
5332
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.61.0.tgz",
|
|
5333
|
+
"integrity": "sha512-QRSrQXyJ1M4tjNXdR0/G/IgV6lzfQQJYBjlWIEYkY2Xs86DRl/iEpQ4blMDjJxSl7n19eDKKXMg0AmuBVYy8pQ==",
|
|
5017
5334
|
"cpu": [
|
|
5018
5335
|
"x64"
|
|
5019
5336
|
],
|
|
@@ -5024,9 +5341,9 @@
|
|
|
5024
5341
|
]
|
|
5025
5342
|
},
|
|
5026
5343
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
5027
|
-
"version": "4.
|
|
5028
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
5029
|
-
"integrity": "sha512-
|
|
5344
|
+
"version": "4.61.0",
|
|
5345
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.61.0.tgz",
|
|
5346
|
+
"integrity": "sha512-tkuFxhvKO/HlGd0VsINF6vHSYH8AF8W0TcNxKDK6JZmrehngFj78pToc8iemtnvwilDjs2G/qSzYFhe9U8q+fw==",
|
|
5030
5347
|
"cpu": [
|
|
5031
5348
|
"x64"
|
|
5032
5349
|
],
|
|
@@ -5078,6 +5395,12 @@
|
|
|
5078
5395
|
"node": ">=10"
|
|
5079
5396
|
}
|
|
5080
5397
|
},
|
|
5398
|
+
"node_modules/@salesforce/jsonrpc": {
|
|
5399
|
+
"version": "10.2.2",
|
|
5400
|
+
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-10.2.2.tgz",
|
|
5401
|
+
"integrity": "sha512-55ceeP49ZFuFgxHm659xLw4EssHJnDZgenropQuVR/RpyuKPSPxjBU2dVBXnxHL32Ok7yGrwxa8qbywfzq37sw==",
|
|
5402
|
+
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5403
|
+
},
|
|
5081
5404
|
"node_modules/@salesforce/kit": {
|
|
5082
5405
|
"version": "3.2.6",
|
|
5083
5406
|
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.2.6.tgz",
|
|
@@ -5087,21 +5410,26 @@
|
|
|
5087
5410
|
"@salesforce/ts-types": "^2.0.12"
|
|
5088
5411
|
}
|
|
5089
5412
|
},
|
|
5090
|
-
"node_modules/@salesforce/sdk
|
|
5091
|
-
"version": "
|
|
5092
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-
|
|
5093
|
-
"integrity": "sha512-
|
|
5094
|
-
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5095
|
-
},
|
|
5096
|
-
"node_modules/@salesforce/sdk-data": {
|
|
5097
|
-
"version": "1.135.0",
|
|
5098
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-data/-/sdk-data-1.135.0.tgz",
|
|
5099
|
-
"integrity": "sha512-A9ZPgl1GcJUxYF8VNaO6O+k11PZEhaXOiDnwLu5Mxe4IbdiRiSDjExSgF/1JyVlJwHRK/LcNJ+qrkMudyd1lKg==",
|
|
5413
|
+
"node_modules/@salesforce/platform-sdk": {
|
|
5414
|
+
"version": "10.2.2",
|
|
5415
|
+
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-10.2.2.tgz",
|
|
5416
|
+
"integrity": "sha512-4GMgDAoZJ0Z1yhkOtWSDoLsrJfFU+ZzHf4d34cgLH1v9POvqB36YwenNzN2zOYpLfidKeGoXuR9S/U9eEgbxCg==",
|
|
5100
5417
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5101
5418
|
"dependencies": {
|
|
5102
|
-
"@conduit-client/
|
|
5103
|
-
"@conduit-client/
|
|
5104
|
-
"@
|
|
5419
|
+
"@conduit-client/command-http-cache-control": "3.19.6",
|
|
5420
|
+
"@conduit-client/onestore-graphql-parser": "3.19.6",
|
|
5421
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
5422
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
5423
|
+
"@conduit-client/service-cache-inclusion-policy": "3.19.6",
|
|
5424
|
+
"@conduit-client/service-fetch-network": "3.19.6",
|
|
5425
|
+
"@conduit-client/service-pubsub": "3.19.6",
|
|
5426
|
+
"@conduit-client/service-retry": "3.19.6",
|
|
5427
|
+
"@conduit-client/utils": "3.19.6",
|
|
5428
|
+
"@salesforce/jsonrpc": "^10.2.2"
|
|
5429
|
+
},
|
|
5430
|
+
"peerDependencies": {
|
|
5431
|
+
"o11y": ">=260.0.0",
|
|
5432
|
+
"o11y_schema": ">=260.63.0"
|
|
5105
5433
|
}
|
|
5106
5434
|
},
|
|
5107
5435
|
"node_modules/@salesforce/ts-types": {
|
|
@@ -5114,13 +5442,13 @@
|
|
|
5114
5442
|
}
|
|
5115
5443
|
},
|
|
5116
5444
|
"node_modules/@salesforce/ui-bundle": {
|
|
5117
|
-
"version": "
|
|
5118
|
-
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-
|
|
5119
|
-
"integrity": "sha512-
|
|
5445
|
+
"version": "10.2.2",
|
|
5446
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-10.2.2.tgz",
|
|
5447
|
+
"integrity": "sha512-6ljxZ/wUVwx+IeFUXzlHfUOffi/eNyVhGe8IGp8FFtA1OTf73F0zjIUHrg9JIMYjxAtn3xya1EHbb5xkX3LKxg==",
|
|
5120
5448
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5121
5449
|
"dependencies": {
|
|
5122
5450
|
"@salesforce/core": "^8.23.4",
|
|
5123
|
-
"@salesforce/sdk
|
|
5451
|
+
"@salesforce/platform-sdk": "^10.2.2",
|
|
5124
5452
|
"micromatch": "^4.0.8",
|
|
5125
5453
|
"path-to-regexp": "^8.3.0"
|
|
5126
5454
|
},
|
|
@@ -5128,16 +5456,29 @@
|
|
|
5128
5456
|
"node": ">=20.0.0"
|
|
5129
5457
|
}
|
|
5130
5458
|
},
|
|
5459
|
+
"node_modules/@salesforce/ui-design-mode": {
|
|
5460
|
+
"version": "10.2.2",
|
|
5461
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-design-mode/-/ui-design-mode-10.2.2.tgz",
|
|
5462
|
+
"integrity": "sha512-30Fj7dcD57fWwkR3qENapC1kUF+dJdW/2dRNfc8ILL1by6DfADawn2twMmSYSMwf0g/+xEiI0fP7JwM6oDdbuQ==",
|
|
5463
|
+
"dev": true,
|
|
5464
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5465
|
+
"dependencies": {
|
|
5466
|
+
"@babel/helper-plugin-utils": "^7.28.3"
|
|
5467
|
+
},
|
|
5468
|
+
"engines": {
|
|
5469
|
+
"node": ">=20.0.0"
|
|
5470
|
+
}
|
|
5471
|
+
},
|
|
5131
5472
|
"node_modules/@salesforce/vite-plugin-ui-bundle": {
|
|
5132
|
-
"version": "
|
|
5133
|
-
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-
|
|
5134
|
-
"integrity": "sha512-
|
|
5473
|
+
"version": "10.2.2",
|
|
5474
|
+
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-10.2.2.tgz",
|
|
5475
|
+
"integrity": "sha512-0HWjGF93O3ShVCr6mVX/MnZFaamMpBwgnD00ZXN7QzAcp+TV2NVteuc2QfVozBwgmhwNS2h7Zj9rM9zvakbVFQ==",
|
|
5135
5476
|
"dev": true,
|
|
5136
5477
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5137
5478
|
"dependencies": {
|
|
5138
5479
|
"@babel/core": "^7.28.4",
|
|
5139
|
-
"@
|
|
5140
|
-
"@salesforce/ui-
|
|
5480
|
+
"@salesforce/ui-bundle": "^10.2.2",
|
|
5481
|
+
"@salesforce/ui-design-mode": "^10.2.2"
|
|
5141
5482
|
},
|
|
5142
5483
|
"engines": {
|
|
5143
5484
|
"node": ">=20.0.0"
|
|
@@ -5733,7 +6074,6 @@
|
|
|
5733
6074
|
"version": "1.0.9",
|
|
5734
6075
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
5735
6076
|
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
5736
|
-
"dev": true,
|
|
5737
6077
|
"license": "MIT"
|
|
5738
6078
|
},
|
|
5739
6079
|
"node_modules/@types/json-schema": {
|
|
@@ -5753,9 +6093,9 @@
|
|
|
5753
6093
|
}
|
|
5754
6094
|
},
|
|
5755
6095
|
"node_modules/@types/react": {
|
|
5756
|
-
"version": "19.2.
|
|
5757
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.
|
|
5758
|
-
"integrity": "sha512-
|
|
6096
|
+
"version": "19.2.16",
|
|
6097
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.16.tgz",
|
|
6098
|
+
"integrity": "sha512-esJiCAnl0kfpNdE69f3So4WJUXy95dLZydX0KwK46riIHDzHM7O9Vtf9xCHW0PXIqvgqNrswl522kA/5yx+F4w==",
|
|
5759
6099
|
"devOptional": true,
|
|
5760
6100
|
"license": "MIT",
|
|
5761
6101
|
"dependencies": {
|
|
@@ -5804,17 +6144,17 @@
|
|
|
5804
6144
|
}
|
|
5805
6145
|
},
|
|
5806
6146
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
5807
|
-
"version": "8.60.
|
|
5808
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.
|
|
5809
|
-
"integrity": "sha512-
|
|
6147
|
+
"version": "8.60.1",
|
|
6148
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.1.tgz",
|
|
6149
|
+
"integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
|
|
5810
6150
|
"dev": true,
|
|
5811
6151
|
"license": "MIT",
|
|
5812
6152
|
"dependencies": {
|
|
5813
6153
|
"@eslint-community/regexpp": "^4.12.2",
|
|
5814
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
5815
|
-
"@typescript-eslint/type-utils": "8.60.
|
|
5816
|
-
"@typescript-eslint/utils": "8.60.
|
|
5817
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6154
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6155
|
+
"@typescript-eslint/type-utils": "8.60.1",
|
|
6156
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
6157
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5818
6158
|
"ignore": "^7.0.5",
|
|
5819
6159
|
"natural-compare": "^1.4.0",
|
|
5820
6160
|
"ts-api-utils": "^2.5.0"
|
|
@@ -5827,7 +6167,7 @@
|
|
|
5827
6167
|
"url": "https://opencollective.com/typescript-eslint"
|
|
5828
6168
|
},
|
|
5829
6169
|
"peerDependencies": {
|
|
5830
|
-
"@typescript-eslint/parser": "^8.60.
|
|
6170
|
+
"@typescript-eslint/parser": "^8.60.1",
|
|
5831
6171
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
5832
6172
|
"typescript": ">=4.8.4 <6.1.0"
|
|
5833
6173
|
}
|
|
@@ -5843,16 +6183,16 @@
|
|
|
5843
6183
|
}
|
|
5844
6184
|
},
|
|
5845
6185
|
"node_modules/@typescript-eslint/parser": {
|
|
5846
|
-
"version": "8.60.
|
|
5847
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.
|
|
5848
|
-
"integrity": "sha512-
|
|
6186
|
+
"version": "8.60.1",
|
|
6187
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.1.tgz",
|
|
6188
|
+
"integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
|
|
5849
6189
|
"dev": true,
|
|
5850
6190
|
"license": "MIT",
|
|
5851
6191
|
"dependencies": {
|
|
5852
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
5853
|
-
"@typescript-eslint/types": "8.60.
|
|
5854
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
5855
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6192
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6193
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6194
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
6195
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5856
6196
|
"debug": "^4.4.3"
|
|
5857
6197
|
},
|
|
5858
6198
|
"engines": {
|
|
@@ -5868,14 +6208,14 @@
|
|
|
5868
6208
|
}
|
|
5869
6209
|
},
|
|
5870
6210
|
"node_modules/@typescript-eslint/project-service": {
|
|
5871
|
-
"version": "8.60.
|
|
5872
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.
|
|
5873
|
-
"integrity": "sha512-
|
|
6211
|
+
"version": "8.60.1",
|
|
6212
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.1.tgz",
|
|
6213
|
+
"integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
|
|
5874
6214
|
"dev": true,
|
|
5875
6215
|
"license": "MIT",
|
|
5876
6216
|
"dependencies": {
|
|
5877
|
-
"@typescript-eslint/tsconfig-utils": "^8.60.
|
|
5878
|
-
"@typescript-eslint/types": "^8.60.
|
|
6217
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.1",
|
|
6218
|
+
"@typescript-eslint/types": "^8.60.1",
|
|
5879
6219
|
"debug": "^4.4.3"
|
|
5880
6220
|
},
|
|
5881
6221
|
"engines": {
|
|
@@ -5890,14 +6230,14 @@
|
|
|
5890
6230
|
}
|
|
5891
6231
|
},
|
|
5892
6232
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
5893
|
-
"version": "8.60.
|
|
5894
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.
|
|
5895
|
-
"integrity": "sha512-
|
|
6233
|
+
"version": "8.60.1",
|
|
6234
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.1.tgz",
|
|
6235
|
+
"integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
|
|
5896
6236
|
"dev": true,
|
|
5897
6237
|
"license": "MIT",
|
|
5898
6238
|
"dependencies": {
|
|
5899
|
-
"@typescript-eslint/types": "8.60.
|
|
5900
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6239
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6240
|
+
"@typescript-eslint/visitor-keys": "8.60.1"
|
|
5901
6241
|
},
|
|
5902
6242
|
"engines": {
|
|
5903
6243
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5908,9 +6248,9 @@
|
|
|
5908
6248
|
}
|
|
5909
6249
|
},
|
|
5910
6250
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
5911
|
-
"version": "8.60.
|
|
5912
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.
|
|
5913
|
-
"integrity": "sha512-
|
|
6251
|
+
"version": "8.60.1",
|
|
6252
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.1.tgz",
|
|
6253
|
+
"integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
|
|
5914
6254
|
"dev": true,
|
|
5915
6255
|
"license": "MIT",
|
|
5916
6256
|
"engines": {
|
|
@@ -5925,15 +6265,15 @@
|
|
|
5925
6265
|
}
|
|
5926
6266
|
},
|
|
5927
6267
|
"node_modules/@typescript-eslint/type-utils": {
|
|
5928
|
-
"version": "8.60.
|
|
5929
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.
|
|
5930
|
-
"integrity": "sha512-
|
|
6268
|
+
"version": "8.60.1",
|
|
6269
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.1.tgz",
|
|
6270
|
+
"integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
|
|
5931
6271
|
"dev": true,
|
|
5932
6272
|
"license": "MIT",
|
|
5933
6273
|
"dependencies": {
|
|
5934
|
-
"@typescript-eslint/types": "8.60.
|
|
5935
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
5936
|
-
"@typescript-eslint/utils": "8.60.
|
|
6274
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6275
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
6276
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
5937
6277
|
"debug": "^4.4.3",
|
|
5938
6278
|
"ts-api-utils": "^2.5.0"
|
|
5939
6279
|
},
|
|
@@ -5950,9 +6290,9 @@
|
|
|
5950
6290
|
}
|
|
5951
6291
|
},
|
|
5952
6292
|
"node_modules/@typescript-eslint/types": {
|
|
5953
|
-
"version": "8.60.
|
|
5954
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.
|
|
5955
|
-
"integrity": "sha512-
|
|
6293
|
+
"version": "8.60.1",
|
|
6294
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
|
|
6295
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
5956
6296
|
"dev": true,
|
|
5957
6297
|
"license": "MIT",
|
|
5958
6298
|
"engines": {
|
|
@@ -5964,16 +6304,16 @@
|
|
|
5964
6304
|
}
|
|
5965
6305
|
},
|
|
5966
6306
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
5967
|
-
"version": "8.60.
|
|
5968
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.
|
|
5969
|
-
"integrity": "sha512-
|
|
6307
|
+
"version": "8.60.1",
|
|
6308
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.1.tgz",
|
|
6309
|
+
"integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
|
|
5970
6310
|
"dev": true,
|
|
5971
6311
|
"license": "MIT",
|
|
5972
6312
|
"dependencies": {
|
|
5973
|
-
"@typescript-eslint/project-service": "8.60.
|
|
5974
|
-
"@typescript-eslint/tsconfig-utils": "8.60.
|
|
5975
|
-
"@typescript-eslint/types": "8.60.
|
|
5976
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6313
|
+
"@typescript-eslint/project-service": "8.60.1",
|
|
6314
|
+
"@typescript-eslint/tsconfig-utils": "8.60.1",
|
|
6315
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6316
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5977
6317
|
"debug": "^4.4.3",
|
|
5978
6318
|
"minimatch": "^10.2.2",
|
|
5979
6319
|
"semver": "^7.7.3",
|
|
@@ -6044,16 +6384,16 @@
|
|
|
6044
6384
|
}
|
|
6045
6385
|
},
|
|
6046
6386
|
"node_modules/@typescript-eslint/utils": {
|
|
6047
|
-
"version": "8.60.
|
|
6048
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.
|
|
6049
|
-
"integrity": "sha512-
|
|
6387
|
+
"version": "8.60.1",
|
|
6388
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.1.tgz",
|
|
6389
|
+
"integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
|
|
6050
6390
|
"dev": true,
|
|
6051
6391
|
"license": "MIT",
|
|
6052
6392
|
"dependencies": {
|
|
6053
6393
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
6054
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
6055
|
-
"@typescript-eslint/types": "8.60.
|
|
6056
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
6394
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6395
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6396
|
+
"@typescript-eslint/typescript-estree": "8.60.1"
|
|
6057
6397
|
},
|
|
6058
6398
|
"engines": {
|
|
6059
6399
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6068,13 +6408,13 @@
|
|
|
6068
6408
|
}
|
|
6069
6409
|
},
|
|
6070
6410
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
6071
|
-
"version": "8.60.
|
|
6072
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.
|
|
6073
|
-
"integrity": "sha512-
|
|
6411
|
+
"version": "8.60.1",
|
|
6412
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
|
|
6413
|
+
"integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
|
|
6074
6414
|
"dev": true,
|
|
6075
6415
|
"license": "MIT",
|
|
6076
6416
|
"dependencies": {
|
|
6077
|
-
"@typescript-eslint/types": "8.60.
|
|
6417
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6078
6418
|
"eslint-visitor-keys": "^5.0.0"
|
|
6079
6419
|
},
|
|
6080
6420
|
"engines": {
|
|
@@ -6120,16 +6460,16 @@
|
|
|
6120
6460
|
}
|
|
6121
6461
|
},
|
|
6122
6462
|
"node_modules/@vitest/expect": {
|
|
6123
|
-
"version": "4.1.
|
|
6124
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.
|
|
6125
|
-
"integrity": "sha512-
|
|
6463
|
+
"version": "4.1.8",
|
|
6464
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.8.tgz",
|
|
6465
|
+
"integrity": "sha512-h3nDO677RDLEGlBxyQ5CW8RlMThSKSRLUePLOx09gNIWRL40edgA1GCZSZgf1W55MFAG6/Sw14KeaAnqv0NKdQ==",
|
|
6126
6466
|
"dev": true,
|
|
6127
6467
|
"license": "MIT",
|
|
6128
6468
|
"dependencies": {
|
|
6129
6469
|
"@standard-schema/spec": "^1.1.0",
|
|
6130
6470
|
"@types/chai": "^5.2.2",
|
|
6131
|
-
"@vitest/spy": "4.1.
|
|
6132
|
-
"@vitest/utils": "4.1.
|
|
6471
|
+
"@vitest/spy": "4.1.8",
|
|
6472
|
+
"@vitest/utils": "4.1.8",
|
|
6133
6473
|
"chai": "^6.2.2",
|
|
6134
6474
|
"tinyrainbow": "^3.1.0"
|
|
6135
6475
|
},
|
|
@@ -6138,13 +6478,13 @@
|
|
|
6138
6478
|
}
|
|
6139
6479
|
},
|
|
6140
6480
|
"node_modules/@vitest/mocker": {
|
|
6141
|
-
"version": "4.1.
|
|
6142
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.
|
|
6143
|
-
"integrity": "sha512-
|
|
6481
|
+
"version": "4.1.8",
|
|
6482
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.8.tgz",
|
|
6483
|
+
"integrity": "sha512-LEiN/xe4OSIbKe9HQIp5OC24agGD9J5CnmMgsLohVVoOPWL9a2sBoR6VBx43jQZb7Kr1l4RCuyCJzcAa0+dojw==",
|
|
6144
6484
|
"dev": true,
|
|
6145
6485
|
"license": "MIT",
|
|
6146
6486
|
"dependencies": {
|
|
6147
|
-
"@vitest/spy": "4.1.
|
|
6487
|
+
"@vitest/spy": "4.1.8",
|
|
6148
6488
|
"estree-walker": "^3.0.3",
|
|
6149
6489
|
"magic-string": "^0.30.21"
|
|
6150
6490
|
},
|
|
@@ -6165,9 +6505,9 @@
|
|
|
6165
6505
|
}
|
|
6166
6506
|
},
|
|
6167
6507
|
"node_modules/@vitest/pretty-format": {
|
|
6168
|
-
"version": "4.1.
|
|
6169
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.
|
|
6170
|
-
"integrity": "sha512-
|
|
6508
|
+
"version": "4.1.8",
|
|
6509
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.8.tgz",
|
|
6510
|
+
"integrity": "sha512-9GasEBxpZ1VYIpqHf/0+YGg121uSNwCKOJqIrTwWP/TB7DmFCiaBpNl3aPZzoLWfWkuqhbH8vJIVobZkvdo2cA==",
|
|
6171
6511
|
"dev": true,
|
|
6172
6512
|
"license": "MIT",
|
|
6173
6513
|
"dependencies": {
|
|
@@ -6178,13 +6518,13 @@
|
|
|
6178
6518
|
}
|
|
6179
6519
|
},
|
|
6180
6520
|
"node_modules/@vitest/runner": {
|
|
6181
|
-
"version": "4.1.
|
|
6182
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.
|
|
6183
|
-
"integrity": "sha512-
|
|
6521
|
+
"version": "4.1.8",
|
|
6522
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.8.tgz",
|
|
6523
|
+
"integrity": "sha512-EmVxeBAfMJvycdjd6Hm+RbFBbA9fKvo0Kx37hNpBYoYeavH3RNsBXWDooR1mgD52dCrxIIuP7UotpfiwOikvcg==",
|
|
6184
6524
|
"dev": true,
|
|
6185
6525
|
"license": "MIT",
|
|
6186
6526
|
"dependencies": {
|
|
6187
|
-
"@vitest/utils": "4.1.
|
|
6527
|
+
"@vitest/utils": "4.1.8",
|
|
6188
6528
|
"pathe": "^2.0.3"
|
|
6189
6529
|
},
|
|
6190
6530
|
"funding": {
|
|
@@ -6192,14 +6532,14 @@
|
|
|
6192
6532
|
}
|
|
6193
6533
|
},
|
|
6194
6534
|
"node_modules/@vitest/snapshot": {
|
|
6195
|
-
"version": "4.1.
|
|
6196
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.
|
|
6197
|
-
"integrity": "sha512-
|
|
6535
|
+
"version": "4.1.8",
|
|
6536
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.8.tgz",
|
|
6537
|
+
"integrity": "sha512-acfZboRmAIf05DEKcBQy33VXojFJjtUdLyo7oOmV9kebb2xdU01UknNiPuPZoJZQyO7DF0gZdTGTpeAzET9QPQ==",
|
|
6198
6538
|
"dev": true,
|
|
6199
6539
|
"license": "MIT",
|
|
6200
6540
|
"dependencies": {
|
|
6201
|
-
"@vitest/pretty-format": "4.1.
|
|
6202
|
-
"@vitest/utils": "4.1.
|
|
6541
|
+
"@vitest/pretty-format": "4.1.8",
|
|
6542
|
+
"@vitest/utils": "4.1.8",
|
|
6203
6543
|
"magic-string": "^0.30.21",
|
|
6204
6544
|
"pathe": "^2.0.3"
|
|
6205
6545
|
},
|
|
@@ -6208,9 +6548,9 @@
|
|
|
6208
6548
|
}
|
|
6209
6549
|
},
|
|
6210
6550
|
"node_modules/@vitest/spy": {
|
|
6211
|
-
"version": "4.1.
|
|
6212
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.
|
|
6213
|
-
"integrity": "sha512-
|
|
6551
|
+
"version": "4.1.8",
|
|
6552
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.8.tgz",
|
|
6553
|
+
"integrity": "sha512-6EevtBp6OZOPF7bmz36HrGMeP3txgVSrgebWxHOafDXGkhIzfXK14f8KF6MuFfgXXUeHxmpD3BQxkV00/3s5mA==",
|
|
6214
6554
|
"dev": true,
|
|
6215
6555
|
"license": "MIT",
|
|
6216
6556
|
"funding": {
|
|
@@ -6218,13 +6558,13 @@
|
|
|
6218
6558
|
}
|
|
6219
6559
|
},
|
|
6220
6560
|
"node_modules/@vitest/ui": {
|
|
6221
|
-
"version": "4.1.
|
|
6222
|
-
"resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-4.1.
|
|
6223
|
-
"integrity": "sha512-
|
|
6561
|
+
"version": "4.1.8",
|
|
6562
|
+
"resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-4.1.8.tgz",
|
|
6563
|
+
"integrity": "sha512-RUS2ZU2TsduVrI+9c12uTNaKrNUTsm6yFt3fueEUB9iKvyC2UP83F+sqIz00HQIah4UOL1TMoDAki8K0NjGvsA==",
|
|
6224
6564
|
"dev": true,
|
|
6225
6565
|
"license": "MIT",
|
|
6226
6566
|
"dependencies": {
|
|
6227
|
-
"@vitest/utils": "4.1.
|
|
6567
|
+
"@vitest/utils": "4.1.8",
|
|
6228
6568
|
"fflate": "^0.8.2",
|
|
6229
6569
|
"flatted": "^3.4.2",
|
|
6230
6570
|
"pathe": "^2.0.3",
|
|
@@ -6236,17 +6576,17 @@
|
|
|
6236
6576
|
"url": "https://opencollective.com/vitest"
|
|
6237
6577
|
},
|
|
6238
6578
|
"peerDependencies": {
|
|
6239
|
-
"vitest": "4.1.
|
|
6579
|
+
"vitest": "4.1.8"
|
|
6240
6580
|
}
|
|
6241
6581
|
},
|
|
6242
6582
|
"node_modules/@vitest/utils": {
|
|
6243
|
-
"version": "4.1.
|
|
6244
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.
|
|
6245
|
-
"integrity": "sha512-
|
|
6583
|
+
"version": "4.1.8",
|
|
6584
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.8.tgz",
|
|
6585
|
+
"integrity": "sha512-uOJamYALNhfJ6iolExyQM40yIQwDqYnkKtQ5VCiSe17E33H0aQ/u+1GlRuz4LZBk6Mm3sg90G9hEbmEt37C1Zg==",
|
|
6246
6586
|
"dev": true,
|
|
6247
6587
|
"license": "MIT",
|
|
6248
6588
|
"dependencies": {
|
|
6249
|
-
"@vitest/pretty-format": "4.1.
|
|
6589
|
+
"@vitest/pretty-format": "4.1.8",
|
|
6250
6590
|
"convert-source-map": "^2.0.0",
|
|
6251
6591
|
"tinyrainbow": "^3.1.0"
|
|
6252
6592
|
},
|
|
@@ -6543,9 +6883,9 @@
|
|
|
6543
6883
|
}
|
|
6544
6884
|
},
|
|
6545
6885
|
"node_modules/ansis": {
|
|
6546
|
-
"version": "4.3.
|
|
6547
|
-
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.
|
|
6548
|
-
"integrity": "sha512-
|
|
6886
|
+
"version": "4.3.1",
|
|
6887
|
+
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.1.tgz",
|
|
6888
|
+
"integrity": "sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==",
|
|
6549
6889
|
"license": "ISC",
|
|
6550
6890
|
"engines": {
|
|
6551
6891
|
"node": ">=14"
|
|
@@ -6884,9 +7224,9 @@
|
|
|
6884
7224
|
}
|
|
6885
7225
|
},
|
|
6886
7226
|
"node_modules/baseline-browser-mapping": {
|
|
6887
|
-
"version": "2.10.
|
|
6888
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
6889
|
-
"integrity": "sha512-
|
|
7227
|
+
"version": "2.10.33",
|
|
7228
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.33.tgz",
|
|
7229
|
+
"integrity": "sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==",
|
|
6890
7230
|
"license": "Apache-2.0",
|
|
6891
7231
|
"bin": {
|
|
6892
7232
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -7899,9 +8239,9 @@
|
|
|
7899
8239
|
"license": "MIT"
|
|
7900
8240
|
},
|
|
7901
8241
|
"node_modules/date-fns": {
|
|
7902
|
-
"version": "4.
|
|
7903
|
-
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.
|
|
7904
|
-
"integrity": "sha512
|
|
8242
|
+
"version": "4.4.0",
|
|
8243
|
+
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.4.0.tgz",
|
|
8244
|
+
"integrity": "sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==",
|
|
7905
8245
|
"license": "MIT",
|
|
7906
8246
|
"funding": {
|
|
7907
8247
|
"type": "github",
|
|
@@ -11231,9 +11571,19 @@
|
|
|
11231
11571
|
"license": "MIT"
|
|
11232
11572
|
},
|
|
11233
11573
|
"node_modules/js-yaml": {
|
|
11234
|
-
"version": "4.
|
|
11235
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.
|
|
11236
|
-
"integrity": "sha512-
|
|
11574
|
+
"version": "4.2.0",
|
|
11575
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
|
|
11576
|
+
"integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
|
|
11577
|
+
"funding": [
|
|
11578
|
+
{
|
|
11579
|
+
"type": "github",
|
|
11580
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
11581
|
+
},
|
|
11582
|
+
{
|
|
11583
|
+
"type": "github",
|
|
11584
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
11585
|
+
}
|
|
11586
|
+
],
|
|
11237
11587
|
"license": "MIT",
|
|
11238
11588
|
"dependencies": {
|
|
11239
11589
|
"argparse": "^2.0.1"
|
|
@@ -12099,6 +12449,12 @@
|
|
|
12099
12449
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
12100
12450
|
}
|
|
12101
12451
|
},
|
|
12452
|
+
"node_modules/long": {
|
|
12453
|
+
"version": "5.3.2",
|
|
12454
|
+
"resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
|
|
12455
|
+
"integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
|
|
12456
|
+
"license": "Apache-2.0"
|
|
12457
|
+
},
|
|
12102
12458
|
"node_modules/loose-envify": {
|
|
12103
12459
|
"version": "1.4.0",
|
|
12104
12460
|
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
@@ -12411,25 +12767,25 @@
|
|
|
12411
12767
|
}
|
|
12412
12768
|
},
|
|
12413
12769
|
"node_modules/msw/node_modules/@inquirer/ansi": {
|
|
12414
|
-
"version": "2.0.
|
|
12415
|
-
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.
|
|
12416
|
-
"integrity": "sha512-
|
|
12770
|
+
"version": "2.0.7",
|
|
12771
|
+
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.7.tgz",
|
|
12772
|
+
"integrity": "sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==",
|
|
12417
12773
|
"license": "MIT",
|
|
12418
12774
|
"engines": {
|
|
12419
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12775
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12420
12776
|
}
|
|
12421
12777
|
},
|
|
12422
12778
|
"node_modules/msw/node_modules/@inquirer/confirm": {
|
|
12423
|
-
"version": "6.1.
|
|
12424
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.
|
|
12425
|
-
"integrity": "sha512-
|
|
12779
|
+
"version": "6.1.1",
|
|
12780
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.1.tgz",
|
|
12781
|
+
"integrity": "sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==",
|
|
12426
12782
|
"license": "MIT",
|
|
12427
12783
|
"dependencies": {
|
|
12428
|
-
"@inquirer/core": "^11.2.
|
|
12429
|
-
"@inquirer/type": "^4.0.
|
|
12784
|
+
"@inquirer/core": "^11.2.1",
|
|
12785
|
+
"@inquirer/type": "^4.0.7"
|
|
12430
12786
|
},
|
|
12431
12787
|
"engines": {
|
|
12432
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12788
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12433
12789
|
},
|
|
12434
12790
|
"peerDependencies": {
|
|
12435
12791
|
"@types/node": ">=18"
|
|
@@ -12441,21 +12797,21 @@
|
|
|
12441
12797
|
}
|
|
12442
12798
|
},
|
|
12443
12799
|
"node_modules/msw/node_modules/@inquirer/core": {
|
|
12444
|
-
"version": "11.2.
|
|
12445
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.
|
|
12446
|
-
"integrity": "sha512-
|
|
12800
|
+
"version": "11.2.1",
|
|
12801
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.1.tgz",
|
|
12802
|
+
"integrity": "sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==",
|
|
12447
12803
|
"license": "MIT",
|
|
12448
12804
|
"dependencies": {
|
|
12449
|
-
"@inquirer/ansi": "^2.0.
|
|
12450
|
-
"@inquirer/figures": "^2.0.
|
|
12451
|
-
"@inquirer/type": "^4.0.
|
|
12805
|
+
"@inquirer/ansi": "^2.0.7",
|
|
12806
|
+
"@inquirer/figures": "^2.0.7",
|
|
12807
|
+
"@inquirer/type": "^4.0.7",
|
|
12452
12808
|
"cli-width": "^4.1.0",
|
|
12453
12809
|
"fast-wrap-ansi": "^0.2.0",
|
|
12454
|
-
"mute-stream": "^
|
|
12810
|
+
"mute-stream": "^3.0.0",
|
|
12455
12811
|
"signal-exit": "^4.1.0"
|
|
12456
12812
|
},
|
|
12457
12813
|
"engines": {
|
|
12458
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12814
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12459
12815
|
},
|
|
12460
12816
|
"peerDependencies": {
|
|
12461
12817
|
"@types/node": ">=18"
|
|
@@ -12467,21 +12823,21 @@
|
|
|
12467
12823
|
}
|
|
12468
12824
|
},
|
|
12469
12825
|
"node_modules/msw/node_modules/@inquirer/figures": {
|
|
12470
|
-
"version": "2.0.
|
|
12471
|
-
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.
|
|
12472
|
-
"integrity": "sha512-
|
|
12826
|
+
"version": "2.0.7",
|
|
12827
|
+
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.7.tgz",
|
|
12828
|
+
"integrity": "sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==",
|
|
12473
12829
|
"license": "MIT",
|
|
12474
12830
|
"engines": {
|
|
12475
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12831
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12476
12832
|
}
|
|
12477
12833
|
},
|
|
12478
12834
|
"node_modules/msw/node_modules/@inquirer/type": {
|
|
12479
|
-
"version": "4.0.
|
|
12480
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.
|
|
12481
|
-
"integrity": "sha512-
|
|
12835
|
+
"version": "4.0.7",
|
|
12836
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.7.tgz",
|
|
12837
|
+
"integrity": "sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==",
|
|
12482
12838
|
"license": "MIT",
|
|
12483
12839
|
"engines": {
|
|
12484
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12840
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12485
12841
|
},
|
|
12486
12842
|
"peerDependencies": {
|
|
12487
12843
|
"@types/node": ">=18"
|
|
@@ -12493,12 +12849,12 @@
|
|
|
12493
12849
|
}
|
|
12494
12850
|
},
|
|
12495
12851
|
"node_modules/msw/node_modules/mute-stream": {
|
|
12496
|
-
"version": "
|
|
12497
|
-
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-
|
|
12498
|
-
"integrity": "sha512-
|
|
12852
|
+
"version": "3.0.0",
|
|
12853
|
+
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
|
|
12854
|
+
"integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
|
|
12499
12855
|
"license": "ISC",
|
|
12500
12856
|
"engines": {
|
|
12501
|
-
"node": "^
|
|
12857
|
+
"node": "^20.17.0 || >=22.9.0"
|
|
12502
12858
|
}
|
|
12503
12859
|
},
|
|
12504
12860
|
"node_modules/msw/node_modules/path-to-regexp": {
|
|
@@ -12508,9 +12864,9 @@
|
|
|
12508
12864
|
"license": "MIT"
|
|
12509
12865
|
},
|
|
12510
12866
|
"node_modules/msw/node_modules/type-fest": {
|
|
12511
|
-
"version": "5.
|
|
12512
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.
|
|
12513
|
-
"integrity": "sha512-
|
|
12867
|
+
"version": "5.7.0",
|
|
12868
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.7.0.tgz",
|
|
12869
|
+
"integrity": "sha512-1URUxUqfHFM1c+zfSPsa3gnkO7Aq21qyH75SIduNYz4SzY964rn1X2vCMQaHSHhktiw+0kPa2iyb6PUpXqB6Vg==",
|
|
12514
12870
|
"license": "(MIT OR CC0-1.0)",
|
|
12515
12871
|
"dependencies": {
|
|
12516
12872
|
"tagged-tag": "^1.0.0"
|
|
@@ -12723,6 +13079,32 @@
|
|
|
12723
13079
|
"dev": true,
|
|
12724
13080
|
"license": "MIT"
|
|
12725
13081
|
},
|
|
13082
|
+
"node_modules/o11y": {
|
|
13083
|
+
"version": "264.6.0",
|
|
13084
|
+
"resolved": "https://registry.npmjs.org/o11y/-/o11y-264.6.0.tgz",
|
|
13085
|
+
"integrity": "sha512-v3x29+PphNaORbOrYi6ucsx391hwJk+mxf4XGGoRB6+BcI0W3/fhazaXBCBtEZOnU2YDLgpFd8B4CzCmBFiKFQ==",
|
|
13086
|
+
"license": "BSD-3-Clause",
|
|
13087
|
+
"peer": true,
|
|
13088
|
+
"dependencies": {
|
|
13089
|
+
"o11y_schema": "260.5.0",
|
|
13090
|
+
"protobufjs": "7.5.5",
|
|
13091
|
+
"web-vitals": "^5.1.0"
|
|
13092
|
+
}
|
|
13093
|
+
},
|
|
13094
|
+
"node_modules/o11y_schema": {
|
|
13095
|
+
"version": "264.70.0",
|
|
13096
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.70.0.tgz",
|
|
13097
|
+
"integrity": "sha512-3FVh/krlBe1+CnQZUrZkIH1JsI7cpSxorbosSLXLOOPyE8wHNRXUT5hfaH2XlhlAQMneoK+EBM2uioRvoXZSHA==",
|
|
13098
|
+
"license": "BSD-3-Clause",
|
|
13099
|
+
"peer": true
|
|
13100
|
+
},
|
|
13101
|
+
"node_modules/o11y/node_modules/o11y_schema": {
|
|
13102
|
+
"version": "260.5.0",
|
|
13103
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-260.5.0.tgz",
|
|
13104
|
+
"integrity": "sha512-0qrtqE394CODoPovUBdQQ2efHls6Z2xP6jvLitEGKSEj1KcCyeBLx2dHwTUtv66zwZTKjSp27QLFF4PZhengEQ==",
|
|
13105
|
+
"license": "BSD-3-Clause",
|
|
13106
|
+
"peer": true
|
|
13107
|
+
},
|
|
12726
13108
|
"node_modules/object-assign": {
|
|
12727
13109
|
"version": "4.1.1",
|
|
12728
13110
|
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
@@ -13710,6 +14092,31 @@
|
|
|
13710
14092
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
13711
14093
|
"license": "ISC"
|
|
13712
14094
|
},
|
|
14095
|
+
"node_modules/protobufjs": {
|
|
14096
|
+
"version": "7.5.5",
|
|
14097
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.5.tgz",
|
|
14098
|
+
"integrity": "sha512-3wY1AxV+VBNW8Yypfd1yQY9pXnqTAN+KwQxL8iYm3/BjKYMNg4i0owhEe26PWDOMaIrzeeF98Lqd5NGz4omiIg==",
|
|
14099
|
+
"hasInstallScript": true,
|
|
14100
|
+
"license": "BSD-3-Clause",
|
|
14101
|
+
"peer": true,
|
|
14102
|
+
"dependencies": {
|
|
14103
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
14104
|
+
"@protobufjs/base64": "^1.1.2",
|
|
14105
|
+
"@protobufjs/codegen": "^2.0.4",
|
|
14106
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
14107
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
14108
|
+
"@protobufjs/float": "^1.0.2",
|
|
14109
|
+
"@protobufjs/inquire": "^1.1.0",
|
|
14110
|
+
"@protobufjs/path": "^1.1.2",
|
|
14111
|
+
"@protobufjs/pool": "^1.1.0",
|
|
14112
|
+
"@protobufjs/utf8": "^1.1.0",
|
|
14113
|
+
"@types/node": ">=13.7.0",
|
|
14114
|
+
"long": "^5.0.0"
|
|
14115
|
+
},
|
|
14116
|
+
"engines": {
|
|
14117
|
+
"node": ">=12.0.0"
|
|
14118
|
+
}
|
|
14119
|
+
},
|
|
13713
14120
|
"node_modules/proxy-addr": {
|
|
13714
14121
|
"version": "2.0.7",
|
|
13715
14122
|
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
@@ -13913,9 +14320,9 @@
|
|
|
13913
14320
|
}
|
|
13914
14321
|
},
|
|
13915
14322
|
"node_modules/react": {
|
|
13916
|
-
"version": "19.2.
|
|
13917
|
-
"resolved": "https://registry.npmjs.org/react/-/react-19.2.
|
|
13918
|
-
"integrity": "sha512-
|
|
14323
|
+
"version": "19.2.7",
|
|
14324
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
|
|
14325
|
+
"integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
|
|
13919
14326
|
"license": "MIT",
|
|
13920
14327
|
"engines": {
|
|
13921
14328
|
"node": ">=0.10.0"
|
|
@@ -13944,15 +14351,15 @@
|
|
|
13944
14351
|
}
|
|
13945
14352
|
},
|
|
13946
14353
|
"node_modules/react-dom": {
|
|
13947
|
-
"version": "19.2.
|
|
13948
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.
|
|
13949
|
-
"integrity": "sha512-
|
|
14354
|
+
"version": "19.2.7",
|
|
14355
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
|
|
14356
|
+
"integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
|
|
13950
14357
|
"license": "MIT",
|
|
13951
14358
|
"dependencies": {
|
|
13952
14359
|
"scheduler": "^0.27.0"
|
|
13953
14360
|
},
|
|
13954
14361
|
"peerDependencies": {
|
|
13955
|
-
"react": "^19.2.
|
|
14362
|
+
"react": "^19.2.7"
|
|
13956
14363
|
}
|
|
13957
14364
|
},
|
|
13958
14365
|
"node_modules/react-is": {
|
|
@@ -14317,12 +14724,12 @@
|
|
|
14317
14724
|
"license": "MIT"
|
|
14318
14725
|
},
|
|
14319
14726
|
"node_modules/rollup": {
|
|
14320
|
-
"version": "4.
|
|
14321
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
14322
|
-
"integrity": "sha512-
|
|
14727
|
+
"version": "4.61.0",
|
|
14728
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.61.0.tgz",
|
|
14729
|
+
"integrity": "sha512-T9mWdbWfQtp0B5lv/HX+wrhYsmXRlcWnXXmJbXqKJhlRaoS6KMhq0gpyzW4UJfclcxrEdLnTgjT2NjruLONu0g==",
|
|
14323
14730
|
"license": "MIT",
|
|
14324
14731
|
"dependencies": {
|
|
14325
|
-
"@types/estree": "1.0.
|
|
14732
|
+
"@types/estree": "1.0.9"
|
|
14326
14733
|
},
|
|
14327
14734
|
"bin": {
|
|
14328
14735
|
"rollup": "dist/bin/rollup"
|
|
@@ -14332,40 +14739,34 @@
|
|
|
14332
14739
|
"npm": ">=8.0.0"
|
|
14333
14740
|
},
|
|
14334
14741
|
"optionalDependencies": {
|
|
14335
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
14336
|
-
"@rollup/rollup-android-arm64": "4.
|
|
14337
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
14338
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
14339
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
14340
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
14341
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
14342
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
14343
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
14344
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
14345
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
14346
|
-
"@rollup/rollup-linux-loong64-musl": "4.
|
|
14347
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.
|
|
14348
|
-
"@rollup/rollup-linux-ppc64-musl": "4.
|
|
14349
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
14350
|
-
"@rollup/rollup-linux-riscv64-musl": "4.
|
|
14351
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
14352
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
14353
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
14354
|
-
"@rollup/rollup-openbsd-x64": "4.
|
|
14355
|
-
"@rollup/rollup-openharmony-arm64": "4.
|
|
14356
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
14357
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
14358
|
-
"@rollup/rollup-win32-x64-gnu": "4.
|
|
14359
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
14742
|
+
"@rollup/rollup-android-arm-eabi": "4.61.0",
|
|
14743
|
+
"@rollup/rollup-android-arm64": "4.61.0",
|
|
14744
|
+
"@rollup/rollup-darwin-arm64": "4.61.0",
|
|
14745
|
+
"@rollup/rollup-darwin-x64": "4.61.0",
|
|
14746
|
+
"@rollup/rollup-freebsd-arm64": "4.61.0",
|
|
14747
|
+
"@rollup/rollup-freebsd-x64": "4.61.0",
|
|
14748
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.61.0",
|
|
14749
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.61.0",
|
|
14750
|
+
"@rollup/rollup-linux-arm64-gnu": "4.61.0",
|
|
14751
|
+
"@rollup/rollup-linux-arm64-musl": "4.61.0",
|
|
14752
|
+
"@rollup/rollup-linux-loong64-gnu": "4.61.0",
|
|
14753
|
+
"@rollup/rollup-linux-loong64-musl": "4.61.0",
|
|
14754
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.61.0",
|
|
14755
|
+
"@rollup/rollup-linux-ppc64-musl": "4.61.0",
|
|
14756
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.61.0",
|
|
14757
|
+
"@rollup/rollup-linux-riscv64-musl": "4.61.0",
|
|
14758
|
+
"@rollup/rollup-linux-s390x-gnu": "4.61.0",
|
|
14759
|
+
"@rollup/rollup-linux-x64-gnu": "4.61.0",
|
|
14760
|
+
"@rollup/rollup-linux-x64-musl": "4.61.0",
|
|
14761
|
+
"@rollup/rollup-openbsd-x64": "4.61.0",
|
|
14762
|
+
"@rollup/rollup-openharmony-arm64": "4.61.0",
|
|
14763
|
+
"@rollup/rollup-win32-arm64-msvc": "4.61.0",
|
|
14764
|
+
"@rollup/rollup-win32-ia32-msvc": "4.61.0",
|
|
14765
|
+
"@rollup/rollup-win32-x64-gnu": "4.61.0",
|
|
14766
|
+
"@rollup/rollup-win32-x64-msvc": "4.61.0",
|
|
14360
14767
|
"fsevents": "~2.3.2"
|
|
14361
14768
|
}
|
|
14362
14769
|
},
|
|
14363
|
-
"node_modules/rollup/node_modules/@types/estree": {
|
|
14364
|
-
"version": "1.0.8",
|
|
14365
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
14366
|
-
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
14367
|
-
"license": "MIT"
|
|
14368
|
-
},
|
|
14369
14770
|
"node_modules/router": {
|
|
14370
14771
|
"version": "2.2.0",
|
|
14371
14772
|
"resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
|
|
@@ -15745,18 +16146,18 @@
|
|
|
15745
16146
|
"license": "MIT"
|
|
15746
16147
|
},
|
|
15747
16148
|
"node_modules/tinyexec": {
|
|
15748
|
-
"version": "1.2.
|
|
15749
|
-
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.
|
|
15750
|
-
"integrity": "sha512-
|
|
16149
|
+
"version": "1.2.4",
|
|
16150
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz",
|
|
16151
|
+
"integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==",
|
|
15751
16152
|
"license": "MIT",
|
|
15752
16153
|
"engines": {
|
|
15753
16154
|
"node": ">=18"
|
|
15754
16155
|
}
|
|
15755
16156
|
},
|
|
15756
16157
|
"node_modules/tinyglobby": {
|
|
15757
|
-
"version": "0.2.
|
|
15758
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.
|
|
15759
|
-
"integrity": "sha512-
|
|
16158
|
+
"version": "0.2.17",
|
|
16159
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
16160
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
15760
16161
|
"license": "MIT",
|
|
15761
16162
|
"dependencies": {
|
|
15762
16163
|
"fdir": "^6.5.0",
|
|
@@ -15819,21 +16220,21 @@
|
|
|
15819
16220
|
}
|
|
15820
16221
|
},
|
|
15821
16222
|
"node_modules/tldts": {
|
|
15822
|
-
"version": "7.4.
|
|
15823
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
15824
|
-
"integrity": "sha512-
|
|
16223
|
+
"version": "7.4.2",
|
|
16224
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.2.tgz",
|
|
16225
|
+
"integrity": "sha512-kCwffuaH8ntKtygnWe1b4BJKWiCUH30n5KfoTr6IchcXOwR7chAOFJxFrH3vjANafUYrIA4a7SDL+nn7SiR4Sw==",
|
|
15825
16226
|
"license": "MIT",
|
|
15826
16227
|
"dependencies": {
|
|
15827
|
-
"tldts-core": "^7.4.
|
|
16228
|
+
"tldts-core": "^7.4.2"
|
|
15828
16229
|
},
|
|
15829
16230
|
"bin": {
|
|
15830
16231
|
"tldts": "bin/cli.js"
|
|
15831
16232
|
}
|
|
15832
16233
|
},
|
|
15833
16234
|
"node_modules/tldts-core": {
|
|
15834
|
-
"version": "7.4.
|
|
15835
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
15836
|
-
"integrity": "sha512-
|
|
16235
|
+
"version": "7.4.2",
|
|
16236
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.2.tgz",
|
|
16237
|
+
"integrity": "sha512-nwEyF4vl4RSJjwSjBUmOSxc3BFPoIFdlRthJ6e+5v9P3bHNsoD06UjuqMUspqp7vsEZ1beaHi1km+optiE17yA==",
|
|
15837
16238
|
"license": "MIT"
|
|
15838
16239
|
},
|
|
15839
16240
|
"node_modules/to-regex-range": {
|
|
@@ -16163,16 +16564,16 @@
|
|
|
16163
16564
|
}
|
|
16164
16565
|
},
|
|
16165
16566
|
"node_modules/typescript-eslint": {
|
|
16166
|
-
"version": "8.60.
|
|
16167
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.
|
|
16168
|
-
"integrity": "sha512-
|
|
16567
|
+
"version": "8.60.1",
|
|
16568
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.1.tgz",
|
|
16569
|
+
"integrity": "sha512-6m5hkkRAp8lKvhVpcprAIn5KkehQEh+47oHH2VGnExEh7dhNxXlg6GPAOIu6TxbVQxhebrJDvjl3020ooiWCMA==",
|
|
16169
16570
|
"dev": true,
|
|
16170
16571
|
"license": "MIT",
|
|
16171
16572
|
"dependencies": {
|
|
16172
|
-
"@typescript-eslint/eslint-plugin": "8.60.
|
|
16173
|
-
"@typescript-eslint/parser": "8.60.
|
|
16174
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
16175
|
-
"@typescript-eslint/utils": "8.60.
|
|
16573
|
+
"@typescript-eslint/eslint-plugin": "8.60.1",
|
|
16574
|
+
"@typescript-eslint/parser": "8.60.1",
|
|
16575
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
16576
|
+
"@typescript-eslint/utils": "8.60.1"
|
|
16176
16577
|
},
|
|
16177
16578
|
"engines": {
|
|
16178
16579
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -16426,9 +16827,9 @@
|
|
|
16426
16827
|
}
|
|
16427
16828
|
},
|
|
16428
16829
|
"node_modules/vite": {
|
|
16429
|
-
"version": "7.3.
|
|
16430
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.
|
|
16431
|
-
"integrity": "sha512
|
|
16830
|
+
"version": "7.3.5",
|
|
16831
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.5.tgz",
|
|
16832
|
+
"integrity": "sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==",
|
|
16432
16833
|
"license": "MIT",
|
|
16433
16834
|
"dependencies": {
|
|
16434
16835
|
"esbuild": "^0.27.0",
|
|
@@ -16555,19 +16956,19 @@
|
|
|
16555
16956
|
}
|
|
16556
16957
|
},
|
|
16557
16958
|
"node_modules/vitest": {
|
|
16558
|
-
"version": "4.1.
|
|
16559
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.
|
|
16560
|
-
"integrity": "sha512-
|
|
16959
|
+
"version": "4.1.8",
|
|
16960
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.8.tgz",
|
|
16961
|
+
"integrity": "sha512-flY6ScbCIt9HThs+C5HS7jvGOB560DJtk/Z15IQROTA6zEy49Nh8T/dofWTQL+n3vswqn87sbJNiuqw1SDp5Ig==",
|
|
16561
16962
|
"dev": true,
|
|
16562
16963
|
"license": "MIT",
|
|
16563
16964
|
"dependencies": {
|
|
16564
|
-
"@vitest/expect": "4.1.
|
|
16565
|
-
"@vitest/mocker": "4.1.
|
|
16566
|
-
"@vitest/pretty-format": "4.1.
|
|
16567
|
-
"@vitest/runner": "4.1.
|
|
16568
|
-
"@vitest/snapshot": "4.1.
|
|
16569
|
-
"@vitest/spy": "4.1.
|
|
16570
|
-
"@vitest/utils": "4.1.
|
|
16965
|
+
"@vitest/expect": "4.1.8",
|
|
16966
|
+
"@vitest/mocker": "4.1.8",
|
|
16967
|
+
"@vitest/pretty-format": "4.1.8",
|
|
16968
|
+
"@vitest/runner": "4.1.8",
|
|
16969
|
+
"@vitest/snapshot": "4.1.8",
|
|
16970
|
+
"@vitest/spy": "4.1.8",
|
|
16971
|
+
"@vitest/utils": "4.1.8",
|
|
16571
16972
|
"es-module-lexer": "^2.0.0",
|
|
16572
16973
|
"expect-type": "^1.3.0",
|
|
16573
16974
|
"magic-string": "^0.30.21",
|
|
@@ -16595,12 +16996,12 @@
|
|
|
16595
16996
|
"@edge-runtime/vm": "*",
|
|
16596
16997
|
"@opentelemetry/api": "^1.9.0",
|
|
16597
16998
|
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
16598
|
-
"@vitest/browser-playwright": "4.1.
|
|
16599
|
-
"@vitest/browser-preview": "4.1.
|
|
16600
|
-
"@vitest/browser-webdriverio": "4.1.
|
|
16601
|
-
"@vitest/coverage-istanbul": "4.1.
|
|
16602
|
-
"@vitest/coverage-v8": "4.1.
|
|
16603
|
-
"@vitest/ui": "4.1.
|
|
16999
|
+
"@vitest/browser-playwright": "4.1.8",
|
|
17000
|
+
"@vitest/browser-preview": "4.1.8",
|
|
17001
|
+
"@vitest/browser-webdriverio": "4.1.8",
|
|
17002
|
+
"@vitest/coverage-istanbul": "4.1.8",
|
|
17003
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
17004
|
+
"@vitest/ui": "4.1.8",
|
|
16604
17005
|
"happy-dom": "*",
|
|
16605
17006
|
"jsdom": "*",
|
|
16606
17007
|
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
@@ -16679,6 +17080,13 @@
|
|
|
16679
17080
|
"node": ">= 8"
|
|
16680
17081
|
}
|
|
16681
17082
|
},
|
|
17083
|
+
"node_modules/web-vitals": {
|
|
17084
|
+
"version": "5.3.0",
|
|
17085
|
+
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-5.3.0.tgz",
|
|
17086
|
+
"integrity": "sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g==",
|
|
17087
|
+
"license": "Apache-2.0",
|
|
17088
|
+
"peer": true
|
|
17089
|
+
},
|
|
16682
17090
|
"node_modules/webidl-conversions": {
|
|
16683
17091
|
"version": "7.0.0",
|
|
16684
17092
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
|