@metacall/protocol 0.1.19 → 0.1.20

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.
@@ -17,7 +17,7 @@ export interface AddResponse {
17
17
  export interface Branches {
18
18
  branches: [string];
19
19
  }
20
- interface API {
20
+ export interface API {
21
21
  refresh(): Promise<string>;
22
22
  validate(): Promise<boolean>;
23
23
  deployEnabled(): Promise<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metacall/protocol",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Tool for deploying into MetaCall FaaS platform.",
5
5
  "exports": {
6
6
  "./*": "./dist/*.js",
package/src/protocol.ts CHANGED
@@ -47,7 +47,7 @@ export interface Branches {
47
47
  branches: [string];
48
48
  }
49
49
 
50
- interface API {
50
+ export interface API {
51
51
  refresh(): Promise<string>;
52
52
  validate(): Promise<boolean>;
53
53
  deployEnabled(): Promise<boolean>;