@arkadiuminc/sdk 0.0.5 → 0.0.6

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.
@@ -1,4 +1,5 @@
1
1
  import { BackendApi } from '../backend/backend.api';
2
+ import { createStore } from '../../utils/observable';
2
3
  interface Image {
3
4
  png: string;
4
5
  webp: string;
@@ -15,6 +16,7 @@ interface UserProfileReaderContract {
15
16
  getUserProfile(): Promise<UserProfile | null>;
16
17
  }
17
18
  interface AuthUIManagerContract {
19
+ openAuthRequest: ReturnType<typeof createStore<boolean>>;
18
20
  openAuthForm(): Promise<void>;
19
21
  }
20
22
  export declare class UserStateApi {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkadiuminc/sdk",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/pkg/arkadium-sdk.umd.js",