@fonoster/ctl 0.9.21 → 0.9.22

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 (99) hide show
  1. package/README.md +57 -57
  2. package/dist/AuthenticatedCommand.d.ts +18 -0
  3. package/dist/AuthenticatedCommand.js +1 -2
  4. package/dist/BaseCommand.d.ts +18 -0
  5. package/dist/BaseCommand.js +1 -2
  6. package/dist/Help.d.ts +18 -0
  7. package/dist/Help.js +1 -2
  8. package/dist/commands/apikeys/create.js +1 -2
  9. package/dist/commands/apikeys/delete.js +1 -2
  10. package/dist/commands/apikeys/list.js +1 -2
  11. package/dist/commands/apikeys/regenerate.js +1 -2
  12. package/dist/commands/applications/create.js +2 -3
  13. package/dist/commands/applications/delete.js +1 -2
  14. package/dist/commands/applications/get.js +1 -2
  15. package/dist/commands/applications/list.js +1 -2
  16. package/dist/commands/applications/update.js +1 -2
  17. package/dist/commands/bug.d.ts +18 -0
  18. package/dist/commands/bug.js +1 -2
  19. package/dist/commands/feedback.d.ts +18 -0
  20. package/dist/commands/feedback.js +1 -2
  21. package/dist/commands/secrets/create.js +1 -2
  22. package/dist/commands/secrets/delete.js +1 -2
  23. package/dist/commands/secrets/get.js +1 -2
  24. package/dist/commands/secrets/list.js +1 -2
  25. package/dist/commands/secrets/update.js +1 -2
  26. package/dist/commands/sipnet/acls/create.js +1 -2
  27. package/dist/commands/sipnet/acls/delete.js +1 -2
  28. package/dist/commands/sipnet/acls/get.js +1 -2
  29. package/dist/commands/sipnet/acls/list.js +1 -2
  30. package/dist/commands/sipnet/acls/update.js +1 -2
  31. package/dist/commands/sipnet/agents/create.js +1 -2
  32. package/dist/commands/sipnet/agents/delete.js +1 -2
  33. package/dist/commands/sipnet/agents/get.js +1 -2
  34. package/dist/commands/sipnet/agents/list.js +1 -2
  35. package/dist/commands/sipnet/agents/update.js +2 -3
  36. package/dist/commands/sipnet/calls/create.js +3 -4
  37. package/dist/commands/sipnet/calls/get.js +1 -2
  38. package/dist/commands/sipnet/calls/list.js +2 -3
  39. package/dist/commands/sipnet/credentials/create.js +1 -2
  40. package/dist/commands/sipnet/credentials/delete.js +1 -2
  41. package/dist/commands/sipnet/credentials/get.js +1 -2
  42. package/dist/commands/sipnet/credentials/list.js +1 -2
  43. package/dist/commands/sipnet/credentials/update.js +1 -2
  44. package/dist/commands/sipnet/domains/create.js +1 -2
  45. package/dist/commands/sipnet/domains/delete.js +1 -2
  46. package/dist/commands/sipnet/domains/get.js +1 -2
  47. package/dist/commands/sipnet/domains/list.js +1 -2
  48. package/dist/commands/sipnet/domains/update.js +1 -2
  49. package/dist/commands/sipnet/numbers/create.js +2 -3
  50. package/dist/commands/sipnet/numbers/delete.js +1 -2
  51. package/dist/commands/sipnet/numbers/get.js +1 -2
  52. package/dist/commands/sipnet/numbers/linkTwilioNumber.js +1 -2
  53. package/dist/commands/sipnet/numbers/list.js +1 -2
  54. package/dist/commands/sipnet/numbers/update.js +2 -3
  55. package/dist/commands/sipnet/trunks/create.js +1 -2
  56. package/dist/commands/sipnet/trunks/delete.js +1 -2
  57. package/dist/commands/sipnet/trunks/get.js +1 -2
  58. package/dist/commands/sipnet/trunks/list.js +1 -2
  59. package/dist/commands/sipnet/trunks/update.js +1 -2
  60. package/dist/commands/utils/autopilotTestsCases.js +5 -6
  61. package/dist/commands/workspaces/active.d.ts +18 -0
  62. package/dist/commands/workspaces/active.js +2 -3
  63. package/dist/commands/workspaces/list.d.ts +18 -0
  64. package/dist/commands/workspaces/list.js +1 -2
  65. package/dist/commands/workspaces/login.js +1 -2
  66. package/dist/commands/workspaces/logout.d.ts +18 -0
  67. package/dist/commands/workspaces/logout.js +1 -2
  68. package/dist/commands/workspaces/use.d.ts +18 -0
  69. package/dist/commands/workspaces/use.js +1 -2
  70. package/dist/config/addWorkspace.d.ts +18 -0
  71. package/dist/config/getActiveWorkspace.d.ts +18 -0
  72. package/dist/config/getConfig.js +1 -1
  73. package/dist/config/index.d.ts +18 -0
  74. package/dist/config/index.js +1 -1
  75. package/dist/config/removeWorkspace.d.ts +18 -0
  76. package/dist/config/saveConfig.js +1 -1
  77. package/dist/config/setActiveWorkspace.d.ts +18 -0
  78. package/dist/config/types.d.ts +18 -0
  79. package/dist/config/validations.d.ts +18 -0
  80. package/dist/config/validations.js +1 -1
  81. package/dist/constants.js +1 -1
  82. package/dist/errorHandler.d.ts +18 -0
  83. package/dist/errorHandler.js +1 -1
  84. package/dist/utils/assignTwilioNumberToTrunk.d.ts +18 -0
  85. package/dist/utils/calculateFutureDate.js +1 -1
  86. package/dist/utils/createTwilioTrunk.d.ts +18 -0
  87. package/dist/utils/getFonosterNumberByTelUrl.d.ts +18 -0
  88. package/dist/utils/getFonosterNumberByTelUrl.js +1 -1
  89. package/dist/utils/getFonosterTrunkByInboundUri.d.ts +18 -0
  90. package/dist/utils/getFonosterTrunkByInboundUri.js +1 -1
  91. package/dist/utils/getOutboundUri.d.ts +18 -0
  92. package/dist/utils/getTwilioNumber.d.ts +18 -0
  93. package/dist/utils/getTwilioTrunk.d.ts +18 -0
  94. package/dist/utils/index.d.ts +18 -0
  95. package/dist/utils/index.js +1 -1
  96. package/dist/utils/linkTwilioNumberToApplication.d.ts +18 -0
  97. package/dist/utils/linkTwilioNumberToApplication.js +1 -1
  98. package/dist/utils/types.d.ts +18 -0
  99. package/package.json +4 -4
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -64,11 +63,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
64
63
  * See the License for the specific language governing permissions and
