@salesforce/templates 66.8.0 → 66.9.0

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.
Files changed (85) hide show
  1. package/lib/templates/project/reactexternalapp/AGENT.md +3 -3
  2. package/lib/templates/project/reactexternalapp/CHANGELOG.md +428 -0
  3. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +194 -1488
  4. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package.json +4 -4
  5. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountObjectDetailPage.tsx +7 -9
  6. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountSearch.tsx +7 -15
  7. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/api/objectSearchService.ts +14 -19
  8. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/NumericRangeFilter.tsx +9 -5
  9. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/SearchFilter.tsx +5 -3
  10. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/TextFilter.tsx +5 -3
  11. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useAsyncData.ts +11 -4
  12. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/api/userProfileApi.ts +12 -11
  13. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/authenticationConfig.ts +9 -9
  14. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/context/AuthContext.tsx +21 -4
  15. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/forms/auth-form.tsx +15 -1
  16. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/hooks/form.tsx +1 -1
  17. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layouts/privateRouteLayout.tsx +2 -11
  18. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ChangePassword.tsx +21 -5
  19. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ForgotPassword.tsx +20 -5
  20. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Login.tsx +20 -5
  21. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Profile.tsx +80 -43
  22. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Register.tsx +16 -5
  23. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ResetPassword.tsx +20 -5
  24. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/utils/helpers.ts +15 -52
  25. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/api/graphqlClient.ts +13 -13
  26. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/components/alerts/status-alert.tsx +11 -8
  27. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/components/ui/input.tsx +1 -1
  28. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/hooks/useAsyncData.ts +67 -0
  29. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +7 -9
  30. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/pages/AccountSearch.tsx +7 -15
  31. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/routes.tsx +19 -25
  32. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/tsconfig.json +4 -6
  33. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/vite-env.d.ts +0 -3
  34. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleAuthUtils.cls-meta.xml +1 -1
  35. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleChangePassword.cls-meta.xml +1 -1
  36. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleForgotPassword.cls-meta.xml +1 -1
  37. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleLogin.cls-meta.xml +1 -1
  38. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleRegistration.cls-meta.xml +1 -1
  39. package/lib/templates/project/reactexternalapp/_p_/_m_/package.xml +1 -1
  40. package/lib/templates/project/reactexternalapp/package.json +1 -1
  41. package/lib/templates/project/reactexternalapp/scripts/org-setup.config.json +0 -1
  42. package/lib/templates/project/reactexternalapp/scripts/org-setup.mjs +528 -44
  43. package/lib/templates/project/reactexternalapp/sfdx-project.json +1 -1
  44. package/lib/templates/project/reactinternalapp/AGENT.md +3 -3
  45. package/lib/templates/project/reactinternalapp/CHANGELOG.md +428 -0
  46. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +214 -1521
  47. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package.json +5 -5
  48. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/reactinternalapp.uibundle-meta.xml +1 -0
  49. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountObjectDetailPage.tsx +7 -9
  50. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountSearch.tsx +7 -15
  51. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/api/objectSearchService.ts +14 -19
  52. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/NumericRangeFilter.tsx +9 -5
  53. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/SearchFilter.tsx +5 -3
  54. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/TextFilter.tsx +5 -3
  55. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useAsyncData.ts +11 -4
  56. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/api/graphqlClient.ts +13 -13
  57. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/AgentforceConversationClient.tsx +40 -44
  58. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/alerts/status-alert.tsx +11 -8
  59. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/ui/input.tsx +1 -1
  60. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/hooks/useAsyncData.ts +67 -0
  61. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +7 -9
  62. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountSearch.tsx +7 -15
  63. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/conversation.ts +9 -0
  64. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/globals.d.ts +13 -0
  65. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/tsconfig.json +4 -6
  66. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/vite-env.d.ts +0 -3
  67. package/lib/templates/project/reactinternalapp/_p_/_m_/applications/reactinternalapp.app-meta.xml +17 -0
  68. package/lib/templates/project/reactinternalapp/_p_/_m_/permissionsets/reactinternalapp_Access.permissionset-meta.xml +9 -0
  69. package/lib/templates/project/reactinternalapp/package.json +1 -1
  70. package/lib/templates/project/reactinternalapp/scripts/org-setup.config.json +6 -3
  71. package/lib/templates/project/reactinternalapp/scripts/org-setup.mjs +528 -44
  72. package/lib/templates/project/reactinternalapp/sfdx-project.json +1 -1
  73. package/lib/templates/uiBundles/reactbasic/package-lock.json +435 -43
  74. package/lib/templates/uiBundles/reactbasic/package.json +3 -3
  75. package/lib/templates/uiBundles/reactbasic/src/api/graphqlClient.ts +13 -13
  76. package/lib/templates/uiBundles/reactbasic/src/components/alerts/status-alert.tsx +11 -8
  77. package/lib/templates/uiBundles/reactbasic/src/components/ui/input.tsx +1 -1
  78. package/lib/templates/uiBundles/reactbasic/src/hooks/useAsyncData.ts +67 -0
  79. package/lib/templates/uiBundles/reactbasic/tsconfig.json +4 -6
  80. package/lib/templates/uiBundles/reactbasic/vite-env.d.ts +0 -3
  81. package/package.json +5 -5
  82. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useCachedAsyncData.ts +0 -188
  83. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layout/card-skeleton.tsx +0 -38
  84. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layouts/authenticationRouteLayout.tsx +0 -21
  85. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useCachedAsyncData.ts +0 -188
