stepzen 0.33.0-beta.0 → 0.33.0-experimental.91ffbeb
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 +22 -1
- package/lib/commands/delete.d.ts +19 -0
- package/lib/commands/delete.d.ts.map +1 -0
- package/lib/commands/delete.js +103 -0
- package/lib/commands/delete.js.map +1 -0
- package/lib/shared/stepzen-sdk.d.ts +4 -0
- package/lib/shared/stepzen-sdk.d.ts.map +1 -1
- package/oclif.manifest.json +39 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ $ npm install -g stepzen
|
|
|
30
30
|
$ stepzen COMMAND
|
|
31
31
|
running command...
|
|
32
32
|
$ stepzen (--version|-v)
|
|
33
|
-
stepzen/0.33.0-
|
|
33
|
+
stepzen/0.33.0-experimental.91ffbeb linux-x64 node-v18.16.1
|
|
34
34
|
$ stepzen --help [COMMAND]
|
|
35
35
|
USAGE
|
|
36
36
|
$ stepzen COMMAND
|
|
@@ -45,6 +45,7 @@ To run from code: `path-to-repo/bin/run start` (start or whatever command you're
|
|
|
45
45
|
|
|
46
46
|
# Commands
|
|
47
47
|
<!-- commands -->
|
|
48
|
+
* [`stepzen delete ENDPOINT`](#stepzen-delete-endpoint)
|
|
48
49
|
* [`stepzen deploy [ENDPOINT] [--config=path/to/config.yaml] [--dir=path/to/workspace]
|
|
49
50
|
|
|
50
51
|
-- OR (deprecated) --
|
|
@@ -70,6 +71,26 @@ $ stepzen deploy ENDPOINT --schema=schema [--configurationsets=cs1[,cs2[,..]]]`]
|
|
|
70
71
|
* [`stepzen version`](#stepzen-version)
|
|
71
72
|
* [`stepzen whoami`](#stepzen-whoami)
|
|
72
73
|
|
|
74
|
+
## `stepzen delete ENDPOINT`
|
|
75
|
+
|
|
76
|
+
Delete an endpoint from your StepZen account.
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
USAGE
|
|
80
|
+
$ stepzen delete [ENDPOINT] [-h] [--non-interactive] [-f]
|
|
81
|
+
|
|
82
|
+
ARGUMENTS
|
|
83
|
+
ENDPOINT name of the endpoint (e.g. api/customers)
|
|
84
|
+
|
|
85
|
+
FLAGS
|
|
86
|
+
-f, --force Bypasses confirmation prompt to delete endpoint
|
|
87
|
+
-h, --help Show CLI help
|
|
88
|
+
--non-interactive Disable all interactive prompts
|
|
89
|
+
|
|
90
|
+
DESCRIPTION
|
|
91
|
+
Delete an endpoint from your StepZen account.
|
|
92
|
+
```
|
|
93
|
+
|
|
73
94
|
## `stepzen deploy [ENDPOINT] [--config=path/to/config.yaml] [--dir=path/to/workspace]
|
|
74
95
|
|
|
75
96
|
-- OR (deprecated) --
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import ZenCommand from '../shared/zen-command';
|
|
2
|
+
import { LoggedInMachineConfiguration } from '../shared/types';
|
|
3
|
+
export default class Delete extends ZenCommand {
|
|
4
|
+
static description: string;
|
|
5
|
+
static flags: {
|
|
6
|
+
force: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
7
|
+
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
8
|
+
'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
9
|
+
};
|
|
10
|
+
static args: {
|
|
11
|
+
endpoint: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>;
|
|
12
|
+
};
|
|
13
|
+
run(): Promise<void>;
|
|
14
|
+
executeDelete({ configuration, endpoint, }: {
|
|
15
|
+
configuration: LoggedInMachineConfiguration;
|
|
16
|
+
endpoint: string;
|
|
17
|
+
}): Promise<void>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=delete.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete.d.ts","sourceRoot":"","sources":["../../src/commands/delete.ts"],"names":[],"mappings":"AAMA,OAAO,UAAU,MAAM,uBAAuB,CAAA;AAQ9C,OAAO,EAAC,4BAA4B,EAAC,MAAM,iBAAiB,CAAA;AAG5D,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,UAAU;IAC5C,MAAM,CAAC,WAAW,SAAkD;IAEpE,MAAM,CAAC,KAAK;;;;MAMX;IAED,MAAM,CAAC,IAAI;;MAKV;IAEK,GAAG;IA4CH,aAAa,CAAC,EAClB,aAAa,EACb,QAAQ,GACT,EAAE;QACD,aAAa,EAAE,4BAA4B,CAAA;QAC3C,QAAQ,EAAE,MAAM,CAAA;KACjB;CA+CF"}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Copyright (c) StepZen Inc., an IBM Company 2020,2023.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
const chalk = require("chalk");
|
|
5
|
+
const core_1 = require("@oclif/core");
|
|
6
|
+
const inquirer = require("inquirer");
|
|
7
|
+
const zen_command_1 = require("../shared/zen-command");
|
|
8
|
+
const constants_1 = require("../shared/constants");
|
|
9
|
+
const stepzen_sdk_1 = require("../shared/stepzen-sdk");
|
|
10
|
+
const errors_1 = require("@oclif/core/lib/errors");
|
|
11
|
+
const utils_1 = require("../shared/utils");
|
|
12
|
+
class Delete extends zen_command_1.default {
|
|
13
|
+
async run() {
|
|
14
|
+
const { args, flags } = await this.parse(Delete);
|
|
15
|
+
// validate the endpoint arg
|
|
16
|
+
if (args.endpoint) {
|
|
17
|
+
const maybeError = (0, utils_1.validateEndpoint)(args.endpoint);
|
|
18
|
+
if (typeof maybeError === 'string') {
|
|
19
|
+
throw new errors_1.CLIError(maybeError);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
const { configuration } = await this.ensureStepZenAccount({
|
|
23
|
+
nonInteractive: flags['non-interactive'],
|
|
24
|
+
});
|
|
25
|
+
const endpoint = args.endpoint;
|
|
26
|
+
const zenserv = (0, constants_1.getZenServUrl)(configuration);
|
|
27
|
+
if (flags.force) {
|
|
28
|
+
await this.executeDelete({
|
|
29
|
+
configuration,
|
|
30
|
+
endpoint,
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
const responses = await inquirer.prompt([
|
|
35
|
+
{
|
|
36
|
+
name: 'confirm',
|
|
37
|
+
message: `This operation will delete the ${endpoint} API endpoint from the StepZen servers. All GraphQL requests to ${chalk.yellow(zenserv + '/' + endpoint + '/__graphql')} will start getting error responses. There is no undo button. Do you wish to continue?`,
|
|
38
|
+
type: 'list',
|
|
39
|
+
choices: [
|
|
40
|
+
{ name: 'No, cancel', value: 'cancelled' },
|
|
41
|
+
{ name: `Yes, delete ${endpoint}`, value: 'confirmed' },
|
|
42
|
+
],
|
|
43
|
+
},
|
|
44
|
+
]);
|
|
45
|
+
if (responses.confirm === 'confirmed') {
|
|
46
|
+
await this.executeDelete({
|
|
47
|
+
configuration,
|
|
48
|
+
endpoint,
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
async executeDelete({ configuration, endpoint, }) {
|
|
54
|
+
const idx = endpoint.indexOf('/');
|
|
55
|
+
const folder = endpoint.slice(0, idx);
|
|
56
|
+
const name = endpoint.slice(idx + 1);
|
|
57
|
+
const zenserv = (0, constants_1.getZenServUrl)(configuration);
|
|
58
|
+
const lines = [];
|
|
59
|
+
const response = await (0, stepzen_sdk_1.tryZenCtl2ThenZenCtl1)(configuration, async (stepzen) => {
|
|
60
|
+
if (stepzen.version === 'v1') {
|
|
61
|
+
throw new errors_1.CLIError(chalk `\n{bold stepzen delete} is not supported for your account.` +
|
|
62
|
+
`\nContact support via the StepZen discord ` +
|
|
63
|
+
`channel (${constants_1.STEPZEN_DISCORD_URL}).`);
|
|
64
|
+
}
|
|
65
|
+
const client = await stepzen.client({
|
|
66
|
+
account: configuration.account,
|
|
67
|
+
adminKey: configuration.adminkey,
|
|
68
|
+
deploymentType: (0, constants_1.getDeploymentType)(configuration),
|
|
69
|
+
});
|
|
70
|
+
const response = await client.delete({
|
|
71
|
+
folder,
|
|
72
|
+
name,
|
|
73
|
+
});
|
|
74
|
+
return response.data;
|
|
75
|
+
});
|
|
76
|
+
const endpointRemovals = response.result;
|
|
77
|
+
if (endpointRemovals.length === 0) {
|
|
78
|
+
this.log(chalk `ERROR: Unable to delete {yellow ${folder}/${name}}. Ensure {yellow ${folder}/${name}} is an active endpoint by running {green stepzen list}`);
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
lines.push(chalk `Successfully deleted {yellow ${response.result[0].folder_name}/${response.result[0].endpoint_name}} for account {yellow ${response.result[0].account_name}}`);
|
|
82
|
+
lines.push('');
|
|
83
|
+
lines.push(chalk `{grey The {yellow ${zenserv}/${endpoint}/__graphql} URL will now return 404 to client calls.}`);
|
|
84
|
+
this.log(lines.join('\n'));
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.default = Delete;
|
|
89
|
+
Delete.description = 'Delete an endpoint from your StepZen account.';
|
|
90
|
+
Delete.flags = {
|
|
91
|
+
...zen_command_1.default.flags,
|
|
92
|
+
force: core_1.Flags.boolean({
|
|
93
|
+
char: 'f',
|
|
94
|
+
description: chalk `Bypasses confirmation prompt to delete endpoint`,
|
|
95
|
+
}),
|
|
96
|
+
};
|
|
97
|
+
Delete.args = {
|
|
98
|
+
endpoint: core_1.Args.string({
|
|
99
|
+
description: chalk `name of the endpoint (e.g. {bold api/customers})`,
|
|
100
|
+
required: true,
|
|
101
|
+
}),
|
|
102
|
+
};
|
|
103
|
+
//# sourceMappingURL=delete.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete.js","sourceRoot":"","sources":["../../src/commands/delete.ts"],"names":[],"mappings":"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"}
|
|
@@ -43,6 +43,10 @@ export declare const getStepzen2SDK: (zenctlApiUrl: string, deploymentType: stri
|
|
|
43
43
|
deploymentType: string;
|
|
44
44
|
}) => Promise<{
|
|
45
45
|
readonly credentials: import("packages/sdk/src/shared/types").StepZenCredentialsV2;
|
|
46
|
+
delete: ({ folder, name }: {
|
|
47
|
+
folder: string;
|
|
48
|
+
name: string;
|
|
49
|
+
}) => Promise<import("packages/sdk/src/client").ZenCtlResponseV2<import("packages/sdk/src/client").StepZenDeleteV2[]>>;
|
|
46
50
|
deploy: ({ folder, name, directory, config, public: _public, }: {
|
|
47
51
|
folder: string;
|
|
48
52
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stepzen-sdk.d.ts","sourceRoot":"","sources":["../../src/shared/stepzen-sdk.ts"],"names":[],"mappings":"AAWA,OAAO,EAAC,oBAAoB,EAAE,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAG/D,eAAO,MAAM,cAAc,cAAe,MAAM;sBAIpB,MAAM;mCAgBO,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;CAc9C,CAAA;AAED,eAAO,MAAM,cAAc,iBACX,MAAM,kBACJ,MAAM;sBAaI,MAAM;mCAiBO,MAAM
|
|
1
|
+
{"version":3,"file":"stepzen-sdk.d.ts","sourceRoot":"","sources":["../../src/shared/stepzen-sdk.ts"],"names":[],"mappings":"AAWA,OAAO,EAAC,oBAAoB,EAAE,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAG/D,eAAO,MAAM,cAAc,cAAe,MAAM;sBAIpB,MAAM;mCAgBO,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;CAc9C,CAAA;AAED,eAAO,MAAM,cAAc,iBACX,MAAM,kBACJ,MAAM;sBAaI,MAAM;mCAiBO,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoB9C,CAAA;AAED,oBAAY,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAA;AAC9D,oBAAY,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAA;AAC9D,oBAAY,YAAY,GAAG,cAAc,GAAG,cAAc,CAAA;AAE1D,eAAO,MAAM,iBAAiB,kBACb,oBAAoB,KAClC,cAEF,CAAA;AAED,eAAO,MAAM,iBAAiB,kBAAmB,oBAAoB,+BAMpE,CAAA;AAED;;;;;;;;GAQG;AACH,wBAAsB,qBAAqB,CACzC,aAAa,EAAE,oBAAoB,EACnC,EAAE,EAAE,CAAC,OAAO,EAAE,YAAY,KAAK,OAAO,CAAC,GAAG,CAAC;;;;;GAmD5C"}
|
package/oclif.manifest.json
CHANGED
|
@@ -1,6 +1,44 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.33.0-
|
|
2
|
+
"version": "0.33.0-experimental.91ffbeb",
|
|
3
3
|
"commands": {
|
|
4
|
+
"delete": {
|
|
5
|
+
"id": "delete",
|
|
6
|
+
"description": "Delete an endpoint from your StepZen account.",
|
|
7
|
+
"strict": true,
|
|
8
|
+
"pluginName": "stepzen",
|
|
9
|
+
"pluginAlias": "stepzen",
|
|
10
|
+
"pluginType": "core",
|
|
11
|
+
"aliases": [],
|
|
12
|
+
"flags": {
|
|
13
|
+
"help": {
|
|
14
|
+
"name": "help",
|
|
15
|
+
"type": "boolean",
|
|
16
|
+
"char": "h",
|
|
17
|
+
"description": "Show CLI help",
|
|
18
|
+
"allowNo": false
|
|
19
|
+
},
|
|
20
|
+
"non-interactive": {
|
|
21
|
+
"name": "non-interactive",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"description": "Disable all interactive prompts",
|
|
24
|
+
"allowNo": false
|
|
25
|
+
},
|
|
26
|
+
"force": {
|
|
27
|
+
"name": "force",
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"char": "f",
|
|
30
|
+
"description": "Bypasses confirmation prompt to delete endpoint",
|
|
31
|
+
"allowNo": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"args": {
|
|
35
|
+
"endpoint": {
|
|
36
|
+
"name": "endpoint",
|
|
37
|
+
"description": "name of the endpoint (e.g. api/customers)",
|
|
38
|
+
"required": true
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
4
42
|
"deploy": {
|
|
5
43
|
"id": "deploy",
|
|
6
44
|
"description": "Deploy to StepZen.",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stepzen",
|
|
3
3
|
"description": "The StepZen CLI",
|
|
4
|
-
"version": "0.33.0-
|
|
4
|
+
"version": "0.33.0-experimental.91ffbeb",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Darren Waddell <darren@stepzen.com>",
|
|
7
7
|
"contributors": [
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"@oclif/plugin-help": "5.2.4",
|
|
31
31
|
"@oclif/plugin-version": "1.2.1",
|
|
32
32
|
"@soluble/dsn-parser": "^1.7.5",
|
|
33
|
-
"@stepzen/fetch": "0.33.0-
|
|
34
|
-
"@stepzen/graphiql-proxy": "0.33.0-
|
|
35
|
-
"@stepzen/sdk": "0.33.0-
|
|
36
|
-
"@stepzen/transpiler": "0.33.0-
|
|
33
|
+
"@stepzen/fetch": "0.33.0-experimental.91ffbeb",
|
|
34
|
+
"@stepzen/graphiql-proxy": "0.33.0-experimental.91ffbeb",
|
|
35
|
+
"@stepzen/sdk": "0.33.0-experimental.91ffbeb",
|
|
36
|
+
"@stepzen/transpiler": "0.33.0-experimental.91ffbeb",
|
|
37
37
|
"chalk": "^4.1.2",
|
|
38
38
|
"chokidar": "^3.5.3",
|
|
39
39
|
"compare-versions": "^5.0.3",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "91ffbeb1c7d5d2694b2fdf05361d5a807b967994"
|
|
147
147
|
}
|