@mailmodo/cli 1.0.0 → 1.0.1-beta.pr63.113
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 +0 -43
- package/oclif.manifest.json +71 -71
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
- [SDK / App Integration](#sdk--app-integration)
|
|
36
36
|
- [Configuration](#configuration)
|
|
37
37
|
- [AI Agent Support](#ai-agent-support)
|
|
38
|
-
- [Contributing](#contributing)
|
|
39
38
|
|
|
40
39
|
---
|
|
41
40
|
|
|
@@ -780,48 +779,6 @@ mailmodo edit welcome --change "add a P.S. with the link to our docs" --yes --js
|
|
|
780
779
|
mailmodo deploy --yes --json
|
|
781
780
|
```
|
|
782
781
|
|
|
783
|
-
---
|
|
784
|
-
|
|
785
|
-
## Contributing
|
|
786
|
-
|
|
787
|
-
Contributions are welcome. This is an open-source project and issues, bug reports, and pull requests are appreciated.
|
|
788
|
-
|
|
789
|
-
```bash
|
|
790
|
-
# Clone and install
|
|
791
|
-
git clone https://github.com/Mailmodo/mailmodo-cli.git
|
|
792
|
-
cd mailmodo-cli
|
|
793
|
-
npm install
|
|
794
|
-
|
|
795
|
-
# Build
|
|
796
|
-
npm run build
|
|
797
|
-
|
|
798
|
-
# Run a command without building
|
|
799
|
-
node ./bin/run.js <command>
|
|
800
|
-
|
|
801
|
-
# Run tests
|
|
802
|
-
npm test
|
|
803
|
-
|
|
804
|
-
# Run a single test file
|
|
805
|
-
npx mocha --loader ts-node/esm test/commands/<name>/index.test.ts
|
|
806
|
-
|
|
807
|
-
# Lint
|
|
808
|
-
npm run lint
|
|
809
|
-
```
|
|
810
|
-
|
|
811
|
-
**Versioning:** PR title tags control version bumps on merge to `main`:
|
|
812
|
-
|
|
813
|
-
- `[major]` → major bump
|
|
814
|
-
- `[minor]` → minor bump
|
|
815
|
-
- `[patch]` or no tag → patch bump
|
|
816
|
-
|
|
817
|
-
Beta builds are published automatically to npm on every PR:
|
|
818
|
-
|
|
819
|
-
```bash
|
|
820
|
-
npm install -g @mailmodo/cli@beta
|
|
821
|
-
```
|
|
822
|
-
|
|
823
|
-
---
|
|
824
|
-
|
|
825
782
|
## License
|
|
826
783
|
|
|
827
784
|
MIT © [Mailmodo](https://github.com/Mailmodo)
|
package/oclif.manifest.json
CHANGED
|
@@ -503,6 +503,76 @@
|
|
|
503
503
|
"index.js"
|
|
504
504
|
]
|
|
505
505
|
},
|
|
506
|
+
"logs": {
|
|
507
|
+
"aliases": [],
|
|
508
|
+
"args": {},
|
|
509
|
+
"description": "View email send logs and delivery events",
|
|
510
|
+
"examples": [
|
|
511
|
+
"<%= config.bin %> logs",
|
|
512
|
+
"<%= config.bin %> logs --email sarah@example.com",
|
|
513
|
+
"<%= config.bin %> logs --failed",
|
|
514
|
+
"<%= config.bin %> logs --json"
|
|
515
|
+
],
|
|
516
|
+
"flags": {
|
|
517
|
+
"json": {
|
|
518
|
+
"description": "Output as JSON",
|
|
519
|
+
"name": "json",
|
|
520
|
+
"allowNo": false,
|
|
521
|
+
"type": "boolean"
|
|
522
|
+
},
|
|
523
|
+
"yes": {
|
|
524
|
+
"char": "y",
|
|
525
|
+
"description": "Skip confirmation prompts",
|
|
526
|
+
"name": "yes",
|
|
527
|
+
"allowNo": false,
|
|
528
|
+
"type": "boolean"
|
|
529
|
+
},
|
|
530
|
+
"email": {
|
|
531
|
+
"description": "Filter logs by contact email",
|
|
532
|
+
"name": "email",
|
|
533
|
+
"hasDynamicHelp": false,
|
|
534
|
+
"multiple": false,
|
|
535
|
+
"type": "option"
|
|
536
|
+
},
|
|
537
|
+
"failed": {
|
|
538
|
+
"description": "Show only failed/bounced events",
|
|
539
|
+
"name": "failed",
|
|
540
|
+
"allowNo": false,
|
|
541
|
+
"type": "boolean"
|
|
542
|
+
},
|
|
543
|
+
"limit": {
|
|
544
|
+
"description": "Entries per page (max 200)",
|
|
545
|
+
"name": "limit",
|
|
546
|
+
"default": 50,
|
|
547
|
+
"hasDynamicHelp": false,
|
|
548
|
+
"multiple": false,
|
|
549
|
+
"type": "option"
|
|
550
|
+
},
|
|
551
|
+
"page": {
|
|
552
|
+
"description": "Page number",
|
|
553
|
+
"name": "page",
|
|
554
|
+
"default": 1,
|
|
555
|
+
"hasDynamicHelp": false,
|
|
556
|
+
"multiple": false,
|
|
557
|
+
"type": "option"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"hasDynamicHelp": false,
|
|
561
|
+
"hiddenAliases": [],
|
|
562
|
+
"id": "logs",
|
|
563
|
+
"pluginAlias": "@mailmodo/cli",
|
|
564
|
+
"pluginName": "@mailmodo/cli",
|
|
565
|
+
"pluginType": "core",
|
|
566
|
+
"strict": true,
|
|
567
|
+
"enableJsonFlag": false,
|
|
568
|
+
"isESM": true,
|
|
569
|
+
"relativePath": [
|
|
570
|
+
"dist",
|
|
571
|
+
"commands",
|
|
572
|
+
"logs",
|
|
573
|
+
"index.js"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
506
576
|
"preview": {
|
|
507
577
|
"aliases": [],
|
|
508
578
|
"args": {
|
|
@@ -775,76 +845,6 @@
|
|
|
775
845
|
"index.js"
|
|
776
846
|
]
|
|
777
847
|
},
|
|
778
|
-
"logs": {
|
|
779
|
-
"aliases": [],
|
|
780
|
-
"args": {},
|
|
781
|
-
"description": "View email send logs and delivery events",
|
|
782
|
-
"examples": [
|
|
783
|
-
"<%= config.bin %> logs",
|
|
784
|
-
"<%= config.bin %> logs --email sarah@example.com",
|
|
785
|
-
"<%= config.bin %> logs --failed",
|
|
786
|
-
"<%= config.bin %> logs --json"
|
|
787
|
-
],
|
|
788
|
-
"flags": {
|
|
789
|
-
"json": {
|
|
790
|
-
"description": "Output as JSON",
|
|
791
|
-
"name": "json",
|
|
792
|
-
"allowNo": false,
|
|
793
|
-
"type": "boolean"
|
|
794
|
-
},
|
|
795
|
-
"yes": {
|
|
796
|
-
"char": "y",
|
|
797
|
-
"description": "Skip confirmation prompts",
|
|
798
|
-
"name": "yes",
|
|
799
|
-
"allowNo": false,
|
|
800
|
-
"type": "boolean"
|
|
801
|
-
},
|
|
802
|
-
"email": {
|
|
803
|
-
"description": "Filter logs by contact email",
|
|
804
|
-
"name": "email",
|
|
805
|
-
"hasDynamicHelp": false,
|
|
806
|
-
"multiple": false,
|
|
807
|
-
"type": "option"
|
|
808
|
-
},
|
|
809
|
-
"failed": {
|
|
810
|
-
"description": "Show only failed/bounced events",
|
|
811
|
-
"name": "failed",
|
|
812
|
-
"allowNo": false,
|
|
813
|
-
"type": "boolean"
|
|
814
|
-
},
|
|
815
|
-
"limit": {
|
|
816
|
-
"description": "Entries per page (max 200)",
|
|
817
|
-
"name": "limit",
|
|
818
|
-
"default": 50,
|
|
819
|
-
"hasDynamicHelp": false,
|
|
820
|
-
"multiple": false,
|
|
821
|
-
"type": "option"
|
|
822
|
-
},
|
|
823
|
-
"page": {
|
|
824
|
-
"description": "Page number",
|
|
825
|
-
"name": "page",
|
|
826
|
-
"default": 1,
|
|
827
|
-
"hasDynamicHelp": false,
|
|
828
|
-
"multiple": false,
|
|
829
|
-
"type": "option"
|
|
830
|
-
}
|
|
831
|
-
},
|
|
832
|
-
"hasDynamicHelp": false,
|
|
833
|
-
"hiddenAliases": [],
|
|
834
|
-
"id": "logs",
|
|
835
|
-
"pluginAlias": "@mailmodo/cli",
|
|
836
|
-
"pluginName": "@mailmodo/cli",
|
|
837
|
-
"pluginType": "core",
|
|
838
|
-
"strict": true,
|
|
839
|
-
"enableJsonFlag": false,
|
|
840
|
-
"isESM": true,
|
|
841
|
-
"relativePath": [
|
|
842
|
-
"dist",
|
|
843
|
-
"commands",
|
|
844
|
-
"logs",
|
|
845
|
-
"index.js"
|
|
846
|
-
]
|
|
847
|
-
},
|
|
848
848
|
"settings": {
|
|
849
849
|
"aliases": [],
|
|
850
850
|
"args": {},
|
|
@@ -932,5 +932,5 @@
|
|
|
932
932
|
]
|
|
933
933
|
}
|
|
934
934
|
},
|
|
935
|
-
"version": "1.0.
|
|
935
|
+
"version": "1.0.1-beta.pr63.113"
|
|
936
936
|
}
|