@@ -8,5 +8,5 @@
8
8
  "name": "MyProject",
9
9
  "namespace": "",
10
10
  "sfdcLoginUrl": "https://login.salesforce.com",
11
- "sourceApiVersion": "66.0"
11
+ "sourceApiVersion": "67.0"
12
12
  }
@@ -8,8 +8,8 @@
8
8
  "name": "base-react-app",
9
9
  "version": "1.59.0",
10
10
  "dependencies": {
11
- "@salesforce/sdk-data": "^1.135.0",
12
- "@salesforce/ui-bundle": "^1.135.0",
11
+ "@salesforce/platform-sdk": "^9.20.0",
12
+ "@salesforce/ui-bundle": "^9.20.0",
13
13
  "@tailwindcss/vite": "^4.1.17",
14
14
  "class-variance-authority": "^0.7.1",
15
15
  "clsx": "^2.1.1",
@@ -34,7 +34,7 @@
34
34
  "@graphql-eslint/eslint-plugin": "^4.1.0",
35
35
  "@graphql-tools/utils": "^11.0.0",
36
36
  "@playwright/test": "^1.49.0",
37
- "@salesforce/vite-plugin-ui-bundle": "^1.135.0",
37
+ "@salesforce/vite-plugin-ui-bundle": "^9.20.0",
38
38
  "@testing-library/jest-dom": "^6.6.3",
39
39
  "@testing-library/react": "^16.1.0",
40
40
  "@testing-library/user-event": "^14.5.2",
@@ -589,39 +589,283 @@
589
589
  "node": ">=6.9.0"
590
590
  }
591
591
  },
592
+ "node_modules/@conduit-client/command-base": {
593
+ "version": "3.19.6",
594
+ "resolved": "https://registry.npmjs.org/@conduit-client/command-base/-/command-base-3.19.6.tgz",
595
+ "integrity": "sha512-zbjMSv4d0SEPR63/HTa4lFoJtMHUMQ810GprFFR9U3OcZZ4PCyUQeyM8DIja/IsRgH7HDDEL7DnhF5mpT5UxDA==",
596
+ "license": "SEE LICENSE IN LICENSE.txt",
597
+ "dependencies": {
598
+ "@conduit-client/utils": "3.19.6"
599
+ }
600
+ },
601
+ "node_modules/@conduit-client/command-cache-control": {
602
+ "version": "3.19.6",
603
+ "resolved": "https://registry.npmjs.org/@conduit-client/command-cache-control/-/command-cache-control-3.19.6.tgz",
604
+ "integrity": "sha512-ReZdJa5S65sGqXWocq6PkUEodon9xaBHzdpPHrdhFADotjhJY2wYQ9/050tnQ7TVg31IkeUZNNrj4WPEdYwV7w==",
605
+ "license": "SEE LICENSE IN LICENSE.txt",
606
+ "dependencies": {
607
+ "@conduit-client/command-base": "3.19.6",
608
+ "@conduit-client/service-cache-control": "3.19.6",
609
+ "@conduit-client/service-instrumentation": "3.19.6",
610
+ "@conduit-client/utils": "3.19.6"
611
+ }
612
+ },
613
+ "node_modules/@conduit-client/command-http-cache-control": {
614
+ "version": "3.19.6",
615
+ "resolved": "https://registry.npmjs.org/@conduit-client/command-http-cache-control/-/command-http-cache-control-3.19.6.tgz",
616
+ "integrity": "sha512-41bjECK4JByGKpj6chojO25i1sgOnvQoklvzgW6L9BuLE5d3uzBw6JmY5srAOiaP1t0ZYHeHm+lLnuZ7R3BjRA==",
617
+ "license": "SEE LICENSE IN LICENSE.txt",
618
+ "dependencies": {
619
+ "@conduit-client/command-base": "3.19.6",
620
+ "@conduit-client/command-cache-control": "3.19.6",
621
+ "@conduit-client/service-aura-network": "3.19.6",
622
+ "@conduit-client/service-cache-control": "3.19.6",
623
+ "@conduit-client/service-fetch-network": "3.19.6",
624
+ "@conduit-client/service-pubsub": "3.19.6",
625
+ "@conduit-client/utils": "3.19.6"
626
+ }
627
+ },
628
+ "node_modules/@conduit-client/jsonschema-validate": {
629
+ "version": "3.19.6",
630
+ "resolved": "https://registry.npmjs.org/@conduit-client/jsonschema-validate/-/jsonschema-validate-3.19.6.tgz",
631
+ "integrity": "sha512-XVEzbVc568gW3gu5YZh9CAVMZNjQ5hdTkR9M8ApsXX7GYhxy41Vl9F6Kkig9SFr6K0xDxAmfldvHSxkqHFebXw==",
632
+ "license": "SEE LICENSE IN LICENSE.txt",
633
+ "dependencies": {
634
+ "@conduit-client/utils": "3.19.6"
635
+ }
636
+ },
592
637
  "node_modules/@conduit-client/jwt-manager": {
593
- "version": "3.17.0",
594
- "resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.17.0.tgz",
595
- "integrity": "sha512-u+NgdadxOqfKy7ak7z0zCrcAL4A66mOIuekob6pjogswi8cgebvtvFRO4Mag53n6pSCmRZ4DNlXIe5eylpXo3g==",
638
+ "version": "3.19.6",
639
+ "resolved": "https://registry.npmjs.org/@conduit-client/jwt-manager/-/jwt-manager-3.19.6.tgz",
640
+ "integrity": "sha512-tpkg0DtJxTdW/zac+nm8wCpSw2wavYtOfVDHfmAAtH/FF39PWjcam7ldyru1G95NR2JbvAxbLQZefC+Dt0n5kg==",
596
641
  "license": "SEE LICENSE IN LICENSE.txt",
597
642
  "dependencies": {
598
643
  "jwt-decode": "~3.1.2"
599
644
  }
600
645
  },
