@fonoster/sdk 0.2.42 → 0.3.2

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/dist/index.d.ts CHANGED
@@ -10,6 +10,7 @@ import Auth from "@fonoster/auth";
10
10
  import Projects from "@fonoster/projects";
11
11
  import Users from "@fonoster/users";
12
12
  import Monitor from "@fonoster/monitor";
13
+ import Apps from "@fonoster/apps";
13
14
  declare const Fonoster: {
14
15
  Secrets: typeof Secrets;
15
16
  Auth: typeof Auth;
@@ -23,5 +24,6 @@ declare const Fonoster: {
23
24
  Projects: typeof Projects;
24
25
  Users: typeof Users;
25
26
  Monitor: typeof Monitor;
27
+ Apps: typeof Apps;
26
28
  };
27
29
  export { Fonoster as default };
package/dist/index.js CHANGED
@@ -34,6 +34,7 @@ const auth_1 = __importDefault(require("@fonoster/auth"));
34
34
  const projects_1 = __importDefault(require("@fonoster/projects"));
35
35
  const users_1 = __importDefault(require("@fonoster/users"));
36
36
  const monitor_1 = __importDefault(require("@fonoster/monitor"));
37
+ const apps_1 = __importDefault(require("@fonoster/apps"));
37
38
  const logger_1 = require("@fonoster/logger");
38
39
  (0, logger_1.mute)();
39
40
  const Fonoster = {
@@ -49,6 +50,7 @@ const Fonoster = {
49
50
  Projects: projects_1.default,
50
51
  Users: users_1.default,
51
52
  Monitor: monitor_1.default,
53
+ Apps: apps_1.default
52
54
  };
53
55
  exports.default = Fonoster;
54
56
  // WARNING: Workaround to support commonjs clients
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fonoster/sdk",
3
- "version": "0.2.42",
3
+ "version": "0.3.2",
4
4
  "description": "Fonoster SDK module",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
@@ -29,19 +29,20 @@
29
29
  "url": "https://github.com/fonoster/fonoster/issues"
30
30
  },
31
31
  "dependencies": {
32
- "@fonoster/agents": "^0.2.42",
33
- "@fonoster/auth": "^0.2.42",
34
- "@fonoster/callmanager": "^0.2.42",
35
- "@fonoster/domains": "^0.2.42",
36
- "@fonoster/funcs": "^0.2.42",
37
- "@fonoster/logger": "^0.2.42",
38
- "@fonoster/monitor": "^0.2.42",
39
- "@fonoster/numbers": "^0.2.42",
40
- "@fonoster/projects": "^0.2.42",
41
- "@fonoster/providers": "^0.2.42",
42
- "@fonoster/secrets": "^0.2.42",
43
- "@fonoster/storage": "^0.2.42",
44
- "@fonoster/users": "^0.2.42"
32
+ "@fonoster/agents": "^0.3.2",
33
+ "@fonoster/apps": "^0.3.2",
34
+ "@fonoster/auth": "^0.3.2",
35
+ "@fonoster/callmanager": "^0.3.2",
36
+ "@fonoster/domains": "^0.3.2",
37
+ "@fonoster/funcs": "^0.3.2",
38
+ "@fonoster/logger": "^0.3.2",
39
+ "@fonoster/monitor": "^0.3.2",
40
+ "@fonoster/numbers": "^0.3.2",
41
+ "@fonoster/projects": "^0.3.2",
42
+ "@fonoster/providers": "^0.3.2",
43
+ "@fonoster/secrets": "^0.3.2",
44
+ "@fonoster/storage": "^0.3.2",
45
+ "@fonoster/users": "^0.3.2"
45
46
  },
46
- "gitHead": "ef978d301a803196b6311c5e298f4169340f0943"
47
+ "gitHead": "5235f3908a260f4395554497770fa899fd644d10"
47
48
  }