@mcp-z/mcp-sheets 1.0.1 → 1.0.2
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { createConfig, parseConfig } from './config.js';
|
|
2
2
|
export { createHTTPServer } from './http.js';
|
|
3
|
-
export { createOAuthAdapters } from './oauth-google.js';
|
|
3
|
+
export { type AuthMiddleware, createOAuthAdapters, type OAuthAdapters, type OAuthRuntimeDeps } from './oauth-google.js';
|
|
4
4
|
export * from './runtime.js';
|
|
5
5
|
export { createStdioServer } from './stdio.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { createConfig, parseConfig } from './config.js';
|
|
2
2
|
export { createHTTPServer } from './http.js';
|
|
3
|
-
export { createOAuthAdapters } from './oauth-google.js';
|
|
3
|
+
export { type AuthMiddleware, createOAuthAdapters, type OAuthAdapters, type OAuthRuntimeDeps } from './oauth-google.js';
|
|
4
4
|
export * from './runtime.js';
|
|
5
5
|
export { createStdioServer } from './stdio.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/kevin/Dev/Projects/mcp-z/mcp-sheets/src/setup/index.ts"],"sourcesContent":["export { createConfig, parseConfig } from './config.ts';\nexport { createHTTPServer } from './http.ts';\nexport { createOAuthAdapters } from './oauth-google.ts';\nexport * from './runtime.ts';\nexport { createStdioServer } from './stdio.ts';\n"],"names":["createConfig","createHTTPServer","createOAuthAdapters","createStdioServer","parseConfig"],"mappings":";;;;;;;;;;;QAASA;eAAAA,sBAAY;;QACZC;eAAAA,wBAAgB;;
|
|
1
|
+
{"version":3,"sources":["/Users/kevin/Dev/Projects/mcp-z/mcp-sheets/src/setup/index.ts"],"sourcesContent":["export { createConfig, parseConfig } from './config.ts';\nexport { createHTTPServer } from './http.ts';\nexport { type AuthMiddleware, createOAuthAdapters, type OAuthAdapters, type OAuthRuntimeDeps } from './oauth-google.ts';\nexport * from './runtime.ts';\nexport { createStdioServer } from './stdio.ts';\n"],"names":["createConfig","createHTTPServer","createOAuthAdapters","createStdioServer","parseConfig"],"mappings":";;;;;;;;;;;QAASA;eAAAA,sBAAY;;QACZC;eAAAA,wBAAgB;;QACKC;eAAAA,kCAAmB;;QAExCC;eAAAA,0BAAiB;;QAJHC;eAAAA,qBAAW;;;wBAAQ;sBACT;6BACmE;qBACtF;uBACoB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { createConfig, parseConfig } from './config.js';
|
|
2
2
|
export { createHTTPServer } from './http.js';
|
|
3
|
-
export { createOAuthAdapters } from './oauth-google.js';
|
|
3
|
+
export { type AuthMiddleware, createOAuthAdapters, type OAuthAdapters, type OAuthRuntimeDeps } from './oauth-google.js';
|
|
4
4
|
export * from './runtime.js';
|
|
5
5
|
export { createStdioServer } from './stdio.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/kevin/Dev/Projects/mcp-z/mcp-sheets/src/setup/index.ts"],"sourcesContent":["export { createConfig, parseConfig } from './config.ts';\nexport { createHTTPServer } from './http.ts';\nexport { createOAuthAdapters } from './oauth-google.ts';\nexport * from './runtime.ts';\nexport { createStdioServer } from './stdio.ts';\n"],"names":["createConfig","parseConfig","createHTTPServer","createOAuthAdapters","createStdioServer"],"mappings":"AAAA,SAASA,YAAY,EAAEC,WAAW,QAAQ,cAAc;AACxD,SAASC,gBAAgB,QAAQ,YAAY;AAC7C,
|
|
1
|
+
{"version":3,"sources":["/Users/kevin/Dev/Projects/mcp-z/mcp-sheets/src/setup/index.ts"],"sourcesContent":["export { createConfig, parseConfig } from './config.ts';\nexport { createHTTPServer } from './http.ts';\nexport { type AuthMiddleware, createOAuthAdapters, type OAuthAdapters, type OAuthRuntimeDeps } from './oauth-google.ts';\nexport * from './runtime.ts';\nexport { createStdioServer } from './stdio.ts';\n"],"names":["createConfig","parseConfig","createHTTPServer","createOAuthAdapters","createStdioServer"],"mappings":"AAAA,SAASA,YAAY,EAAEC,WAAW,QAAQ,cAAc;AACxD,SAASC,gBAAgB,QAAQ,YAAY;AAC7C,SAA8BC,mBAAmB,QAAmD,oBAAoB;AACxH,cAAc,eAAe;AAC7B,SAASC,iBAAiB,QAAQ,aAAa"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-z/mcp-sheets",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server for Google Sheets integration with OAuth authentication, spreadsheet management, batch operations, and advanced formatting",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sheets",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"express": "^5.0.0",
|
|
80
80
|
"google-auth-library": "^10.0.0",
|
|
81
81
|
"googleapis": "^169.0.0",
|
|
82
|
-
"keyv-registry": "^0.
|
|
82
|
+
"keyv-registry": "^0.4.0",
|
|
83
83
|
"module-root-sync": "^2.0.0",
|
|
84
84
|
"pino": "^10.0.0",
|
|
85
85
|
"zod": "^4.0.0"
|