@hyperdrive.bot/sign-cli 0.1.7 → 0.1.8

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 (2) hide show
  1. package/package.json +6 -2
  2. package/oclif.manifest.json +0 -124
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hyperdrive.bot/sign-cli",
3
3
  "description": "Sign CLI — runtime-discovered API client for the Sign platform",
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "author": "marcelomarra",
6
6
  "bin": {
7
7
  "sign": "./bin/run.js"
@@ -61,5 +61,9 @@
61
61
  "test": "echo 'No tests yet'",
62
62
  "postpack": "rm -f oclif.manifest.json",
63
63
  "prepack": "npm run build && oclif manifest"
64
+ },
65
+ "publishConfig": {
66
+ "access": "public",
67
+ "registry": "https://registry.npmjs.org/"
64
68
  }
65
- }
69
+ }
@@ -1,124 +0,0 @@
1
- {
2
- "commands": {
3
- "api": {
4
- "aliases": [],
5
- "args": {
6
- "method": {
7
- "description": "HTTP method",
8
- "name": "method",
9
- "options": [
10
- "GET",
11
- "POST",
12
- "PUT",
13
- "PATCH",
14
- "DELETE"
15
- ],
16
- "required": true
17
- },
18
- "path": {
19
- "description": "API path (e.g., /folders, /documents/abc-123)",
20
- "name": "path",
21
- "required": true
22
- }
23
- },
24
- "description": "Execute a raw API request (escape hatch)",
25
- "examples": [
26
- "<%= config.bin %> api GET /folders",
27
- "<%= config.bin %> api POST /documents --body '{\"name\":\"My Doc\"}'",
28
- "<%= config.bin %> api DELETE /folders/abc-123"
29
- ],
30
- "flags": {
31
- "body": {
32
- "char": "b",
33
- "description": "Request body (JSON string)",
34
- "name": "body",
35
- "hasDynamicHelp": false,
36
- "multiple": false,
37
- "type": "option"
38
- },
39
- "input": {
40
- "char": "i",
41
- "description": "Read body from file",
42
- "name": "input",
43
- "hasDynamicHelp": false,
44
- "multiple": false,
45
- "type": "option"
46
- },
47
- "module": {
48
- "char": "m",
49
- "description": "Target module (for API Gateway routing)",
50
- "name": "module",
51
- "hasDynamicHelp": false,
52
- "multiple": false,
53
- "type": "option"
54
- },
55
- "table": {
56
- "description": "Format output as table",
57
- "name": "table",
58
- "allowNo": false,
59
- "type": "boolean"
60
- },
61
- "raw": {
62
- "description": "Raw output (no formatting)",
63
- "name": "raw",
64
- "allowNo": false,
65
- "type": "boolean"
66
- }
67
- },
68
- "hasDynamicHelp": false,
69
- "hiddenAliases": [],
70
- "id": "api",
71
- "pluginAlias": "@hyperdrive.bot/sign-cli",
72
- "pluginName": "@hyperdrive.bot/sign-cli",
73
- "pluginType": "core",
74
- "strict": true,
75
- "enableJsonFlag": false,
76
- "isESM": true,
77
- "relativePath": [
78
- "dist",
79
- "commands",
80
- "api.js"
81
- ]
82
- },
83
- "modules:list": {
84
- "aliases": [],
85
- "args": {},
86
- "description": "List all available API resources and actions",
87
- "examples": [
88
- "<%= config.bin %> modules list",
89
- "<%= config.bin %> modules list --json",
90
- "<%= config.bin %> modules list --refresh"
91
- ],
92
- "flags": {
93
- "json": {
94
- "description": "Output as JSON",
95
- "name": "json",
96
- "allowNo": false,
97
- "type": "boolean"
98
- },
99
- "refresh": {
100
- "description": "Force refresh the manifest cache",
101
- "name": "refresh",
102
- "allowNo": false,
103
- "type": "boolean"
104
- }
105
- },
106
- "hasDynamicHelp": false,
107
- "hiddenAliases": [],
108
- "id": "modules:list",
109
- "pluginAlias": "@hyperdrive.bot/sign-cli",
110
- "pluginName": "@hyperdrive.bot/sign-cli",
111
- "pluginType": "core",
112
- "strict": true,
113
- "enableJsonFlag": false,
114
- "isESM": true,
115
- "relativePath": [
116
- "dist",
117
- "commands",
118
- "modules",
119
- "list.js"
120
- ]
121
- }
122
- },
123
- "version": "0.1.7"
124
- }