onehook-api-client 1.0.8 → 1.0.9

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.
@@ -46,9 +46,13 @@ export type KeyRecoverySession = {
46
46
  userId: Scalars['ID']['output'];
47
47
  };
48
48
  export declare enum KeyRecoveryStatus {
49
+ /** The new device scanned and imported the keys. */
49
50
  Completed = "COMPLETED",
51
+ /** The user refused on the chosen device, or cancelled on the new one. */
50
52
  Declined = "DECLINED",
53
+ /** The chosen device has verified user intent and is showing the QR code. */
51
54
  Displaying = "DISPLAYING",
55
+ /** The new device has asked; the chosen device has not responded yet. */
52
56
  Pending = "PENDING"
53
57
  }
54
58
  export type Message = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "onehook-api-client",
3
3
  "description": "OneHook API Client",
4
- "version": "1.0.8",
4
+ "version": "1.0.9",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",