@fonoster/ctl 0.3.17 → 0.3.19

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 (46) hide show
  1. package/README.md +44 -44
  2. package/dist/base/delete.js +18 -0
  3. package/dist/commands/agents/create.js +22 -1
  4. package/dist/commands/agents/delete.js +18 -0
  5. package/dist/commands/agents/get.js +21 -2
  6. package/dist/commands/agents/list.js +18 -0
  7. package/dist/commands/agents/update.js +23 -2
  8. package/dist/commands/apps/create.js +19 -1
  9. package/dist/commands/apps/delete.js +18 -0
  10. package/dist/commands/apps/list.js +18 -0
  11. package/dist/commands/apps/update.js +18 -0
  12. package/dist/commands/auth/login.js +19 -1
  13. package/dist/commands/auth/logout.js +29 -9
  14. package/dist/commands/bug.js +18 -0
  15. package/dist/commands/domains/create.js +19 -1
  16. package/dist/commands/domains/delete.js +18 -0
  17. package/dist/commands/domains/get.js +19 -1
  18. package/dist/commands/domains/list.js +18 -0
  19. package/dist/commands/domains/update.js +18 -0
  20. package/dist/commands/feedback.js +18 -0
  21. package/dist/commands/numbers/create.js +18 -0
  22. package/dist/commands/numbers/delete.js +18 -0
  23. package/dist/commands/numbers/get.js +19 -1
  24. package/dist/commands/numbers/list.js +18 -0
  25. package/dist/commands/numbers/update.js +19 -1
  26. package/dist/commands/projects/create.js +18 -0
  27. package/dist/commands/projects/delete.js +18 -0
  28. package/dist/commands/projects/get.js +19 -1
  29. package/dist/commands/projects/list.js +18 -0
  30. package/dist/commands/projects/renew.js +18 -0
  31. package/dist/commands/projects/use.js +18 -0
  32. package/dist/commands/providers/create.js +18 -0
  33. package/dist/commands/providers/delete.js +18 -0
  34. package/dist/commands/providers/get.js +19 -1
  35. package/dist/commands/providers/list.js +19 -1
  36. package/dist/commands/providers/update.js +18 -0
  37. package/dist/commands/secrets/create.js +7 -2
  38. package/dist/config.js +18 -0
  39. package/dist/data/voices.js +18 -0
  40. package/dist/decorators/project_guard.js +18 -0
  41. package/dist/help.js +18 -0
  42. package/dist/index.js +18 -0
  43. package/dist/utils.d.ts +1 -0
  44. package/dist/utils.js +29 -0
  45. package/oclif.manifest.json +1 -1
  46. package/package.json +12 -11
@@ -6,6 +6,24 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
+ /*
10
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
11
+ * http://github.com/fonoster/fonoster
12
+ *
13
+ * This file is part of Fonoster
14
+ *
15
+ * Licensed under the MIT License (the "License");
16
+ * you may not use this file except in compliance with
17
+ * the License. You may obtain a copy of the License at
18
+ *
19
+ * https://opensource.org/licenses/MIT
20
+ *
21
+ * Unless required by applicable law or agreed to in writing, software
22
+ * distributed under the License is distributed on an "AS IS" BASIS,
23
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24
+ * See the License for the specific language governing permissions and
25
+ * limitations under the License.
26
+ */
9
27
  require("../../config");
10
28
  const domains_1 = require("@fonoster/domains");
11
29
  const errors_1 = require("@oclif/errors");
@@ -6,6 +6,24 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
+ /*
10
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
11
+ * http://github.com/fonoster/fonoster
12
+ *
13
+ * This file is part of Fonoster
14
+ *
15
+ * Licensed under the MIT License (the "License");
16
+ * you may not use this file except in compliance with
17
+ * the License. You may obtain a copy of the License at
18
+ *
19
+ * https://opensource.org/licenses/MIT
20
+ *
21
+ * Unless required by applicable law or agreed to in writing, software
22
+ * distributed under the License is distributed on an "AS IS" BASIS,
23
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24
+ * See the License for the specific language governing permissions and
25
+ * limitations under the License.
26
+ */
9
27
  require("../../config");
