@kyoji2/intercom-cli 0.1.0 → 0.1.6
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 +40 -1
- package/dist/index.js +21645 -20721
- package/package.json +7 -3
- package/src/cli/registry.ts +924 -0
- package/src/client.ts +10 -0
- package/src/commands/admins.ts +2 -2
- package/src/commands/articles.ts +8 -8
- package/src/commands/auth.ts +3 -3
- package/src/commands/companies.ts +6 -6
- package/src/commands/contacts.ts +13 -13
- package/src/commands/conversations.ts +72 -15
- package/src/commands/events.ts +4 -4
- package/src/commands/index.ts +24 -10
- package/src/commands/overview.ts +4 -2
- package/src/commands/replyPayload.ts +46 -0
- package/src/commands/tags.ts +6 -6
- package/src/commands/ticketTypes.ts +76 -0
- package/src/commands/tickets.ts +398 -0
- package/src/index.ts +19 -623
- package/src/utils/config.ts +31 -24
- package/src/utils/index.ts +1 -0
- package/src/utils/output.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyoji2/intercom-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "AI-native CLI for Intercom - manage customer conversations, contacts, messages, and support",
|
|
5
5
|
"author": "kyoji2",
|
|
6
6
|
"repository": {
|
|
@@ -38,12 +38,16 @@
|
|
|
38
38
|
"lint:fix": "biome check --write ./src ./tests",
|
|
39
39
|
"format": "biome format --write ./src ./tests",
|
|
40
40
|
"build": "bun build src/index.ts --outdir dist --target bun && chmod +x dist/index.js",
|
|
41
|
-
"typecheck": "tsc --noEmit"
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"release": "bun run scripts/release.ts",
|
|
43
|
+
"release:patch": "bun run scripts/release.ts patch",
|
|
44
|
+
"release:minor": "bun run scripts/release.ts minor",
|
|
45
|
+
"release:major": "bun run scripts/release.ts major"
|
|
42
46
|
},
|
|
43
47
|
"dependencies": {
|
|
44
|
-
"intercom-client": "^7.0.1",
|
|
45
48
|
"@toon-format/toon": "^2.1.0",
|
|
46
49
|
"commander": "^14.0.2",
|
|
50
|
+
"intercom-client": "^7.0.1",
|
|
47
51
|
"ora": "^9.0.0",
|
|
48
52
|
"zod": "^4.3.5"
|
|
49
53
|
},
|