@assemblyline-agents/google-drive 0.1.0 → 2.0.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.
- package/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Configure `GOOGLE_DRIVE_MCP_URL` and `GOOGLE_DRIVE_MCP_TOKEN`, or pass the conne
|
|
|
14
14
|
|
|
15
15
|
## Part of Assembly Line
|
|
16
16
|
|
|
17
|
-
This package is part of [Assembly Line](https://github.com/jasonbadeaux/
|
|
17
|
+
This package is part of [Assembly Line](https://github.com/jasonbadeaux/assembly-line). See the [developer documentation](https://github.com/jasonbadeaux/assembly-line/tree/main/docs/developers) for setup, agent authoring, and deployment guides.
|
|
18
18
|
|
|
19
19
|
## License
|
|
20
20
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type McpPluginConnectionOptions } from "@assemblyline-agents/core";
|
|
2
2
|
export type GoogleDriveConnectionOptions = McpPluginConnectionOptions;
|
|
3
3
|
export declare function defineGoogleDriveConnection(options: GoogleDriveConnectionOptions): import("@assemblyline-agents/core").McpHttpClientConnectionDefinition;
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const assemblyLinePlugin: import("@assemblyline-agents/core").PluginModule;
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,0BAA0B,EAChC,MAAM,2BAA2B,CAAC;AAInC,MAAM,MAAM,4BAA4B,GAAG,0BAA0B,CAAC;AAEtE,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,4BAA4B,yEAEhF;AAED,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,0BAA0B,EAChC,MAAM,2BAA2B,CAAC;AAInC,MAAM,MAAM,4BAA4B,GAAG,0BAA0B,CAAC;AAEtE,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,4BAA4B,yEAEhF;AAED,eAAO,MAAM,kBAAkB,kDAA0C,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -3,5 +3,5 @@ const PLUGIN = connectionPluginMetadata("google-drive");
|
|
|
3
3
|
export function defineGoogleDriveConnection(options) {
|
|
4
4
|
return defineMcpPluginConnection(PLUGIN, options);
|
|
5
5
|
}
|
|
6
|
-
export const
|
|
6
|
+
export const assemblyLinePlugin = definePlugin({ connections: [PLUGIN] });
|
|
7
7
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EACzB,YAAY,EAEb,MAAM,2BAA2B,CAAC;AAEnC,MAAM,MAAM,GAAG,wBAAwB,CAAC,cAAc,CAAE,CAAC;AAIzD,MAAM,UAAU,2BAA2B,CAAC,OAAqC;IAC/E,OAAO,yBAAyB,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EACzB,YAAY,EAEb,MAAM,2BAA2B,CAAC;AAEnC,MAAM,MAAM,GAAG,wBAAwB,CAAC,cAAc,CAAE,CAAC;AAIzD,MAAM,UAAU,2BAA2B,CAAC,OAAqC;IAC/E,OAAO,yBAAyB,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,CAAC,MAAM,kBAAkB,GAAG,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@assemblyline-agents/google-drive",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@assemblyline-agents/core": "0.
|
|
12
|
+
"@assemblyline-agents/core": "2.0.0"
|
|
13
13
|
},
|
|
14
|
-
"description": "Official
|
|
14
|
+
"description": "Official Assembly Line Google Drive connection plugin.",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
17
|
"skills"
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/jasonbadeaux/
|
|
25
|
+
"url": "git+https://github.com/jasonbadeaux/assembly-line.git",
|
|
26
26
|
"directory": "packages/google-drive"
|
|
27
27
|
},
|
|
28
28
|
"bugs": {
|
|
29
|
-
"url": "https://github.com/jasonbadeaux/
|
|
29
|
+
"url": "https://github.com/jasonbadeaux/assembly-line/issues"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://github.com/jasonbadeaux/
|
|
32
|
-
"author": "
|
|
31
|
+
"homepage": "https://github.com/jasonbadeaux/assembly-line#readme",
|
|
32
|
+
"author": "Assembly Line contributors",
|
|
33
33
|
"keywords": [
|
|
34
|
-
"
|
|
34
|
+
"assembly-line",
|
|
35
35
|
"ai",
|
|
36
36
|
"agents",
|
|
37
37
|
"google-drive",
|