10
28
  const errors_1 = require("@oclif/errors");
11
29
  const command_1 = require("@oclif/command");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -63,4 +81,4 @@ class default_1 extends command_1.Command {
63
81
  }
64
82
  }
65
83
  exports.default = default_1;
66
- default_1.description = `log in to a Fonoster deployment`;
84
+ default_1.description = "log in to a Fonoster deployment";
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -11,16 +29,18 @@ const fs = require("fs");
11
29
  class default_1 extends command_1.Command {
12
30
  async run() {
13
31
  core_1.CliUx.ux.action.start(`Login out`);
14
- try {
15
- fs.rmSync(BASE_DIR, { recursive: true });
16
- await core_1.CliUx.ux.wait(1000);
17
- core_1.CliUx.ux.action.stop("Done");
18
- }
19
- catch (e) {
20
- core_1.CliUx.ux.action.stop();
21
- throw new errors_1.CLIError(e.message);
32
+ if (fs.existsSync(BASE_DIR)) {
33
+ try {
34
+ fs.rmSync(BASE_DIR, { recursive: true });
35
+ await core_1.CliUx.ux.wait(1000);
36
+ }
37
+ catch (e) {
38
+ core_1.CliUx.ux.action.stop();
39
+ throw new errors_1.CLIError(e.message);
40
+ }
22
41
  }
42
+ core_1.CliUx.ux.action.stop("Done");
23
43
  }
24
44
  }
25
45
  exports.default = default_1;
26
- default_1.description = `log out from a fonoster deployment`;
46
+ default_1.description = "log out from a fonoster deployment";
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../config");
4
22
  const core_1 = require("@oclif/core");
5
23
  const command_1 = require("@oclif/command");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const domains_1 = require("@fonoster/domains");
5
23
  const errors_1 = require("@oclif/errors");
@@ -57,7 +75,7 @@ class CreateCommand extends command_1.Command {
57
75
  type: "input",
58
76
  default: ".*"
59
77
  },
60
- /*{
78
+ /* {
61
79
  name: 'accessDeny',
62
80
  message: 'access deny list',
63
81
  type: 'input',
@@ -3,6 +3,24 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ /*
7
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
8
+ * http://github.com/fonoster/fonoster
9
+ *
10
+ * This file is part of Fonoster
11
+ *
12
+ * Licensed under the MIT License (the "License");
13
+ * you may not use this file except in compliance with
14
+ * the License. You may obtain a copy of the License at
15
+ *
16
+ * https://opensource.org/licenses/MIT
17
+ *
18
+ * Unless required by applicable law or agreed to in writing, software
19
+ * distributed under the License is distributed on an "AS IS" BASIS,
20
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
+ * See the License for the specific language governing permissions and
22
+ * limitations under the License.
23
+ */
6
24
  const delete_1 = __importDefault(require("../../base/delete"));
7
25
  const errors_1 = require("@oclif/errors");
8
26
  const config_1 = require("../../config");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -41,5 +59,5 @@ class GetCommand extends command_1.Command {
41
59
  }
42
60
  }
43
61
  exports.default = GetCommand;
44
- GetCommand.description = `get a Fonoster Domain`;
62
+ GetCommand.description = "get a Fonoster Domain";
45
63
  GetCommand.args = [{ name: "ref" }];
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const domains_1 = require("@fonoster/domains");
5
23
  const errors_1 = require("@oclif/errors");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const domains_1 = require("@fonoster/domains");
5
23
  const errors_1 = require("@oclif/errors");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../config");
4
22
  const core_1 = require("@oclif/core");
5
23
  const command_1 = require("@oclif/command");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -3,6 +3,24 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ /*
7
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
8
+ * http://github.com/fonoster/fonoster
9
+ *
10
+ * This file is part of Fonoster
11
+ *
12
+ * Licensed under the MIT License (the "License");
13
+ * you may not use this file except in compliance with
14
+ * the License. You may obtain a copy of the License at
15
+ *
16
+ * https://opensource.org/licenses/MIT
17
+ *
18
+ * Unless required by applicable law or agreed to in writing, software
19
+ * distributed under the License is distributed on an "AS IS" BASIS,
20
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
+ * See the License for the specific language governing permissions and
22
+ * limitations under the License.
23
+ */
6
24
  const delete_1 = __importDefault(require("../../base/delete"));
