@opencard-dev/cli 0.1.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/dist/index.d.ts +17 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1272 -0
- package/dist/index.js.map +1 -0
- package/package.json +45 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* OpenCard CLI: Command-line interface for setup and management
|
|
4
|
+
*
|
|
5
|
+
* Commands:
|
|
6
|
+
* opencard serve Start webhook server with public tunnel
|
|
7
|
+
* opencard setup Interactive setup wizard
|
|
8
|
+
* opencard status Show connection & system status
|
|
9
|
+
* opencard cards list List all active cards
|
|
10
|
+
* opencard rules list List all spend rules
|
|
11
|
+
* opencard rules add Interactive rule creation
|
|
12
|
+
* opencard test Test rules with mock transactions
|
|
13
|
+
* opencard approvals list View pending approval requests
|
|
14
|
+
* opencard version Show version
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;GAaG"}
|