646
+ "node_modules/@conduit-client/onestore-graphql-parser": {
647
+ "version": "3.19.6",
648
+ "resolved": "https://registry.npmjs.org/@conduit-client/onestore-graphql-parser/-/onestore-graphql-parser-3.19.6.tgz",
649
+ "integrity": "sha512-zz02oNZjrxWQDAt7jN3yKurCdQTp2Jz3Cp9fhkZhJ/NNUqElcQUPK/3ruUX5MhwpjbbVU4KXvNNqwjg0We7UoA==",
650
+ "license": "MIT",
651
+ "dependencies": {
652
+ "@conduit-client/jsonschema-validate": "3.19.6",
653
+ "@conduit-client/utils": "3.19.6",
654
+ "graphql": "16.11.0"
655
+ }
656
+ },
657
+ "node_modules/@conduit-client/onestore-graphql-parser/node_modules/graphql": {
658
+ "version": "16.11.0",
659
+ "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.11.0.tgz",
660
+ "integrity": "sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==",
661
+ "license": "MIT",
662
+ "engines": {
663
+ "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
664
+ }
665
+ },
666
+ "node_modules/@conduit-client/service-aura-network": {
667
+ "version": "3.19.6",
668
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-aura-network/-/service-aura-network-3.19.6.tgz",
669
+ "integrity": "sha512-H8+Uq0A8e9QYtYrvVfkoha7ozQP8aCTqn9vYKt1WzehkzRI+webIZjNeCrJtFsXEW+s2Shwy2P3C3GY6tF/rUg==",
670
+ "license": "SEE LICENSE IN LICENSE.txt",
671
+ "dependencies": {
672
+ "@conduit-client/service-instrumentation": "3.19.6",
673
+ "@conduit-client/utils": "3.19.6"
674
+ }
675
+ },
676
+ "node_modules/@conduit-client/service-cache": {
677
+ "version": "3.19.6",
678
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-cache/-/service-cache-3.19.6.tgz",
679
+ "integrity": "sha512-WBQJgOXLZsAyWBnaOnliwgs+tx9JJsCGtLV31oqXrLbjxONk1NYNFbbpW70a8wLBJ0ZKFd4s/+nNicKwiGvRWw==",
680
+ "license": "SEE LICENSE IN LICENSE.txt",
681
+ "dependencies": {
682
+ "@conduit-client/service-instrumentation": "3.19.6",
683
+ "@conduit-client/utils": "3.19.6"
684
+ }
685
+ },
686
+ "node_modules/@conduit-client/service-cache-control": {
687
+ "version": "3.19.6",
688
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-cache-control/-/service-cache-control-3.19.6.tgz",
689
+ "integrity": "sha512-pQ2ipf9FZs2vPjG3d837kpGWQGK0fmj73spn6VUWy0jiewlZZ6L/uzZzV9smMv65yAHVWnBO6ZMi/jVp+y0YsQ==",
690
+ "license": "SEE LICENSE IN LICENSE.txt",
691
+ "dependencies": {
692
+ "@conduit-client/service-cache": "3.19.6",
693
+ "@conduit-client/service-cache-inclusion-policy": "3.19.6",
694
+ "@conduit-client/utils": "3.19.6"
695
+ }
696
+ },
697
+ "node_modules/@conduit-client/service-cache-inclusion-policy": {
698
+ "version": "3.19.6",
699
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-cache-inclusion-policy/-/service-cache-inclusion-policy-3.19.6.tgz",
700
+ "integrity": "sha512-q7kJguFTNdb5/RKykBXgDttWBwT7+tcS4zWwEaHXmDTlb4iTOlb5JfpSgFoEkx4mY1+QsiM179g4sP38IN+0jQ==",
701
+ "license": "SEE LICENSE IN LICENSE.txt",
702
+ "dependencies": {
703
+ "@conduit-client/service-cache": "3.19.6",
704
+ "@conduit-client/utils": "3.19.6"
705
+ }
706
+ },
601
707
  "node_modules/@conduit-client/service-fetch-network": {
602
- "version": "3.17.0",
603
- "resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.17.0.tgz",
604
- "integrity": "sha512-K+KuFWU2N4kF+k/fsS4PSOM0eGdsTGfEtAuoG+/cuRPaQz2KkW33Gyk/KZGQyF+7ikBh0kGATXX1DDF+8XFopQ==",
708
+ "version": "3.19.6",
709
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-fetch-network/-/service-fetch-network-3.19.6.tgz",
710
+ "integrity": "sha512-yOsiRyOrM03tmX92oVbThJs7jZfjiVBQZiGkV+I+980TrJGnAwvaZlQVeG4Ncb285HtpBzkUnuc05Eol/tlCgw==",
711
+ "license": "SEE LICENSE IN LICENSE.txt",
712
+ "dependencies": {
713
+ "@conduit-client/jwt-manager": "3.19.6",
714
+ "@conduit-client/service-retry": "3.19.6",
715
+ "@conduit-client/utils": "3.19.6"
716
+ }
717
+ },
718
+ "node_modules/@conduit-client/service-instrumentation": {
719
+ "version": "3.19.6",
720
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation/-/service-instrumentation-3.19.6.tgz",
721
+ "integrity": "sha512-o+tR7hbwc2SNMYvKMW4IT0Z2JkO2BpCXiWchz/5N7GiKW1Xuhl/8jLY7mzmm96OVZGktPp4p4FHGlUiTdlqiSQ==",
722
+ "license": "SEE LICENSE IN LICENSE.txt",
723
+ "dependencies": {
724
+ "@conduit-client/service-instrumentation-noop": "3.19.6",
725
+ "@conduit-client/service-instrumentation-o11y": "3.19.6",
726
+ "@conduit-client/service-instrumentation-types": "3.19.6",
727
+ "@conduit-client/utils": "3.19.6",
728
+ "@opentelemetry/api": "1.7.0"
729
+ }
730
+ },
731
+ "node_modules/@conduit-client/service-instrumentation-noop": {
732
+ "version": "3.19.6",
733
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-noop/-/service-instrumentation-noop-3.19.6.tgz",
734
+ "integrity": "sha512-4OuCYyNJnfDqIWXlTTxfhEkMbanIruZrMr8Rzx+MBPuYSqMSJmzCRD1Imf9nh84RedmdC4OlOxdgF6FVgYRcfQ==",
735
+ "license": "SEE LICENSE IN LICENSE.txt",
736
+ "dependencies": {
737
+ "@conduit-client/service-instrumentation-types": "3.19.6",
738
+ "@conduit-client/utils": "3.19.6",
739
+ "@opentelemetry/api": "1.7.0"
740
+ }
741
+ },
742
+ "node_modules/@conduit-client/service-instrumentation-noop/node_modules/@opentelemetry/api": {
743
+ "version": "1.7.0",
744
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
745
+ "integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
746
+ "license": "Apache-2.0",
747
+ "engines": {
748
+ "node": ">=8.0.0"
749
+ }
750
+ },
751
+ "node_modules/@conduit-client/service-instrumentation-o11y": {
752
+ "version": "3.19.6",
753
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-o11y/-/service-instrumentation-o11y-3.19.6.tgz",
754
+ "integrity": "sha512-NQU9jeob5ARas8HpcyMADvhEyQk76YaBvWV6qGdQi22vPK636FCZDucysL++Q2iCSrszX5SS++0q4HEQo1mFog==",
755
+ "license": "SEE LICENSE IN LICENSE.txt",
756
+ "dependencies": {
757
+ "@conduit-client/service-instrumentation-types": "3.19.6",
758
+ "@conduit-client/utils": "3.19.6",
759
+ "@opentelemetry/api": "1.7.0",
760
+ "o11y": "252.7.0"
761
+ }
762
+ },
763
+ "node_modules/@conduit-client/service-instrumentation-o11y/node_modules/@opentelemetry/api": {
764
+ "version": "1.7.0",
765
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
766
+ "integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
767
+ "license": "Apache-2.0",
768
+ "engines": {
769
+ "node": ">=8.0.0"
770
+ }
771
+ },
772
+ "node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y": {
773
+ "version": "252.7.0",
774
+ "resolved": "https://registry.npmjs.org/o11y/-/o11y-252.7.0.tgz",
775
+ "integrity": "sha512-/P79vBumoxplQ4aqjW8GoVEMk7Uj50HOmZQAyNtu/FE8FuPXSh9rnkguxUDfN5l1oWI8Eyktrnu3XRs56OkQVQ==",
776
+ "license": "BSD-3-Clause",
777
+ "dependencies": {
778
+ "o11y_schema": "252.11.0",
779
+ "protobufjs": "7.2.4",
780
+ "web-vitals": "3.5.2"
781
+ }
782
+ },
783
+ "node_modules/@conduit-client/service-instrumentation-o11y/node_modules/o11y_schema": {
784
+ "version": "252.11.0",
785
+ "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-252.11.0.tgz",
786
+ "integrity": "sha512-gdzht1/LRbnJZZGtR2M6ACopNLiwuUs0yP8OGnDbpCTJITwDS9S5wb7qbxUMY2kyhXkGR3oD8RY0C1S6+/1rRQ==",
787
+ "license": "BSD-3-Clause"
788
+ },
789
+ "node_modules/@conduit-client/service-instrumentation-o11y/node_modules/protobufjs": {
790
+ "version": "7.2.4",
791
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz",
792
+ "integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==",
793
+ "hasInstallScript": true,
794
+ "license": "BSD-3-Clause",
795
+ "dependencies": {
796
+ "@protobufjs/aspromise": "^1.1.2",
797
+ "@protobufjs/base64": "^1.1.2",
798
+ "@protobufjs/codegen": "^2.0.4",
799
+ "@protobufjs/eventemitter": "^1.1.0",
800
+ "@protobufjs/fetch": "^1.1.0",
801
+ "@protobufjs/float": "^1.0.2",
802
+ "@protobufjs/inquire": "^1.1.0",
803
+ "@protobufjs/path": "^1.1.2",
804
+ "@protobufjs/pool": "^1.1.0",
805
+ "@protobufjs/utf8": "^1.1.0",
806
+ "@types/node": ">=13.7.0",
807
+ "long": "^5.0.0"
808
+ },
809
+ "engines": {
810
+ "node": ">=12.0.0"
811
+ }
812
+ },
813
+ "node_modules/@conduit-client/service-instrumentation-o11y/node_modules/web-vitals": {
814
+ "version": "3.5.2",
815
+ "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz",
816
+ "integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==",
817
+ "license": "Apache-2.0"
818
+ },
819
+ "node_modules/@conduit-client/service-instrumentation-types": {
820
+ "version": "3.19.6",
821
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-instrumentation-types/-/service-instrumentation-types-3.19.6.tgz",
822
+ "integrity": "sha512-BZ6BsYa2StM2+bGWnv/cB4SXaS9fCTQX1bL9z0UqIZbPmBYhtr640/SirAl8z2pqnl0Qd5OZnYAlpyLSqJoKOg==",
823
+ "license": "SEE LICENSE IN LICENSE.txt",
824
+ "dependencies": {
825
+ "@conduit-client/utils": "3.19.6",
826
+ "@opentelemetry/api": "1.7.0"
827
+ }
828
+ },
829
+ "node_modules/@conduit-client/service-instrumentation-types/node_modules/@opentelemetry/api": {
830
+ "version": "1.7.0",
831
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
832
+ "integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
833
+ "license": "Apache-2.0",
834
+ "engines": {
835
+ "node": ">=8.0.0"
836
+ }
837
+ },
838
+ "node_modules/@conduit-client/service-instrumentation/node_modules/@opentelemetry/api": {
839
+ "version": "1.7.0",
840
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.7.0.tgz",
841
+ "integrity": "sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==",
842
+ "license": "Apache-2.0",
843
+ "engines": {
844
+ "node": ">=8.0.0"
845
+ }
846
+ },
847
+ "node_modules/@conduit-client/service-pubsub": {
848
+ "version": "3.19.6",
849
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-pubsub/-/service-pubsub-3.19.6.tgz",
850
+ "integrity": "sha512-HgWWiXMX43jorZNtqEHx/8cxRImcga6ycjCS6NRPnYStsndIBZIR53GnKcXbPvvaO/v5BhA3WWiWwSYe38OF2A==",
605
851
  "license": "SEE LICENSE IN LICENSE.txt",
606
852
  "dependencies": {
607
- "@conduit-client/jwt-manager": "3.17.0",
608
- "@conduit-client/service-retry": "3.17.0",
609
- "@conduit-client/utils": "3.17.0"
853
+ "@conduit-client/utils": "3.19.6"
610
854
  }
611
855
  },