7
25
  const errors_1 = require("@oclif/errors");
8
26
  const config_1 = require("../../config");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -37,5 +55,5 @@ class GetCommand extends command_1.Command {
37
55
  }
38
56
  }
39
57
  exports.default = GetCommand;
40
- GetCommand.description = `get a Fonoster Number`;
58
+ GetCommand.description = "get a Fonoster Number";
41
59
  GetCommand.args = [{ name: "ref" }];
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -7,6 +7,24 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  exports.UpdateCommand = void 0;
10
+ /*
11
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
12
+ * http://github.com/fonoster/fonoster
13
+ *
14
+ * This file is part of Fonoster
15
+ *
16
+ * Licensed under the MIT License (the "License");
17
+ * you may not use this file except in compliance with
18
+ * the License. You may obtain a copy of the License at
19
+ *
20
+ * https://opensource.org/licenses/MIT
21
+ *
22
+ * Unless required by applicable law or agreed to in writing, software
23
+ * distributed under the License is distributed on an "AS IS" BASIS,
24
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25
+ * See the License for the specific language governing permissions and
26
+ * limitations under the License.
27
+ */
10
28
  require("../../config");
11
29
  const errors_1 = require("@oclif/errors");
12
30
  const command_1 = require("@oclif/command");
@@ -63,7 +81,7 @@ class UpdateCommand extends command_1.Command {
63
81
  const accessAllow = answers.accessAllow;
64
82
  answers.accessDeny = accessDeny ? accessDeny.split(",") : [];
65
83
  answers.accessAllow = accessAllow ? accessAllow.split(",") : [];
66
- core_1.CliUx.ux.action.start(`Updating number`);
84
+ core_1.CliUx.ux.action.start("Updating number");
67
85
  await numbers.updateNumber(answers);
68
86
  await core_1.CliUx.ux.wait(1000);
69
87
  core_1.CliUx.ux.action.stop("Done");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const Projects = require("@fonoster/projects");
5
23
  const errors_1 = require("@oclif/errors");
@@ -3,6 +3,24 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ /*
7
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
8
+ * http://github.com/fonoster/fonoster
9
+ *
10
+ * This file is part of Fonoster
11
+ *
12
+ * Licensed under the MIT License (the "License");
13
+ * you may not use this file except in compliance with
14
+ * the License. You may obtain a copy of the License at
15
+ *
16
+ * https://opensource.org/licenses/MIT
17
+ *
18
+ * Unless required by applicable law or agreed to in writing, software
19
+ * distributed under the License is distributed on an "AS IS" BASIS,
20
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
+ * See the License for the specific language governing permissions and
22
+ * limitations under the License.
23
+ */
6
24
  const delete_1 = __importDefault(require("../../base/delete"));
7
25
  const Projects = require("@fonoster/projects");
8
26
  const config_1 = require("../../config");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -33,5 +51,5 @@ class GetCommand extends command_1.Command {
33
51
  }
34
52
  }
35
53
  exports.default = GetCommand;
36
- GetCommand.description = `get a Fonoster Project`;
54
+ GetCommand.description = "get a Fonoster Project";
37
55
  GetCommand.args = [{ name: "ref" }];
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");
@@ -1,5 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /*
4
+ * Copyright (C) 2022 by Fonoster Inc (https://fonoster.com)
5
+ * http://github.com/fonoster/fonoster
6
+ *
7
+ * This file is part of Fonoster
8
+ *
9
+ * Licensed under the MIT License (the "License");
10
+ * you may not use this file except in compliance with
11
+ * the License. You may obtain a copy of the License at
12
+ *
13
+ * https://opensource.org/licenses/MIT
14
+ *
15
+ * Unless required by applicable law or agreed to in writing, software
16
+ * distributed under the License is distributed on an "AS IS" BASIS,
17
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ * See the License for the specific language governing permissions and
19
+ * limitations under the License.
20
+ */
3
21
  require("../../config");
4
22
  const errors_1 = require("@oclif/errors");
5
23
  const command_1 = require("@oclif/command");