@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.
Files changed (207) hide show
  1. package/bin/run +9 -8
  2. package/lib/auth.js +183 -199
  3. package/lib/commands/alerts/events/list.js +27 -57
  4. package/lib/commands/alerts/groups/create.js +18 -49
  5. package/lib/commands/alerts/groups/delete.js +10 -41
  6. package/lib/commands/alerts/groups/list.js +15 -47
  7. package/lib/commands/alerts/monitors/clear.js +10 -41
  8. package/lib/commands/alerts/monitors/create.js +27 -58
  9. package/lib/commands/alerts/monitors/delete.js +10 -41
  10. package/lib/commands/alerts/monitors/list.js +16 -48
  11. package/lib/commands/alerts/triggers/list.js +15 -47
  12. package/lib/commands/alerts/webhooks/create.js +18 -49
  13. package/lib/commands/alerts/webhooks/delete.js +10 -41
  14. package/lib/commands/alerts/webhooks/list.js +25 -57
  15. package/lib/commands/authorization-methods/list.js +20 -51
  16. package/lib/commands/components/actions/list.js +29 -61
  17. package/lib/commands/components/delete.js +10 -41
  18. package/lib/commands/components/dev/run.js +75 -0
  19. package/lib/commands/components/dev/test.js +218 -0
  20. package/lib/commands/components/init/action.js +12 -0
  21. package/lib/commands/components/init/component.js +12 -0
  22. package/lib/commands/components/init/connection.js +12 -0
  23. package/lib/commands/components/init/index.js +203 -0
  24. package/lib/commands/components/init/trigger.js +12 -0
  25. package/lib/commands/components/list.js +31 -60
  26. package/lib/commands/components/publish.js +29 -279
  27. package/lib/commands/components/triggers/list.js +29 -61
  28. package/lib/commands/customers/create.js +14 -45
  29. package/lib/commands/customers/credentials/create.js +19 -50
  30. package/lib/commands/customers/credentials/delete.js +10 -41
  31. package/lib/commands/customers/credentials/list.js +30 -59
  32. package/lib/commands/customers/credentials/update.js +16 -47
  33. package/lib/commands/customers/delete.js +10 -41
  34. package/lib/commands/customers/list.js +16 -48
  35. package/lib/commands/customers/update.js +15 -46
  36. package/lib/commands/customers/users/create.js +18 -49
  37. package/lib/commands/customers/users/delete.js +10 -41
  38. package/lib/commands/customers/users/list.js +21 -51
  39. package/lib/commands/customers/users/roles.js +18 -48
  40. package/lib/commands/customers/users/update.js +19 -50
  41. package/lib/commands/executions/step-result/get.js +36 -66
  42. package/lib/commands/instances/config-vars/list.js +32 -62
  43. package/lib/commands/instances/create.js +20 -51
  44. package/lib/commands/instances/delete.js +10 -41
  45. package/lib/commands/instances/deploy.js +20 -44
  46. package/lib/commands/instances/disable.js +11 -42
  47. package/lib/commands/instances/enable.js +11 -42
  48. package/lib/commands/instances/flow-configs/list.js +25 -55
  49. package/lib/commands/instances/flow-configs/test.js +62 -97
  50. package/lib/commands/instances/list.js +31 -59
  51. package/lib/commands/instances/update.js +15 -46
  52. package/lib/commands/integrations/available.js +13 -44
  53. package/lib/commands/integrations/create.js +14 -45
  54. package/lib/commands/integrations/delete.js +10 -41
  55. package/lib/commands/integrations/export.js +11 -68
  56. package/lib/commands/integrations/flows/list.js +22 -52
  57. package/lib/commands/integrations/flows/test.js +62 -96
  58. package/lib/commands/integrations/fork.js +15 -46
  59. package/lib/commands/integrations/import.js +12 -63
  60. package/lib/commands/integrations/list.js +25 -54
  61. package/lib/commands/integrations/publish.js +13 -44
  62. package/lib/commands/integrations/update.js +18 -49
  63. package/lib/commands/integrations/versions/index.js +26 -58
  64. package/lib/commands/login.js +16 -32
  65. package/lib/commands/logout.js +10 -22
  66. package/lib/commands/logs/severities/list.js +15 -47
  67. package/lib/commands/me/index.js +13 -60
  68. package/lib/commands/me/token/revoke.js +12 -0
  69. package/lib/commands/me/token.js +10 -22
  70. package/lib/commands/organization/credentials/create.js +17 -48
  71. package/lib/commands/organization/credentials/delete.js +10 -41
  72. package/lib/commands/organization/credentials/list.js +22 -54
  73. package/lib/commands/organization/credentials/update.js +16 -47
  74. package/lib/commands/organization/update.js +12 -43
  75. package/lib/commands/organization/updateAvatarUrl.js +14 -45
  76. package/lib/commands/organization/users/create.js +16 -47
  77. package/lib/commands/organization/users/delete.js +10 -41
  78. package/lib/commands/organization/users/list.js +16 -48
  79. package/lib/commands/organization/users/roles.js +18 -48
  80. package/lib/commands/organization/users/update.js +19 -50
  81. package/lib/config.js +24 -30
  82. package/lib/errors.js +48 -27
  83. package/lib/fields.js +6 -4
  84. package/lib/fs.js +6 -14
  85. package/lib/generate/action.js +36 -41
  86. package/lib/generate/client.js +11 -16
  87. package/lib/generate/connection.js +4 -13
  88. package/lib/generate/index.js +29 -19
  89. package/lib/generate/input.js +28 -43
  90. package/lib/generate/parse.js +38 -44
  91. package/lib/generate/sourceFile.js +11 -7
  92. package/lib/generate/util.js +9 -7
  93. package/lib/graphql.js +37 -65
  94. package/lib/index.js +3 -3
  95. package/lib/utils/component/publish.js +219 -0
  96. package/lib/utils/component/query.js +23 -0
  97. package/lib/utils/date.js +14 -0
  98. package/lib/utils/execution/logs.js +86 -0
  99. package/lib/utils/integration/definition.js +101 -0
  100. package/lib/utils/integration/export.js +36 -0
  101. package/lib/utils/integration/import.js +46 -0
  102. package/lib/utils/integration/invoke.js +64 -0
  103. package/lib/utils/integration/query.js +59 -0
  104. package/lib/utils/serialize.js +8 -0
  105. package/lib/utils/user/query.js +24 -0
  106. package/lib/yeoman.js +23 -0
  107. package/oclif.manifest.json +1 -1
  108. package/package.json +48 -54
  109. package/templates/component/openapi/client.ts +11 -9
  110. package/templates/component/openapi/request.ts +6 -4
  111. package/lib/auth.js.map +0 -1
  112. package/lib/commands/alerts/events/list.js.map +0 -1
  113. package/lib/commands/alerts/groups/create.js.map +0 -1
  114. package/lib/commands/alerts/groups/delete.js.map +0 -1
  115. package/lib/commands/alerts/groups/list.js.map +0 -1
  116. package/lib/commands/alerts/monitors/clear.js.map +0 -1
  117. package/lib/commands/alerts/monitors/create.js.map +0 -1
  118. package/lib/commands/alerts/monitors/delete.js.map +0 -1
  119. package/lib/commands/alerts/monitors/list.js.map +0 -1
  120. package/lib/commands/alerts/triggers/list.js.map +0 -1
  121. package/lib/commands/alerts/webhooks/create.js.map +0 -1
  122. package/lib/commands/alerts/webhooks/delete.js.map +0 -1
  123. package/lib/commands/alerts/webhooks/list.js.map +0 -1
  124. package/lib/commands/authorization-methods/list.js.map +0 -1
  125. package/lib/commands/components/actions/list.js.map +0 -1
  126. package/lib/commands/components/delete.js.map +0 -1
  127. package/lib/commands/components/init.js +0 -224
  128. package/lib/commands/components/init.js.map +0 -1
  129. package/lib/commands/components/list.js.map +0 -1
  130. package/lib/commands/components/publish.js.map +0 -1
  131. package/lib/commands/components/triggers/list.js.map +0 -1
  132. package/lib/commands/customers/create.js.map +0 -1
  133. package/lib/commands/customers/credentials/create.js.map +0 -1
  134. package/lib/commands/customers/credentials/delete.js.map +0 -1
  135. package/lib/commands/customers/credentials/list.js.map +0 -1
  136. package/lib/commands/customers/credentials/update.js.map +0 -1
  137. package/lib/commands/customers/delete.js.map +0 -1
  138. package/lib/commands/customers/list.js.map +0 -1
  139. package/lib/commands/customers/update.js.map +0 -1
  140. package/lib/commands/customers/users/create.js.map +0 -1
  141. package/lib/commands/customers/users/delete.js.map +0 -1
  142. package/lib/commands/customers/users/list.js.map +0 -1
  143. package/lib/commands/customers/users/roles.js.map +0 -1
  144. package/lib/commands/customers/users/update.js.map +0 -1
  145. package/lib/commands/executions/step-result/get.js.map +0 -1
  146. package/lib/commands/instances/config-vars/list.js.map +0 -1
  147. package/lib/commands/instances/create.js.map +0 -1
  148. package/lib/commands/instances/delete.js.map +0 -1
  149. package/lib/commands/instances/deploy.js.map +0 -1
  150. package/lib/commands/instances/disable.js.map +0 -1
  151. package/lib/commands/instances/enable.js.map +0 -1
  152. package/lib/commands/instances/flow-configs/list.js.map +0 -1
  153. package/lib/commands/instances/flow-configs/test.js.map +0 -1
  154. package/lib/commands/instances/list.js.map +0 -1
  155. package/lib/commands/instances/update.js.map +0 -1
  156. package/lib/commands/integrations/available.js.map +0 -1
  157. package/lib/commands/integrations/create.js.map +0 -1
  158. package/lib/commands/integrations/delete.js.map +0 -1
  159. package/lib/commands/integrations/export.js.map +0 -1
  160. package/lib/commands/integrations/flows/list.js.map +0 -1
  161. package/lib/commands/integrations/flows/test.js.map +0 -1
  162. package/lib/commands/integrations/fork.js.map +0 -1
  163. package/lib/commands/integrations/import.js.map +0 -1
  164. package/lib/commands/integrations/list.js.map +0 -1
  165. package/lib/commands/integrations/publish.js.map +0 -1
  166. package/lib/commands/integrations/update.js.map +0 -1
  167. package/lib/commands/integrations/versions/index.js.map +0 -1
  168. package/lib/commands/login.js.map +0 -1
  169. package/lib/commands/logout.js.map +0 -1
  170. package/lib/commands/logs/severities/list.js.map +0 -1
  171. package/lib/commands/me/index.js.map +0 -1
  172. package/lib/commands/me/token.js.map +0 -1
  173. package/lib/commands/organization/credentials/create.js.map +0 -1
  174. package/lib/commands/organization/credentials/delete.js.map +0 -1
  175. package/lib/commands/organization/credentials/list.js.map +0 -1
  176. package/lib/commands/organization/credentials/update.js.map +0 -1
  177. package/lib/commands/organization/update.js.map +0 -1
  178. package/lib/commands/organization/updateAvatarUrl.js.map +0 -1
  179. package/lib/commands/organization/users/create.js.map +0 -1
  180. package/lib/commands/organization/users/delete.js.map +0 -1
  181. package/lib/commands/organization/users/list.js.map +0 -1
  182. package/lib/commands/organization/users/roles.js.map +0 -1
  183. package/lib/commands/organization/users/update.js.map +0 -1
  184. package/lib/config.js.map +0 -1
  185. package/lib/errors.js.map +0 -1
  186. package/lib/fields.js.map +0 -1
  187. package/lib/fs.js.map +0 -1
  188. package/lib/generate/action.js.map +0 -1
  189. package/lib/generate/client.js.map +0 -1
  190. package/lib/generate/connection.js.map +0 -1
  191. package/lib/generate/index.js.map +0 -1
  192. package/lib/generate/input.js.map +0 -1
  193. package/lib/generate/parse.js.map +0 -1
  194. package/lib/generate/sourceFile.js.map +0 -1
  195. package/lib/generate/util.js.map +0 -1
  196. package/lib/graphql.js.map +0 -1
  197. package/lib/index.js.map +0 -1
  198. package/templates/component/jest.config.js +0 -4
  199. package/templates/component/package.json +0 -24
  200. package/templates/component/src/actions.ts +0 -33
  201. package/templates/component/src/client.ts +0 -7
  202. package/templates/component/src/connections.ts +0 -25
  203. package/templates/component/src/index.test.ts +0 -32
  204. package/templates/component/src/index.ts +0 -17
  205. package/templates/component/src/triggers.ts +0 -18
  206. package/templates/component/tsconfig.json +0 -19
  207. package/templates/component/webpack.config.js +0 -44