612
856
  "node_modules/@conduit-client/service-retry": {
613
- "version": "3.17.0",
614
- "resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.17.0.tgz",
615
- "integrity": "sha512-IrjXZUltgx7P47/cniQfvQF6H2jMlsOCOUcNGm4B1fRQpi8dyv2/Rh7VQUbIRSfYsIIJA1x/yf/BdY8Mo4Q8Jw==",
857
+ "version": "3.19.6",
858
+ "resolved": "https://registry.npmjs.org/@conduit-client/service-retry/-/service-retry-3.19.6.tgz",
859
+ "integrity": "sha512-Zb1V2un+X3iFFN/eiY+V+G9cfvRqK2ppHjKWVF+SXRY52fOKVbEvbRA/n/YM/xemfA4PiMcmNzOrhvHwYNImaw==",
616
860
  "license": "SEE LICENSE IN LICENSE.txt",
617
861
  "dependencies": {
618
- "@conduit-client/utils": "3.17.0"
862
+ "@conduit-client/utils": "3.19.6"
619
863
  }
620
864
  },
621
865
  "node_modules/@conduit-client/utils": {
622
- "version": "3.17.0",
623
- "resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.17.0.tgz",
624
- "integrity": "sha512-jeq1b3I/Bxe9XHQ2CjBZcc+mkY1TxUtjuowmF8iw9A6PZYG5Sl2TMxyCtbZySHxbHMdWWc3JDJuVwc/m7do0eg==",
866
+ "version": "3.19.6",
867
+ "resolved": "https://registry.npmjs.org/@conduit-client/utils/-/utils-3.19.6.tgz",
868
+ "integrity": "sha512-sEE8RIz1+LxPJJVkBsSATgQBEn91pKdiEahUqisnodmnct+uLbI+bi/k4NPXoNMSIZM7W2VgEWFQDHF2GXZ28w==",
625
869
  "license": "SEE LICENSE IN LICENSE.txt"
626
870
  },
