react-covideo-embed 1.0.79 → 1.0.80
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/app/pages/login/PasswordForm.d.ts +7 -0
- package/build/app/pages/login/SSOVerifying.d.ts +6 -0
- package/build/app/pages/login/UsernameForm.d.ts +6 -0
- package/build/app/pages/login/styles.d.ts +16 -0
- package/build/app/pages/login/types.d.ts +3 -0
- package/build/app/pages/login/utils.d.ts +1 -0
- package/build/app/pages/noAccess/NoAccess.d.ts +5 -0
- package/build/index.js +106 -106
- package/build/index.js.LICENSE.txt +2 -2
- package/build/lib/api/auth/useCheckUsernameMutation.d.ts +10 -0
- package/build/lib/api/auth/useLoginMutation.d.ts +11 -0
- package/build/lib/components/formik/FormikInputField.d.ts +1 -0
- package/build/lib/const/AccessRole.d.ts +5 -0
- package/package.json +1 -1
- package/styled.d.ts +1 -1
- package/build/app/pages/login/SSOLogin.d.ts +0 -5
|
@@ -613,9 +613,9 @@ and limitations under the License.
|
|
|
613
613
|
|
|
614
614
|
/**
|
|
615
615
|
* @license React
|
|
616
|
-
* react-is.production.
|
|
616
|
+
* react-is.production.js
|
|
617
617
|
*
|
|
618
|
-
* Copyright (c)
|
|
618
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
619
619
|
*
|
|
620
620
|
* This source code is licensed under the MIT license found in the
|
|
621
621
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { AxiosError } from 'axios';
|
|
2
|
+
interface ICheckUsernameParams {
|
|
3
|
+
username: string;
|
|
4
|
+
}
|
|
5
|
+
interface ICheckUsernameResponse {
|
|
6
|
+
userExist: boolean;
|
|
7
|
+
ssoLoginUrl: string | undefined;
|
|
8
|
+
}
|
|
9
|
+
export declare const useCheckUsernameMutation: () => import("react-query").UseMutationResult<ICheckUsernameResponse, AxiosError<any>, ICheckUsernameParams, unknown>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AxiosError } from 'axios';
|
|
2
|
+
interface ILoginParams {
|
|
3
|
+
username: string;
|
|
4
|
+
password: string;
|
|
5
|
+
}
|
|
6
|
+
interface ILoginResponse {
|
|
7
|
+
accessToken: string;
|
|
8
|
+
refreshToken: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const useLoginMutation: () => import("react-query").UseMutationResult<ILoginResponse, AxiosError<any>, ILoginParams, unknown>;
|
|
11
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React, { CSSProperties } from 'react';
|
|
2
2
|
import { FlexProps } from '../styles/layout';
|
|
3
|
+
export declare const TextInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
3
4
|
interface CustomInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
4
5
|
name: string;
|
|
5
6
|
label?: string;
|
package/package.json
CHANGED
package/styled.d.ts
CHANGED