@myapihq/cli 1.0.61 → 1.0.65

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.
Files changed (52) hide show
  1. package/dist/commands/auth.js +13 -5
  2. package/dist/commands/config.d.ts +4 -4
  3. package/dist/commands/config.js +13 -13
  4. package/dist/commands/domain.d.ts +0 -1
  5. package/dist/commands/domain.js +10 -24
  6. package/dist/commands/funnel.js +7 -3
  7. package/dist/commands/keys.js +2 -2
  8. package/dist/commands/org.js +8 -4
  9. package/dist/commands/update.js +1 -1
  10. package/dist/index.js +6 -6
  11. package/dist/skills/my-api-hq/README.md +37 -0
  12. package/dist/skills/my-api-hq/SKILL.md +116 -0
  13. package/dist/skills/my-api-hq/claude/.claude-plugin/plugin.json +6 -0
  14. package/dist/skills/my-api-hq/make/.gitkeep +0 -0
  15. package/dist/skills/my-api-hq/n8n/.gitkeep +0 -0
  16. package/dist/skills/my-api-hq/openapi/.gitkeep +0 -0
  17. package/dist/skills/my-domain-api/README.md +37 -0
  18. package/dist/skills/my-domain-api/SKILL.md +83 -0
  19. package/dist/skills/my-domain-api/claude/.claude-plugin/plugin.json +6 -0
  20. package/dist/skills/my-domain-api/make/.gitkeep +0 -0
  21. package/dist/skills/my-domain-api/n8n/.gitkeep +0 -0
  22. package/dist/skills/my-domain-api/openapi/.gitkeep +0 -0
  23. package/dist/skills/my-funnel-api/README.md +39 -0
  24. package/dist/skills/my-funnel-api/SKILL.md +35 -0
  25. package/dist/skills/my-funnel-api/claude/.claude-plugin/plugin.json +6 -0
  26. package/dist/skills/my-funnel-api/make/.gitkeep +0 -0
  27. package/dist/skills/my-funnel-api/n8n/.gitkeep +0 -0
  28. package/dist/skills/my-funnel-api/openapi/.gitkeep +0 -0
  29. package/package.json +4 -1
  30. package/scripts/copy-skills.js +0 -13
  31. package/src/commands/auth.ts +0 -190
  32. package/src/commands/billing.ts +0 -92
  33. package/src/commands/config.ts +0 -71
  34. package/src/commands/domain.ts +0 -146
  35. package/src/commands/email.ts +0 -185
  36. package/src/commands/funnel.ts +0 -122
  37. package/src/commands/image.ts +0 -85
  38. package/src/commands/keys.ts +0 -68
  39. package/src/commands/org.ts +0 -134
  40. package/src/commands/pixel.ts +0 -62
  41. package/src/commands/setup.ts +0 -335
  42. package/src/commands/storage.ts +0 -56
  43. package/src/commands/update.ts +0 -89
  44. package/src/commands/url.ts +0 -28
  45. package/src/commands/webhook.ts +0 -66
  46. package/src/commands/workflow.ts +0 -102
  47. package/src/config.ts +0 -123
  48. package/src/index.ts +0 -200
  49. package/src/output.ts +0 -49
  50. package/src/utils.ts +0 -45
  51. package/thank-you.html +0 -56
  52. package/tsconfig.json +0 -15
package/tsconfig.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "declaration": true,
7
- "outDir": "./dist",
8
- "rootDir": "./src",
9
- "strict": true,
10
- "esModuleInterop": true,
11
- "skipLibCheck": true,
12
- "forceConsistentCasingInFileNames": true
13
- },
14
- "include": ["src/**/*"]
15
- }