@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,9 +8,9 @@
|
|
|
8
8
|
"name": "base-react-app",
|
|
9
9
|
"version": "1.59.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@salesforce/agentforce-conversation-client": "^
|
|
12
|
-
"@salesforce/sdk
|
|
13
|
-
"@salesforce/ui-bundle": "^
|
|
11
|
+
"@salesforce/agentforce-conversation-client": "^9.4.0",
|
|
12
|
+
"@salesforce/platform-sdk": "^10.2.2",
|
|
13
|
+
"@salesforce/ui-bundle": "^10.2.2",
|
|
14
14
|
"@tailwindcss/vite": "^4.1.17",
|
|
15
15
|
"class-variance-authority": "^0.7.1",
|
|
16
16
|
"clsx": "^2.1.1",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
36
36
|
"@graphql-tools/utils": "^11.0.0",
|
|
37
37
|
"@playwright/test": "^1.49.0",
|
|
38
|
-
"@salesforce/vite-plugin-ui-bundle": "^
|
|
38
|
+
"@salesforce/vite-plugin-ui-bundle": "^10.2.2",
|
|
39
39
|
"@testing-library/jest-dom": "^6.6.3",
|
|
40
40
|
"@testing-library/react": "^16.1.0",
|
|
41
41
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -590,39 +590,283 @@
|
|
|
590
590
|
"node": ">=6.9.0"
|
|
591
591
|
}
|
|
592
592
|
},
|
|
593
|
+
"node_modules/@conduit-client/command-base": {
|
|
594
|
+
"version": "3.19.6",
|
|
595
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-base/-/command-base-3.19.6.tgz",
|
|
596
|
+
"integrity": "sha512-zbjMSv4d0SEPR63/HTa4lFoJtMHUMQ810GprFFR9U3OcZZ4PCyUQeyM8DIja/IsRgH7HDDEL7DnhF5mpT5UxDA==",
|
|
597
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
598
|
+
"dependencies": {
|
|
599
|
+
"@conduit-client/utils": "3.19.6"
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
"node_modules/@conduit-client/command-cache-control": {
|
|
603
|
+
"version": "3.19.6",
|
|
604
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-cache-control/-/command-cache-control-3.19.6.tgz",
|
|
605
|
+
"integrity": "sha512-ReZdJa5S65sGqXWocq6PkUEodon9xaBHzdpPHrdhFADotjhJY2wYQ9/050tnQ7TVg31IkeUZNNrj4WPEdYwV7w==",
|
|
606
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
607
|
+
"dependencies": {
|
|
608
|
+
"@conduit-client/command-base": "3.19.6",
|
|
609
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
610
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
611
|
+
"@conduit-client/utils": "3.19.6"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
"node_modules/@conduit-client/command-http-cache-control": {
|
|
615
|
+
"version": "3.19.6",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/command-http-cache-control/-/command-http-cache-control-3.19.6.tgz",
|
|
617
|
+
"integrity": "sha512-41bjECK4JByGKpj6chojO25i1sgOnvQoklvzgW6L9BuLE5d3uzBw6JmY5srAOiaP1t0ZYHeHm+lLnuZ7R3BjRA==",
|
|
618
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
619
|
+
"dependencies": {
|
|
620
|
+
"@conduit-client/command-base": "3.19.6",
|
|
621
|
+
"@conduit-client/command-cache-control": "3.19.6",
|
|
622
|
+
"@conduit-client/service-aura-network": "3.19.6",
|
|
623
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
624
|
+
"@conduit-client/service-fetch-network": "3.19.6",
|
|
625
|
+
"@conduit-client/service-pubsub": "3.19.6",
|
|
626
|
+
"@conduit-client/utils": "3.19.6"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"node_modules/@conduit-client/jsonschema-validate": {
|
|
630
|
+
"version": "3.19.6",
|
|
631
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/jsonschema-validate/-/jsonschema-validate-3.19.6.tgz",
|
|
632
|
+
"integrity": "sha512-XVEzbVc568gW3gu5YZh9CAVMZNjQ5hdTkR9M8ApsXX7GYhxy41Vl9F6Kkig9SFr6K0xDxAmfldvHSxkqHFebXw==",
|
|
633
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
634
|
+
"dependencies": {
|
|
635
|
+
"@conduit-client/utils": "3.19.6"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
593
638
|
"node_modules/@conduit-client/jwt-manager": {
|
|
594
|
-
"version": "3.
|
|
595
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.
|
|
596
|
-
"integrity": "sha512-
|
|
639
|
+
"version": "3.19.6",
|
|
640
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.19.6.tgz",
|
|
641
|
+
"integrity": "sha512-tpkg0DtJxTdW/zac+nm8wCpSw2wavYtOfVDHfmAAtH/FF39PWjcam7ldyru1G95NR2JbvAxbLQZefC+Dt0n5kg==",
|
|
597
642
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
598
643
|
"dependencies": {
|
|
599
644
|
"jwt-decode": "~3.1.2"
|
|
600
645
|
}
|
|
601
646
|
},
|
|
647
|
+
"node_modules/@conduit-client/onestore-graphql-parser": {
|
|
648
|
+
"version": "3.19.6",
|
|
649
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/onestore-graphql-parser/-/onestore-graphql-parser-3.19.6.tgz",
|
|
650
|
+
"integrity": "sha512-zz02oNZjrxWQDAt7jN3yKurCdQTp2Jz3Cp9fhkZhJ/NNUqElcQUPK/3ruUX5MhwpjbbVU4KXvNNqwjg0We7UoA==",
|
|
651
|
+
"license": "MIT",
|
|
652
|
+
"dependencies": {
|
|
653
|
+
"@conduit-client/jsonschema-validate": "3.19.6",
|
|
654
|
+
"@conduit-client/utils": "3.19.6",
|
|
655
|
+
"graphql": "16.11.0"
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"node_modules/@conduit-client/onestore-graphql-parser/node_modules/graphql": {
|
|
659
|
+
"version": "16.11.0",
|
|
660
|
+
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.11.0.tgz",
|
|
661
|
+
"integrity": "sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==",
|
|
662
|
+
"license": "MIT",
|
|
663
|
+
"engines": {
|
|
664
|
+
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
"node_modules/@conduit-client/service-aura-network": {
|
|
668
|
+
"version": "3.19.6",
|
|
669
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-aura-network/-/service-aura-network-3.19.6.tgz",
|
|
670
|
+
"integrity": "sha512-H8+Uq0A8e9QYtYrvVfkoha7ozQP8aCTqn9vYKt1WzehkzRI+webIZjNeCrJtFsXEW+s2Shwy2P3C3GY6tF/rUg==",
|
|
671
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
672
|
+
"dependencies": {
|
|
673
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
674
|
+
"@conduit-client/utils": "3.19.6"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"node_modules/@conduit-client/service-cache": {
|
|
678
|
+
"version": "3.19.6",
|
|
679
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache/-/service-cache-3.19.6.tgz",
|
|
680
|
+
"integrity": "sha512-WBQJgOXLZsAyWBnaOnliwgs+tx9JJsCGtLV31oqXrLbjxONk1NYNFbbpW70a8wLBJ0ZKFd4s/+nNicKwiGvRWw==",
|
|
681
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
682
|
+
"dependencies": {
|
|
683
|
+
"@conduit-client/service-instrumentation": "3.19.6",
|
|
684
|
+
"@conduit-client/utils": "3.19.6"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
"node_modules/@conduit-client/service-cache-control": {
|
|
688
|
+
"version": "3.19.6",
|
|
689
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache-control/-/service-cache-control-3.19.6.tgz",
|
|
690
|
+
"integrity": "sha512-pQ2ipf9FZs2vPjG3d837kpGWQGK0fmj73spn6VUWy0jiewlZZ6L/uzZzV9smMv65yAHVWnBO6ZMi/jVp+y0YsQ==",
|
|
691
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
692
|
+
"dependencies": {
|
|
693
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
694
|
+
"@conduit-client/service-cache-inclusion-policy": "3.19.6",
|
|
695
|
+
"@conduit-client/utils": "3.19.6"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"node_modules/@conduit-client/service-cache-inclusion-policy": {
|
|
699
|
+
"version": "3.19.6",
|
|
700
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-cache-inclusion-policy/-/service-cache-inclusion-policy-3.19.6.tgz",
|
|
701
|
+
"integrity": "sha512-q7kJguFTNdb5/RKykBXgDttWBwT7+tcS4zWwEaHXmDTlb4iTOlb5JfpSgFoEkx4mY1+QsiM179g4sP38IN+0jQ==",
|
|
702
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
703
|
+
"dependencies": {
|
|
704
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
705
|
+
"@conduit-client/utils": "3.19.6"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
602
708
|
"node_modules/@conduit-client/service-fetch-network": {
|
|
603
|
-
"version": "3.
|
|
604
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.
|
|
605
|
-
"integrity": "sha512-
|
|
709
|
+
"version": "3.19.6",
|
|
710
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.19.6.tgz",
|
|
711
|
+
"integrity": "sha512-yOsiRyOrM03tmX92oVbThJs7jZfjiVBQZiGkV+I+980TrJGnAwvaZlQVeG4Ncb285HtpBzkUnuc05Eol/tlCgw==",
|
|
712
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
713
|
+
"dependencies": {
|
|
714
|
+
"@conduit-client/jwt-manager": "3.19.6",
|
|
715
|
+
"@conduit-client/service-retry": "3.19.6",
|
|
716
|
+
"@conduit-client/utils": "3.19.6"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"node_modules/@conduit-client/service-instrumentation": {
|
|
720
|
+
"version": "3.19.6",
|
|
721
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation/-/service-instrumentation-3.19.6.tgz",
|
|
722
|
+
"integrity": "sha512-o+tR7hbwc2SNMYvKMW4IT0Z2JkO2BpCXiWchz/5N7GiKW1Xuhl/8jLY7mzmm96OVZGktPp4p4FHGlUiTdlqiSQ==",
|
|
723
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
724
|
+
"dependencies": {
|
|
725
|
+
"@conduit-client/service-instrumentation-noop": "3.19.6",
|
|
726
|
+
"@conduit-client/service-instrumentation-o11y": "3.19.6",
|
|
727
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
728
|
+
"@conduit-client/utils": "3.19.6",
|
|
729
|
+
"@opentelemetry/api": "1.7.0"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"node_modules/@conduit-client/service-instrumentation-noop": {
|
|
733
|
+
"version": "3.19.6",
|
|
734
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-noop/-/service-instrumentation-noop-3.19.6.tgz",
|
|
735
|
+
"integrity": "sha512-4OuCYyNJnfDqIWXlTTxfhEkMbanIruZrMr8Rzx+MBPuYSqMSJmzCRD1Imf9nh84RedmdC4OlOxdgF6FVgYRcfQ==",
|
|
736
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
737
|
+
"dependencies": {
|
|
738
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
739
|
+
"@conduit-client/utils": "3.19.6",
|
|
740
|
+
"@opentelemetry/api": "1.7.0"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"node_modules/@conduit-client/service-instrumentation-noop/node_modules/@opentelemetry/api": {
|
|
744
|
+
"version": "1.7.0",
|
|
745
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
746
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
747
|
+
"license": "Apache-2.0",
|
|
748
|
+
"engines": {
|
|
749
|
+
"node": ">=8.0.0"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"node_modules/@conduit-client/service-instrumentation-o11y": {
|
|
753
|
+
"version": "3.19.6",
|
|
754
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-o11y/-/service-instrumentation-o11y-3.19.6.tgz",
|
|
755
|
+
"integrity": "sha512-NQU9jeob5ARas8HpcyMADvhEyQk76YaBvWV6qGdQi22vPK636FCZDucysL++Q2iCSrszX5SS++0q4HEQo1mFog==",
|
|
606
756
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
607
757
|
"dependencies": {
|
|
608
|
-
"@conduit-client/
|
|
609
|
-
"@conduit-client/
|
|
610
|
-
"@
|
|
758
|
+
"@conduit-client/service-instrumentation-types": "3.19.6",
|
|
759
|
+
"@conduit-client/utils": "3.19.6",
|
|
760
|
+
"@opentelemetry/api": "1.7.0",
|
|
761
|
+
"o11y": "252.7.0"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/@opentelemetry/api": {
|
|
765
|
+
"version": "1.7.0",
|
|
766
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
767
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
768
|
+
"license": "Apache-2.0",
|
|
769
|
+
"engines": {
|
|
770
|
+
"node": ">=8.0.0"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y": {
|
|
774
|
+
"version": "252.7.0",
|
|
775
|
+
"resolved": "https://registry.npmjs.org/o11y/-/o11y-252.7.0.tgz",
|
|
776
|
+
"integrity": "sha512-/P79vBumoxplQ4aqjW8GoVEMk7Uj50HOmZQAyNtu/FE8FuPXSh9rnkguxUDfN5l1oWI8Eyktrnu3XRs56OkQVQ==",
|
|
777
|
+
"license": "BSD-3-Clause",
|
|
778
|
+
"dependencies": {
|
|
779
|
+
"o11y_schema": "252.11.0",
|
|
780
|
+
"protobufjs": "7.2.4",
|
|
781
|
+
"web-vitals": "3.5.2"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y_schema": {
|
|
785
|
+
"version": "252.11.0",
|
|
786
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-252.11.0.tgz",
|
|
787
|
+
"integrity": "sha512-gdzht1/LRbnJZZGtR2M6ACopNLiwuUs0yP8OGnDbpCTJITwDS9S5wb7qbxUMY2kyhXkGR3oD8RY0C1S6+/1rRQ==",
|
|
788
|
+
"license": "BSD-3-Clause"
|
|
789
|
+
},
|
|
790
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/protobufjs": {
|
|
791
|
+
"version": "7.2.4",
|
|
792
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz",
|
|
793
|
+
"integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==",
|
|
794
|
+
"hasInstallScript": true,
|
|
795
|
+
"license": "BSD-3-Clause",
|
|
796
|
+
"dependencies": {
|
|
797
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
798
|
+
"@protobufjs/base64": "^1.1.2",
|
|
799
|
+
"@protobufjs/codegen": "^2.0.4",
|
|
800
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
801
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
802
|
+
"@protobufjs/float": "^1.0.2",
|
|
803
|
+
"@protobufjs/inquire": "^1.1.0",
|
|
804
|
+
"@protobufjs/path": "^1.1.2",
|
|
805
|
+
"@protobufjs/pool": "^1.1.0",
|
|
806
|
+
"@protobufjs/utf8": "^1.1.0",
|
|
807
|
+
"@types/node": ">=13.7.0",
|
|
808
|
+
"long": "^5.0.0"
|
|
809
|
+
},
|
|
810
|
+
"engines": {
|
|
811
|
+
"node": ">=12.0.0"
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"node_modules/@conduit-client/service-instrumentation-o11y/node_modules/web-vitals": {
|
|
815
|
+
"version": "3.5.2",
|
|
816
|
+
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz",
|
|
817
|
+
"integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==",
|
|
818
|
+
"license": "Apache-2.0"
|
|
819
|
+
},
|
|
820
|
+
"node_modules/@conduit-client/service-instrumentation-types": {
|
|
821
|
+
"version": "3.19.6",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-types/-/service-instrumentation-types-3.19.6.tgz",
|
|
823
|
+
"integrity": "sha512-BZ6BsYa2StM2+bGWnv/cB4SXaS9fCTQX1bL9z0UqIZbPmBYhtr640/SirAl8z2pqnl0Qd5OZnYAlpyLSqJoKOg==",
|
|
824
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
825
|
+
"dependencies": {
|
|
826
|
+
"@conduit-client/utils": "3.19.6",
|
|
827
|
+
"@opentelemetry/api": "1.7.0"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"node_modules/@conduit-client/service-instrumentation-types/node_modules/@opentelemetry/api": {
|
|
831
|
+
"version": "1.7.0",
|
|
832
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
833
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
834
|
+
"license": "Apache-2.0",
|
|
835
|
+
"engines": {
|
|
836
|
+
"node": ">=8.0.0"
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"node_modules/@conduit-client/service-instrumentation/node_modules/@opentelemetry/api": {
|
|
840
|
+
"version": "1.7.0",
|
|
841
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
|
|
842
|
+
"integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
|
|
843
|
+
"license": "Apache-2.0",
|
|
844
|
+
"engines": {
|
|
845
|
+
"node": ">=8.0.0"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"node_modules/@conduit-client/service-pubsub": {
|
|
849
|
+
"version": "3.19.6",
|
|
850
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-pubsub/-/service-pubsub-3.19.6.tgz",
|
|
851
|
+
"integrity": "sha512-HgWWiXMX43jorZNtqEHx/8cxRImcga6ycjCS6NRPnYStsndIBZIR53GnKcXbPvvaO/v5BhA3WWiWwSYe38OF2A==",
|
|
852
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
853
|
+
"dependencies": {
|
|
854
|
+
"@conduit-client/utils": "3.19.6"
|
|
611
855
|
}
|
|
612
856
|
},
|
|
613
857
|
"node_modules/@conduit-client/service-retry": {
|
|
614
|
-
"version": "3.
|
|
615
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.
|
|
616
|
-
"integrity": "sha512-
|
|
858
|
+
"version": "3.19.6",
|
|
859
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.19.6.tgz",
|
|
860
|
+
"integrity": "sha512-Zb1V2un+X3iFFN/eiY+V+G9cfvRqK2ppHjKWVF+SXRY52fOKVbEvbRA/n/YM/xemfA4PiMcmNzOrhvHwYNImaw==",
|
|
617
861
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
618
862
|
"dependencies": {
|
|
619
|
-
"@conduit-client/utils": "3.
|
|
863
|
+
"@conduit-client/utils": "3.19.6"
|
|
620
864
|
}
|
|
621
865
|
},
|
|
622
866
|
"node_modules/@conduit-client/utils": {
|
|
623
|
-
"version": "3.
|
|
624
|
-
"resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.
|
|
625
|
-
"integrity": "sha512-
|
|
867
|
+
"version": "3.19.6",
|
|
868
|
+
"resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.19.6.tgz",
|
|
869
|
+
"integrity": "sha512-sEE8RIz1+LxPJJVkBsSATgQBEn91pKdiEahUqisnodmnct+uLbI+bi/k4NPXoNMSIZM7W2VgEWFQDHF2GXZ28w==",
|
|
626
870
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
627
871
|
},
|
|
628
872
|
"node_modules/@csstools/color-helpers": {
|
|
@@ -747,9 +991,9 @@
|
|
|
747
991
|
"license": "MIT"
|
|
748
992
|
},
|
|
749
993
|
"node_modules/@dotenvx/dotenvx": {
|
|
750
|
-
"version": "1.
|
|
751
|
-
"resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.
|
|
752
|
-
"integrity": "sha512-
|
|
994
|
+
"version": "1.71.0",
|
|
995
|
+
"resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.71.0.tgz",
|
|
996
|
+
"integrity": "sha512-KEUw/mGu+EDRhYWRTNGHIimVCs9NvMFaIXOGrHSXoCteKLE5EsJnmPjOPpYorjXVg/0xG0fbdVw720azw1z4ag==",
|
|
753
997
|
"license": "BSD-3-Clause",
|
|
754
998
|
"dependencies": {
|
|
755
999
|
"commander": "^11.1.0",
|
|
@@ -1936,9 +2180,9 @@
|
|
|
1936
2180
|
}
|
|
1937
2181
|
},
|
|
1938
2182
|
"node_modules/@graphql-tools/delegate": {
|
|
1939
|
-
"version": "12.0.
|
|
1940
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.
|
|
1941
|
-
"integrity": "sha512-
|
|
2183
|
+
"version": "12.0.17",
|
|
2184
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.17.tgz",
|
|
2185
|
+
"integrity": "sha512-pIVszWEm69rF+bkM0jUyM1KdIxGzygQbIp1GtV1CuEGRB8lN1uFY1eeTzM2nudHXg8cj+XSVO8cnRpph+o8Dmg==",
|
|
1942
2186
|
"dev": true,
|
|
1943
2187
|
"license": "MIT",
|
|
1944
2188
|
"dependencies": {
|
|
@@ -2336,13 +2580,13 @@
|
|
|
2336
2580
|
}
|
|
2337
2581
|
},
|
|
2338
2582
|
"node_modules/@graphql-tools/wrap": {
|
|
2339
|
-
"version": "11.1.
|
|
2340
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.
|
|
2341
|
-
"integrity": "sha512-
|
|
2583
|
+
"version": "11.1.16",
|
|
2584
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.16.tgz",
|
|
2585
|
+
"integrity": "sha512-JW1XGFTmltXa537J2bAr8dN/n6EWwiBuM9q8V8mWqZ0eWrf++/TT3/mlV3c0M8B8nrS/lqSsotIwPAtVZR8sWQ==",
|
|
2342
2586
|
"dev": true,
|
|
2343
2587
|
"license": "MIT",
|
|
2344
2588
|
"dependencies": {
|
|
2345
|
-
"@graphql-tools/delegate": "^12.0.
|
|
2589
|
+
"@graphql-tools/delegate": "^12.0.17",
|
|
2346
2590
|
"@graphql-tools/schema": "^10.0.29",
|
|
2347
2591
|
"@graphql-tools/utils": "^11.0.0",
|
|
2348
2592
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -2974,9 +3218,9 @@
|
|
|
2974
3218
|
}
|
|
2975
3219
|
},
|
|
2976
3220
|
"node_modules/@lightning-out/application": {
|
|
2977
|
-
"version": "2.1.
|
|
2978
|
-
"resolved": "https://registry.npmjs.org/@lightning-out/application/-/application-2.1.
|
|
2979
|
-
"integrity": "sha512-
|
|
3221
|
+
"version": "2.1.2",
|
|
3222
|
+
"resolved": "https://registry.npmjs.org/@lightning-out/application/-/application-2.1.2.tgz",
|
|
3223
|
+
"integrity": "sha512-C9G7bSfKw7Fd+UJgZ10M4CeylsVT7wf9aJzROUlfZdvisaizNfV5FHwCukxERq4o60hRxAr3/0BTYZZLtXY7Ug==",
|
|
2980
3224
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
2981
3225
|
},
|
|
2982
3226
|
"node_modules/@modelcontextprotocol/sdk": {
|
|
@@ -3138,6 +3382,16 @@
|
|
|
3138
3382
|
"integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
|
|
3139
3383
|
"license": "MIT"
|
|
3140
3384
|
},
|
|
3385
|
+
"node_modules/@opentelemetry/api": {
|
|
3386
|
+
"version": "1.9.1",
|
|
3387
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.1.tgz",
|
|
3388
|
+
"integrity": "sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==",
|
|
3389
|
+
"extraneous": true,
|
|
3390
|
+
"license": "Apache-2.0",
|
|
3391
|
+
"engines": {
|
|
3392
|
+
"node": ">=8.0.0"
|
|
3393
|
+
}
|
|
3394
|
+
},
|
|
3141
3395
|
"node_modules/@pinojs/redact": {
|
|
3142
3396
|
"version": "0.4.0",
|
|
3143
3397
|
"resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
|
|
@@ -3167,6 +3421,69 @@
|
|
|
3167
3421
|
"dev": true,
|
|
3168
3422
|
"license": "MIT"
|
|
3169
3423
|
},
|
|
3424
|
+
"node_modules/@protobufjs/aspromise": {
|
|
3425
|
+
"version": "1.1.2",
|
|
3426
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
3427
|
+
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
|
|
3428
|
+
"license": "BSD-3-Clause"
|
|
3429
|
+
},
|
|
3430
|
+
"node_modules/@protobufjs/base64": {
|
|
3431
|
+
"version": "1.1.2",
|
|
3432
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
|
3433
|
+
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
|
|
3434
|
+
"license": "BSD-3-Clause"
|
|
3435
|
+
},
|
|
3436
|
+
"node_modules/@protobufjs/codegen": {
|
|
3437
|
+
"version": "2.0.5",
|
|
3438
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
|
|
3439
|
+
"integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
|
|
3440
|
+
"license": "BSD-3-Clause"
|
|
3441
|
+
},
|
|
3442
|
+
"node_modules/@protobufjs/eventemitter": {
|
|
3443
|
+
"version": "1.1.1",
|
|
3444
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
|
|
3445
|
+
"integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
|
|
3446
|
+
"license": "BSD-3-Clause"
|
|
3447
|
+
},
|
|
3448
|
+
"node_modules/@protobufjs/fetch": {
|
|
3449
|
+
"version": "1.1.1",
|
|
3450
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
|
|
3451
|
+
"integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
|
|
3452
|
+
"license": "BSD-3-Clause",
|
|
3453
|
+
"dependencies": {
|
|
3454
|
+
"@protobufjs/aspromise": "^1.1.1"
|
|
3455
|
+
}
|
|
3456
|
+
},
|
|
3457
|
+
"node_modules/@protobufjs/float": {
|
|
3458
|
+
"version": "1.0.2",
|
|
3459
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
|
3460
|
+
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
|
|
3461
|
+
"license": "BSD-3-Clause"
|
|
3462
|
+
},
|
|
3463
|
+
"node_modules/@protobufjs/inquire": {
|
|
3464
|
+
"version": "1.1.2",
|
|
3465
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
|
|
3466
|
+
"integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
|
|
3467
|
+
"license": "BSD-3-Clause"
|
|
3468
|
+
},
|
|
3469
|
+
"node_modules/@protobufjs/path": {
|
|
3470
|
+
"version": "1.1.2",
|
|
3471
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
|
3472
|
+
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
|
|
3473
|
+
"license": "BSD-3-Clause"
|
|
3474
|
+
},
|
|
3475
|
+
"node_modules/@protobufjs/pool": {
|
|
3476
|
+
"version": "1.1.0",
|
|
3477
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
|
3478
|
+
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
|
|
3479
|
+
"license": "BSD-3-Clause"
|
|
3480
|
+
},
|
|
3481
|
+
"node_modules/@protobufjs/utf8": {
|
|
3482
|
+
"version": "1.1.1",
|
|
3483
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
3484
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
3485
|
+
"license": "BSD-3-Clause"
|
|
3486
|
+
},
|
|
3170
3487
|
"node_modules/@radix-ui/number": {
|
|
3171
3488
|
"version": "1.1.1",
|
|
3172
3489
|
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
|
|
@@ -4680,9 +4997,9 @@
|
|
|
4680
4997
|
"license": "MIT"
|
|
4681
4998
|
},
|
|
4682
4999
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
4683
|
-
"version": "4.
|
|
4684
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
4685
|
-
"integrity": "sha512-
|
|
5000
|
+
"version": "4.61.0",
|
|
5001
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.61.0.tgz",
|
|
5002
|
+
"integrity": "sha512-dnxczajOqt0gesZlN5pGQ1s1imQVrsmCw5G2Ci4oM+0WvNz3pyRnlWrT7McoZIb8VlFwCawdmbWRmxRn7HI+VQ==",
|
|
4686
5003
|
"cpu": [
|
|
4687
5004
|
"arm"
|
|
4688
5005
|
],
|
|
@@ -4693,9 +5010,9 @@
|
|
|
4693
5010
|
]
|
|
4694
5011
|
},
|
|
4695
5012
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
4696
|
-
"version": "4.
|
|
4697
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
4698
|
-
"integrity": "sha512-
|
|
5013
|
+
"version": "4.61.0",
|
|
5014
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.61.0.tgz",
|
|
5015
|
+
"integrity": "sha512-Bp3JpGP00Vu3f238ivRrjf7z3xSzVPXqCmaJYA9t2c+c8vKYvOzmXF7LkkeUalTEGd6cZcSWe+PFIP3Vy48fRg==",
|
|
4699
5016
|
"cpu": [
|
|
4700
5017
|
"arm64"
|
|
4701
5018
|
],
|
|
@@ -4706,9 +5023,9 @@
|
|
|
4706
5023
|
]
|
|
4707
5024
|
},
|
|
4708
5025
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
4709
|
-
"version": "4.
|
|
4710
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
4711
|
-
"integrity": "sha512-
|
|
5026
|
+
"version": "4.61.0",
|
|
5027
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.61.0.tgz",
|
|
5028
|
+
"integrity": "sha512-zaYIpr670mUmmZ1tVzUFplbQbG7h3Gugx3L5FoqhsC2m/YnLlR1a7zVLmXNPy+iY1tFPEbNG+HHBXZGyId0G5w==",
|
|
4712
5029
|
"cpu": [
|
|
4713
5030
|
"arm64"
|
|
4714
5031
|
],
|
|
@@ -4719,9 +5036,9 @@
|
|
|
4719
5036
|
]
|
|
4720
5037
|
},
|
|
4721
5038
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
4722
|
-
"version": "4.
|
|
4723
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
4724
|
-
"integrity": "sha512
|
|
5039
|
+
"version": "4.61.0",
|
|
5040
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.61.0.tgz",
|
|
5041
|
+
"integrity": "sha512-+P49fvkv2dSoeevUW+lgZ/I2JHSsJCK1Lyjj7Cu6E4UHG4tS9XIefzIjo5qhgELjAclnen1rLzK2PMKJdo+Dyg==",
|
|
4725
5042
|
"cpu": [
|
|
4726
5043
|
"x64"
|
|
4727
5044
|
],
|
|
@@ -4732,9 +5049,9 @@
|
|
|
4732
5049
|
]
|
|
4733
5050
|
},
|
|
4734
5051
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
4735
|
-
"version": "4.
|
|
4736
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
4737
|
-
"integrity": "sha512
|
|
5052
|
+
"version": "4.61.0",
|
|
5053
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.61.0.tgz",
|
|
5054
|
+
"integrity": "sha512-l3FAAOyKJXH2ea6KNFN+MMgC/rnE94YGLXs2ehYqDcCoHt1DpvgWX75BhUJxN38XojP7Ul+4H8PRn7EdyqSDrw==",
|
|
4738
5055
|
"cpu": [
|
|
4739
5056
|
"arm64"
|
|
4740
5057
|
],
|
|
@@ -4745,9 +5062,9 @@
|
|
|
4745
5062
|
]
|
|
4746
5063
|
},
|
|
4747
5064
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
4748
|
-
"version": "4.
|
|
4749
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
4750
|
-
"integrity": "sha512-
|
|
5065
|
+
"version": "4.61.0",
|
|
5066
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.61.0.tgz",
|
|
5067
|
+
"integrity": "sha512-VokPN3TSctKj65cyCNPaUh4vMFA8awxOot/0sp+4J7ZlNRKQEhXhawqPwajoi8H5ZFt61i0ugZJuTKXBjGJ17Q==",
|
|
4751
5068
|
"cpu": [
|
|
4752
5069
|
"x64"
|
|
4753
5070
|
],
|
|
@@ -4758,9 +5075,9 @@
|
|
|
4758
5075
|
]
|
|
4759
5076
|
},
|
|
4760
5077
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
4761
|
-
"version": "4.
|
|
4762
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
4763
|
-
"integrity": "sha512-
|
|
5078
|
+
"version": "4.61.0",
|
|
5079
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.61.0.tgz",
|
|
5080
|
+
"integrity": "sha512-DxH0P3wxm+Yzs/p3zrk9dw1rURu8p0Nv5+MRK/L7OtnLNg5rLZraSBFZ8iUXOd9f2BlhJyEpIZUH/emjq4UJ4g==",
|
|
4764
5081
|
"cpu": [
|
|
4765
5082
|
"arm"
|
|
4766
5083
|
],
|
|
@@ -4774,9 +5091,9 @@
|
|
|
4774
5091
|
]
|
|
4775
5092
|
},
|
|
4776
5093
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
4777
|
-
"version": "4.
|
|
4778
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
4779
|
-
"integrity": "sha512-
|
|
5094
|
+
"version": "4.61.0",
|
|
5095
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.61.0.tgz",
|
|
5096
|
+
"integrity": "sha512-T6ZvMNe84kAz6TBWHC7hGAoEtzP1LWYw/AqayGWEF6uISt3Abk/st06LqRD9THd7Xz3NxzurUpzAuEAUbZf+nw==",
|
|
4780
5097
|
"cpu": [
|
|
4781
5098
|
"arm"
|
|
4782
5099
|
],
|
|
@@ -4790,9 +5107,9 @@
|
|
|
4790
5107
|
]
|
|
4791
5108
|
},
|
|
4792
5109
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
4793
|
-
"version": "4.
|
|
4794
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
4795
|
-
"integrity": "sha512-
|
|
5110
|
+
"version": "4.61.0",
|
|
5111
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.61.0.tgz",
|
|
5112
|
+
"integrity": "sha512-q/4hzvQkDs8b4jIBab1pnLiiM0ayTZsN2amBFPDzuyZxjEd4wDwx0UJFYM3cOZzSf5Kw8fnWSprJzIBMkcR44Q==",
|
|
4796
5113
|
"cpu": [
|
|
4797
5114
|
"arm64"
|
|
4798
5115
|
],
|
|
@@ -4806,9 +5123,9 @@
|
|
|
4806
5123
|
]
|
|
4807
5124
|
},
|
|
4808
5125
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
4809
|
-
"version": "4.
|
|
4810
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
4811
|
-
"integrity": "sha512-
|
|
5126
|
+
"version": "4.61.0",
|
|
5127
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.61.0.tgz",
|
|
5128
|
+
"integrity": "sha512-vvYWX3akdEAY6km+9wAqFDnk6pQsbJKVnj7xawcvs/+fdlYBGp+U+Qq/lLfpIxYIZvZLHMAKD9HLdacSx/r3dw==",
|
|
4812
5129
|
"cpu": [
|
|
4813
5130
|
"arm64"
|
|
4814
5131
|
],
|
|
@@ -4822,9 +5139,9 @@
|
|
|
4822
5139
|
]
|
|
4823
5140
|
},
|
|
4824
5141
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
4825
|
-
"version": "4.
|
|
4826
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
4827
|
-
"integrity": "sha512-
|
|
5142
|
+
"version": "4.61.0",
|
|
5143
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.61.0.tgz",
|
|
5144
|
+
"integrity": "sha512-DePa5cqOxDP/Zp0VOXpeWaGew5iIv5DXp9NYbzkX5PFQyWVX9184WCTh3hvr/7lhXo8ZVlbFLkz8+o/q1dU6gA==",
|
|
4828
5145
|
"cpu": [
|
|
4829
5146
|
"loong64"
|
|
4830
5147
|
],
|
|
@@ -4838,9 +5155,9 @@
|
|
|
4838
5155
|
]
|
|
4839
5156
|
},
|
|
4840
5157
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
4841
|
-
"version": "4.
|
|
4842
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.
|
|
4843
|
-
"integrity": "sha512-
|
|
5158
|
+
"version": "4.61.0",
|
|
5159
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.61.0.tgz",
|
|
5160
|
+
"integrity": "sha512-LV8aWMB8UChglMCEzs7RkN0GsH29RJaLLqwm9fCIjlqwxQTiWAqNcc7wjBkH31hV0PU/yVxGYvrYsgfea2qw6g==",
|
|
4844
5161
|
"cpu": [
|
|
4845
5162
|
"loong64"
|
|
4846
5163
|
],
|
|
@@ -4854,9 +5171,9 @@
|
|
|
4854
5171
|
]
|
|
4855
5172
|
},
|
|
4856
5173
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
4857
|
-
"version": "4.
|
|
4858
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
4859
|
-
"integrity": "sha512-
|
|
5174
|
+
"version": "4.61.0",
|
|
5175
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.61.0.tgz",
|
|
5176
|
+
"integrity": "sha512-QoNSnwQtaeNu5grdBbsL0tt1uyl5EnS8DA8Mr3nluMXbhdQNyhN+G4tBax7VCdxLKj8YJ0/4OO9Ho84jMnJtKA==",
|
|
4860
5177
|
"cpu": [
|
|
4861
5178
|
"ppc64"
|
|
4862
5179
|
],
|
|
@@ -4870,9 +5187,9 @@
|
|
|
4870
5187
|
]
|
|
4871
5188
|
},
|
|
4872
5189
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
4873
|
-
"version": "4.
|
|
4874
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.
|
|
4875
|
-
"integrity": "sha512
|
|
5190
|
+
"version": "4.61.0",
|
|
5191
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.61.0.tgz",
|
|
5192
|
+
"integrity": "sha512-/zZp5MKapIIApE8trN8qLGNSiRN9TUoaUZ1cmVu4XnVdd5LQLOXTtyi+vtfUbNnT3iyjzpPqYeKXmvJ+gJGYWw==",
|
|
4876
5193
|
"cpu": [
|
|
4877
5194
|
"ppc64"
|
|
4878
5195
|
],
|
|
@@ -4886,9 +5203,9 @@
|
|
|
4886
5203
|
]
|
|
4887
5204
|
},
|
|
4888
5205
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
4889
|
-
"version": "4.
|
|
4890
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
4891
|
-
"integrity": "sha512-
|
|
5206
|
+
"version": "4.61.0",
|
|
5207
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.61.0.tgz",
|
|
5208
|
+
"integrity": "sha512-RbrzcD3aJ1k3UbtMRRBNwojdVVyXjuVAFTfn/xPa6EEl6GE9Sm/akPgFTb9aAC9pMKGJ6CtWxaGrqWcabH+ySg==",
|
|
4892
5209
|
"cpu": [
|
|
4893
5210
|
"riscv64"
|
|
4894
5211
|
],
|
|
@@ -4902,9 +5219,9 @@
|
|
|
4902
5219
|
]
|
|
4903
5220
|
},
|
|
4904
5221
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
4905
|
-
"version": "4.
|
|
4906
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
4907
|
-
"integrity": "sha512-
|
|
5222
|
+
"version": "4.61.0",
|
|
5223
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.61.0.tgz",
|
|
5224
|
+
"integrity": "sha512-ZF+onDsBso8PJf1XaG9lB+O9RnBpKGnY6OrzC4CSHrtC1jb6jWLTKK4bRqdoCXHd22gyr2hiYmEAm8Wns/BOCw==",
|
|
4908
5225
|
"cpu": [
|
|
4909
5226
|
"riscv64"
|
|
4910
5227
|
],
|
|
@@ -4918,9 +5235,9 @@
|
|
|
4918
5235
|
]
|
|
4919
5236
|
},
|
|
4920
5237
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
4921
|
-
"version": "4.
|
|
4922
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
4923
|
-
"integrity": "sha512-
|
|
5238
|
+
"version": "4.61.0",
|
|
5239
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.61.0.tgz",
|
|
5240
|
+
"integrity": "sha512-Atk0aSIk5Zx2Wuh9dgRQgLP0Koc8hOeYpbWryMXyk8G8/HmPkwPPkMqIIDhrXHHYqfUzSJA/I7IWSBv8xSmRBA==",
|
|
4924
5241
|
"cpu": [
|
|
4925
5242
|
"s390x"
|
|
4926
5243
|
],
|
|
@@ -4934,9 +5251,9 @@
|
|
|
4934
5251
|
]
|
|
4935
5252
|
},
|
|
4936
5253
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
4937
|
-
"version": "4.
|
|
4938
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
4939
|
-
"integrity": "sha512-
|
|
5254
|
+
"version": "4.61.0",
|
|
5255
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.61.0.tgz",
|
|
5256
|
+
"integrity": "sha512-0uMOcf3eZ5K+K4cYHkdxShFMPlPXCOdfDFEFn9dNYAEEd2cVvmOfH7zFgRVoDgmtQ1m9k5q7qfrHzyMAubKYUA==",
|
|
4940
5257
|
"cpu": [
|
|
4941
5258
|
"x64"
|
|
4942
5259
|
],
|
|
@@ -4950,9 +5267,9 @@
|
|
|
4950
5267
|
]
|
|
4951
5268
|
},
|
|
4952
5269
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
4953
|
-
"version": "4.
|
|
4954
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
4955
|
-
"integrity": "sha512
|
|
5270
|
+
"version": "4.61.0",
|
|
5271
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.61.0.tgz",
|
|
5272
|
+
"integrity": "sha512-mvFtE4A/t/7hRJ7X8Ozmu8FsIkAUat2nzl12pgU337BRmq87AQUJztwHz2Zv5/tjo9/C95E66CK03SI/ToEDJw==",
|
|
4956
5273
|
"cpu": [
|
|
4957
5274
|
"x64"
|
|
4958
5275
|
],
|
|
@@ -4966,9 +5283,9 @@
|
|
|
4966
5283
|
]
|
|
4967
5284
|
},
|
|
4968
5285
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
4969
|
-
"version": "4.
|
|
4970
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.
|
|
4971
|
-
"integrity": "sha512-
|
|
5286
|
+
"version": "4.61.0",
|
|
5287
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.61.0.tgz",
|
|
5288
|
+
"integrity": "sha512-z9b9+aTxvt8n2rNltMPvyaUfB8NJ+CVyOrGK/MdIKHx7B+lXmZpm/XbRsU7Rpf3fRqJ2uS6mBJiJveCtq8LHDg==",
|
|
4972
5289
|
"cpu": [
|
|
4973
5290
|
"x64"
|
|
4974
5291
|
],
|
|
@@ -4979,9 +5296,9 @@
|
|
|
4979
5296
|
]
|
|
4980
5297
|
},
|
|
4981
5298
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
4982
|
-
"version": "4.
|
|
4983
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
4984
|
-
"integrity": "sha512-
|
|
5299
|
+
"version": "4.61.0",
|
|
5300
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.61.0.tgz",
|
|
5301
|
+
"integrity": "sha512-jXaXFqKMehsOc+g8R6oo33RRC6w07G9jDBxAE5eAKX7mOcCbZloYIPNhfG9Wl+P9O9IWHFO4OJgPi1Ml2qkt7w==",
|
|
4985
5302
|
"cpu": [
|
|
4986
5303
|
"arm64"
|
|
4987
5304
|
],
|
|
@@ -4992,9 +5309,9 @@
|
|
|
4992
5309
|
]
|
|
4993
5310
|
},
|
|
4994
5311
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
4995
|
-
"version": "4.
|
|
4996
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
4997
|
-
"integrity": "sha512-
|
|
5312
|
+
"version": "4.61.0",
|
|
5313
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.61.0.tgz",
|
|
5314
|
+
"integrity": "sha512-OXNWVFocS2IA4+QplhTZZ2a+8hPZR7T8KuozsNmJKK8y7cp83StHvGksfHzPG3wczWTczyWHVQuqeiTUbjiyBg==",
|
|
4998
5315
|
"cpu": [
|
|
4999
5316
|
"arm64"
|
|
5000
5317
|
],
|
|
@@ -5005,9 +5322,9 @@
|
|
|
5005
5322
|
]
|
|
5006
5323
|
},
|
|
5007
5324
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
5008
|
-
"version": "4.
|
|
5009
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
5010
|
-
"integrity": "sha512-
|
|
5325
|
+
"version": "4.61.0",
|
|
5326
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.61.0.tgz",
|
|
5327
|
+
"integrity": "sha512-AlAbNtBO637LxSldqV43z0FfXoGfl2TW1DgAg/bs7aQswFbDewz2SJm3BUhiGfbOVtW571xbc9p+REdxhyN/Eg==",
|
|
5011
5328
|
"cpu": [
|
|
5012
5329
|
"ia32"
|
|
5013
5330
|
],
|
|
@@ -5018,9 +5335,9 @@
|
|
|
5018
5335
|
]
|
|
5019
5336
|
},
|
|
5020
5337
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
5021
|
-
"version": "4.
|
|
5022
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
5023
|
-
"integrity": "sha512-
|
|
5338
|
+
"version": "4.61.0",
|
|
5339
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.61.0.tgz",
|
|
5340
|
+
"integrity": "sha512-QRSrQXyJ1M4tjNXdR0/G/IgV6lzfQQJYBjlWIEYkY2Xs86DRl/iEpQ4blMDjJxSl7n19eDKKXMg0AmuBVYy8pQ==",
|
|
5024
5341
|
"cpu": [
|
|
5025
5342
|
"x64"
|
|
5026
5343
|
],
|
|
@@ -5031,9 +5348,9 @@
|
|
|
5031
5348
|
]
|
|
5032
5349
|
},
|
|
5033
5350
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
5034
|
-
"version": "4.
|
|
5035
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
5036
|
-
"integrity": "sha512-
|
|
5351
|
+
"version": "4.61.0",
|
|
5352
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.61.0.tgz",
|
|
5353
|
+
"integrity": "sha512-tkuFxhvKO/HlGd0VsINF6vHSYH8AF8W0TcNxKDK6JZmrehngFj78pToc8iemtnvwilDjs2G/qSzYFhe9U8q+fw==",
|
|
5037
5354
|
"cpu": [
|
|
5038
5355
|
"x64"
|
|
5039
5356
|
],
|
|
@@ -5044,12 +5361,12 @@
|
|
|
5044
5361
|
]
|
|
5045
5362
|
},
|
|
5046
5363
|
"node_modules/@salesforce/agentforce-conversation-client": {
|
|
5047
|
-
"version": "
|
|
5048
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-
|
|
5049
|
-
"integrity": "sha512-
|
|
5364
|
+
"version": "9.21.0",
|
|
5365
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-9.21.0.tgz",
|
|
5366
|
+
"integrity": "sha512-g00EjIJVv3Lv/r2DW38FlA7eZgEazpwuAsJiJ3gkKATHp21Nqx7XkPnm2cin+wFBUchm9Kwb4ha3IphtqePHYA==",
|
|
5050
5367
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5051
5368
|
"dependencies": {
|
|
5052
|
-
"@lightning-out/application": "2.1.
|
|
5369
|
+
"@lightning-out/application": "^2.1.2"
|
|
5053
5370
|
},
|
|
5054
5371
|
"engines": {
|
|
5055
5372
|
"node": ">=20.0.0"
|
|
@@ -5097,6 +5414,12 @@
|
|
|
5097
5414
|
"node": ">=10"
|
|
5098
5415
|
}
|
|
5099
5416
|
},
|
|
5417
|
+
"node_modules/@salesforce/jsonrpc": {
|
|
5418
|
+
"version": "10.2.2",
|
|
5419
|
+
"resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-10.2.2.tgz",
|
|
5420
|
+
"integrity": "sha512-55ceeP49ZFuFgxHm659xLw4EssHJnDZgenropQuVR/RpyuKPSPxjBU2dVBXnxHL32Ok7yGrwxa8qbywfzq37sw==",
|
|
5421
|
+
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5422
|
+
},
|
|
5100
5423
|
"node_modules/@salesforce/kit": {
|
|
5101
5424
|
"version": "3.2.6",
|
|
5102
5425
|
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.2.6.tgz",
|
|
@@ -5106,21 +5429,26 @@
|
|
|
5106
5429
|
"@salesforce/ts-types": "^2.0.12"
|
|
5107
5430
|
}
|
|
5108
5431
|
},
|
|
5109
|
-
"node_modules/@salesforce/sdk
|
|
5110
|
-
"version": "
|
|
5111
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-
|
|
5112
|
-
"integrity": "sha512-
|
|
5113
|
-
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5114
|
-
},
|
|
5115
|
-
"node_modules/@salesforce/sdk-data": {
|
|
5116
|
-
"version": "1.135.0",
|
|
5117
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-data/-/sdk-data-1.135.0.tgz",
|
|
5118
|
-
"integrity": "sha512-A9ZPgl1GcJUxYF8VNaO6O+k11PZEhaXOiDnwLu5Mxe4IbdiRiSDjExSgF/1JyVlJwHRK/LcNJ+qrkMudyd1lKg==",
|
|
5432
|
+
"node_modules/@salesforce/platform-sdk": {
|
|
5433
|
+
"version": "10.2.2",
|
|
5434
|
+
"resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-10.2.2.tgz",
|
|
5435
|
+
"integrity": "sha512-4GMgDAoZJ0Z1yhkOtWSDoLsrJfFU+ZzHf4d34cgLH1v9POvqB36YwenNzN2zOYpLfidKeGoXuR9S/U9eEgbxCg==",
|
|
5119
5436
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5120
5437
|
"dependencies": {
|
|
5121
|
-
"@conduit-client/
|
|
5122
|
-
"@conduit-client/
|
|
5123
|
-
"@
|
|
5438
|
+
"@conduit-client/command-http-cache-control": "3.19.6",
|
|
5439
|
+
"@conduit-client/onestore-graphql-parser": "3.19.6",
|
|
5440
|
+
"@conduit-client/service-cache": "3.19.6",
|
|
5441
|
+
"@conduit-client/service-cache-control": "3.19.6",
|
|
5442
|
+
"@conduit-client/service-cache-inclusion-policy": "3.19.6",
|
|
5443
|
+
"@conduit-client/service-fetch-network": "3.19.6",
|
|
5444
|
+
"@conduit-client/service-pubsub": "3.19.6",
|
|
5445
|
+
"@conduit-client/service-retry": "3.19.6",
|
|
5446
|
+
"@conduit-client/utils": "3.19.6",
|
|
5447
|
+
"@salesforce/jsonrpc": "^10.2.2"
|
|
5448
|
+
},
|
|
5449
|
+
"peerDependencies": {
|
|
5450
|
+
"o11y": ">=260.0.0",
|
|
5451
|
+
"o11y_schema": ">=260.63.0"
|
|
5124
5452
|
}
|
|
5125
5453
|
},
|
|
5126
5454
|
"node_modules/@salesforce/ts-types": {
|
|
@@ -5133,13 +5461,13 @@
|
|
|
5133
5461
|
}
|
|
5134
5462
|
},
|
|
5135
5463
|
"node_modules/@salesforce/ui-bundle": {
|
|
5136
|
-
"version": "
|
|
5137
|
-
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-
|
|
5138
|
-
"integrity": "sha512-
|
|
5464
|
+
"version": "10.2.2",
|
|
5465
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-10.2.2.tgz",
|
|
5466
|
+
"integrity": "sha512-6ljxZ/wUVwx+IeFUXzlHfUOffi/eNyVhGe8IGp8FFtA1OTf73F0zjIUHrg9JIMYjxAtn3xya1EHbb5xkX3LKxg==",
|
|
5139
5467
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5140
5468
|
"dependencies": {
|
|
5141
5469
|
"@salesforce/core": "^8.23.4",
|
|
5142
|
-
"@salesforce/sdk
|
|
5470
|
+
"@salesforce/platform-sdk": "^10.2.2",
|
|
5143
5471
|
"micromatch": "^4.0.8",
|
|
5144
5472
|
"path-to-regexp": "^8.3.0"
|
|
5145
5473
|
},
|
|
@@ -5147,16 +5475,29 @@
|
|
|
5147
5475
|
"node": ">=20.0.0"
|
|
5148
5476
|
}
|
|
5149
5477
|
},
|
|
5478
|
+
"node_modules/@salesforce/ui-design-mode": {
|
|
5479
|
+
"version": "10.2.2",
|
|
5480
|
+
"resolved": "https://registry.npmjs.org/@salesforce/ui-design-mode/-/ui-design-mode-10.2.2.tgz",
|
|
5481
|
+
"integrity": "sha512-30Fj7dcD57fWwkR3qENapC1kUF+dJdW/2dRNfc8ILL1by6DfADawn2twMmSYSMwf0g/+xEiI0fP7JwM6oDdbuQ==",
|
|
5482
|
+
"dev": true,
|
|
5483
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5484
|
+
"dependencies": {
|
|
5485
|
+
"@babel/helper-plugin-utils": "^7.28.3"
|
|
5486
|
+
},
|
|
5487
|
+
"engines": {
|
|
5488
|
+
"node": ">=20.0.0"
|
|
5489
|
+
}
|
|
5490
|
+
},
|
|
5150
5491
|
"node_modules/@salesforce/vite-plugin-ui-bundle": {
|
|
5151
|
-
"version": "
|
|
5152
|
-
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-
|
|
5153
|
-
"integrity": "sha512-
|
|
5492
|
+
"version": "10.2.2",
|
|
5493
|
+
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-10.2.2.tgz",
|
|
5494
|
+
"integrity": "sha512-0HWjGF93O3ShVCr6mVX/MnZFaamMpBwgnD00ZXN7QzAcp+TV2NVteuc2QfVozBwgmhwNS2h7Zj9rM9zvakbVFQ==",
|
|
5154
5495
|
"dev": true,
|
|
5155
5496
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5156
5497
|
"dependencies": {
|
|
5157
5498
|
"@babel/core": "^7.28.4",
|
|
5158
|
-
"@
|
|
5159
|
-
"@salesforce/ui-
|
|
5499
|
+
"@salesforce/ui-bundle": "^10.2.2",
|
|
5500
|
+
"@salesforce/ui-design-mode": "^10.2.2"
|
|
5160
5501
|
},
|
|
5161
5502
|
"engines": {
|
|
5162
5503
|
"node": ">=20.0.0"
|
|
@@ -5752,7 +6093,6 @@
|
|
|
5752
6093
|
"version": "1.0.9",
|
|
5753
6094
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
5754
6095
|
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
5755
|
-
"dev": true,
|
|
5756
6096
|
"license": "MIT"
|
|
5757
6097
|
},
|
|
5758
6098
|
"node_modules/@types/json-schema": {
|
|
@@ -5772,9 +6112,9 @@
|
|
|
5772
6112
|
}
|
|
5773
6113
|
},
|
|
5774
6114
|
"node_modules/@types/react": {
|
|
5775
|
-
"version": "19.2.
|
|
5776
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.
|
|
5777
|
-
"integrity": "sha512-
|
|
6115
|
+
"version": "19.2.16",
|
|
6116
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.16.tgz",
|
|
6117
|
+
"integrity": "sha512-esJiCAnl0kfpNdE69f3So4WJUXy95dLZydX0KwK46riIHDzHM7O9Vtf9xCHW0PXIqvgqNrswl522kA/5yx+F4w==",
|
|
5778
6118
|
"devOptional": true,
|
|
5779
6119
|
"license": "MIT",
|
|
5780
6120
|
"dependencies": {
|
|
@@ -5823,17 +6163,17 @@
|
|
|
5823
6163
|
}
|
|
5824
6164
|
},
|
|
5825
6165
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
5826
|
-
"version": "8.60.
|
|
5827
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.
|
|
5828
|
-
"integrity": "sha512-
|
|
6166
|
+
"version": "8.60.1",
|
|
6167
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.1.tgz",
|
|
6168
|
+
"integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
|
|
5829
6169
|
"dev": true,
|
|
5830
6170
|
"license": "MIT",
|
|
5831
6171
|
"dependencies": {
|
|
5832
6172
|
"@eslint-community/regexpp": "^4.12.2",
|
|
5833
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
5834
|
-
"@typescript-eslint/type-utils": "8.60.
|
|
5835
|
-
"@typescript-eslint/utils": "8.60.
|
|
5836
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6173
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6174
|
+
"@typescript-eslint/type-utils": "8.60.1",
|
|
6175
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
6176
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5837
6177
|
"ignore": "^7.0.5",
|
|
5838
6178
|
"natural-compare": "^1.4.0",
|
|
5839
6179
|
"ts-api-utils": "^2.5.0"
|
|
@@ -5846,7 +6186,7 @@
|
|
|
5846
6186
|
"url": "https://opencollective.com/typescript-eslint"
|
|
5847
6187
|
},
|
|
5848
6188
|
"peerDependencies": {
|
|
5849
|
-
"@typescript-eslint/parser": "^8.60.
|
|
6189
|
+
"@typescript-eslint/parser": "^8.60.1",
|
|
5850
6190
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
5851
6191
|
"typescript": ">=4.8.4 <6.1.0"
|
|
5852
6192
|
}
|
|
@@ -5862,16 +6202,16 @@
|
|
|
5862
6202
|
}
|
|
5863
6203
|
},
|
|
5864
6204
|
"node_modules/@typescript-eslint/parser": {
|
|
5865
|
-
"version": "8.60.
|
|
5866
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.
|
|
5867
|
-
"integrity": "sha512-
|
|
6205
|
+
"version": "8.60.1",
|
|
6206
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.1.tgz",
|
|
6207
|
+
"integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
|
|
5868
6208
|
"dev": true,
|
|
5869
6209
|
"license": "MIT",
|
|
5870
6210
|
"dependencies": {
|
|
5871
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
5872
|
-
"@typescript-eslint/types": "8.60.
|
|
5873
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
5874
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6211
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6212
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6213
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
6214
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5875
6215
|
"debug": "^4.4.3"
|
|
5876
6216
|
},
|
|
5877
6217
|
"engines": {
|
|
@@ -5887,14 +6227,14 @@
|
|
|
5887
6227
|
}
|
|
5888
6228
|
},
|
|
5889
6229
|
"node_modules/@typescript-eslint/project-service": {
|
|
5890
|
-
"version": "8.60.
|
|
5891
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.
|
|
5892
|
-
"integrity": "sha512-
|
|
6230
|
+
"version": "8.60.1",
|
|
6231
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.1.tgz",
|
|
6232
|
+
"integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
|
|
5893
6233
|
"dev": true,
|
|
5894
6234
|
"license": "MIT",
|
|
5895
6235
|
"dependencies": {
|
|
5896
|
-
"@typescript-eslint/tsconfig-utils": "^8.60.
|
|
5897
|
-
"@typescript-eslint/types": "^8.60.
|
|
6236
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.1",
|
|
6237
|
+
"@typescript-eslint/types": "^8.60.1",
|
|
5898
6238
|
"debug": "^4.4.3"
|
|
5899
6239
|
},
|
|
5900
6240
|
"engines": {
|
|
@@ -5909,14 +6249,14 @@
|
|
|
5909
6249
|
}
|
|
5910
6250
|
},
|
|
5911
6251
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
5912
|
-
"version": "8.60.
|
|
5913
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.
|
|
5914
|
-
"integrity": "sha512-
|
|
6252
|
+
"version": "8.60.1",
|
|
6253
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.1.tgz",
|
|
6254
|
+
"integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
|
|
5915
6255
|
"dev": true,
|
|
5916
6256
|
"license": "MIT",
|
|
5917
6257
|
"dependencies": {
|
|
5918
|
-
"@typescript-eslint/types": "8.60.
|
|
5919
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6258
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6259
|
+
"@typescript-eslint/visitor-keys": "8.60.1"
|
|
5920
6260
|
},
|
|
5921
6261
|
"engines": {
|
|
5922
6262
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5927,9 +6267,9 @@
|
|
|
5927
6267
|
}
|
|
5928
6268
|
},
|
|
5929
6269
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
5930
|
-
"version": "8.60.
|
|
5931
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.
|
|
5932
|
-
"integrity": "sha512-
|
|
6270
|
+
"version": "8.60.1",
|
|
6271
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.1.tgz",
|
|
6272
|
+
"integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
|
|
5933
6273
|
"dev": true,
|
|
5934
6274
|
"license": "MIT",
|
|
5935
6275
|
"engines": {
|
|
@@ -5944,15 +6284,15 @@
|
|
|
5944
6284
|
}
|
|
5945
6285
|
},
|
|
5946
6286
|
"node_modules/@typescript-eslint/type-utils": {
|
|
5947
|
-
"version": "8.60.
|
|
5948
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.
|
|
5949
|
-
"integrity": "sha512-
|
|
6287
|
+
"version": "8.60.1",
|
|
6288
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.1.tgz",
|
|
6289
|
+
"integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
|
|
5950
6290
|
"dev": true,
|
|
5951
6291
|
"license": "MIT",
|
|
5952
6292
|
"dependencies": {
|
|
5953
|
-
"@typescript-eslint/types": "8.60.
|
|
5954
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
5955
|
-
"@typescript-eslint/utils": "8.60.
|
|
6293
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6294
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
6295
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
5956
6296
|
"debug": "^4.4.3",
|
|
5957
6297
|
"ts-api-utils": "^2.5.0"
|
|
5958
6298
|
},
|
|
@@ -5969,9 +6309,9 @@
|
|
|
5969
6309
|
}
|
|
5970
6310
|
},
|
|
5971
6311
|
"node_modules/@typescript-eslint/types": {
|
|
5972
|
-
"version": "8.60.
|
|
5973
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.
|
|
5974
|
-
"integrity": "sha512-
|
|
6312
|
+
"version": "8.60.1",
|
|
6313
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
|
|
6314
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
5975
6315
|
"dev": true,
|
|
5976
6316
|
"license": "MIT",
|
|
5977
6317
|
"engines": {
|
|
@@ -5983,16 +6323,16 @@
|
|
|
5983
6323
|
}
|
|
5984
6324
|
},
|
|
5985
6325
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
5986
|
-
"version": "8.60.
|
|
5987
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.
|
|
5988
|
-
"integrity": "sha512-
|
|
6326
|
+
"version": "8.60.1",
|
|
6327
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.1.tgz",
|
|
6328
|
+
"integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
|
|
5989
6329
|
"dev": true,
|
|
5990
6330
|
"license": "MIT",
|
|
5991
6331
|
"dependencies": {
|
|
5992
|
-
"@typescript-eslint/project-service": "8.60.
|
|
5993
|
-
"@typescript-eslint/tsconfig-utils": "8.60.
|
|
5994
|
-
"@typescript-eslint/types": "8.60.
|
|
5995
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
6332
|
+
"@typescript-eslint/project-service": "8.60.1",
|
|
6333
|
+
"@typescript-eslint/tsconfig-utils": "8.60.1",
|
|
6334
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6335
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
5996
6336
|
"debug": "^4.4.3",
|
|
5997
6337
|
"minimatch": "^10.2.2",
|
|
5998
6338
|
"semver": "^7.7.3",
|
|
@@ -6063,16 +6403,16 @@
|
|
|
6063
6403
|
}
|
|
6064
6404
|
},
|
|
6065
6405
|
"node_modules/@typescript-eslint/utils": {
|
|
6066
|
-
"version": "8.60.
|
|
6067
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.
|
|
6068
|
-
"integrity": "sha512-
|
|
6406
|
+
"version": "8.60.1",
|
|
6407
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.1.tgz",
|
|
6408
|
+
"integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
|
|
6069
6409
|
"dev": true,
|
|
6070
6410
|
"license": "MIT",
|
|
6071
6411
|
"dependencies": {
|
|
6072
6412
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
6073
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
6074
|
-
"@typescript-eslint/types": "8.60.
|
|
6075
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
6413
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
6414
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6415
|
+
"@typescript-eslint/typescript-estree": "8.60.1"
|
|
6076
6416
|
},
|
|
6077
6417
|
"engines": {
|
|
6078
6418
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6087,13 +6427,13 @@
|
|
|
6087
6427
|
}
|
|
6088
6428
|
},
|
|
6089
6429
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
6090
|
-
"version": "8.60.
|
|
6091
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.
|
|
6092
|
-
"integrity": "sha512-
|
|
6430
|
+
"version": "8.60.1",
|
|
6431
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
|
|
6432
|
+
"integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
|
|
6093
6433
|
"dev": true,
|
|
6094
6434
|
"license": "MIT",
|
|
6095
6435
|
"dependencies": {
|
|
6096
|
-
"@typescript-eslint/types": "8.60.
|
|
6436
|
+
"@typescript-eslint/types": "8.60.1",
|
|
6097
6437
|
"eslint-visitor-keys": "^5.0.0"
|
|
6098
6438
|
},
|
|
6099
6439
|
"engines": {
|
|
@@ -6139,16 +6479,16 @@
|
|
|
6139
6479
|
}
|
|
6140
6480
|
},
|
|
6141
6481
|
"node_modules/@vitest/expect": {
|
|
6142
|
-
"version": "4.1.
|
|
6143
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.
|
|
6144
|
-
"integrity": "sha512-
|
|
6482
|
+
"version": "4.1.8",
|
|
6483
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.8.tgz",
|
|
6484
|
+
"integrity": "sha512-h3nDO677RDLEGlBxyQ5CW8RlMThSKSRLUePLOx09gNIWRL40edgA1GCZSZgf1W55MFAG6/Sw14KeaAnqv0NKdQ==",
|
|
6145
6485
|
"dev": true,
|
|
6146
6486
|
"license": "MIT",
|
|
6147
6487
|
"dependencies": {
|
|
6148
6488
|
"@standard-schema/spec": "^1.1.0",
|
|
6149
6489
|
"@types/chai": "^5.2.2",
|
|
6150
|
-
"@vitest/spy": "4.1.
|
|
6151
|
-
"@vitest/utils": "4.1.
|
|
6490
|
+
"@vitest/spy": "4.1.8",
|
|
6491
|
+
"@vitest/utils": "4.1.8",
|
|
6152
6492
|
"chai": "^6.2.2",
|
|
6153
6493
|
"tinyrainbow": "^3.1.0"
|
|
6154
6494
|
},
|
|
@@ -6157,13 +6497,13 @@
|
|
|
6157
6497
|
}
|
|
6158
6498
|
},
|
|
6159
6499
|
"node_modules/@vitest/mocker": {
|
|
6160
|
-
"version": "4.1.
|
|
6161
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.
|
|
6162
|
-
"integrity": "sha512-
|
|
6500
|
+
"version": "4.1.8",
|
|
6501
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.8.tgz",
|
|
6502
|
+
"integrity": "sha512-LEiN/xe4OSIbKe9HQIp5OC24agGD9J5CnmMgsLohVVoOPWL9a2sBoR6VBx43jQZb7Kr1l4RCuyCJzcAa0+dojw==",
|
|
6163
6503
|
"dev": true,
|
|
6164
6504
|
"license": "MIT",
|
|
6165
6505
|
"dependencies": {
|
|
6166
|
-
"@vitest/spy": "4.1.
|
|
6506
|
+
"@vitest/spy": "4.1.8",
|
|
6167
6507
|
"estree-walker": "^3.0.3",
|
|
6168
6508
|
"magic-string": "^0.30.21"
|
|
6169
6509
|
},
|
|
@@ -6184,9 +6524,9 @@
|
|
|
6184
6524
|
}
|
|
6185
6525
|
},
|
|
6186
6526
|
"node_modules/@vitest/pretty-format": {
|
|
6187
|
-
"version": "4.1.
|
|
6188
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.
|
|
6189
|
-
"integrity": "sha512-
|
|
6527
|
+
"version": "4.1.8",
|
|
6528
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.8.tgz",
|
|
6529
|
+
"integrity": "sha512-9GasEBxpZ1VYIpqHf/0+YGg121uSNwCKOJqIrTwWP/TB7DmFCiaBpNl3aPZzoLWfWkuqhbH8vJIVobZkvdo2cA==",
|
|
6190
6530
|
"dev": true,
|
|
6191
6531
|
"license": "MIT",
|
|
6192
6532
|
"dependencies": {
|
|
@@ -6197,13 +6537,13 @@
|
|
|
6197
6537
|
}
|
|
6198
6538
|
},
|
|
6199
6539
|
"node_modules/@vitest/runner": {
|
|
6200
|
-
"version": "4.1.
|
|
6201
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.
|
|
6202
|
-
"integrity": "sha512-
|
|
6540
|
+
"version": "4.1.8",
|
|
6541
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.8.tgz",
|
|
6542
|
+
"integrity": "sha512-EmVxeBAfMJvycdjd6Hm+RbFBbA9fKvo0Kx37hNpBYoYeavH3RNsBXWDooR1mgD52dCrxIIuP7UotpfiwOikvcg==",
|
|
6203
6543
|
"dev": true,
|
|
6204
6544
|
"license": "MIT",
|
|
6205
6545
|
"dependencies": {
|
|
6206
|
-
"@vitest/utils": "4.1.
|
|
6546
|
+
"@vitest/utils": "4.1.8",
|
|
6207
6547
|
"pathe": "^2.0.3"
|
|
6208
6548
|
},
|
|
6209
6549
|
"funding": {
|
|
@@ -6211,14 +6551,14 @@
|
|
|
6211
6551
|
}
|
|
6212
6552
|
},
|
|
6213
6553
|
"node_modules/@vitest/snapshot": {
|
|
6214
|
-
"version": "4.1.
|
|
6215
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.
|
|
6216
|
-
"integrity": "sha512-
|
|
6554
|
+
"version": "4.1.8",
|
|
6555
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.8.tgz",
|
|
6556
|
+
"integrity": "sha512-acfZboRmAIf05DEKcBQy33VXojFJjtUdLyo7oOmV9kebb2xdU01UknNiPuPZoJZQyO7DF0gZdTGTpeAzET9QPQ==",
|
|
6217
6557
|
"dev": true,
|
|
6218
6558
|
"license": "MIT",
|
|
6219
6559
|
"dependencies": {
|
|
6220
|
-
"@vitest/pretty-format": "4.1.
|
|
6221
|
-
"@vitest/utils": "4.1.
|
|
6560
|
+
"@vitest/pretty-format": "4.1.8",
|
|
6561
|
+
"@vitest/utils": "4.1.8",
|
|
6222
6562
|
"magic-string": "^0.30.21",
|
|
6223
6563
|
"pathe": "^2.0.3"
|
|
6224
6564
|
},
|
|
@@ -6227,9 +6567,9 @@
|
|
|
6227
6567
|
}
|
|
6228
6568
|
},
|
|
6229
6569
|
"node_modules/@vitest/spy": {
|
|
6230
|
-
"version": "4.1.
|
|
6231
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.
|
|
6232
|
-
"integrity": "sha512-
|
|
6570
|
+
"version": "4.1.8",
|
|
6571
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.8.tgz",
|
|
6572
|
+
"integrity": "sha512-6EevtBp6OZOPF7bmz36HrGMeP3txgVSrgebWxHOafDXGkhIzfXK14f8KF6MuFfgXXUeHxmpD3BQxkV00/3s5mA==",
|
|
6233
6573
|
"dev": true,
|
|
6234
6574
|
"license": "MIT",
|
|
6235
6575
|
"funding": {
|
|
@@ -6237,13 +6577,13 @@
|
|
|
6237
6577
|
}
|
|
6238
6578
|
},
|
|
6239
6579
|
"node_modules/@vitest/ui": {
|
|
6240
|
-
"version": "4.1.
|
|
6241
|
-
"resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-4.1.
|
|
6242
|
-
"integrity": "sha512-
|
|
6580
|
+
"version": "4.1.8",
|
|
6581
|
+
"resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-4.1.8.tgz",
|
|
6582
|
+
"integrity": "sha512-RUS2ZU2TsduVrI+9c12uTNaKrNUTsm6yFt3fueEUB9iKvyC2UP83F+sqIz00HQIah4UOL1TMoDAki8K0NjGvsA==",
|
|
6243
6583
|
"dev": true,
|
|
6244
6584
|
"license": "MIT",
|
|
6245
6585
|
"dependencies": {
|
|
6246
|
-
"@vitest/utils": "4.1.
|
|
6586
|
+
"@vitest/utils": "4.1.8",
|
|
6247
6587
|
"fflate": "^0.8.2",
|
|
6248
6588
|
"flatted": "^3.4.2",
|
|
6249
6589
|
"pathe": "^2.0.3",
|
|
@@ -6255,17 +6595,17 @@
|
|
|
6255
6595
|
"url": "https://opencollective.com/vitest"
|
|
6256
6596
|
},
|
|
6257
6597
|
"peerDependencies": {
|
|
6258
|
-
"vitest": "4.1.
|
|
6598
|
+
"vitest": "4.1.8"
|
|
6259
6599
|
}
|
|
6260
6600
|
},
|
|
6261
6601
|
"node_modules/@vitest/utils": {
|
|
6262
|
-
"version": "4.1.
|
|
6263
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.
|
|
6264
|
-
"integrity": "sha512-
|
|
6602
|
+
"version": "4.1.8",
|
|
6603
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.8.tgz",
|
|
6604
|
+
"integrity": "sha512-uOJamYALNhfJ6iolExyQM40yIQwDqYnkKtQ5VCiSe17E33H0aQ/u+1GlRuz4LZBk6Mm3sg90G9hEbmEt37C1Zg==",
|
|
6265
6605
|
"dev": true,
|
|
6266
6606
|
"license": "MIT",
|
|
6267
6607
|
"dependencies": {
|
|
6268
|
-
"@vitest/pretty-format": "4.1.
|
|
6608
|
+
"@vitest/pretty-format": "4.1.8",
|
|
6269
6609
|
"convert-source-map": "^2.0.0",
|
|
6270
6610
|
"tinyrainbow": "^3.1.0"
|
|
6271
6611
|
},
|
|
@@ -6562,9 +6902,9 @@
|
|
|
6562
6902
|
}
|
|
6563
6903
|
},
|
|
6564
6904
|
"node_modules/ansis": {
|
|
6565
|
-
"version": "4.3.
|
|
6566
|
-
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.
|
|
6567
|
-
"integrity": "sha512-
|
|
6905
|
+
"version": "4.3.1",
|
|
6906
|
+
"resolved": "https://registry.npmjs.org/ansis/-/ansis-4.3.1.tgz",
|
|
6907
|
+
"integrity": "sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==",
|
|
6568
6908
|
"license": "ISC",
|
|
6569
6909
|
"engines": {
|
|
6570
6910
|
"node": ">=14"
|
|
@@ -6903,9 +7243,9 @@
|
|
|
6903
7243
|
}
|
|
6904
7244
|
},
|
|
6905
7245
|
"node_modules/baseline-browser-mapping": {
|
|
6906
|
-
"version": "2.10.
|
|
6907
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
6908
|
-
"integrity": "sha512-
|
|
7246
|
+
"version": "2.10.33",
|
|
7247
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.33.tgz",
|
|
7248
|
+
"integrity": "sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==",
|
|
6909
7249
|
"license": "Apache-2.0",
|
|
6910
7250
|
"bin": {
|
|
6911
7251
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -7918,9 +8258,9 @@
|
|
|
7918
8258
|
"license": "MIT"
|
|
7919
8259
|
},
|
|
7920
8260
|
"node_modules/date-fns": {
|
|
7921
|
-
"version": "4.
|
|
7922
|
-
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.
|
|
7923
|
-
"integrity": "sha512
|
|
8261
|
+
"version": "4.4.0",
|
|
8262
|
+
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.4.0.tgz",
|
|
8263
|
+
"integrity": "sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==",
|
|
7924
8264
|
"license": "MIT",
|
|
7925
8265
|
"funding": {
|
|
7926
8266
|
"type": "github",
|
|
@@ -11250,9 +11590,19 @@
|
|
|
11250
11590
|
"license": "MIT"
|
|
11251
11591
|
},
|
|
11252
11592
|
"node_modules/js-yaml": {
|
|
11253
|
-
"version": "4.
|
|
11254
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.
|
|
11255
|
-
"integrity": "sha512-
|
|
11593
|
+
"version": "4.2.0",
|
|
11594
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
|
|
11595
|
+
"integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
|
|
11596
|
+
"funding": [
|
|
11597
|
+
{
|
|
11598
|
+
"type": "github",
|
|
11599
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
11600
|
+
},
|
|
11601
|
+
{
|
|
11602
|
+
"type": "github",
|
|
11603
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
11604
|
+
}
|
|
11605
|
+
],
|
|
11256
11606
|
"license": "MIT",
|
|
11257
11607
|
"dependencies": {
|
|
11258
11608
|
"argparse": "^2.0.1"
|
|
@@ -12118,6 +12468,12 @@
|
|
|
12118
12468
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
12119
12469
|
}
|
|
12120
12470
|
},
|
|
12471
|
+
"node_modules/long": {
|
|
12472
|
+
"version": "5.3.2",
|
|
12473
|
+
"resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
|
|
12474
|
+
"integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
|
|
12475
|
+
"license": "Apache-2.0"
|
|
12476
|
+
},
|
|
12121
12477
|
"node_modules/loose-envify": {
|
|
12122
12478
|
"version": "1.4.0",
|
|
12123
12479
|
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
@@ -12430,25 +12786,25 @@
|
|
|
12430
12786
|
}
|
|
12431
12787
|
},
|
|
12432
12788
|
"node_modules/msw/node_modules/@inquirer/ansi": {
|
|
12433
|
-
"version": "2.0.
|
|
12434
|
-
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.
|
|
12435
|
-
"integrity": "sha512-
|
|
12789
|
+
"version": "2.0.7",
|
|
12790
|
+
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.7.tgz",
|
|
12791
|
+
"integrity": "sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==",
|
|
12436
12792
|
"license": "MIT",
|
|
12437
12793
|
"engines": {
|
|
12438
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12794
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12439
12795
|
}
|
|
12440
12796
|
},
|
|
12441
12797
|
"node_modules/msw/node_modules/@inquirer/confirm": {
|
|
12442
|
-
"version": "6.1.
|
|
12443
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.
|
|
12444
|
-
"integrity": "sha512-
|
|
12798
|
+
"version": "6.1.1",
|
|
12799
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.1.tgz",
|
|
12800
|
+
"integrity": "sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==",
|
|
12445
12801
|
"license": "MIT",
|
|
12446
12802
|
"dependencies": {
|
|
12447
|
-
"@inquirer/core": "^11.2.
|
|
12448
|
-
"@inquirer/type": "^4.0.
|
|
12803
|
+
"@inquirer/core": "^11.2.1",
|
|
12804
|
+
"@inquirer/type": "^4.0.7"
|
|
12449
12805
|
},
|
|
12450
12806
|
"engines": {
|
|
12451
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12807
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12452
12808
|
},
|
|
12453
12809
|
"peerDependencies": {
|
|
12454
12810
|
"@types/node": ">=18"
|
|
@@ -12460,21 +12816,21 @@
|
|
|
12460
12816
|
}
|
|
12461
12817
|
},
|
|
12462
12818
|
"node_modules/msw/node_modules/@inquirer/core": {
|
|
12463
|
-
"version": "11.2.
|
|
12464
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.
|
|
12465
|
-
"integrity": "sha512-
|
|
12819
|
+
"version": "11.2.1",
|
|
12820
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.1.tgz",
|
|
12821
|
+
"integrity": "sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==",
|
|
12466
12822
|
"license": "MIT",
|
|
12467
12823
|
"dependencies": {
|
|
12468
|
-
"@inquirer/ansi": "^2.0.
|
|
12469
|
-
"@inquirer/figures": "^2.0.
|
|
12470
|
-
"@inquirer/type": "^4.0.
|
|
12824
|
+
"@inquirer/ansi": "^2.0.7",
|
|
12825
|
+
"@inquirer/figures": "^2.0.7",
|
|
12826
|
+
"@inquirer/type": "^4.0.7",
|
|
12471
12827
|
"cli-width": "^4.1.0",
|
|
12472
12828
|
"fast-wrap-ansi": "^0.2.0",
|
|
12473
|
-
"mute-stream": "^
|
|
12829
|
+
"mute-stream": "^3.0.0",
|
|
12474
12830
|
"signal-exit": "^4.1.0"
|
|
12475
12831
|
},
|
|
12476
12832
|
"engines": {
|
|
12477
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12833
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12478
12834
|
},
|
|
12479
12835
|
"peerDependencies": {
|
|
12480
12836
|
"@types/node": ">=18"
|
|
@@ -12486,21 +12842,21 @@
|
|
|
12486
12842
|
}
|
|
12487
12843
|
},
|
|
12488
12844
|
"node_modules/msw/node_modules/@inquirer/figures": {
|
|
12489
|
-
"version": "2.0.
|
|
12490
|
-
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.
|
|
12491
|
-
"integrity": "sha512-
|
|
12845
|
+
"version": "2.0.7",
|
|
12846
|
+
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.7.tgz",
|
|
12847
|
+
"integrity": "sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==",
|
|
12492
12848
|
"license": "MIT",
|
|
12493
12849
|
"engines": {
|
|
12494
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12850
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12495
12851
|
}
|
|
12496
12852
|
},
|
|
12497
12853
|
"node_modules/msw/node_modules/@inquirer/type": {
|
|
12498
|
-
"version": "4.0.
|
|
12499
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.
|
|
12500
|
-
"integrity": "sha512-
|
|
12854
|
+
"version": "4.0.7",
|
|
12855
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.7.tgz",
|
|
12856
|
+
"integrity": "sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==",
|
|
12501
12857
|
"license": "MIT",
|
|
12502
12858
|
"engines": {
|
|
12503
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
12859
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
12504
12860
|
},
|
|
12505
12861
|
"peerDependencies": {
|
|
12506
12862
|
"@types/node": ">=18"
|
|
@@ -12512,12 +12868,12 @@
|
|
|
12512
12868
|
}
|
|
12513
12869
|
},
|
|
12514
12870
|
"node_modules/msw/node_modules/mute-stream": {
|
|
12515
|
-
"version": "
|
|
12516
|
-
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-
|
|
12517
|
-
"integrity": "sha512-
|
|
12871
|
+
"version": "3.0.0",
|
|
12872
|
+
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
|
|
12873
|
+
"integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
|
|
12518
12874
|
"license": "ISC",
|
|
12519
12875
|
"engines": {
|
|
12520
|
-
"node": "^
|
|
12876
|
+
"node": "^20.17.0 || >=22.9.0"
|
|
12521
12877
|
}
|
|
12522
12878
|
},
|
|
12523
12879
|
"node_modules/msw/node_modules/path-to-regexp": {
|
|
@@ -12527,9 +12883,9 @@
|
|
|
12527
12883
|
"license": "MIT"
|
|
12528
12884
|
},
|
|
12529
12885
|
"node_modules/msw/node_modules/type-fest": {
|
|
12530
|
-
"version": "5.
|
|
12531
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.
|
|
12532
|
-
"integrity": "sha512-
|
|
12886
|
+
"version": "5.7.0",
|
|
12887
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.7.0.tgz",
|
|
12888
|
+
"integrity": "sha512-1URUxUqfHFM1c+zfSPsa3gnkO7Aq21qyH75SIduNYz4SzY964rn1X2vCMQaHSHhktiw+0kPa2iyb6PUpXqB6Vg==",
|
|
12533
12889
|
"license": "(MIT OR CC0-1.0)",
|
|
12534
12890
|
"dependencies": {
|
|
12535
12891
|
"tagged-tag": "^1.0.0"
|
|
@@ -12742,6 +13098,32 @@
|
|
|
12742
13098
|
"dev": true,
|
|
12743
13099
|
"license": "MIT"
|
|
12744
13100
|
},
|
|
13101
|
+
"node_modules/o11y": {
|
|
13102
|
+
"version": "264.6.0",
|
|
13103
|
+
"resolved": "https://registry.npmjs.org/o11y/-/o11y-264.6.0.tgz",
|
|
13104
|
+
"integrity": "sha512-v3x29+PphNaORbOrYi6ucsx391hwJk+mxf4XGGoRB6+BcI0W3/fhazaXBCBtEZOnU2YDLgpFd8B4CzCmBFiKFQ==",
|
|
13105
|
+
"license": "BSD-3-Clause",
|
|
13106
|
+
"peer": true,
|
|
13107
|
+
"dependencies": {
|
|
13108
|
+
"o11y_schema": "260.5.0",
|
|
13109
|
+
"protobufjs": "7.5.5",
|
|
13110
|
+
"web-vitals": "^5.1.0"
|
|
13111
|
+
}
|
|
13112
|
+
},
|
|
13113
|
+
"node_modules/o11y_schema": {
|
|
13114
|
+
"version": "264.70.0",
|
|
13115
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.70.0.tgz",
|
|
13116
|
+
"integrity": "sha512-3FVh/krlBe1+CnQZUrZkIH1JsI7cpSxorbosSLXLOOPyE8wHNRXUT5hfaH2XlhlAQMneoK+EBM2uioRvoXZSHA==",
|
|
13117
|
+
"license": "BSD-3-Clause",
|
|
13118
|
+
"peer": true
|
|
13119
|
+
},
|
|
13120
|
+
"node_modules/o11y/node_modules/o11y_schema": {
|
|
13121
|
+
"version": "260.5.0",
|
|
13122
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-260.5.0.tgz",
|
|
13123
|
+
"integrity": "sha512-0qrtqE394CODoPovUBdQQ2efHls6Z2xP6jvLitEGKSEj1KcCyeBLx2dHwTUtv66zwZTKjSp27QLFF4PZhengEQ==",
|
|
13124
|
+
"license": "BSD-3-Clause",
|
|
13125
|
+
"peer": true
|
|
13126
|
+
},
|
|
12745
13127
|
"node_modules/object-assign": {
|
|
12746
13128
|
"version": "4.1.1",
|
|
12747
13129
|
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
@@ -13729,6 +14111,31 @@
|
|
|
13729
14111
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
13730
14112
|
"license": "ISC"
|
|
13731
14113
|
},
|
|
14114
|
+
"node_modules/protobufjs": {
|
|
14115
|
+
"version": "7.5.5",
|
|
14116
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.5.tgz",
|
|
14117
|
+
"integrity": "sha512-3wY1AxV+VBNW8Yypfd1yQY9pXnqTAN+KwQxL8iYm3/BjKYMNg4i0owhEe26PWDOMaIrzeeF98Lqd5NGz4omiIg==",
|
|
14118
|
+
"hasInstallScript": true,
|
|
14119
|
+
"license": "BSD-3-Clause",
|
|
14120
|
+
"peer": true,
|
|
14121
|
+
"dependencies": {
|
|
14122
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
14123
|
+
"@protobufjs/base64": "^1.1.2",
|
|
14124
|
+
"@protobufjs/codegen": "^2.0.4",
|
|
14125
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
14126
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
14127
|
+
"@protobufjs/float": "^1.0.2",
|
|
14128
|
+
"@protobufjs/inquire": "^1.1.0",
|
|
14129
|
+
"@protobufjs/path": "^1.1.2",
|
|
14130
|
+
"@protobufjs/pool": "^1.1.0",
|
|
14131
|
+
"@protobufjs/utf8": "^1.1.0",
|
|
14132
|
+
"@types/node": ">=13.7.0",
|
|
14133
|
+
"long": "^5.0.0"
|
|
14134
|
+
},
|
|
14135
|
+
"engines": {
|
|
14136
|
+
"node": ">=12.0.0"
|
|
14137
|
+
}
|
|
14138
|
+
},
|
|
13732
14139
|
"node_modules/proxy-addr": {
|
|
13733
14140
|
"version": "2.0.7",
|
|
13734
14141
|
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
@@ -13932,9 +14339,9 @@
|
|
|
13932
14339
|
}
|
|
13933
14340
|
},
|
|
13934
14341
|
"node_modules/react": {
|
|
13935
|
-
"version": "19.2.
|
|
13936
|
-
"resolved": "https://registry.npmjs.org/react/-/react-19.2.
|
|
13937
|
-
"integrity": "sha512-
|
|
14342
|
+
"version": "19.2.7",
|
|
14343
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
|
|
14344
|
+
"integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
|
|
13938
14345
|
"license": "MIT",
|
|
13939
14346
|
"engines": {
|
|
13940
14347
|
"node": ">=0.10.0"
|
|
@@ -13963,15 +14370,15 @@
|
|
|
13963
14370
|
}
|
|
13964
14371
|
},
|
|
13965
14372
|
"node_modules/react-dom": {
|
|
13966
|
-
"version": "19.2.
|
|
13967
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.
|
|
13968
|
-
"integrity": "sha512-
|
|
14373
|
+
"version": "19.2.7",
|
|
14374
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
|
|
14375
|
+
"integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
|
|
13969
14376
|
"license": "MIT",
|
|
13970
14377
|
"dependencies": {
|
|
13971
14378
|
"scheduler": "^0.27.0"
|
|
13972
14379
|
},
|
|
13973
14380
|
"peerDependencies": {
|
|
13974
|
-
"react": "^19.2.
|
|
14381
|
+
"react": "^19.2.7"
|
|
13975
14382
|
}
|
|
13976
14383
|
},
|
|
13977
14384
|
"node_modules/react-is": {
|
|
@@ -14336,12 +14743,12 @@
|
|
|
14336
14743
|
"license": "MIT"
|
|
14337
14744
|
},
|
|
14338
14745
|
"node_modules/rollup": {
|
|
14339
|
-
"version": "4.
|
|
14340
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
14341
|
-
"integrity": "sha512-
|
|
14746
|
+
"version": "4.61.0",
|
|
14747
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.61.0.tgz",
|
|
14748
|
+
"integrity": "sha512-T9mWdbWfQtp0B5lv/HX+wrhYsmXRlcWnXXmJbXqKJhlRaoS6KMhq0gpyzW4UJfclcxrEdLnTgjT2NjruLONu0g==",
|
|
14342
14749
|
"license": "MIT",
|
|
14343
14750
|
"dependencies": {
|
|
14344
|
-
"@types/estree": "1.0.
|
|
14751
|
+
"@types/estree": "1.0.9"
|
|
14345
14752
|
},
|
|
14346
14753
|
"bin": {
|
|
14347
14754
|
"rollup": "dist/bin/rollup"
|
|
@@ -14351,40 +14758,34 @@
|
|
|
14351
14758
|
"npm": ">=8.0.0"
|
|
14352
14759
|
},
|
|
14353
14760
|
"optionalDependencies": {
|
|
14354
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
14355
|
-
"@rollup/rollup-android-arm64": "4.
|
|
14356
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
14357
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
14358
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
14359
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
14360
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
14361
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
14362
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
14363
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
14364
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
14365
|
-
"@rollup/rollup-linux-loong64-musl": "4.
|
|
14366
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.
|
|
14367
|
-
"@rollup/rollup-linux-ppc64-musl": "4.
|
|
14368
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
14369
|
-
"@rollup/rollup-linux-riscv64-musl": "4.
|
|
14370
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
14371
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
14372
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
14373
|
-
"@rollup/rollup-openbsd-x64": "4.
|
|
14374
|
-
"@rollup/rollup-openharmony-arm64": "4.
|
|
14375
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
14376
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
14377
|
-
"@rollup/rollup-win32-x64-gnu": "4.
|
|
14378
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
14761
|
+
"@rollup/rollup-android-arm-eabi": "4.61.0",
|
|
14762
|
+
"@rollup/rollup-android-arm64": "4.61.0",
|
|
14763
|
+
"@rollup/rollup-darwin-arm64": "4.61.0",
|
|
14764
|
+
"@rollup/rollup-darwin-x64": "4.61.0",
|
|
14765
|
+
"@rollup/rollup-freebsd-arm64": "4.61.0",
|
|
14766
|
+
"@rollup/rollup-freebsd-x64": "4.61.0",
|
|
14767
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.61.0",
|
|
14768
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.61.0",
|
|
14769
|
+
"@rollup/rollup-linux-arm64-gnu": "4.61.0",
|
|
14770
|
+
"@rollup/rollup-linux-arm64-musl": "4.61.0",
|
|
14771
|
+
"@rollup/rollup-linux-loong64-gnu": "4.61.0",
|
|
14772
|
+
"@rollup/rollup-linux-loong64-musl": "4.61.0",
|
|
14773
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.61.0",
|
|
14774
|
+
"@rollup/rollup-linux-ppc64-musl": "4.61.0",
|
|
14775
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.61.0",
|
|
14776
|
+
"@rollup/rollup-linux-riscv64-musl": "4.61.0",
|
|
14777
|
+
"@rollup/rollup-linux-s390x-gnu": "4.61.0",
|
|
14778
|
+
"@rollup/rollup-linux-x64-gnu": "4.61.0",
|
|
14779
|
+
"@rollup/rollup-linux-x64-musl": "4.61.0",
|
|
14780
|
+
"@rollup/rollup-openbsd-x64": "4.61.0",
|
|
14781
|
+
"@rollup/rollup-openharmony-arm64": "4.61.0",
|
|
14782
|
+
"@rollup/rollup-win32-arm64-msvc": "4.61.0",
|
|
14783
|
+
"@rollup/rollup-win32-ia32-msvc": "4.61.0",
|
|
14784
|
+
"@rollup/rollup-win32-x64-gnu": "4.61.0",
|
|
14785
|
+
"@rollup/rollup-win32-x64-msvc": "4.61.0",
|
|
14379
14786
|
"fsevents": "~2.3.2"
|
|
14380
14787
|
}
|
|
14381
14788
|
},
|
|
14382
|
-
"node_modules/rollup/node_modules/@types/estree": {
|
|
14383
|
-
"version": "1.0.8",
|
|
14384
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
14385
|
-
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
14386
|
-
"license": "MIT"
|
|
14387
|
-
},
|
|
14388
14789
|
"node_modules/router": {
|
|
14389
14790
|
"version": "2.2.0",
|
|
14390
14791
|
"resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
|
|
@@ -15764,18 +16165,18 @@
|
|
|
15764
16165
|
"license": "MIT"
|
|
15765
16166
|
},
|
|
15766
16167
|
"node_modules/tinyexec": {
|
|
15767
|
-
"version": "1.2.
|
|
15768
|
-
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.
|
|
15769
|
-
"integrity": "sha512-
|
|
16168
|
+
"version": "1.2.4",
|
|
16169
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz",
|
|
16170
|
+
"integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==",
|
|
15770
16171
|
"license": "MIT",
|
|
15771
16172
|
"engines": {
|
|
15772
16173
|
"node": ">=18"
|
|
15773
16174
|
}
|
|
15774
16175
|
},
|
|
15775
16176
|
"node_modules/tinyglobby": {
|
|
15776
|
-
"version": "0.2.
|
|
15777
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.
|
|
15778
|
-
"integrity": "sha512-
|
|
16177
|
+
"version": "0.2.17",
|
|
16178
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
16179
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
15779
16180
|
"license": "MIT",
|
|
15780
16181
|
"dependencies": {
|
|
15781
16182
|
"fdir": "^6.5.0",
|
|
@@ -15838,21 +16239,21 @@
|
|
|
15838
16239
|
}
|
|
15839
16240
|
},
|
|
15840
16241
|
"node_modules/tldts": {
|
|
15841
|
-
"version": "7.4.
|
|
15842
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
15843
|
-
"integrity": "sha512-
|
|
16242
|
+
"version": "7.4.2",
|
|
16243
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.2.tgz",
|
|
16244
|
+
"integrity": "sha512-kCwffuaH8ntKtygnWe1b4BJKWiCUH30n5KfoTr6IchcXOwR7chAOFJxFrH3vjANafUYrIA4a7SDL+nn7SiR4Sw==",
|
|
15844
16245
|
"license": "MIT",
|
|
15845
16246
|
"dependencies": {
|
|
15846
|
-
"tldts-core": "^7.4.
|
|
16247
|
+
"tldts-core": "^7.4.2"
|
|
15847
16248
|
},
|
|
15848
16249
|
"bin": {
|
|
15849
16250
|
"tldts": "bin/cli.js"
|
|
15850
16251
|
}
|
|
15851
16252
|
},
|
|
15852
16253
|
"node_modules/tldts-core": {
|
|
15853
|
-
"version": "7.4.
|
|
15854
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
15855
|
-
"integrity": "sha512-
|
|
16254
|
+
"version": "7.4.2",
|
|
16255
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.2.tgz",
|
|
16256
|
+
"integrity": "sha512-nwEyF4vl4RSJjwSjBUmOSxc3BFPoIFdlRthJ6e+5v9P3bHNsoD06UjuqMUspqp7vsEZ1beaHi1km+optiE17yA==",
|
|
15856
16257
|
"license": "MIT"
|
|
15857
16258
|
},
|
|
15858
16259
|
"node_modules/to-regex-range": {
|
|
@@ -16182,16 +16583,16 @@
|
|
|
16182
16583
|
}
|
|
16183
16584
|
},
|
|
16184
16585
|
"node_modules/typescript-eslint": {
|
|
16185
|
-
"version": "8.60.
|
|
16186
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.
|
|
16187
|
-
"integrity": "sha512-
|
|
16586
|
+
"version": "8.60.1",
|
|
16587
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.1.tgz",
|
|
16588
|
+
"integrity": "sha512-6m5hkkRAp8lKvhVpcprAIn5KkehQEh+47oHH2VGnExEh7dhNxXlg6GPAOIu6TxbVQxhebrJDvjl3020ooiWCMA==",
|
|
16188
16589
|
"dev": true,
|
|
16189
16590
|
"license": "MIT",
|
|
16190
16591
|
"dependencies": {
|
|
16191
|
-
"@typescript-eslint/eslint-plugin": "8.60.
|
|
16192
|
-
"@typescript-eslint/parser": "8.60.
|
|
16193
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
16194
|
-
"@typescript-eslint/utils": "8.60.
|
|
16592
|
+
"@typescript-eslint/eslint-plugin": "8.60.1",
|
|
16593
|
+
"@typescript-eslint/parser": "8.60.1",
|
|
16594
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
16595
|
+
"@typescript-eslint/utils": "8.60.1"
|
|
16195
16596
|
},
|
|
16196
16597
|
"engines": {
|
|
16197
16598
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -16445,9 +16846,9 @@
|
|
|
16445
16846
|
}
|
|
16446
16847
|
},
|
|
16447
16848
|
"node_modules/vite": {
|
|
16448
|
-
"version": "7.3.
|
|
16449
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.
|
|
16450
|
-
"integrity": "sha512
|
|
16849
|
+
"version": "7.3.5",
|
|
16850
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.5.tgz",
|
|
16851
|
+
"integrity": "sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==",
|
|
16451
16852
|
"license": "MIT",
|
|
16452
16853
|
"dependencies": {
|
|
16453
16854
|
"esbuild": "^0.27.0",
|
|
@@ -16574,19 +16975,19 @@
|
|
|
16574
16975
|
}
|
|
16575
16976
|
},
|
|
16576
16977
|
"node_modules/vitest": {
|
|
16577
|
-
"version": "4.1.
|
|
16578
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.
|
|
16579
|
-
"integrity": "sha512-
|
|
16978
|
+
"version": "4.1.8",
|
|
16979
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.8.tgz",
|
|
16980
|
+
"integrity": "sha512-flY6ScbCIt9HThs+C5HS7jvGOB560DJtk/Z15IQROTA6zEy49Nh8T/dofWTQL+n3vswqn87sbJNiuqw1SDp5Ig==",
|
|
16580
16981
|
"dev": true,
|
|
16581
16982
|
"license": "MIT",
|
|
16582
16983
|
"dependencies": {
|
|
16583
|
-
"@vitest/expect": "4.1.
|
|
16584
|
-
"@vitest/mocker": "4.1.
|
|
16585
|
-
"@vitest/pretty-format": "4.1.
|
|
16586
|
-
"@vitest/runner": "4.1.
|
|
16587
|
-
"@vitest/snapshot": "4.1.
|
|
16588
|
-
"@vitest/spy": "4.1.
|
|
16589
|
-
"@vitest/utils": "4.1.
|
|
16984
|
+
"@vitest/expect": "4.1.8",
|
|
16985
|
+
"@vitest/mocker": "4.1.8",
|
|
16986
|
+
"@vitest/pretty-format": "4.1.8",
|
|
16987
|
+
"@vitest/runner": "4.1.8",
|
|
16988
|
+
"@vitest/snapshot": "4.1.8",
|
|
16989
|
+
"@vitest/spy": "4.1.8",
|
|
16990
|
+
"@vitest/utils": "4.1.8",
|
|
16590
16991
|
"es-module-lexer": "^2.0.0",
|
|
16591
16992
|
"expect-type": "^1.3.0",
|
|
16592
16993
|
"magic-string": "^0.30.21",
|
|
@@ -16614,12 +17015,12 @@
|
|
|
16614
17015
|
"@edge-runtime/vm": "*",
|
|
16615
17016
|
"@opentelemetry/api": "^1.9.0",
|
|
16616
17017
|
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
16617
|
-
"@vitest/browser-playwright": "4.1.
|
|
16618
|
-
"@vitest/browser-preview": "4.1.
|
|
16619
|
-
"@vitest/browser-webdriverio": "4.1.
|
|
16620
|
-
"@vitest/coverage-istanbul": "4.1.
|
|
16621
|
-
"@vitest/coverage-v8": "4.1.
|
|
16622
|
-
"@vitest/ui": "4.1.
|
|
17018
|
+
"@vitest/browser-playwright": "4.1.8",
|
|
17019
|
+
"@vitest/browser-preview": "4.1.8",
|
|
17020
|
+
"@vitest/browser-webdriverio": "4.1.8",
|
|
17021
|
+
"@vitest/coverage-istanbul": "4.1.8",
|
|
17022
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
17023
|
+
"@vitest/ui": "4.1.8",
|
|
16623
17024
|
"happy-dom": "*",
|
|
16624
17025
|
"jsdom": "*",
|
|
16625
17026
|
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
@@ -16698,6 +17099,13 @@
|
|
|
16698
17099
|
"node": ">= 8"
|
|
16699
17100
|
}
|
|
16700
17101
|
},
|
|
17102
|
+
"node_modules/web-vitals": {
|
|
17103
|
+
"version": "5.3.0",
|
|
17104
|
+
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-5.3.0.tgz",
|
|
17105
|
+
"integrity": "sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g==",
|
|
17106
|
+
"license": "Apache-2.0",
|
|
17107
|
+
"peer": true
|
|
17108
|
+
},
|
|
16701
17109
|
"node_modules/webidl-conversions": {
|
|
16702
17110
|
"version": "7.0.0",
|
|
16703
17111
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
|