@smithery/sdk 4.2.0 → 4.2.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.
@@ -10,11 +10,13 @@ export type Session = {
10
10
  export type StatelessServerContext<TConfig = unknown> = {
11
11
  config: TConfig;
12
12
  env: Record<string, string | undefined>;
13
+ accessToken?: string;
13
14
  };
14
15
  export type StatefulServerContext<TConfig = unknown> = {
15
16
  config: TConfig;
16
17
  session: Session;
17
18
  env: Record<string, string | undefined>;
19
+ accessToken?: string;
18
20
  };
19
21
  export type ServerContext<TConfig = unknown> = StatelessServerContext<TConfig> | StatefulServerContext<TConfig>;
20
22
  export type SandboxServerContext = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithery/sdk",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "SDK to develop with Smithery",
5
5
  "type": "module",
6
6
  "repository": {