@fonoster/ctl 0.3.22 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -158
- package/dist/commands/agents/create.js +1 -1
- package/dist/commands/agents/delete.js +1 -1
- package/dist/commands/agents/get.js +1 -1
- package/dist/commands/agents/list.js +1 -1
- package/dist/commands/agents/update.js +1 -1
- package/dist/commands/auth/login.js +1 -1
- package/dist/commands/auth/logout.js +1 -1
- package/dist/commands/bug.js +1 -1
- package/dist/commands/domains/create.js +1 -1
- package/dist/commands/domains/delete.js +1 -1
- package/dist/commands/domains/get.js +1 -1
- package/dist/commands/domains/list.js +1 -1
- package/dist/commands/domains/update.js +1 -1
- package/dist/commands/feedback.js +1 -1
- package/dist/commands/numbers/create.js +1 -1
- package/dist/commands/numbers/delete.js +1 -1
- package/dist/commands/numbers/get.js +1 -1
- package/dist/commands/numbers/list.js +1 -1
- package/dist/commands/projects/create.js +1 -1
- package/dist/commands/projects/delete.js +1 -1
- package/dist/commands/projects/get.js +1 -1
- package/dist/commands/projects/list.js +1 -1
- package/dist/commands/projects/renew.js +1 -1
- package/dist/commands/projects/use.js +1 -1
- package/dist/commands/providers/create.js +1 -1
- package/dist/commands/providers/delete.js +1 -1
- package/dist/commands/providers/get.js +1 -1
- package/dist/commands/providers/list.js +1 -1
- package/dist/commands/providers/update.js +1 -1
- package/package.json +12 -15
- package/README.md.bak +0 -797
- package/oclif.manifest.json +0 -1
|
@@ -40,9 +40,9 @@ class ListCommand extends command_1.Command {
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
exports.default = ListCommand;
|
|
44
43
|
ListCommand.description = `list all Fonoster Projects you have access to
|
|
45
44
|
...
|
|
46
45
|
List all Fonoster Projects you have access to
|
|
47
46
|
`;
|
|
48
47
|
ListCommand.aliases = ["projects:ls"];
|
|
48
|
+
exports.default = ListCommand;
|
|
@@ -39,9 +39,9 @@ class UpdateCommand extends command_1.Command {
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
exports.default = UpdateCommand;
|
|
43
42
|
UpdateCommand.args = [{ name: "ref" }];
|
|
44
43
|
UpdateCommand.description = `renew the credentials of a Fonoster Project
|
|
45
44
|
...
|
|
46
45
|
Renew the credentials of a Fonoster Project
|
|
47
46
|
`;
|
|
47
|
+
exports.default = UpdateCommand;
|
|
@@ -52,9 +52,9 @@ class UpdateCommand extends command_1.Command {
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
-
exports.default = UpdateCommand;
|
|
56
55
|
UpdateCommand.args = [{ name: "ref" }];
|
|
57
56
|
UpdateCommand.description = `set a default Fonoster Project
|
|
58
57
|
...
|
|
59
58
|
Set a default Fonoster Project
|
|
60
59
|
`;
|
|
60
|
+
exports.default = UpdateCommand;
|
|
@@ -107,8 +107,8 @@ class CreateCommand extends command_1.Command {
|
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
|
-
exports.default = CreateCommand;
|
|
111
110
|
CreateCommand.description = `create a new Fonoster Provider (trunk)
|
|
112
111
|
...
|
|
113
112
|
Create a new Fonoster Provider
|
|
114
113
|
`;
|
|
114
|
+
exports.default = CreateCommand;
|
|
@@ -43,7 +43,7 @@ class DeleteCommand extends delete_1.default {
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
|
-
exports.default = DeleteCommand;
|
|
47
46
|
DeleteCommand.description = "delete a Fonoster Provider";
|
|
48
47
|
DeleteCommand.args = [{ name: "ref" }];
|
|
49
48
|
DeleteCommand.aliases = ["providers:del", "providers:rm"];
|
|
49
|
+
exports.default = DeleteCommand;
|
|
@@ -83,7 +83,6 @@ class ListCommand extends command_1.Command {
|
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
|
-
exports.default = ListCommand;
|
|
87
86
|
ListCommand.description = `list all Fonoster Providers you have access to
|
|
88
87
|
...
|
|
89
88
|
List all Fonoster Providers you have access to
|
|
@@ -96,3 +95,4 @@ ListCommand.flags = {
|
|
|
96
95
|
})
|
|
97
96
|
};
|
|
98
97
|
ListCommand.aliases = ["providers:ls"];
|
|
98
|
+
exports.default = ListCommand;
|
|
@@ -105,9 +105,9 @@ class UpdateCommand extends command_1.Command {
|
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
-
exports.default = UpdateCommand;
|
|
109
108
|
UpdateCommand.args = [{ name: "ref" }];
|
|
110
109
|
UpdateCommand.description = `update a Fonoster Provider
|
|
111
110
|
...
|
|
112
111
|
Update a Fonoster Provider
|
|
113
112
|
`;
|
|
113
|
+
exports.default = UpdateCommand;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/ctl",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Command-Line for Fonoster",
|
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
|
6
6
|
"homepage": "https://github.com/fonoster/fonoster#readme",
|
|
@@ -15,10 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"prebuild": "rimraf ./dist tsconfig.tsbuildinfo",
|
|
18
|
-
"build": "tsc -b tsconfig.json"
|
|
19
|
-
"postpack": "rimraf -f oclif.manifest.json",
|
|
20
|
-
"prepack": "oclif-dev manifest && oclif-dev readme",
|
|
21
|
-
"version": "oclif-dev readme && sed -i.bak \"s#master#main#g\" README.md && git add README.md"
|
|
18
|
+
"build": "tsc -b tsconfig.json"
|
|
22
19
|
},
|
|
23
20
|
"directories": {
|
|
24
21
|
"src": "src",
|
|
@@ -67,20 +64,20 @@
|
|
|
67
64
|
"@fonoster/projects": "^0.3.22",
|
|
68
65
|
"@fonoster/providers": "^0.3.22",
|
|
69
66
|
"@fonoster/secrets": "^0.3.22",
|
|
70
|
-
"@oclif/command": "^1.8.
|
|
71
|
-
"@oclif/config": "^1.18.
|
|
72
|
-
"@oclif/core": "^1.
|
|
67
|
+
"@oclif/command": "^1.8.22",
|
|
68
|
+
"@oclif/config": "^1.18.8",
|
|
69
|
+
"@oclif/core": "^1.26.2",
|
|
73
70
|
"@oclif/errors": "^1.3.5",
|
|
74
71
|
"@oclif/plugin-help": "^3.3.1",
|
|
75
|
-
"@oclif/plugin-not-found": "^2.3.
|
|
76
|
-
"@oclif/plugin-plugins": "^2.
|
|
72
|
+
"@oclif/plugin-not-found": "^2.3.23",
|
|
73
|
+
"@oclif/plugin-plugins": "^2.4.4",
|
|
77
74
|
"easy-table": "^1.2.0",
|
|
78
|
-
"figlet": "^1.5.
|
|
75
|
+
"figlet": "^1.5.2",
|
|
79
76
|
"get-stdin-with-tty": "^6.0.0",
|
|
80
77
|
"inquirer": "^7.3.3",
|
|
81
|
-
"moment": "^2.29.
|
|
82
|
-
"phone": "^2.4.
|
|
83
|
-
"prettyjson": "^1.2.
|
|
78
|
+
"moment": "^2.29.4",
|
|
79
|
+
"phone": "^2.4.22",
|
|
80
|
+
"prettyjson": "^1.2.5",
|
|
84
81
|
"update-notifier": "^6.0.2"
|
|
85
82
|
},
|
|
86
83
|
"devDependencies": {
|
|
@@ -88,5 +85,5 @@
|
|
|
88
85
|
"@types/prettyjson": "0.0.29",
|
|
89
86
|
"rimraf": "^3.0.2"
|
|
90
87
|
},
|
|
91
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "5ba21ada612657dcaff6f6aa7bce5a8e4a00830a"
|
|
92
89
|
}
|