@cartridge/controller 0.1.51 → 0.1.52

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/lib/index.d.ts CHANGED
@@ -20,6 +20,7 @@ declare class Controller {
20
20
  y: string;
21
21
  }): Promise<{
22
22
  address: string;
23
+ deviceKey: string;
23
24
  }>;
24
25
  connect(): Promise<AccountInterface | null>;
25
26
  }
package/lib/types.d.ts CHANGED
@@ -114,6 +114,7 @@ export interface RegisterResponse extends RawResponse {
114
114
  method: "register";
115
115
  result: {
116
116
  address: string;
117
+ deviceKey: string;
117
118
  };
118
119
  }
119
120
  export declare type RawRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cartridge/controller",
3
- "version": "0.1.51",
3
+ "version": "0.1.52",
4
4
  "description": "Cartridge Controller",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",