@devosurf/tesser-connectors 0.1.0-alpha.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/LICENSE +202 -0
- package/README.md +30 -0
- package/anthropic/index.ts +110 -0
- package/catalog/index.ts +66 -0
- package/claude-code/index.ts +204 -0
- package/github/index.ts +250 -0
- package/gmail/index.ts +420 -0
- package/google-calendar/index.ts +454 -0
- package/google-docs/index.ts +162 -0
- package/google-drive/index.ts +265 -0
- package/google-sheets/index.ts +361 -0
- package/http/index.ts +76 -0
- package/index.ts +15 -0
- package/manifest.json +794 -0
- package/package.json +31 -0
- package/pi/index.ts +230 -0
- package/providers/anthropic.ts +8 -0
- package/providers/github.ts +20 -0
- package/providers/google.ts +18 -0
- package/providers/resend.ts +8 -0
- package/providers/slack.ts +16 -0
- package/resend/index.ts +51 -0
- package/slack/index.ts +587 -0
package/index.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// GENERATED by `pnpm codegen` (connectors/scripts/codegen.ts) — do not edit.
|
|
2
|
+
// The registry is codegen-owned so connector authors never touch a global file (ADR-0012).
|
|
3
|
+
|
|
4
|
+
export { default as anthropic } from "./anthropic/index.js";
|
|
5
|
+
export { default as claudeCode } from "./claude-code/index.js";
|
|
6
|
+
export { default as github } from "./github/index.js";
|
|
7
|
+
export { default as gmail } from "./gmail/index.js";
|
|
8
|
+
export { default as googleCalendar } from "./google-calendar/index.js";
|
|
9
|
+
export { default as googleDocs } from "./google-docs/index.js";
|
|
10
|
+
export { default as googleDrive } from "./google-drive/index.js";
|
|
11
|
+
export { default as googleSheets } from "./google-sheets/index.js";
|
|
12
|
+
export { default as http } from "./http/index.js";
|
|
13
|
+
export { default as pi } from "./pi/index.js";
|
|
14
|
+
export { default as resend } from "./resend/index.js";
|
|
15
|
+
export { default as slack } from "./slack/index.js";
|