Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Binary file not shown.
27 changes: 0 additions & 27 deletions docs/cronjob.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Manage cronjobs of your projects
* [`mw cronjob create`](#mw-cronjob-create)
* [`mw cronjob delete CRONJOB-ID`](#mw-cronjob-delete-cronjob-id)
* [`mw cronjob execute CRONJOB-ID`](#mw-cronjob-execute-cronjob-id)
* [`mw cronjob execution abort CRONJOB-ID EXECUTION-ID`](#mw-cronjob-execution-abort-cronjob-id-execution-id)
* [`mw cronjob execution get CRONJOB-ID EXECUTION-ID`](#mw-cronjob-execution-get-cronjob-id-execution-id)
* [`mw cronjob execution list`](#mw-cronjob-execution-list)
* [`mw cronjob execution logs CRONJOB-ID EXECUTION-ID`](#mw-cronjob-execution-logs-cronjob-id-execution-id)
Expand Down Expand Up @@ -144,32 +143,6 @@ FLAG DESCRIPTIONS
scripts), you can use this flag to easily get the IDs of created resources for further processing.
```

## `mw cronjob execution abort CRONJOB-ID EXECUTION-ID`

Abort a running cron job execution.

```
USAGE
$ mw cronjob execution abort CRONJOB-ID EXECUTION-ID [--token <value>] [-q]

ARGUMENTS
CRONJOB-ID ID of the cronjob the execution belongs to
EXECUTION-ID ID of the cron job execution to abort

FLAGS
-q, --quiet suppress process output and only display a machine-readable summary

AUTHENTICATION FLAGS
--token=<value> API token to use for authentication (overrides environment and config file). NOTE: watch out that
tokens passed via this flag might be logged in your shell history.

FLAG DESCRIPTIONS
-q, --quiet suppress process output and only display a machine-readable summary

This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
scripts), you can use this flag to easily get the IDs of created resources for further processing.
```

## `mw cronjob execution get CRONJOB-ID EXECUTION-ID`

Get a cron job execution.
Expand Down
4 changes: 2 additions & 2 deletions docs/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Create a new MySQL database
```
USAGE
$ mw database mysql create -d <value> --version <value> [--token <value>] [-p <value>] [-q] [--collation <value>]
[--character-set <value>] [--user-password <value>] [--user-external] [--user-access-level full|readonly]
[--character-set <value>] [--user-password <value>] [--user-external] [--user-access-level full]

FLAGS
-d, --description=<value> (required) a description for the database
Expand All @@ -105,7 +105,7 @@ FLAGS
--character-set=<value> [default: utf8mb4] the character set to use
--collation=<value> [default: utf8mb4_unicode_ci] the collation to use
--user-access-level=<option> [default: full] the access level preset for the default user
<options: full|readonly>
<options: full>
--user-external enable external access for default user
--user-password=<value> [env: MYSQL_PWD] the password to use for the default user
--version=<value> (required) the MySQL version to use
Expand Down
59 changes: 0 additions & 59 deletions src/commands/cronjob/execution/abort.tsx

This file was deleted.

5 changes: 3 additions & 2 deletions src/commands/database/mysql/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ export class Create extends ExecRenderBaseCommand<typeof Create, Result> {
summary: "enable external access for default user",
default: false,
}),
"user-access-level": Flags.custom<"full" | "readonly">({
"user-access-level": Flags.custom<"full">({
summary: "the access level preset for the default user",
options: ["full", "readonly"],
deprecated: true,
options: ["full"],
default: "full",
})(),
};
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2334,9 +2334,9 @@ __metadata:
languageName: node
linkType: hard

"@mittwald/api-client-commons@npm:^4.278.0":
version: 4.278.0
resolution: "@mittwald/api-client-commons@npm:4.278.0"
"@mittwald/api-client-commons@npm:^4.281.0":
version: 4.281.0
resolution: "@mittwald/api-client-commons@npm:4.281.0"
dependencies:
"@types/parse-path": ^7.0.3
axios: ^1.12.2
Expand All @@ -2350,22 +2350,22 @@ __metadata:
optional: true
"@mittwald/react-use-promise":
optional: true
checksum: 7ca7dc6fb4ca838452a729a134529429682540b3ed17fa3ae49d4715b7d30b1342ac96cb45fc39863e5f884a61c8c0f04d274c69f3c7e46b456e2e542b31b6e2
checksum: 98ab17153d59adb309979464539fa5f8a17b3211b5f31e92591817469c7e5220b964544d02a8b4d5eabdab2c000ecbe0fbda2a8b6b4dc52ce9982f2e8732ad1b
languageName: node
linkType: hard

"@mittwald/api-client@npm:^4.131.0":
version: 4.278.0
resolution: "@mittwald/api-client@npm:4.278.0"
version: 4.281.0
resolution: "@mittwald/api-client@npm:4.281.0"
dependencies:
"@mittwald/api-client-commons": ^4.278.0
"@mittwald/api-client-commons": ^4.281.0
browser-or-node: ^3.0.0
peerDependencies:
"@mittwald/react-use-promise": ^2.6.0
peerDependenciesMeta:
"@mittwald/react-use-promise":
optional: true
checksum: c2bb4cf0193c06a2189f982c7ae88dec20fb03df94939d273cc956ee0de52795a7a85263f3bc68521a5abfbe8107cd9ddc7c938e0813d5c4b1b2eeb669334300
checksum: c5ffac8f0aed900462f0e16b346189739b6478e0ebed05363e54039073782f18ed903fff5a2094404336e703f6f459cf0dab06880e85e60d90b2c342a771804b
languageName: node
linkType: hard

Expand Down