@sprucelabs/spruce-invite-utils 6.0.30 → 6.0.31
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/build/__tests__/support/LoginAndConfirmTestFixture.d.ts +1 -1
- package/build/esm/__tests__/support/LoginAndConfirmTestFixture.d.ts +1 -1
- package/build/esm/loggingInAndConfirmingJoin/LoginAndConfirmJoinController.d.ts +2 -2
- package/build/esm/sending/buildRouteToCreateInvite.d.ts +1 -1
- package/build/loggingInAndConfirmingJoin/LoginAndConfirmJoinController.d.ts +2 -2
- package/build/sending/buildRouteToCreateInvite.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,5 +12,5 @@ export default class LoginAndConfirmTestFixture {
|
|
|
12
12
|
static setResponse(person: Person | null): void;
|
|
13
13
|
private static setClass;
|
|
14
14
|
}
|
|
15
|
-
|
|
15
|
+
type Person = SpruceSchemas.Spruce.v2020_07_22.Person;
|
|
16
16
|
export {};
|
|
@@ -12,5 +12,5 @@ export default class LoginAndConfirmTestFixture {
|
|
|
12
12
|
static setResponse(person: Person | null): void;
|
|
13
13
|
private static setClass;
|
|
14
14
|
}
|
|
15
|
-
|
|
15
|
+
type Person = SpruceSchemas.Spruce.v2020_07_22.Person;
|
|
16
16
|
export {};
|
|
@@ -29,8 +29,8 @@ export interface LoginAndConfirmJoinOptions {
|
|
|
29
29
|
locationId?: string;
|
|
30
30
|
connectToApi: ConnectToApi;
|
|
31
31
|
}
|
|
32
|
-
export
|
|
33
|
-
|
|
32
|
+
export type LoginAndConfirmJoinConstructor = new (options: LoginAndConfirmJoinOptions) => LoginAndConfirmJoinController;
|
|
33
|
+
type ConnectToApi = () => Promise<MercuryClient>;
|
|
34
34
|
export interface InviteViewContext {
|
|
35
35
|
roleName?: string | undefined | null;
|
|
36
36
|
}
|
|
@@ -29,8 +29,8 @@ export interface LoginAndConfirmJoinOptions {
|
|
|
29
29
|
locationId?: string;
|
|
30
30
|
connectToApi: ConnectToApi;
|
|
31
31
|
}
|
|
32
|
-
export
|
|
33
|
-
|
|
32
|
+
export type LoginAndConfirmJoinConstructor = new (options: LoginAndConfirmJoinOptions) => LoginAndConfirmJoinController;
|
|
33
|
+
type ConnectToApi = () => Promise<MercuryClient>;
|
|
34
34
|
export interface InviteViewContext {
|
|
35
35
|
roleName?: string | undefined | null;
|
|
36
36
|
}
|