627
871
  "node_modules/@csstools/color-helpers": {
@@ -746,9 +990,9 @@
746
990
  "license": "MIT"
747
991
  },
748
992
  "node_modules/@dotenvx/dotenvx": {
749
- "version": "1.69.1",
750
- "resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.69.1.tgz",
751
- "integrity": "sha512-kwQB5KcAegxw/+NGUgXAo5ovyOSjlMhoXSSnSEpDhoHJwzMcMO0HE1U0VCYZ7jbAeCMGamed9XdWzOA5ixtTNg==",
993
+ "version": "1.69.2",
994
+ "resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.69.2.tgz",
995
+ "integrity": "sha512-60Vh31k5bAAPq57Isx+Iopl2FrZQzZyUc4kh/OESgXiwhrKXqdxEn3JGTGSawng1DkkeC4jofFq1VpPJqNQx4w==",
752
996
  "license": "BSD-3-Clause",
753
997
  "dependencies": {
754
998
  "commander": "^11.1.0",
@@ -3131,6 +3375,16 @@
3131
3375
  "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
3132
3376
  "license": "MIT"
3133
3377
  },
3378
+ "node_modules/@opentelemetry/api": {
3379
+ "version": "1.9.1",
3380
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.1.tgz",
3381
+ "integrity": "sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==",
3382
+ "extraneous": true,
3383
+ "license": "Apache-2.0",
3384
+ "engines": {
3385
+ "node": ">=8.0.0"
3386
+ }
3387
+ },
3134
3388
  "node_modules/@pinojs/redact": {
3135
3389
  "version": "0.4.0",
3136
3390
  "resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
@@ -3160,6 +3414,69 @@
3160
3414
  "dev": true,
3161
3415
  "license": "MIT"
3162
3416
  },
3417
+ "node_modules/@protobufjs/aspromise": {
3418
+ "version": "1.1.2",
3419
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
3420
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
3421
+ "license": "BSD-3-Clause"
3422
+ },
3423
+ "node_modules/@protobufjs/base64": {
3424
+ "version": "1.1.2",
3425
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
3426
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
3427
+ "license": "BSD-3-Clause"
3428
+ },
3429
+ "node_modules/@protobufjs/codegen": {
3430
+ "version": "2.0.5",
3431
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
3432
+ "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
3433
+ "license": "BSD-3-Clause"
3434
+ },
3435
+ "node_modules/@protobufjs/eventemitter": {
3436
+ "version": "1.1.1",
3437
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
3438
+ "integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
3439
+ "license": "BSD-3-Clause"
3440
+ },
3441
+ "node_modules/@protobufjs/fetch": {
3442
+ "version": "1.1.1",
3443
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
3444
+ "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
3445
+ "license": "BSD-3-Clause",
3446
+ "dependencies": {
3447
+ "@protobufjs/aspromise": "^1.1.1"
3448
+ }
3449
+ },
3450
+ "node_modules/@protobufjs/float": {
3451
+ "version": "1.0.2",
3452
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
3453
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
3454
+ "license": "BSD-3-Clause"
3455
+ },
3456
+ "node_modules/@protobufjs/inquire": {
3457
+ "version": "1.1.2",
3458
+ "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
3459
+ "integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
3460
+ "license": "BSD-3-Clause"
3461
+ },
3462
+ "node_modules/@protobufjs/path": {
3463
+ "version": "1.1.2",
3464
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
3465
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
3466
+ "license": "BSD-3-Clause"
3467
+ },
3468
+ "node_modules/@protobufjs/pool": {
3469
+ "version": "1.1.0",
3470
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
3471
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
3472
+ "license": "BSD-3-Clause"
3473
+ },
3474
+ "node_modules/@protobufjs/utf8": {
3475
+ "version": "1.1.1",
3476
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
3477
+ "integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
3478
+ "license": "BSD-3-Clause"
3479
+ },
3163
3480
  "node_modules/@radix-ui/number": {
3164
3481
  "version": "1.1.1",
3165
3482
  "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
@@ -5078,6 +5395,12 @@
5078
5395
  "node": ">=10"
5079
5396
  }
5080
5397
  },
