@prismatic-io/prism 3.3.0 → 4.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/bin/run +9 -8
- package/lib/auth.js +183 -199
- package/lib/commands/alerts/events/list.js +27 -57
- package/lib/commands/alerts/groups/create.js +18 -49
- package/lib/commands/alerts/groups/delete.js +10 -41
- package/lib/commands/alerts/groups/list.js +15 -47
- package/lib/commands/alerts/monitors/clear.js +10 -41
- package/lib/commands/alerts/monitors/create.js +27 -58
- package/lib/commands/alerts/monitors/delete.js +10 -41
- package/lib/commands/alerts/monitors/list.js +16 -48
- package/lib/commands/alerts/triggers/list.js +15 -47
- package/lib/commands/alerts/webhooks/create.js +18 -49
- package/lib/commands/alerts/webhooks/delete.js +10 -41
- package/lib/commands/alerts/webhooks/list.js +25 -57
- package/lib/commands/authorization-methods/list.js +20 -51
- package/lib/commands/components/actions/list.js +29 -61
- package/lib/commands/components/delete.js +10 -41
- package/lib/commands/components/dev/run.js +75 -0
- package/lib/commands/components/dev/test.js +218 -0
- package/lib/commands/components/init/action.js +12 -0
- package/lib/commands/components/init/component.js +12 -0
- package/lib/commands/components/init/connection.js +12 -0
- package/lib/commands/components/init/index.js +203 -0
- package/lib/commands/components/init/trigger.js +12 -0
- package/lib/commands/components/list.js +31 -60
- package/lib/commands/components/publish.js +29 -279
- package/lib/commands/components/triggers/list.js +29 -61
- package/lib/commands/customers/create.js +14 -45
- package/lib/commands/customers/credentials/create.js +19 -50
- package/lib/commands/customers/credentials/delete.js +10 -41
- package/lib/commands/customers/credentials/list.js +30 -59
- package/lib/commands/customers/credentials/update.js +16 -47
- package/lib/commands/customers/delete.js +10 -41
- package/lib/commands/customers/list.js +16 -48
- package/lib/commands/customers/update.js +15 -46
- package/lib/commands/customers/users/create.js +18 -49
- package/lib/commands/customers/users/delete.js +10 -41
- package/lib/commands/customers/users/list.js +21 -51
- package/lib/commands/customers/users/roles.js +18 -48
- package/lib/commands/customers/users/update.js +19 -50
- package/lib/commands/executions/step-result/get.js +36 -66
- package/lib/commands/instances/config-vars/list.js +32 -62
- package/lib/commands/instances/create.js +20 -51
- package/lib/commands/instances/delete.js +10 -41
- package/lib/commands/instances/deploy.js +20 -44
- package/lib/commands/instances/disable.js +11 -42
- package/lib/commands/instances/enable.js +11 -42
- package/lib/commands/instances/flow-configs/list.js +25 -55
- package/lib/commands/instances/flow-configs/test.js +62 -97
- package/lib/commands/instances/list.js +31 -59
- package/lib/commands/instances/update.js +15 -46
- package/lib/commands/integrations/available.js +13 -44
- package/lib/commands/integrations/create.js +14 -45
- package/lib/commands/integrations/delete.js +10 -41
- package/lib/commands/integrations/export.js +11 -68
- package/lib/commands/integrations/flows/list.js +22 -52
- package/lib/commands/integrations/flows/test.js +62 -96
- package/lib/commands/integrations/fork.js +15 -46
- package/lib/commands/integrations/import.js +12 -63
- package/lib/commands/integrations/list.js +25 -54
- package/lib/commands/integrations/publish.js +13 -44
- package/lib/commands/integrations/update.js +18 -49
- package/lib/commands/integrations/versions/index.js +26 -58
- package/lib/commands/login.js +16 -32
- package/lib/commands/logout.js +10 -22
- package/lib/commands/logs/severities/list.js +15 -47
- package/lib/commands/me/index.js +13 -60
- package/lib/commands/me/token/revoke.js +12 -0
- package/lib/commands/me/token.js +10 -22
- package/lib/commands/organization/credentials/create.js +17 -48
- package/lib/commands/organization/credentials/delete.js +10 -41
- package/lib/commands/organization/credentials/list.js +22 -54
- package/lib/commands/organization/credentials/update.js +16 -47
- package/lib/commands/organization/update.js +12 -43
- package/lib/commands/organization/updateAvatarUrl.js +14 -45
- package/lib/commands/organization/users/create.js +16 -47
- package/lib/commands/organization/users/delete.js +10 -41
- package/lib/commands/organization/users/list.js +16 -48
- package/lib/commands/organization/users/roles.js +18 -48
- package/lib/commands/organization/users/update.js +19 -50
- package/lib/config.js +24 -30
- package/lib/errors.js +48 -27
- package/lib/fields.js +6 -4
- package/lib/fs.js +6 -14
- package/lib/generate/action.js +36 -41
- package/lib/generate/client.js +11 -16
- package/lib/generate/connection.js +4 -13
- package/lib/generate/index.js +29 -19
- package/lib/generate/input.js +28 -43
- package/lib/generate/parse.js +38 -44
- package/lib/generate/sourceFile.js +11 -7
- package/lib/generate/util.js +9 -7
- package/lib/graphql.js +37 -65
- package/lib/index.js +3 -3
- package/lib/utils/component/publish.js +219 -0
- package/lib/utils/component/query.js +23 -0
- package/lib/utils/date.js +14 -0
- package/lib/utils/execution/logs.js +86 -0
- package/lib/utils/integration/definition.js +101 -0
- package/lib/utils/integration/export.js +36 -0
- package/lib/utils/integration/import.js +46 -0
- package/lib/utils/integration/invoke.js +64 -0
- package/lib/utils/integration/query.js +59 -0
- package/lib/utils/serialize.js +8 -0
- package/lib/utils/user/query.js +24 -0
- package/lib/yeoman.js +23 -0
- package/oclif.manifest.json +1 -1
- package/package.json +48 -54
- package/templates/component/openapi/client.ts +11 -9
- package/templates/component/openapi/request.ts +6 -4
- package/lib/auth.js.map +0 -1
- package/lib/commands/alerts/events/list.js.map +0 -1
- package/lib/commands/alerts/groups/create.js.map +0 -1
- package/lib/commands/alerts/groups/delete.js.map +0 -1
- package/lib/commands/alerts/groups/list.js.map +0 -1
- package/lib/commands/alerts/monitors/clear.js.map +0 -1
- package/lib/commands/alerts/monitors/create.js.map +0 -1
- package/lib/commands/alerts/monitors/delete.js.map +0 -1
- package/lib/commands/alerts/monitors/list.js.map +0 -1
- package/lib/commands/alerts/triggers/list.js.map +0 -1
- package/lib/commands/alerts/webhooks/create.js.map +0 -1
- package/lib/commands/alerts/webhooks/delete.js.map +0 -1
- package/lib/commands/alerts/webhooks/list.js.map +0 -1
- package/lib/commands/authorization-methods/list.js.map +0 -1
- package/lib/commands/components/actions/list.js.map +0 -1
- package/lib/commands/components/delete.js.map +0 -1
- package/lib/commands/components/init.js +0 -224
- package/lib/commands/components/init.js.map +0 -1
- package/lib/commands/components/list.js.map +0 -1
- package/lib/commands/components/publish.js.map +0 -1
- package/lib/commands/components/triggers/list.js.map +0 -1
- package/lib/commands/customers/create.js.map +0 -1
- package/lib/commands/customers/credentials/create.js.map +0 -1
- package/lib/commands/customers/credentials/delete.js.map +0 -1
- package/lib/commands/customers/credentials/list.js.map +0 -1
- package/lib/commands/customers/credentials/update.js.map +0 -1
- package/lib/commands/customers/delete.js.map +0 -1
- package/lib/commands/customers/list.js.map +0 -1
- package/lib/commands/customers/update.js.map +0 -1
- package/lib/commands/customers/users/create.js.map +0 -1
- package/lib/commands/customers/users/delete.js.map +0 -1
- package/lib/commands/customers/users/list.js.map +0 -1
- package/lib/commands/customers/users/roles.js.map +0 -1
- package/lib/commands/customers/users/update.js.map +0 -1
- package/lib/commands/executions/step-result/get.js.map +0 -1
- package/lib/commands/instances/config-vars/list.js.map +0 -1
- package/lib/commands/instances/create.js.map +0 -1
- package/lib/commands/instances/delete.js.map +0 -1
- package/lib/commands/instances/deploy.js.map +0 -1
- package/lib/commands/instances/disable.js.map +0 -1
- package/lib/commands/instances/enable.js.map +0 -1
- package/lib/commands/instances/flow-configs/list.js.map +0 -1
- package/lib/commands/instances/flow-configs/test.js.map +0 -1
- package/lib/commands/instances/list.js.map +0 -1
- package/lib/commands/instances/update.js.map +0 -1
- package/lib/commands/integrations/available.js.map +0 -1
- package/lib/commands/integrations/create.js.map +0 -1
- package/lib/commands/integrations/delete.js.map +0 -1
- package/lib/commands/integrations/export.js.map +0 -1
- package/lib/commands/integrations/flows/list.js.map +0 -1
- package/lib/commands/integrations/flows/test.js.map +0 -1
- package/lib/commands/integrations/fork.js.map +0 -1
- package/lib/commands/integrations/import.js.map +0 -1
- package/lib/commands/integrations/list.js.map +0 -1
- package/lib/commands/integrations/publish.js.map +0 -1
- package/lib/commands/integrations/update.js.map +0 -1
- package/lib/commands/integrations/versions/index.js.map +0 -1
- package/lib/commands/login.js.map +0 -1
- package/lib/commands/logout.js.map +0 -1
- package/lib/commands/logs/severities/list.js.map +0 -1
- package/lib/commands/me/index.js.map +0 -1
- package/lib/commands/me/token.js.map +0 -1
- package/lib/commands/organization/credentials/create.js.map +0 -1
- package/lib/commands/organization/credentials/delete.js.map +0 -1
- package/lib/commands/organization/credentials/list.js.map +0 -1
- package/lib/commands/organization/credentials/update.js.map +0 -1
- package/lib/commands/organization/update.js.map +0 -1
- package/lib/commands/organization/updateAvatarUrl.js.map +0 -1
- package/lib/commands/organization/users/create.js.map +0 -1
- package/lib/commands/organization/users/delete.js.map +0 -1
- package/lib/commands/organization/users/list.js.map +0 -1
- package/lib/commands/organization/users/roles.js.map +0 -1
- package/lib/commands/organization/users/update.js.map +0 -1
- package/lib/config.js.map +0 -1
- package/lib/errors.js.map +0 -1
- package/lib/fields.js.map +0 -1
- package/lib/fs.js.map +0 -1
- package/lib/generate/action.js.map +0 -1
- package/lib/generate/client.js.map +0 -1
- package/lib/generate/connection.js.map +0 -1
- package/lib/generate/index.js.map +0 -1
- package/lib/generate/input.js.map +0 -1
- package/lib/generate/parse.js.map +0 -1
- package/lib/generate/sourceFile.js.map +0 -1
- package/lib/generate/util.js.map +0 -1
- package/lib/graphql.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/templates/component/jest.config.js +0 -4
- package/templates/component/package.json +0 -24
- package/templates/component/src/actions.ts +0 -33
- package/templates/component/src/client.ts +0 -7
- package/templates/component/src/connections.ts +0 -25
- package/templates/component/src/index.test.ts +0 -32
- package/templates/component/src/index.ts +0 -17
- package/templates/component/src/triggers.ts +0 -18
- package/templates/component/tsconfig.json +0 -19
- package/templates/component/webpack.config.js +0 -44
|
@@ -1,42 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
-
}) : function(o, v) {
|
|
12
|
-
o["default"] = v;
|
|
13
|
-
});
|
|
14
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
-
if (mod && mod.__esModule) return mod;
|
|
16
|
-
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
-
__setModuleDefault(result, mod);
|
|
19
|
-
return result;
|
|
20
|
-
};
|
|
21
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
25
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
26
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
27
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
28
|
-
});
|
|
29
|
-
};
|
|
30
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31
|
-
const
|
|
32
|
-
const graphql_1 =
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
const result = yield graphql_1.default.query({
|
|
39
|
-
query: graphql_1.gql `
|
|
3
|
+
const core_1 = require("@oclif/core");
|
|
4
|
+
const graphql_1 = require("../../../graphql");
|
|
5
|
+
class ListCommand extends core_1.Command {
|
|
6
|
+
async run() {
|
|
7
|
+
const { flags } = await this.parse(ListCommand);
|
|
8
|
+
const result = await (0, graphql_1.gqlRequest)({
|
|
9
|
+
document: (0, graphql_1.gql) `
|
|
40
10
|
query listUsers {
|
|
41
11
|
organization {
|
|
42
12
|
users {
|
|
@@ -49,19 +19,17 @@ class ListCommand extends command_1.Command {
|
|
|
49
19
|
}
|
|
50
20
|
}
|
|
51
21
|
`,
|
|
52
|
-
});
|
|
53
|
-
cli_ux_1.cli.table(result.data.organization.users.nodes, {
|
|
54
|
-
id: {
|
|
55
|
-
minWidth: 8,
|
|
56
|
-
extended: true,
|
|
57
|
-
},
|
|
58
|
-
name: {},
|
|
59
|
-
email: {},
|
|
60
|
-
}, Object.assign({}, flags));
|
|
61
22
|
});
|
|
23
|
+
core_1.CliUx.ux.table(result.organization.users.nodes, {
|
|
24
|
+
id: {
|
|
25
|
+
minWidth: 8,
|
|
26
|
+
extended: true,
|
|
27
|
+
},
|
|
28
|
+
name: {},
|
|
29
|
+
email: {},
|
|
30
|
+
}, { ...flags });
|
|
62
31
|
}
|
|
63
32
|
}
|
|
64
33
|
exports.default = ListCommand;
|
|
65
34
|
ListCommand.description = "List Users of your Organization";
|
|
66
|
-
ListCommand.flags =
|
|
67
|
-
//# sourceMappingURL=list.js.map
|
|
35
|
+
ListCommand.flags = { ...core_1.CliUx.ux.table.flags() };
|
|
@@ -1,42 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
-
}) : function(o, v) {
|
|
12
|
-
o["default"] = v;
|
|
13
|
-
});
|
|
14
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
-
if (mod && mod.__esModule) return mod;
|
|
16
|
-
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
-
__setModuleDefault(result, mod);
|
|
19
|
-
return result;
|
|
20
|
-
};
|
|
21
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
25
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
26
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
27
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
28
|
-
});
|
|
29
|
-
};
|
|
30
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31
|
-
const
|
|
32
|
-
const graphql_1 =
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
const result = yield graphql_1.default.query({
|
|
39
|
-
query: graphql_1.gql `
|
|
3
|
+
const core_1 = require("@oclif/core");
|
|
4
|
+
const graphql_1 = require("../../../graphql");
|
|
5
|
+
class ListCommand extends core_1.Command {
|
|
6
|
+
async run() {
|
|
7
|
+
const { flags } = await this.parse(ListCommand);
|
|
8
|
+
const result = await (0, graphql_1.gqlRequest)({
|
|
9
|
+
document: (0, graphql_1.gql) `
|
|
40
10
|
query listOrganizationRoles {
|
|
41
11
|
organizationRoles {
|
|
42
12
|
id
|
|
@@ -45,19 +15,19 @@ class ListCommand extends command_1.Command {
|
|
|
45
15
|
}
|
|
46
16
|
}
|
|
47
17
|
`,
|
|
48
|
-
});
|
|
49
|
-
cli_ux_1.cli.table(result.data.organizationRoles, {
|
|
50
|
-
id: {
|
|
51
|
-
minWidth: 8,
|
|
52
|
-
extended: true,
|
|
53
|
-
},
|
|
54
|
-
name: {},
|
|
55
|
-
description: {},
|
|
56
|
-
}, Object.assign({}, flags));
|
|
57
18
|
});
|
|
19
|
+
core_1.CliUx.ux.table(result.organizationRoles, {
|
|
20
|
+
id: {
|
|
21
|
+
minWidth: 8,
|
|
22
|
+
extended: true,
|
|
23
|
+
},
|
|
24
|
+
name: {},
|
|
25
|
+
description: {},
|
|
26
|
+
}, { ...flags });
|
|
58
27
|
}
|
|
59
28
|
}
|
|
60
29
|
exports.default = ListCommand;
|
|
61
30
|
ListCommand.description = "List Roles you can grant to other users in your Organization";
|
|
62
|
-
ListCommand.flags =
|
|
63
|
-
|
|
31
|
+
ListCommand.flags = {
|
|
32
|
+
...core_1.CliUx.ux.table.flags(),
|
|
33
|
+
};
|
|
@@ -1,41 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
-
}) : function(o, v) {
|
|
12
|
-
o["default"] = v;
|
|
13
|
-
});
|
|
14
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
-
if (mod && mod.__esModule) return mod;
|
|
16
|
-
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
-
__setModuleDefault(result, mod);
|
|
19
|
-
return result;
|
|
20
|
-
};
|
|
21
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
25
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
26
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
27
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
28
|
-
});
|
|
29
|
-
};
|
|
30
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31
|
-
const
|
|
32
|
-
const graphql_1 =
|
|
33
|
-
class UpdateCommand extends
|
|
34
|
-
run() {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
mutation: graphql_1.gql `
|
|
3
|
+
const core_1 = require("@oclif/core");
|
|
4
|
+
const graphql_1 = require("../../../graphql");
|
|
5
|
+
class UpdateCommand extends core_1.Command {
|
|
6
|
+
async run() {
|
|
7
|
+
const { args: { user }, flags: { name, phone, "dark-mode": darkMode, "dark-mode-os-sync": darkModeOsSync, }, } = await this.parse(UpdateCommand);
|
|
8
|
+
const result = await (0, graphql_1.gqlRequest)({
|
|
9
|
+
document: (0, graphql_1.gql) `
|
|
39
10
|
mutation updateUser(
|
|
40
11
|
$user: ID!
|
|
41
12
|
$name: String
|
|
@@ -62,16 +33,15 @@ class UpdateCommand extends command_1.Command {
|
|
|
62
33
|
}
|
|
63
34
|
}
|
|
64
35
|
`,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
});
|
|
73
|
-
this.log(result.data.updateUser.user.id);
|
|
36
|
+
variables: {
|
|
37
|
+
user,
|
|
38
|
+
name,
|
|
39
|
+
phone,
|
|
40
|
+
darkMode,
|
|
41
|
+
darkModeOsSync,
|
|
42
|
+
},
|
|
74
43
|
});
|
|
44
|
+
this.log(result.updateUser.user.id);
|
|
75
45
|
}
|
|
76
46
|
}
|
|
77
47
|
exports.default = UpdateCommand;
|
|
@@ -84,15 +54,14 @@ UpdateCommand.args = [
|
|
|
84
54
|
},
|
|
85
55
|
];
|
|
86
56
|
UpdateCommand.flags = {
|
|
87
|
-
name:
|
|
88
|
-
phone:
|
|
89
|
-
"dark-mode":
|
|
57
|
+
name: core_1.Flags.string({ char: "n", description: "name of the user" }),
|
|
58
|
+
phone: core_1.Flags.string({ char: "p", description: "phone number of the user" }),
|
|
59
|
+
"dark-mode": core_1.Flags.string({
|
|
90
60
|
char: "d",
|
|
91
61
|
description: "whether the user should have dark mode enabled",
|
|
92
62
|
}),
|
|
93
|
-
"dark-mode-os-sync":
|
|
63
|
+
"dark-mode-os-sync": core_1.Flags.string({
|
|
94
64
|
char: "o",
|
|
95
65
|
description: "whether dark mode should sync with OS settings",
|
|
96
66
|
}),
|
|
97
67
|
};
|
|
98
|
-
//# sourceMappingURL=update.js.map
|
package/lib/config.js
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
4
|
};
|
|
@@ -16,30 +7,33 @@ exports.readConfig = exports.writeConfig = exports.deleteConfig = exports.config
|
|
|
16
7
|
const os_1 = require("os");
|
|
17
8
|
const path_1 = __importDefault(require("path"));
|
|
18
9
|
const fs_1 = require("./fs");
|
|
19
|
-
const
|
|
20
|
-
const configDirectory = path_1.default.join(os_1.homedir(), ".config", "prism");
|
|
10
|
+
const serialize_1 = require("./utils/serialize");
|
|
11
|
+
const configDirectory = path_1.default.join((0, os_1.homedir)(), ".config", "prism");
|
|
21
12
|
const configFilePath = path_1.default.join(configDirectory, "config.yml");
|
|
22
|
-
const ensureConfigDirectoryExists = () =>
|
|
23
|
-
if (
|
|
13
|
+
const ensureConfigDirectoryExists = async () => {
|
|
14
|
+
if (await (0, fs_1.exists)(configDirectory))
|
|
24
15
|
return;
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
exports.
|
|
29
|
-
|
|
16
|
+
await fs_1.fs.mkdir(configDirectory, { recursive: true });
|
|
17
|
+
};
|
|
18
|
+
const configFileExists = async () => (0, fs_1.exists)(configFilePath);
|
|
19
|
+
exports.configFileExists = configFileExists;
|
|
20
|
+
const deleteConfig = async () => {
|
|
21
|
+
if (!(await (0, exports.configFileExists)()))
|
|
30
22
|
return;
|
|
31
23
|
return fs_1.fs.unlink(configFilePath);
|
|
32
|
-
}
|
|
33
|
-
exports.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
|
|
24
|
+
};
|
|
25
|
+
exports.deleteConfig = deleteConfig;
|
|
26
|
+
const writeConfig = async (config) => {
|
|
27
|
+
await ensureConfigDirectoryExists();
|
|
28
|
+
const contents = (0, serialize_1.dumpYaml)(config, { skipInvalid: true });
|
|
29
|
+
await fs_1.fs.writeFile(configFilePath, contents, { encoding: "utf-8" });
|
|
30
|
+
};
|
|
31
|
+
exports.writeConfig = writeConfig;
|
|
32
|
+
const readConfig = async () => {
|
|
33
|
+
if (!(await (0, exports.configFileExists)()))
|
|
40
34
|
return null;
|
|
41
|
-
const contents =
|
|
42
|
-
const config = (
|
|
35
|
+
const contents = await fs_1.fs.readFile(configFilePath, { encoding: "utf-8" });
|
|
36
|
+
const config = (await (0, serialize_1.loadYaml)(contents.toString()));
|
|
43
37
|
return config;
|
|
44
|
-
}
|
|
45
|
-
|
|
38
|
+
};
|
|
39
|
+
exports.readConfig = readConfig;
|
package/lib/errors.js
CHANGED
|
@@ -1,34 +1,55 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
3
|
+
exports.processError = void 0;
|
|
4
|
+
const graphql_request_1 = require("graphql-request");
|
|
4
5
|
const http_status_codes_1 = require("http-status-codes");
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
const isOclifError = (error) => Boolean(error) &&
|
|
7
|
+
typeof error === "object" &&
|
|
8
|
+
error !== null &&
|
|
9
|
+
"oclif" in error;
|
|
10
|
+
const isError = (error) => Boolean(error) &&
|
|
11
|
+
typeof error === "object" &&
|
|
12
|
+
error !== null &&
|
|
13
|
+
"message" in error;
|
|
14
|
+
const getStatusMessage = (status) => {
|
|
15
|
+
if (status === http_status_codes_1.StatusCodes.OK) {
|
|
16
|
+
return;
|
|
12
17
|
}
|
|
13
|
-
return
|
|
18
|
+
return status === http_status_codes_1.StatusCodes.UNAUTHORIZED
|
|
19
|
+
? "You are not logged in."
|
|
20
|
+
: (0, http_status_codes_1.getReasonPhrase)(status);
|
|
14
21
|
};
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const {
|
|
19
|
-
|
|
20
|
-
const { name, statusCode, result } = networkError;
|
|
21
|
-
const message = getErrorMessage(name, statusCode);
|
|
22
|
-
const errors = (_a = result === null || result === void 0 ? void 0 : result.errors) === null || _a === void 0 ? void 0 : _a.map((error) => error.message).join("\n");
|
|
23
|
-
if (errors) {
|
|
24
|
-
console.error(`${message}\n ${errors}`);
|
|
25
|
-
}
|
|
26
|
-
else {
|
|
27
|
-
console.error(message);
|
|
28
|
-
}
|
|
29
|
-
process.exit(1);
|
|
30
|
-
}
|
|
22
|
+
const extractResponseError = ({ response: { errors = [], status }, }) => {
|
|
23
|
+
try {
|
|
24
|
+
const statusMessage = getStatusMessage(status);
|
|
25
|
+
const errorMessages = errors.map(({ message }) => message);
|
|
26
|
+
return [statusMessage, ...errorMessages].filter(Boolean).join("\n");
|
|
31
27
|
}
|
|
28
|
+
catch (e) {
|
|
29
|
+
return `GraphQL Error (Code: ${status})`;
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
/** Accept arbitrary errors and convert them to OClif's error types. */
|
|
33
|
+
const processError = (error) => {
|
|
34
|
+
// Pass OclifErrors through unchanged
|
|
35
|
+
if (isOclifError(error)) {
|
|
36
|
+
return error;
|
|
37
|
+
}
|
|
38
|
+
// Try to process GraphQL errors into more user-friendly forms
|
|
39
|
+
if (error instanceof graphql_request_1.ClientError) {
|
|
40
|
+
return {
|
|
41
|
+
message: extractResponseError(error),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
// If a conventional error, only pass along the message for presentation
|
|
45
|
+
if (isError(error)) {
|
|
46
|
+
return {
|
|
47
|
+
message: error.message,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
// Last ditch best effort
|
|
51
|
+
return {
|
|
52
|
+
message: error,
|
|
53
|
+
};
|
|
32
54
|
};
|
|
33
|
-
exports.
|
|
34
|
-
//# sourceMappingURL=errors.js.map
|
|
55
|
+
exports.processError = processError;
|
package/lib/fields.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.parseJsonOrUndefined = exports.toValues = void 0;
|
|
4
|
-
|
|
4
|
+
const toValues = (rawValues) => {
|
|
5
5
|
if (!rawValues)
|
|
6
6
|
return undefined;
|
|
7
|
-
|
|
7
|
+
const obj = JSON.parse(rawValues);
|
|
8
|
+
return Object.entries(obj).reduce((result, [key, value]) => [...result, { key, value }], []);
|
|
8
9
|
};
|
|
9
|
-
exports.
|
|
10
|
-
|
|
10
|
+
exports.toValues = toValues;
|
|
11
|
+
const parseJsonOrUndefined = (json) => json ? JSON.parse(json) : undefined;
|
|
12
|
+
exports.parseJsonOrUndefined = parseJsonOrUndefined;
|
package/lib/fs.js
CHANGED
|
@@ -1,21 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
3
|
exports.fs = exports.readStdin = exports.exists = void 0;
|
|
13
4
|
const fs_1 = require("fs");
|
|
14
5
|
Object.defineProperty(exports, "fs", { enumerable: true, get: function () { return fs_1.promises; } });
|
|
15
|
-
|
|
6
|
+
const exists = async (path) => {
|
|
16
7
|
return fs_1.promises.access(path).then(() => true, () => false);
|
|
17
|
-
}
|
|
18
|
-
exports.
|
|
8
|
+
};
|
|
9
|
+
exports.exists = exists;
|
|
10
|
+
const readStdin = async () => {
|
|
19
11
|
return new Promise((resolve, reject) => {
|
|
20
12
|
process.stdin
|
|
21
13
|
.on("readable", () => {
|
|
@@ -27,5 +19,5 @@ exports.readStdin = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
27
19
|
})
|
|
28
20
|
.on("error", reject);
|
|
29
21
|
});
|
|
30
|
-
}
|
|
31
|
-
|
|
22
|
+
};
|
|
23
|
+
exports.readStdin = readStdin;
|
package/lib/generate/action.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -14,19 +18,10 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
14
18
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
19
|
if (mod && mod.__esModule) return mod;
|
|
16
20
|
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
22
|
__setModuleDefault(result, mod);
|
|
19
23
|
return result;
|
|
20
24
|
};
|
|
21
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
22
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
25
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
26
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
27
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
28
|
-
});
|
|
29
|
-
};
|
|
30
25
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
32
27
|
};
|
|
@@ -56,7 +51,7 @@ const getPerformFunctionOpenApi = ({ actionObject, service, methodSignature, })
|
|
|
56
51
|
};
|
|
57
52
|
const instantiatePerformFunction = (action, project, includeClient, addRetry) => {
|
|
58
53
|
const { projectTemplatePath, projectType } = project;
|
|
59
|
-
const clientCallParams = util_1.appendRequiredFields({
|
|
54
|
+
const clientCallParams = (0, util_1.appendRequiredFields)({
|
|
60
55
|
inputFields: ["connection"],
|
|
61
56
|
addRetry,
|
|
62
57
|
includeClient,
|
|
@@ -75,7 +70,7 @@ const instantiatePerformFunction = (action, project, includeClient, addRetry) =>
|
|
|
75
70
|
const name = properties.map(({ propertyName }) => propertyName).join(",");
|
|
76
71
|
return shouldImport ? name : "";
|
|
77
72
|
});
|
|
78
|
-
const updatedPerformParams = util_1.appendRequiredFields({
|
|
73
|
+
const updatedPerformParams = (0, util_1.appendRequiredFields)({
|
|
79
74
|
inputFields: includeClient
|
|
80
75
|
? ["connection", ...performParams]
|
|
81
76
|
: projectType === "wsdl"
|
|
@@ -100,8 +95,8 @@ const generateActionObject = (methodSignature, project) => {
|
|
|
100
95
|
.map((parameter) => {
|
|
101
96
|
const input = {
|
|
102
97
|
name: parameter.getName(),
|
|
103
|
-
properties: input_1.getActionMethodInputProperties(parameter, parse_1.getParamTypeDefinition(project, parameter)),
|
|
104
|
-
paramTypeDefinition: parse_1.getParamTypeDefinition(project, parameter),
|
|
98
|
+
properties: (0, input_1.getActionMethodInputProperties)(parameter, (0, parse_1.getParamTypeDefinition)(project, parameter)),
|
|
99
|
+
paramTypeDefinition: (0, parse_1.getParamTypeDefinition)(project, parameter),
|
|
105
100
|
};
|
|
106
101
|
input.shouldImport =
|
|
107
102
|
(input.properties.length > 0 &&
|
|
@@ -120,9 +115,9 @@ const compileAction = (actionService, actionMethod, project) => {
|
|
|
120
115
|
var _a;
|
|
121
116
|
return ({
|
|
122
117
|
service: actionService,
|
|
123
|
-
key: camelcase_1.default(actionMethod.getName()),
|
|
118
|
+
key: (0, camelcase_1.default)(actionMethod.getName()),
|
|
124
119
|
display: {
|
|
125
|
-
label: camelcase_1.default(actionMethod.getName(), { pascalCase: true })
|
|
120
|
+
label: (0, camelcase_1.default)(actionMethod.getName(), { pascalCase: true })
|
|
126
121
|
.split(/(?=[A-Z])/)
|
|
127
122
|
.join(" "),
|
|
128
123
|
description: ((_a = actionMethod.getJsDocs()) === null || _a === void 0 ? void 0 : _a.length) > 0
|
|
@@ -133,7 +128,7 @@ const compileAction = (actionService, actionMethod, project) => {
|
|
|
133
128
|
actionObject: generateActionObject(actionMethod, project),
|
|
134
129
|
});
|
|
135
130
|
};
|
|
136
|
-
const writeAction = (action, project, includeClient, addRetry) =>
|
|
131
|
+
const writeAction = async (action, project, includeClient, addRetry) => {
|
|
137
132
|
const { actionFile } = project;
|
|
138
133
|
// Apparently you can't generate an Object without adding it to the file
|
|
139
134
|
// so this is our place holder to use as a template
|
|
@@ -152,7 +147,7 @@ const writeAction = (action, project, includeClient, addRetry) => __awaiter(void
|
|
|
152
147
|
}
|
|
153
148
|
return shouldImport ? [name] : [];
|
|
154
149
|
});
|
|
155
|
-
const updatedInputFields = util_1.appendRequiredFields({
|
|
150
|
+
const updatedInputFields = (0, util_1.appendRequiredFields)({
|
|
156
151
|
inputFields: includeClient
|
|
157
152
|
? [
|
|
158
153
|
`connection: { type: "connection", label: "connection", required: true }`,
|
|
@@ -167,7 +162,7 @@ const writeAction = (action, project, includeClient, addRetry) => __awaiter(void
|
|
|
167
162
|
name: "display",
|
|
168
163
|
initializer: `{
|
|
169
164
|
label: "${action.display.label}",
|
|
170
|
-
description: \`${util_1.createDescription(action.display.description)}\`
|
|
165
|
+
description: \`${(0, util_1.createDescription)(action.display.description)}\`
|
|
171
166
|
}`,
|
|
172
167
|
},
|
|
173
168
|
{
|
|
@@ -203,20 +198,20 @@ const writeAction = (action, project, includeClient, addRetry) => __awaiter(void
|
|
|
203
198
|
// Remove the temporary action object now that we've placed our payload
|
|
204
199
|
// into the action
|
|
205
200
|
placeholder.remove();
|
|
206
|
-
}
|
|
207
|
-
const writeServicesImport = (services, { actionFile, definitionDirectory }) =>
|
|
201
|
+
};
|
|
202
|
+
const writeServicesImport = async (services, { actionFile, definitionDirectory }) => {
|
|
208
203
|
actionFile.addImportDeclaration({
|
|
209
204
|
moduleSpecifier: `../${definitionDirectory}/index`,
|
|
210
205
|
namedImports: services,
|
|
211
206
|
});
|
|
212
|
-
}
|
|
213
|
-
const writeInputsImport = (inputNames, { actionFile }) =>
|
|
207
|
+
};
|
|
208
|
+
const writeInputsImport = async (inputNames, { actionFile }) => {
|
|
214
209
|
actionFile.addImportDeclaration({
|
|
215
210
|
moduleSpecifier: "./inputs",
|
|
216
211
|
namedImports: inputNames,
|
|
217
212
|
});
|
|
218
|
-
}
|
|
219
|
-
|
|
213
|
+
};
|
|
214
|
+
const generateActions = async (project, includeClient, addRetry) => {
|
|
220
215
|
const { projectType, actionFile, inputsFile } = project;
|
|
221
216
|
if (projectType === "openApi" && includeClient) {
|
|
222
217
|
actionFile.addImportDeclarations([
|
|
@@ -226,40 +221,40 @@ exports.generateActions = (project, includeClient, addRetry) => __awaiter(void 0
|
|
|
226
221
|
},
|
|
227
222
|
]);
|
|
228
223
|
}
|
|
229
|
-
const methods = parse_1.getActionMethods(project);
|
|
230
|
-
const actions = lodash_1.sortBy(Object.entries(methods).flatMap(([service, actionMethods]) => {
|
|
231
|
-
const dedupedActions = lodash_1.uniqBy(actionMethods, (a) => a.getName());
|
|
224
|
+
const methods = (0, parse_1.getActionMethods)(project);
|
|
225
|
+
const actions = (0, lodash_1.sortBy)(Object.entries(methods).flatMap(([service, actionMethods]) => {
|
|
226
|
+
const dedupedActions = (0, lodash_1.uniqBy)(actionMethods, (a) => a.getName());
|
|
232
227
|
return dedupedActions.map((action) => compileAction(service, action, project));
|
|
233
228
|
}), ({ key }) => key);
|
|
234
229
|
const inputs = actions
|
|
235
230
|
.flatMap(({ actionObject }) => actionObject.inputs)
|
|
236
231
|
.filter(({ shouldImport }) => shouldImport)
|
|
237
232
|
.flatMap(({ properties }) => properties);
|
|
238
|
-
const dedupedInputs = lodash_1.sortBy(lodash_1.uniqBy(inputs, (i) => i.propertyName.toLowerCase()), (i) => i.propertyName);
|
|
239
|
-
|
|
233
|
+
const dedupedInputs = (0, lodash_1.sortBy)((0, lodash_1.uniqBy)(inputs, (i) => i.propertyName.toLowerCase()), (i) => i.propertyName);
|
|
234
|
+
await (0, input_1.writeInputs)(project, dedupedInputs);
|
|
240
235
|
inputsFile.organizeImports();
|
|
241
236
|
inputsFile.formatText();
|
|
242
|
-
|
|
237
|
+
await inputsFile.save();
|
|
243
238
|
const services = actions.map(({ service }) => service);
|
|
244
|
-
const dedupedServices = lodash_1.sortBy(lodash_1.uniq(services));
|
|
245
|
-
|
|
239
|
+
const dedupedServices = (0, lodash_1.sortBy)((0, lodash_1.uniq)(services));
|
|
240
|
+
await writeServicesImport(dedupedServices, project);
|
|
246
241
|
const inputNames = dedupedInputs.map(({ propertyName }) => propertyName);
|
|
247
|
-
|
|
248
|
-
? (
|
|
242
|
+
await writeInputsImport(projectType === "openApi"
|
|
243
|
+
? (await (0, util_1.appendRequiredFields)({
|
|
249
244
|
inputFields: inputNames,
|
|
250
245
|
includeClient,
|
|
251
246
|
addRetry,
|
|
252
247
|
})) || []
|
|
253
248
|
: inputNames, project);
|
|
254
249
|
const actionPromises = actions.map((action) => writeAction(action, project, includeClient, projectType === "openApi" && addRetry));
|
|
255
|
-
|
|
256
|
-
const actionExports = lodash_1.sortBy(actions.map(({ key }) => key));
|
|
250
|
+
await Promise.all(actionPromises);
|
|
251
|
+
const actionExports = (0, lodash_1.sortBy)(actions.map(({ key }) => key));
|
|
257
252
|
actionFile.addExportAssignment({
|
|
258
253
|
isExportEquals: false,
|
|
259
254
|
expression: `{${actionExports.join(",\n")}}`,
|
|
260
255
|
});
|
|
261
256
|
actionFile.organizeImports();
|
|
262
257
|
actionFile.formatText();
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
|
|
258
|
+
await actionFile.save();
|
|
259
|
+
};
|
|
260
|
+
exports.generateActions = generateActions;
|