@@ -1,43 +1,14 @@
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 command_1 = require("@oclif/command");
3
+ const core_1 = require("@oclif/core");
32
4
  const fields_1 = require("../../../fields");
33
- const graphql_1 = __importStar(require("../../../graphql"));
34
- class CreateCommand extends command_1.Command {
35
- run() {
36
- return __awaiter(this, void 0, void 0, function* () {
37
- const { flags: { label, "authorization-method": authorizationMethod, fields }, } = this.parse(CreateCommand);
38
- const values = fields_1.toValues(fields);
39
- const result = yield graphql_1.default.mutate({
40
- mutation: graphql_1.gql `
5
+ const graphql_1 = require("../../../graphql");
6
+ class CreateCommand extends core_1.Command {
7
+ async run() {
8
+ const { flags: { label, "authorization-method": authorizationMethod, fields }, } = await this.parse(CreateCommand);
9
+ const values = (0, fields_1.toValues)(fields);
10
+ const result = await (0, graphql_1.gqlRequest)({
11
+ document: (0, graphql_1.gql) `
41
12
  mutation createOrganizationCredential(
42
13
  $label: String!
43
14
  $authorizationMethod: ID!
@@ -60,32 +31,30 @@ class CreateCommand extends command_1.Command {
60
31
  }
61
32
  }
62
33
  `,
63
- variables: {
64
- label,
65
- authorizationMethod,
66
- values,
67
- },
68
- });
69
- this.log(result.data.createOrganizationCredential.credential.id);
34
+ variables: {
35
+ label,
36
+ authorizationMethod,
37
+ values,
38
+ },
70
39
  });
40
+ this.log(result.createOrganizationCredential.credential.id);
71
41
  }
72
42
  }
73
43
  exports.default = CreateCommand;
74
44
  CreateCommand.description = "Create a set of Organization-level Credentials for use by Instance Actions";
75
45
  CreateCommand.flags = {
76
- label: command_1.flags.string({
46
+ label: core_1.Flags.string({
77
47
  char: "l",
78
48
  required: true,
79
49
  description: "name to give the new credentials",
80
50
  }),
81
- "authorization-method": command_1.flags.string({
51
+ "authorization-method": core_1.Flags.string({
82
52
  char: "a",
83
53
  required: true,
84
54
  description: "ID of the authorization method",
85
55
  }),
86
- fields: command_1.flags.string({
56
+ fields: core_1.Flags.string({
87
57
  char: "f",
88
58
  description: "username, password, etc., in JSON format",
89
59
  }),
90
60
  };
91
- //# sourceMappingURL=create.js.map
@@ -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 command_1 = require("@oclif/command");
32
- const graphql_1 = __importStar(require("../../../graphql"));
33
- class DeleteCommand extends command_1.Command {
34
- run() {
35
- return __awaiter(this, void 0, void 0, function* () {
36
- const { args: { credential }, } = this.parse(DeleteCommand);
37
- yield graphql_1.default.mutate({
38
- mutation: graphql_1.gql `
3
+ const core_1 = require("@oclif/core");
4
+ const graphql_1 = require("../../../graphql");
5
+ class DeleteCommand extends core_1.Command {
6
+ async run() {
7
+ const { args: { credential }, } = await this.parse(DeleteCommand);
8
+ await (0, graphql_1.gqlRequest)({
9
+ document: (0, graphql_1.gql) `
39
10
  mutation deleteCredential($id: ID!) {
40
11
  deleteCredential(input: { id: $id }) {
41
12
  credential {
@@ -48,10 +19,9 @@ class DeleteCommand extends command_1.Command {
48
19
  }
49
20
  }
50
21
  `,
51
- variables: {
52
- id: credential,
53
- },
54
- });
22
+ variables: {
23
+ id: credential,
24
+ },
55
25
  });
56
26
  }
57
27
  }
@@ -64,4 +34,3 @@ DeleteCommand.args = [
64
34
  description: "ID of the credential to delete",
65
35
  },
66
36
  ];
67
- //# sourceMappingURL=delete.js.map
@@ -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 command_1 = require("@oclif/command");
32
- const graphql_1 = __importStar(require("../../../graphql"));
33
- const cli_ux_1 = require("cli-ux");
34
- class ListCommand extends command_1.Command {
35
- run() {
36
- return __awaiter(this, void 0, void 0, function* () {
37
- const { flags } = this.parse(ListCommand);
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 listOrganizationCredentials {
41
11
  organization {
42
12
  credentials {
@@ -53,25 +23,23 @@ class ListCommand extends command_1.Command {
53
23
  }
54
24
  }
55
25
  `,
56
- });
57
- cli_ux_1.cli.table(result.data.organization.credentials.nodes, {
58
- id: {
59
- minWidth: 8,
60
- extended: true,
61
- },
62
- label: {},
63
- authorizationMethod: {
64
- header: "Authorization Method",
65
- get: (row) => row.authorizationMethod.label,
66
- },
67
- readyForUse: {
68
- header: "Ready for Use",
69
- },
70
- }, Object.assign({}, flags));
71
26
  });
27
+ core_1.CliUx.ux.table(result.organization.credentials.nodes, {
28
+ id: {
29
+ minWidth: 8,
30
+ extended: true,
31
+ },
32
+ label: {},
33
+ authorizationMethod: {
34
+ header: "Authorization Method",
35
+ get: (row) => row.authorizationMethod.label,
36
+ },
37
+ readyForUse: {
38
+ header: "Ready for Use",
39
+ },
40
+ }, { ...flags });
72
41
  }
73
42
  }
74
43
  exports.default = ListCommand;
75
44
  ListCommand.description = "List Credentials available to the entire Organization";
76
- ListCommand.flags = Object.assign({}, cli_ux_1.cli.table.flags());
77
- //# sourceMappingURL=list.js.map
45
+ ListCommand.flags = { ...core_1.CliUx.ux.table.flags() };
@@ -1,43 +1,14 @@
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 command_1 = require("@oclif/command");
3
+ const core_1 = require("@oclif/core");
32
4
  const fields_1 = require("../../../fields");
33
- const graphql_1 = __importStar(require("../../../graphql"));
34
- class UpdateCommand extends command_1.Command {
35
- run() {
36
- return __awaiter(this, void 0, void 0, function* () {
37
- const { args: { credential }, flags: { label, fields }, } = this.parse(UpdateCommand);
38
- const values = fields_1.toValues(fields);
39
- const result = yield graphql_1.default.mutate({
40
- mutation: graphql_1.gql `
5
+ const graphql_1 = require("../../../graphql");
6
+ class UpdateCommand extends core_1.Command {
7
+ async run() {
8
+ const { args: { credential }, flags: { label, fields }, } = await this.parse(UpdateCommand);
9
+ const values = (0, fields_1.toValues)(fields);
10
+ const result = await (0, graphql_1.gqlRequest)({
11
+ document: (0, graphql_1.gql) `
41
12
  mutation updateCustomerCredential(
42
13
  $label: String!
43
14
  $values: [InputCredentialFieldValue]!
@@ -56,14 +27,13 @@ class UpdateCommand extends command_1.Command {
56
27
  }
57
28
  }
58
29
  `,
59
- variables: {
60
- credential,
61
- label,
62
- values,
63
- },
64
- });
65
- this.log(result.data.updateCredential.credential.id);
30
+ variables: {
31
+ credential,
32
+ label,
33
+ values,
34
+ },
66
35
  });
36
+ this.log(result.updateCredential.credential.id);
67
37
  }
68
38
  }
69
39
  exports.default = UpdateCommand;
@@ -76,15 +46,14 @@ UpdateCommand.args = [
76
46
  },
77
47
  ];
78
48
  UpdateCommand.flags = {
79
- label: command_1.flags.string({
49
+ label: core_1.Flags.string({
80
50
  char: "l",
81
51
  required: true,
82
52
  description: "new name to give the credential",
83
53
  }),
84
- fields: command_1.flags.string({
54
+ fields: core_1.Flags.string({
85
55
  char: "f",
86
56
  required: true,
87
57
  description: "username, password, etc., in JSON format",
88
58
  }),
89
59
  };
90
- //# sourceMappingURL=update.js.map
@@ -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 command_1 = require("@oclif/command");
32
- const graphql_1 = __importStar(require("../../graphql"));
33
- class UpdateCommand extends command_1.Command {
34
- run() {
35
- return __awaiter(this, void 0, void 0, function* () {
36
- const { flags: { name }, } = this.parse(UpdateCommand);
37
- const result = yield graphql_1.default.mutate({
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 { flags: { name }, } = await this.parse(UpdateCommand);
8
+ const result = await (0, graphql_1.gqlRequest)({
9
+ document: (0, graphql_1.gql) `
39
10
  mutation updateOrganization($name: String) {
40
11
  updateOrganization(input: { name: $name }) {
41
12
  organization {
@@ -48,21 +19,19 @@ class UpdateCommand extends command_1.Command {
48
19
  }
49
20
  }
50
21
  `,
51
- variables: {
52
- name,
53
- },
54
- });
55
- this.log(result.data.updateOrganization.organization.id);
22
+ variables: {
23
+ name,
24
+ },
56
25
  });
26
+ this.log(result.updateOrganization.organization.id);
57
27
  }
58
28
  }
59
29
  exports.default = UpdateCommand;
60
30
  // TODO: Add more flags once optional updates are implemented
61
31
  UpdateCommand.description = "Update your Organization";
62
32
  UpdateCommand.flags = {
63
- name: command_1.flags.string({
33
+ name: core_1.Flags.string({
64
34
  char: "n",
65
35
  description: "name of the organization",
66
36
  }),
67
37
  };
68
- //# sourceMappingURL=update.js.map
@@ -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 command_1 = require("@oclif/command");
32
- const graphql_1 = __importStar(require("../../graphql"));
33
- class UpdateAvatarUrlCommand extends command_1.Command {
34
- run() {
35
- return __awaiter(this, void 0, void 0, function* () {
36
- const { flags: { organizationId, avatarUrl }, } = this.parse(UpdateAvatarUrlCommand);
37
- const result = yield graphql_1.default.mutate({
38
- mutation: graphql_1.gql `
3
+ const core_1 = require("@oclif/core");
4
+ const graphql_1 = require("../../graphql");
5
+ class UpdateAvatarUrlCommand extends core_1.Command {
6
+ async run() {
7
+ const { flags: { organizationId, avatarUrl }, } = await this.parse(UpdateAvatarUrlCommand);
8
+ const result = await (0, graphql_1.gqlRequest)({
9
+ document: (0, graphql_1.gql) `
39
10
  mutation commitAvatarUpload($organizationId: ID!, $avatarUrl: String!) {
40
11
  updateOrganization(
41
12
  input: { id: $organizationId, avatarUrl: $avatarUrl }
@@ -51,28 +22,26 @@ class UpdateAvatarUrlCommand extends command_1.Command {
51
22
  }
52
23
  }
53
24
  `,
54
- variables: {
55
- organizationId,
56
- avatarUrl,
57
- },
58
- });
59
- this.log(result.data.updateOrganization.organization.id);
25
+ variables: {
26
+ organizationId,
27
+ avatarUrl,
28
+ },
60
29
  });
30
+ this.log(result.updateOrganization.organization.id);
61
31
  }
62
32
  }
63
33
  exports.default = UpdateAvatarUrlCommand;
64
34
  // TODO: Add more flags once optional updates are implemented
65
35
  UpdateAvatarUrlCommand.description = "Update your Organization Avatar URL";
66
36
  UpdateAvatarUrlCommand.flags = {
67
- organizationId: command_1.flags.string({
37
+ organizationId: core_1.Flags.string({
68
38
  name: "organization",
69
39
  required: true,
70
40
  description: "ID of an organization",
71
41
  }),
72
- avatarUrl: command_1.flags.string({
42
+ avatarUrl: core_1.Flags.string({
73
43
  char: "n",
74
44
  required: false,
75
45
  description: "Url of the organization avatar",
76
46
  }),
77
47
  };
78
- //# sourceMappingURL=updateAvatarUrl.js.map
@@ -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 command_1 = require("@oclif/command");
32
- const graphql_1 = __importStar(require("../../../graphql"));
33
- class CreateCommand extends command_1.Command {
34
- run() {
35
- return __awaiter(this, void 0, void 0, function* () {
36
- const { flags: { name, email, role }, } = this.parse(CreateCommand);
37
- const result = yield graphql_1.default.mutate({
38
- mutation: graphql_1.gql `
3
+ const core_1 = require("@oclif/core");
4
+ const graphql_1 = require("../../../graphql");
5
+ class CreateCommand extends core_1.Command {
6
+ async run() {
7
+ const { flags: { name, email, role }, } = await this.parse(CreateCommand);
8
+ const result = await (0, graphql_1.gqlRequest)({
9
+ document: (0, graphql_1.gql) `
39
10
  mutation createOrganizationUser(
40
11
  $name: String
41
12
  $email: String!
@@ -54,29 +25,27 @@ class CreateCommand extends command_1.Command {
54
25
  }
55
26
  }
56
27
  `,
57
- variables: {
58
- name,
59
- email,
60
- role,
61
- },
62
- });
63
- this.log(result.data.createOrganizationUser.user.id);
28
+ variables: {
29
+ name,
30
+ email,
31
+ role,
32
+ },
64
33
  });
34
+ this.log(result.createOrganizationUser.user.id);
65
35
  }
66
36
  }
67
37
  exports.default = CreateCommand;
68
38
  CreateCommand.description = "Create a User for your Organization";
69
39
  CreateCommand.flags = {
70
- name: command_1.flags.string({ char: "n", description: "name of the user" }),
71
- email: command_1.flags.string({
40
+ name: core_1.Flags.string({ char: "n", description: "name of the user" }),
41
+ email: core_1.Flags.string({
72
42
  char: "e",
73
43
  required: true,
74
44
  description: "email address of the user",
75
45
  }),
76
- role: command_1.flags.string({
46
+ role: core_1.Flags.string({
77
47
  char: "r",
78
48
  required: true,
79
49
  description: "role the user should assume",
80
50
  }),
81
51
  };
82
- //# sourceMappingURL=create.js.map
@@ -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 command_1 = require("@oclif/command");
32
- const graphql_1 = __importStar(require("../../../graphql"));
33
- class DeleteCommand extends command_1.Command {
34
- run() {
35
- return __awaiter(this, void 0, void 0, function* () {
36
- const { args: { user }, } = this.parse(DeleteCommand);
37
- yield graphql_1.default.mutate({
38
- mutation: graphql_1.gql `
3
+ const core_1 = require("@oclif/core");
4
+ const graphql_1 = require("../../../graphql");
5
+ class DeleteCommand extends core_1.Command {
6
+ async run() {
7
+ const { args: { user }, } = await this.parse(DeleteCommand);
8
+ await (0, graphql_1.gqlRequest)({
9
+ document: (0, graphql_1.gql) `
39
10
  mutation deleteUser($id: ID!) {
40
11
  deleteUser(input: { id: $id }) {
41
12
  user {
@@ -48,10 +19,9 @@ class DeleteCommand extends command_1.Command {
48
19
  }
49
20
  }
50
21
  `,
51
- variables: {
52
- id: user,
53
- },
54
- });
22
+ variables: {
23
+ id: user,
24
+ },
55
25
  });
56
26
  }
57
27
  }
@@ -64,4 +34,3 @@ DeleteCommand.args = [
64
34
  description: "ID of the user to delete",
65
35
  },
66
36
  ];
67
- //# sourceMappingURL=delete.js.map