5398
+ "node_modules/@salesforce/jsonrpc": {
5399
+ "version": "9.20.0",
5400
+ "resolved": "https://registry.npmjs.org/@salesforce/jsonrpc/-/jsonrpc-9.20.0.tgz",
5401
+ "integrity": "sha512-9e3JrvaaANcnksQ8wS6h0DVmnwh2LAVS9eu93byN/I8CZFvpMLycgf/yqzoaNBpmdbv9/4OaQH3hx46GblW+rA==",
5402
+ "license": "SEE LICENSE IN LICENSE.txt"
5403
+ },
5081
5404
  "node_modules/@salesforce/kit": {
5082
5405
  "version": "3.2.6",
5083
5406
  "resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.2.6.tgz",
@@ -5087,21 +5410,26 @@
5087
5410
  "@salesforce/ts-types": "^2.0.12"
5088
5411
  }
5089
5412
  },
5090
- "node_modules/@salesforce/sdk-core": {
5091
- "version": "1.135.0",
5092
- "resolved": "https://registry.npmjs.org/@salesforce/sdk-core/-/sdk-core-1.135.0.tgz",
5093
- "integrity": "sha512-oyCgqG6t2zYWD617izV7Pmg7O3RBhRTHfNlYnWAiBp19wyxrdgqHGJ/CnSs/ehlh32fUAuyrg1ihSHrbFQaCPw==",
5094
- "license": "SEE LICENSE IN LICENSE.txt"
5095
- },
5096
- "node_modules/@salesforce/sdk-data": {
5097
- "version": "1.135.0",
5098
- "resolved": "https://registry.npmjs.org/@salesforce/sdk-data/-/sdk-data-1.135.0.tgz",
5099
- "integrity": "sha512-A9ZPgl1GcJUxYF8VNaO6O+k11PZEhaXOiDnwLu5Mxe4IbdiRiSDjExSgF/1JyVlJwHRK/LcNJ+qrkMudyd1lKg==",
5413
+ "node_modules/@salesforce/platform-sdk": {
5414
+ "version": "9.20.0",
5415
+ "resolved": "https://registry.npmjs.org/@salesforce/platform-sdk/-/platform-sdk-9.20.0.tgz",
5416
+ "integrity": "sha512-WAf6BO4C4cJ01x6c7W8oPINM9D59rZyydVTiKCqQ2ZXG6gxPWhAmwP4xC69g9GSk4imQgfRQKbJUA35AeYg8YA==",
5100
5417
  "license": "SEE LICENSE IN LICENSE.txt",
5101
5418
  "dependencies": {
5102
- "@conduit-client/service-fetch-network": "3.17.0",
5103
- "@conduit-client/utils": "3.17.0",
5104
- "@salesforce/sdk-core": "^1.135.0"
5419
+ "@conduit-client/command-http-cache-control": "3.19.6",
5420
+ "@conduit-client/onestore-graphql-parser": "3.19.6",
5421
+ "@conduit-client/service-cache": "3.19.6",
5422
+ "@conduit-client/service-cache-control": "3.19.6",
5423
+ "@conduit-client/service-cache-inclusion-policy": "3.19.6",
5424
+ "@conduit-client/service-fetch-network": "3.19.6",
5425
+ "@conduit-client/service-pubsub": "3.19.6",
5426
+ "@conduit-client/service-retry": "3.19.6",
5427
+ "@conduit-client/utils": "3.19.6",
5428
+ "@salesforce/jsonrpc": "^9.20.0"
5429
+ },
5430
+ "peerDependencies": {
5431
+ "o11y": ">=260.0.0",
5432
+ "o11y_schema": ">=260.63.0"
5105
5433
  }
5106
5434
  },
5107
5435
  "node_modules/@salesforce/ts-types": {
@@ -5114,13 +5442,13 @@
5114
5442
  }
5115
5443
  },
