@mcp-ts/sdk 2.4.4 → 2.4.5

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.
@@ -634,12 +634,8 @@ function useMcp(options) {
634
634
  }
635
635
  var OAUTH_STATE_SEPARATOR = ".";
636
636
  nanoid.customAlphabet(
637
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
638
- 1
639
- );
640
- nanoid.customAlphabet(
641
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
642
- 11
637
+ "abcdefghijklmnopqrstuvwxyz0123456789",
638
+ 12
643
639
  );
644
640
  function parseOAuthState(state) {
645
641
  const separatorIndex = state.indexOf(OAUTH_STATE_SEPARATOR);