@hesed/mysql 0.2.0 → 0.2.1

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 CHANGED
@@ -26,7 +26,7 @@ $ npm install -g @hesed/mysql
26
26
  $ mq COMMAND
27
27
  running command...
28
28
  $ mq (--version)
29
- @hesed/mysql/0.2.0 linux-x64 node-v22.22.0
29
+ @hesed/mysql/0.2.1 linux-x64 node-v22.22.0
30
30
  $ mq --help [COMMAND]
31
31
  USAGE
32
32
  $ mq COMMAND
@@ -76,7 +76,7 @@ EXAMPLES
76
76
  $ mq mysql auth add --no-ssl
77
77
  ```
78
78
 
79
- _See code: [src/commands/mysql/auth/add.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/auth/add.ts)_
79
+ _See code: [src/commands/mysql/auth/add.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/auth/add.ts)_
80
80
 
81
81
  ## `mq mysql auth test`
82
82
 
@@ -101,7 +101,7 @@ EXAMPLES
101
101
  $ mq mysql auth test --profile staging
102
102
  ```
103
103
 
104
- _See code: [src/commands/mysql/auth/test.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/auth/test.ts)_
104
+ _See code: [src/commands/mysql/auth/test.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/auth/test.ts)_
105
105
 
106
106
  ## `mq mysql auth update`
107
107
 
@@ -132,7 +132,7 @@ EXAMPLES
132
132
  $ mq mysql auth update --profile staging
133
133
  ```
134
134
 
135
- _See code: [src/commands/mysql/auth/update.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/auth/update.ts)_
135
+ _See code: [src/commands/mysql/auth/update.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/auth/update.ts)_
136
136
 
137
137
  ## `mq mysql databases`
138
138
 
@@ -154,7 +154,7 @@ EXAMPLES
154
154
  $ mq mysql databases --profile staging
155
155
  ```
156
156
 
157
- _See code: [src/commands/mysql/databases.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/databases.ts)_
157
+ _See code: [src/commands/mysql/databases.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/databases.ts)_
158
158
 
159
159
  ## `mq mysql describe-table TABLE`
160
160
 
@@ -181,7 +181,7 @@ EXAMPLES
181
181
  $ mq mysql describe-table orders --format json --profile prod
182
182
  ```
183
183
 
184
- _See code: [src/commands/mysql/describe-table.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/describe-table.ts)_
184
+ _See code: [src/commands/mysql/describe-table.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/describe-table.ts)_
185
185
 
186
186
  ## `mq mysql explain-query QUERY`
187
187
 
@@ -208,7 +208,7 @@ EXAMPLES
208
208
  $ mq mysql explain-query "SELECT * FROM orders JOIN users ON orders.user_id = users.id" --format json
209
209
  ```
210
210
 
211
- _See code: [src/commands/mysql/explain-query.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/explain-query.ts)_
211
+ _See code: [src/commands/mysql/explain-query.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/explain-query.ts)_
212
212
 
213
213
  ## `mq mysql indexes TABLE`
214
214
 
@@ -235,7 +235,7 @@ EXAMPLES
235
235
  $ mq mysql indexes orders --format json --profile prod
236
236
  ```
237
237
 
238
- _See code: [src/commands/mysql/indexes.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/indexes.ts)_
238
+ _See code: [src/commands/mysql/indexes.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/indexes.ts)_
239
239
 
240
240
  ## `mq mysql query QUERY`
241
241
 
@@ -265,7 +265,7 @@ EXAMPLES
265
265
  $ mq mysql query "DELETE FROM sessions" --profile prod --skip-confirmation
266
266
  ```
267
267
 
268
- _See code: [src/commands/mysql/query.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/query.ts)_
268
+ _See code: [src/commands/mysql/query.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/query.ts)_
269
269
 
270
270
  ## `mq mysql tables`
271
271
 
@@ -287,5 +287,5 @@ EXAMPLES
287
287
  $ mq mysql tables --profile local
288
288
  ```
289
289
 
290
- _See code: [src/commands/mysql/tables.ts](https://github.com/hesedcasa/mysql/blob/v0.2.0/src/commands/mysql/tables.ts)_
290
+ _See code: [src/commands/mysql/tables.ts](https://github.com/hesedcasa/mysql/blob/v0.2.1/src/commands/mysql/tables.ts)_
291
291
  <!-- commandsstop -->
@@ -517,5 +517,5 @@
517
517
  ]
518
518
  }
519
519
  },
520
- "version": "0.2.0"
520
+ "version": "0.2.1"
521
521
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hesed/mysql",
3
3
  "description": "CLI for MySQL database interaction",
4
- "version": "0.2.0",
4
+ "version": "0.2.1",
5
5
  "author": "Hesed",
6
6
  "bin": {
7
7
  "mq": "./bin/run.js"
@@ -57,9 +57,6 @@
57
57
  "bin": "mq",
58
58
  "dirname": "mysql",
59
59
  "commands": "./dist/commands",
60
- "plugins": [
61
- "@oclif/plugin-*"
62
- ],
63
60
  "topicSeparator": " ",
64
61
  "topics": {}
65
62
  },