@hasna/connectors 0.1.0 → 0.2.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 +191 -0
- package/README.md +19 -13
- package/bin/index.js +171 -69
- package/bin/mcp.js +24 -18
- package/bin/serve.js +94 -32
- package/connectors/connect-anthropic/package.json +2 -2
- package/connectors/connect-aws/package.json +2 -2
- package/connectors/connect-brandsight/package.json +2 -2
- package/connectors/connect-cloudflare/.env.example +0 -5
- package/connectors/connect-cloudflare/package.json +2 -2
- package/connectors/connect-discord/package.json +2 -2
- package/connectors/connect-docker/package.json +2 -2
- package/connectors/connect-e2b/package.json +2 -2
- package/connectors/connect-elevenlabs/package.json +2 -2
- package/connectors/connect-exa/package.json +2 -2
- package/connectors/connect-figma/package.json +2 -2
- package/connectors/connect-firecrawl/package.json +2 -2
- package/connectors/connect-github/package.json +2 -2
- package/connectors/connect-gmail/package.json +2 -2
- package/connectors/connect-google/package.json +2 -2
- package/connectors/connect-googlecalendar/package.json +2 -2
- package/connectors/connect-googlecloud/package.json +2 -2
- package/connectors/connect-googlecontacts/package.json +2 -2
- package/connectors/connect-googledocs/package.json +2 -2
- package/connectors/connect-googledrive/package.json +2 -2
- package/connectors/connect-googlegemini/package.json +2 -2
- package/connectors/connect-googlesheets/package.json +2 -2
- package/connectors/connect-googletasks/package.json +2 -2
- package/connectors/connect-hedra/package.json +2 -2
- package/connectors/connect-heygen/package.json +2 -2
- package/connectors/connect-huggingface/package.json +2 -2
- package/connectors/connect-icons8/package.json +2 -2
- package/connectors/connect-maropost/package.json +2 -2
- package/connectors/connect-mercury/package.json +2 -2
- package/connectors/connect-meta/package.json +2 -2
- package/connectors/connect-midjourney/package.json +2 -2
- package/connectors/connect-mistral/package.json +2 -2
- package/connectors/connect-mixpanel/package.json +2 -2
- package/connectors/connect-notion/.env.example +0 -5
- package/connectors/connect-notion/package.json +2 -2
- package/connectors/connect-openai/package.json +2 -2
- package/connectors/connect-openweathermap/package.json +2 -2
- package/connectors/connect-pandadoc/package.json +2 -2
- package/connectors/connect-quo/package.json +2 -2
- package/connectors/connect-reddit/package.json +2 -2
- package/connectors/connect-reducto/package.json +1 -1
- package/connectors/connect-resend/package.json +2 -2
- package/connectors/connect-revolut/package.json +2 -2
- package/connectors/connect-sedo/package.json +2 -2
- package/connectors/connect-sentry/package.json +2 -2
- package/connectors/connect-shadcn/package.json +2 -2
- package/connectors/connect-snap/package.json +2 -2
- package/connectors/connect-stabilityai/package.json +2 -2
- package/connectors/connect-stripe/package.json +2 -2
- package/connectors/connect-stripeatlas/package.json +2 -2
- package/connectors/connect-substack/package.json +2 -2
- package/connectors/connect-tiktok/package.json +2 -2
- package/connectors/connect-tinker/package.json +2 -2
- package/connectors/connect-twilio/package.json +4 -4
- package/connectors/connect-uspto/package.json +2 -2
- package/connectors/connect-x/package.json +2 -2
- package/connectors/connect-xads/package.json +2 -2
- package/connectors/connect-xai/package.json +2 -2
- package/connectors/connect-youtube/package.json +2 -2
- package/connectors/connect-zoom/package.json +2 -2
- package/dist/cli/cli.test.d.ts +1 -0
- package/dist/cli/components/App.d.ts +6 -0
- package/dist/cli/components/CategorySelect.d.ts +6 -0
- package/dist/cli/components/ConnectorSelect.d.ts +10 -0
- package/dist/cli/components/Header.d.ts +6 -0
- package/dist/cli/components/InstallProgress.d.ts +8 -0
- package/dist/cli/components/SearchView.d.ts +8 -0
- package/dist/cli/components/components.test.d.ts +1 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +11 -16
- package/dist/lib/installer.d.ts +55 -0
- package/dist/lib/installer.test.d.ts +1 -0
- package/dist/lib/registry.d.ts +18 -0
- package/dist/lib/registry.test.d.ts +1 -0
- package/dist/mcp/index.d.ts +2 -0
- package/dist/mcp/mcp.test.d.ts +1 -0
- package/dist/server/auth.d.ts +70 -0
- package/dist/server/dashboard.d.ts +5 -0
- package/dist/server/index.d.ts +6 -0
- package/dist/server/serve.d.ts +12 -0
- package/dist/server/server.test.d.ts +1 -0
- package/package.json +5 -4
- package/connectors/connect-browseruse/.env.example +0 -7
- package/connectors/connect-browseruse/.npmrc.example +0 -2
- package/connectors/connect-browseruse/AGENTS.md +0 -172
- package/connectors/connect-browseruse/CLAUDE.md +0 -172
- package/connectors/connect-browseruse/GEMINI.md +0 -172
- package/connectors/connect-browseruse/README.md +0 -153
- package/connectors/connect-browseruse/package.json +0 -52
- package/connectors/connect-browseruse/src/api/billing.ts +0 -32
- package/connectors/connect-browseruse/src/api/browsers.ts +0 -50
- package/connectors/connect-browseruse/src/api/client.ts +0 -168
- package/connectors/connect-browseruse/src/api/files.ts +0 -70
- package/connectors/connect-browseruse/src/api/index.ts +0 -95
- package/connectors/connect-browseruse/src/api/profiles.ts +0 -59
- package/connectors/connect-browseruse/src/api/sessions.ts +0 -88
- package/connectors/connect-browseruse/src/api/skills.ts +0 -194
- package/connectors/connect-browseruse/src/api/tasks.ts +0 -127
- package/connectors/connect-browseruse/src/cli/index.ts +0 -888
- package/connectors/connect-browseruse/src/index.ts +0 -35
- package/connectors/connect-browseruse/src/types/index.ts +0 -312
- package/connectors/connect-browseruse/src/utils/config.ts +0 -212
- package/connectors/connect-browseruse/src/utils/output.ts +0 -119
- package/connectors/connect-browseruse/tsconfig.json +0 -16
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"hasna"
|
|
33
33
|
],
|
|
34
34
|
"author": "Hasna",
|
|
35
|
-
"license": "
|
|
35
|
+
"license": "Apache-2.0",
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/bun": "latest",
|
|
38
38
|
"typescript": "^5"
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
},
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "git+https://github.com/hasna/
|
|
49
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"hasna"
|
|
32
32
|
],
|
|
33
33
|
"author": "Hasna",
|
|
34
|
-
"license": "
|
|
34
|
+
"license": "Apache-2.0",
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/bun": "latest",
|
|
37
37
|
"typescript": "^5"
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|
|
47
47
|
"type": "git",
|
|
48
|
-
"url": "git+https://github.com/hasna/
|
|
48
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"hasna"
|
|
39
39
|
],
|
|
40
40
|
"author": "Hasna",
|
|
41
|
-
"license": "
|
|
41
|
+
"license": "Apache-2.0",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/bun": "latest",
|
|
44
44
|
"typescript": "^5"
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/hasna/
|
|
55
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"hasna"
|
|
39
39
|
],
|
|
40
40
|
"author": "Hasna",
|
|
41
|
-
"license": "
|
|
41
|
+
"license": "Apache-2.0",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/bun": "latest",
|
|
44
44
|
"typescript": "^5"
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/hasna/
|
|
55
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"hasna"
|
|
39
39
|
],
|
|
40
40
|
"author": "Hasna",
|
|
41
|
-
"license": "
|
|
41
|
+
"license": "Apache-2.0",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/bun": "latest",
|
|
44
44
|
"typescript": "^5"
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/hasna/
|
|
55
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"hasna"
|
|
37
37
|
],
|
|
38
38
|
"author": "Hasna",
|
|
39
|
-
"license": "
|
|
39
|
+
"license": "Apache-2.0",
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "latest",
|
|
42
42
|
"typescript": "^5"
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/hasna/
|
|
53
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"hasna"
|
|
33
33
|
],
|
|
34
34
|
"author": "Hasna",
|
|
35
|
-
"license": "
|
|
35
|
+
"license": "Apache-2.0",
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/bun": "^1.3.8",
|
|
38
38
|
"typescript": "^5"
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
},
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "git+https://github.com/hasna/
|
|
49
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"hasna"
|
|
42
42
|
],
|
|
43
43
|
"author": "Hasna",
|
|
44
|
-
"license": "
|
|
44
|
+
"license": "Apache-2.0",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/bun": "latest",
|
|
47
47
|
"typescript": "^5"
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
},
|
|
56
56
|
"repository": {
|
|
57
57
|
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/hasna/
|
|
58
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"hasna"
|
|
43
43
|
],
|
|
44
44
|
"author": "Hasna",
|
|
45
|
-
"license": "
|
|
45
|
+
"license": "Apache-2.0",
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/bun": "latest",
|
|
48
48
|
"typescript": "^5"
|
|
@@ -56,6 +56,6 @@
|
|
|
56
56
|
},
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
|
-
"url": "git+https://github.com/hasna/
|
|
59
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"hasna"
|
|
39
39
|
],
|
|
40
40
|
"author": "Hasna",
|
|
41
|
-
"license": "
|
|
41
|
+
"license": "Apache-2.0",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/bun": "latest",
|
|
44
44
|
"typescript": "^5"
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/hasna/
|
|
55
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"hasna"
|
|
42
42
|
],
|
|
43
43
|
"author": "Hasna",
|
|
44
|
-
"license": "
|
|
44
|
+
"license": "Apache-2.0",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/bun": "latest",
|
|
47
47
|
"typescript": "^5"
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
},
|
|
56
56
|
"repository": {
|
|
57
57
|
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/hasna/
|
|
58
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"hasna"
|
|
36
36
|
],
|
|
37
37
|
"author": "Hasna",
|
|
38
|
-
"license": "
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/bun": "latest",
|
|
41
41
|
"typescript": "^5"
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
},
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/hasna/
|
|
52
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -3,8 +3,3 @@
|
|
|
3
3
|
|
|
4
4
|
# Optional: Override the default API base URL
|
|
5
5
|
# {{SERVICE_NAME_UPPER}}_BASE_URL=https://api.{{CONNECTOR_NAME}}.com
|
|
6
|
-
|
|
7
|
-
# AWS Infrastructure (auto-configured for deployment)
|
|
8
|
-
# EC2_INSTANCE=beepmedia-prod-connect-{{CONNECTOR_NAME}}
|
|
9
|
-
# RDS_DATABASE=beepmedia-prod-connect-{{CONNECTOR_NAME}}
|
|
10
|
-
# S3_BUCKET=beepmedia-prod-connect-{{CONNECTOR_NAME}}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"properties"
|
|
33
33
|
],
|
|
34
34
|
"author": "Hasna",
|
|
35
|
-
"license": "
|
|
35
|
+
"license": "Apache-2.0",
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/bun": "latest",
|
|
38
38
|
"typescript": "^5"
|
|
@@ -51,6 +51,6 @@
|
|
|
51
51
|
},
|
|
52
52
|
"repository": {
|
|
53
53
|
"type": "git",
|
|
54
|
-
"url": "git+https://github.com/hasna/
|
|
54
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"hasna"
|
|
43
43
|
],
|
|
44
44
|
"author": "Hasna",
|
|
45
|
-
"license": "
|
|
45
|
+
"license": "Apache-2.0",
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/bun": "latest",
|
|
48
48
|
"typescript": "^5"
|
|
@@ -56,6 +56,6 @@
|
|
|
56
56
|
},
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
|
-
"url": "git+https://github.com/hasna/
|
|
59
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"hasna"
|
|
34
34
|
],
|
|
35
35
|
"author": "Hasna",
|
|
36
|
-
"license": "
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/bun": "latest",
|
|
39
39
|
"typescript": "^5"
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
},
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|
|
50
|
-
"url": "git+https://github.com/hasna/
|
|
50
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
51
51
|
}
|
|
52
52
|
}
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"hasna"
|
|
39
39
|
],
|
|
40
40
|
"author": "Hasna",
|
|
41
|
-
"license": "
|
|
41
|
+
"license": "Apache-2.0",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/bun": "latest",
|
|
44
44
|
"typescript": "^5"
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/hasna/
|
|
55
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"hasna"
|
|
40
40
|
],
|
|
41
41
|
"author": "Hasna",
|
|
42
|
-
"license": "
|
|
42
|
+
"license": "Apache-2.0",
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/bun": "latest",
|
|
45
45
|
"typescript": "^5"
|
|
@@ -53,6 +53,6 @@
|
|
|
53
53
|
},
|
|
54
54
|
"repository": {
|
|
55
55
|
"type": "git",
|
|
56
|
-
"url": "git+https://github.com/hasna/
|
|
56
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"hasna"
|
|
32
32
|
],
|
|
33
33
|
"author": "Hasna",
|
|
34
|
-
"license": "
|
|
34
|
+
"license": "Apache-2.0",
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/bun": "latest",
|
|
37
37
|
"typescript": "^5"
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|
|
47
47
|
"type": "git",
|
|
48
|
-
"url": "git+https://github.com/hasna/
|
|
48
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"hasna"
|
|
40
40
|
],
|
|
41
41
|
"author": "Hasna",
|
|
42
|
-
"license": "
|
|
42
|
+
"license": "Apache-2.0",
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/bun": "latest",
|
|
45
45
|
"typescript": "^5"
|
|
@@ -53,6 +53,6 @@
|
|
|
53
53
|
},
|
|
54
54
|
"repository": {
|
|
55
55
|
"type": "git",
|
|
56
|
-
"url": "git+https://github.com/hasna/
|
|
56
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"hasna"
|
|
36
36
|
],
|
|
37
37
|
"author": "Hasna",
|
|
38
|
-
"license": "
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/bun": "latest",
|
|
41
41
|
"typescript": "^5"
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
},
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/hasna/
|
|
52
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"version": "0.1.0",
|
|
4
4
|
"description": "Sedo Domain Marketplace API connector CLI - Search, list, and manage domains on Sedo",
|
|
5
5
|
"author": "Hasna",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
],
|
|
49
49
|
"repository": {
|
|
50
50
|
"type": "git",
|
|
51
|
-
"url": "git+https://github.com/hasna/
|
|
51
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
52
52
|
},
|
|
53
53
|
"private": true
|
|
54
54
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"hasna"
|
|
37
37
|
],
|
|
38
38
|
"author": "Hasna",
|
|
39
|
-
"license": "
|
|
39
|
+
"license": "Apache-2.0",
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "latest",
|
|
42
42
|
"typescript": "^5"
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/hasna/
|
|
53
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"hasna"
|
|
37
37
|
],
|
|
38
38
|
"author": "Hasna",
|
|
39
|
-
"license": "
|
|
39
|
+
"license": "Apache-2.0",
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "latest",
|
|
42
42
|
"typescript": "^5"
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/hasna/
|
|
53
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"hasna"
|
|
44
44
|
],
|
|
45
45
|
"author": "Hasna",
|
|
46
|
-
"license": "
|
|
46
|
+
"license": "Apache-2.0",
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/bun": "latest",
|
|
49
49
|
"typescript": "^5"
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
},
|
|
58
58
|
"repository": {
|
|
59
59
|
"type": "git",
|
|
60
|
-
"url": "git+https://github.com/hasna/
|
|
60
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"hasna"
|
|
45
45
|
],
|
|
46
46
|
"author": "Hasna",
|
|
47
|
-
"license": "
|
|
47
|
+
"license": "Apache-2.0",
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/bun": "latest",
|
|
50
50
|
"typescript": "^5"
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
|
61
|
-
"url": "git+https://github.com/hasna/
|
|
61
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
62
62
|
}
|
|
63
63
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"hasna"
|
|
37
37
|
],
|
|
38
38
|
"author": "Hasna",
|
|
39
|
-
"license": "
|
|
39
|
+
"license": "Apache-2.0",
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "latest",
|
|
42
42
|
"typescript": "^5"
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/hasna/
|
|
53
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"hasna"
|
|
38
38
|
],
|
|
39
39
|
"author": "Hasna",
|
|
40
|
-
"license": "
|
|
40
|
+
"license": "Apache-2.0",
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/bun": "latest",
|
|
43
43
|
"typescript": "^5"
|
|
@@ -52,6 +52,6 @@
|
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/hasna/
|
|
55
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"hasna"
|
|
33
33
|
],
|
|
34
34
|
"author": "Hasna",
|
|
35
|
-
"license": "
|
|
35
|
+
"license": "Apache-2.0",
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/bun": "latest",
|
|
38
38
|
"typescript": "^5"
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
},
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "git+https://github.com/hasna/
|
|
49
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"hasna"
|
|
42
42
|
],
|
|
43
43
|
"author": "Hasna",
|
|
44
|
-
"license": "
|
|
44
|
+
"license": "Apache-2.0",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/bun": "latest",
|
|
47
47
|
"typescript": "^5"
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
},
|
|
56
56
|
"repository": {
|
|
57
57
|
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/hasna/
|
|
58
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"hasna"
|
|
37
37
|
],
|
|
38
38
|
"author": "Hasna",
|
|
39
|
-
"license": "
|
|
39
|
+
"license": "Apache-2.0",
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "latest",
|
|
42
42
|
"typescript": "^5"
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/hasna/
|
|
53
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "git+https://github.com/hasna/
|
|
33
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
34
34
|
},
|
|
35
|
-
"homepage": "https://github.com/hasna/
|
|
35
|
+
"homepage": "https://github.com/hasna/connectors#readme",
|
|
36
36
|
"bugs": {
|
|
37
|
-
"url": "https://github.com/hasna/
|
|
37
|
+
"url": "https://github.com/hasna/connectors/issues"
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|
|
40
40
|
"twilio",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"hasna"
|
|
52
52
|
],
|
|
53
53
|
"author": "Hasna",
|
|
54
|
-
"license": "
|
|
54
|
+
"license": "Apache-2.0",
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/bun": "latest",
|
|
57
57
|
"typescript": "^5"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"hasna"
|
|
35
35
|
],
|
|
36
36
|
"author": "Hasna",
|
|
37
|
-
"license": "
|
|
37
|
+
"license": "Apache-2.0",
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bun": "latest",
|
|
40
40
|
"typescript": "^5"
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
},
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/hasna/
|
|
52
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"hasna"
|
|
40
40
|
],
|
|
41
41
|
"author": "Hasna",
|
|
42
|
-
"license": "
|
|
42
|
+
"license": "Apache-2.0",
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/bun": "latest",
|
|
45
45
|
"typescript": "^5"
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
},
|
|
55
55
|
"repository": {
|
|
56
56
|
"type": "git",
|
|
57
|
-
"url": "git+https://github.com/hasna/
|
|
57
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"hasna"
|
|
30
30
|
],
|
|
31
31
|
"author": "Hasna",
|
|
32
|
-
"license": "
|
|
32
|
+
"license": "Apache-2.0",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"chalk": "^5.3.0",
|
|
35
35
|
"commander": "^12.1.0"
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
],
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|
|
50
|
-
"url": "git+https://github.com/hasna/
|
|
50
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
51
51
|
}
|
|
52
52
|
}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"hasna"
|
|
42
42
|
],
|
|
43
43
|
"author": "Hasna",
|
|
44
|
-
"license": "
|
|
44
|
+
"license": "Apache-2.0",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/bun": "latest",
|
|
47
47
|
"typescript": "^5"
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
},
|
|
56
56
|
"repository": {
|
|
57
57
|
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/hasna/
|
|
58
|
+
"url": "git+https://github.com/hasna/connectors.git"
|
|
59
59
|
}
|
|
60
60
|
}
|