65
64
  * limitations under the License.
66
65
  */
66
+ const common_1 = require("@fonoster/common");
67
67
  const SDK = __importStar(require("@fonoster/sdk"));
68
68
  const prompts_1 = require("@inquirer/prompts");
69
69
  const AuthenticatedCommand_1 = require("../../AuthenticatedCommand");
70
70
  const errorHandler_1 = __importDefault(require("../../errorHandler"));
71
- const common_1 = require("@fonoster/common");
72
71
  class Create extends AuthenticatedCommand_1.AuthenticatedCommand {
73
72
  run() {
74
73
  return __awaiter(this, void 0, void 0, function* () {
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -1,3 +1,21 @@
1
+ /**
2
+ * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
3
+ * http://github.com/fonoster/fonoster
4
+ *
5
+ * This file is part of Fonoster
6
+ *
7
+ * Licensed under the MIT License (the "License");
8
+ * you may not use this file except in compliance with
9
+ * the License. You may obtain a copy of the License at
10
+ *
11
+ * https://opensource.org/licenses/MIT
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
1
19
  import { Command } from "@oclif/core";
2
20
  export default class Bug extends Command {
3
21
  static description: string;
@@ -9,8 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  });
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- /* eslint-disable import/no-unresolved */
13
- /*
12
+ /**
14
13
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
15
14
  * http://github.com/fonoster/fonoster
16
15
  *
@@ -1,3 +1,21 @@
1
+ /**
2
+ * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
3
+ * http://github.com/fonoster/fonoster
4
+ *
5
+ * This file is part of Fonoster
6
+ *
7
+ * Licensed under the MIT License (the "License");
8
+ * you may not use this file except in compliance with
9
+ * the License. You may obtain a copy of the License at
10
+ *
11
+ * https://opensource.org/licenses/MIT
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ */
1
19
  import { Command } from "@oclif/core";
2
20
  export default class Feedback extends Command {
3
21
  static description: string;
@@ -9,8 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  });
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- /* eslint-disable import/no-unresolved */
13
- /*
12
+ /**
14
13
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
15
14
  * http://github.com/fonoster/fonoster
16
15
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -66,9 +65,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
66
65
  */
67
66
  const SDK = __importStar(require("@fonoster/sdk"));
68
67
  const prompts_1 = require("@inquirer/prompts");
68
+ const core_1 = require("@oclif/core");
69
69
  const AuthenticatedCommand_1 = require("../../../AuthenticatedCommand");
70
70
  const errorHandler_1 = __importDefault(require("../../../errorHandler"));
71
- const core_1 = require("@oclif/core");
72
71
  class Update extends AuthenticatedCommand_1.AuthenticatedCommand {
73
72
  run() {
74
73
  return __awaiter(this, void 0, void 0, function* () {
@@ -52,8 +52,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
52
52
  return (mod && mod.__esModule) ? mod : { "default": mod };
53
53
  };
54
54
  Object.defineProperty(exports, "__esModule", { value: true });
55
- /* eslint-disable import/no-unresolved */
56
- /*
55
+ /**
57
56
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
58
57
  * http://github.com/fonoster/fonoster
59
58
  *
@@ -71,11 +70,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
71
70
  * See the License for the specific language governing permissions and
72
71
  * limitations under the License.
73
72
  */
73
+ const common_1 = require("@fonoster/common");
74
74
  const SDK = __importStar(require("@fonoster/sdk"));
75
+ const core_1 = require("@oclif/core");
75
76
  const AuthenticatedCommand_1 = require("../../../AuthenticatedCommand");
76
77
  const errorHandler_1 = __importDefault(require("../../../errorHandler"));
77
- const core_1 = require("@oclif/core");
78
- const common_1 = require("@fonoster/common");
79
78
  class Create extends AuthenticatedCommand_1.AuthenticatedCommand {
80
79
  run() {
81
80
  return __awaiter(this, void 0, void 0, function* () {
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -67,8 +66,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
67
66
  const SDK = __importStar(require("@fonoster/sdk"));
68
67
  const core_1 = require("@oclif/core");
69
68
  const cliui_1 = __importDefault(require("cliui"));
70
- const AuthenticatedCommand_1 = require("../../../AuthenticatedCommand");
71
69
  const moment_1 = __importDefault(require("moment"));
70
+ const AuthenticatedCommand_1 = require("../../../AuthenticatedCommand");
72
71
  class List extends AuthenticatedCommand_1.AuthenticatedCommand {
73
72
  run() {
74
73
  return __awaiter(this, void 0, void 0, function* () {
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -64,11 +63,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
64
63
  * See the License for the specific language governing permissions and
65
64
  * limitations under the License.
66
65
  */
66
+ const common_1 = require("@fonoster/common");
67
67
  const SDK = __importStar(require("@fonoster/sdk"));
68
68
  const prompts_1 = require("@inquirer/prompts");
69
69
  const AuthenticatedCommand_1 = require("../../../AuthenticatedCommand");
70
70
  const errorHandler_1 = __importDefault(require("../../../errorHandler"));
71
- const common_1 = require("@fonoster/common");
72
71
  class Create extends AuthenticatedCommand_1.AuthenticatedCommand {
73
72
  run() {
74
73
  return __awaiter(this, void 0, void 0, function* () {
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -66,9 +65,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
66
65
  */
67
66
  const SDK = __importStar(require("@fonoster/sdk"));
68
67
  const prompts_1 = require("@inquirer/prompts");
68
+ const core_1 = require("@oclif/core");
69
69
  const AuthenticatedCommand_1 = require("../../../AuthenticatedCommand");
70
70
  const errorHandler_1 = __importDefault(require("../../../errorHandler"));
71
- const core_1 = require("@oclif/core");
72
71
  class Update extends AuthenticatedCommand_1.AuthenticatedCommand {
73
72
  run() {
74
73
  return __awaiter(this, void 0, void 0, function* () {
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -42,8 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
42
42
  });
43
43
  };
44
44
  Object.defineProperty(exports, "__esModule", { value: true });
45
- /* eslint-disable import/no-unresolved */
46
- /*
45
+ /**
47
46
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
48
47
  * http://github.com/fonoster/fonoster
49
48
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *
@@ -45,8 +45,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
45
45
  return (mod && mod.__esModule) ? mod : { "default": mod };
46
46
  };
47
47
  Object.defineProperty(exports, "__esModule", { value: true });
48
- /* eslint-disable import/no-unresolved */
49
- /*
48
+ /**
50
49
  * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
51
50
  * http://github.com/fonoster/fonoster
52
51
  *