5116
5444
  "node_modules/@salesforce/ui-bundle": {
5117
- "version": "1.135.0",
5118
- "resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-1.135.0.tgz",
5119
- "integrity": "sha512-swVDS9bIgtxLH7lLAAPUD+TZWvn1b/dLX5/Upezk5m8kMgFyuTrtQpgbB2yTG+PT7pzEQcR2XzFl2zmsc/bTgw==",
5445
+ "version": "9.20.0",
5446
+ "resolved": "https://registry.npmjs.org/@salesforce/ui-bundle/-/ui-bundle-9.20.0.tgz",
5447
+ "integrity": "sha512-wjkDsVvSSF3HcWY/n3laUvak4Aqc4J8btJtQimBS1LXJz8o6THnlej/2DgaYwcJKLCZfXAI+MUhha/CYMb0hNA==",
5120
5448
  "license": "SEE LICENSE IN LICENSE.txt",
5121
5449
  "dependencies": {
5122
5450
  "@salesforce/core": "^8.23.4",
5123
- "@salesforce/sdk-data": "^1.135.0",
5451
+ "@salesforce/platform-sdk": "^9.20.0",
5124
5452
  "micromatch": "^4.0.8",
5125
5453
  "path-to-regexp": "^8.3.0"
5126
5454
  },
@@ -5129,15 +5457,15 @@
5129
5457
  }
5130
5458
  },
5131
5459
  "node_modules/@salesforce/vite-plugin-ui-bundle": {
5132
- "version": "1.135.0",
5133
- "resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-1.135.0.tgz",
5134
- "integrity": "sha512-S7X2hh9kbv5GU1/8C8y5nGps+Z8Cpt7tpinHEyXE0X5NiHvVwYDol63OtlZsKEexYo2ZeiOv87XXDI+iFpIeBA==",
5460
+ "version": "9.20.0",
5461
+ "resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-ui-bundle/-/vite-plugin-ui-bundle-9.20.0.tgz",
5462
+ "integrity": "sha512-wwso2svFVyLofRcu9d+A6u0Gynt+LLrGzOuygo8MsNnJ+eugrXeADVDXzG8GPqXuuQ48Uh2Iz67oL6Yb1pPv7g==",
5135
5463
  "dev": true,
5136
5464
  "license": "SEE LICENSE IN LICENSE.txt",
5137
5465
  "dependencies": {
5138
5466
  "@babel/core": "^7.28.4",
5139
5467
  "@babel/helper-plugin-utils": "^7.28.3",
5140
- "@salesforce/ui-bundle": "^1.135.0"
5468
+ "@salesforce/ui-bundle": "^9.20.0"
5141
5469
  },
5142
5470
  "engines": {
5143
5471
  "node": ">=20.0.0"
@@ -12099,6 +12427,12 @@
12099
12427
  "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
12100
12428
  }
12101
12429
  },
12430
+ "node_modules/long": {
12431
+ "version": "5.3.2",
12432
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
12433
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
12434
+ "license": "Apache-2.0"
12435
+ },
12102
12436
  "node_modules/loose-envify": {
12103
12437
  "version": "1.4.0",
12104
12438
  "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
@@ -12723,6 +13057,32 @@
12723
13057
  "dev": true,
12724
13058
  "license": "MIT"
12725
13059
  },
13060
+ "node_modules/o11y": {
13061
+ "version": "264.6.0",
13062
+ "resolved": "https://registry.npmjs.org/o11y/-/o11y-264.6.0.tgz",
13063
+ "integrity": "sha512-v3x29+PphNaORbOrYi6ucsx391hwJk+mxf4XGGoRB6+BcI0W3/fhazaXBCBtEZOnU2YDLgpFd8B4CzCmBFiKFQ==",
13064
+ "license": "BSD-3-Clause",
13065
+ "peer": true,
13066
+ "dependencies": {
13067
+ "o11y_schema": "260.5.0",
13068
+ "protobufjs": "7.5.5",
13069
+ "web-vitals": "^5.1.0"
13070
+ }
13071
+ },
13072
+ "node_modules/o11y_schema": {
13073
+ "version": "264.70.0",
13074
+ "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.70.0.tgz",
13075
+ "integrity": "sha512-3FVh/krlBe1+CnQZUrZkIH1JsI7cpSxorbosSLXLOOPyE8wHNRXUT5hfaH2XlhlAQMneoK+EBM2uioRvoXZSHA==",
13076
+ "license": "BSD-3-Clause",
13077
+ "peer": true
13078
+ },
13079
+ "node_modules/o11y/node_modules/o11y_schema": {
13080
+ "version": "260.5.0",
13081
+ "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-260.5.0.tgz",
13082
+ "integrity": "sha512-0qrtqE394CODoPovUBdQQ2efHls6Z2xP6jvLitEGKSEj1KcCyeBLx2dHwTUtv66zwZTKjSp27QLFF4PZhengEQ==",
13083
+ "license": "BSD-3-Clause",
13084
+ "peer": true
13085
+ },
12726
13086
  "node_modules/object-assign": {
12727
13087
  "version": "4.1.1",
12728
13088
  "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
@@ -13710,6 +14070,31 @@
13710
14070
  "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
13711
14071
  "license": "ISC"
13712
14072
  },
14073
+ "node_modules/protobufjs": {
14074
+ "version": "7.5.5",
14075
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.5.tgz",
14076
+ "integrity": "sha512-3wY1AxV+VBNW8Yypfd1yQY9pXnqTAN+KwQxL8iYm3/BjKYMNg4i0owhEe26PWDOMaIrzeeF98Lqd5NGz4omiIg==",
14077
+ "hasInstallScript": true,
14078
+ "license": "BSD-3-Clause",
14079
+ "peer": true,
14080
+ "dependencies": {
14081
+ "@protobufjs/aspromise": "^1.1.2",
14082
+ "@protobufjs/base64": "^1.1.2",
14083
+ "@protobufjs/codegen": "^2.0.4",
14084
+ "@protobufjs/eventemitter": "^1.1.0",
14085
+ "@protobufjs/fetch": "^1.1.0",
14086
+ "@protobufjs/float": "^1.0.2",
14087
+ "@protobufjs/inquire": "^1.1.0",
14088
+ "@protobufjs/path": "^1.1.2",
14089
+ "@protobufjs/pool": "^1.1.0",
14090
+ "@protobufjs/utf8": "^1.1.0",
14091
+ "@types/node": ">=13.7.0",
14092
+ "long": "^5.0.0"
14093
+ },
14094
+ "engines": {
14095
+ "node": ">=12.0.0"
14096
+ }
14097
+ },
13713
14098
  "node_modules/proxy-addr": {
13714
14099
  "version": "2.0.7",
13715
14100
  "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
@@ -16679,6 +17064,13 @@
16679
17064
  "node": ">= 8"
16680
17065
  }
16681
17066
  },
17067
+ "node_modules/web-vitals": {
17068
+ "version": "5.3.0",
17069
+ "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-5.3.0.tgz",
17070
+ "integrity": "sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g==",
17071
+ "license": "Apache-2.0",
17072
+ "peer": true
17073
+ },
16682
17074
  "node_modules/webidl-conversions": {
16683
17075
  "version": "7.0.0",
16684
17076
  "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
@@ -18,8 +18,8 @@
18
18
  "graphql:schema": "node scripts/get-graphql-schema.mjs"
19
19
  },
20
20
  "dependencies": {
21
- "@salesforce/sdk-data": "^1.135.0",
22
- "@salesforce/ui-bundle": "^1.135.0",
21
+ "@salesforce/platform-sdk": "^9.20.0",
22
+ "@salesforce/ui-bundle": "^9.20.0",
23
23
  "@tailwindcss/vite": "^4.1.17",
24
24
  "class-variance-authority": "^0.7.1",
25
25
  "clsx": "^2.1.1",
@@ -44,7 +44,7 @@
44
44
  "@graphql-eslint/eslint-plugin": "^4.1.0",
45
45
  "@graphql-tools/utils": "^11.0.0",
46
46
  "@playwright/test": "^1.49.0",
47
- "@salesforce/vite-plugin-ui-bundle": "^1.135.0",
47
+ "@salesforce/vite-plugin-ui-bundle": "^9.20.0",
48
48
  "@testing-library/jest-dom": "^6.6.3",
49
49
  "@testing-library/react": "^16.1.0",
50
50
  "@testing-library/user-event": "^14.5.2",