react-covideo-embed 1.0.78 → 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/app/pages/recordv1/detailsPreview/types.d.ts +2 -4
- package/build/app/pages/recordv1/useVideoRecorderUpload.d.ts +4 -0
- package/build/index.js +99 -93
- package/build/index.js.LICENSE.txt +12 -2
- package/build/lib/api/auth/useCheckUsernameMutation.d.ts +10 -0
- package/build/lib/api/auth/useLoginMutation.d.ts +11 -0
- package/build/lib/api/videos/useVideoQuery.d.ts +2 -0
- package/build/lib/api/vinReel/useCopyVINReelMutation.d.ts +1 -1
- package/build/lib/api/vinReel/useGetVINReelsQuery.d.ts +1 -0
- package/build/lib/components/formik/FormikInputField.d.ts +1 -0
- package/build/lib/const/AccessRole.d.ts +5 -0
- package/build/lib/const/Folder.d.ts +5 -0
- package/build/lib/hooks/GTM/actions/video/saveNewVideoInteraction.d.ts +1 -1
- package/build/lib/hooks/GTM/actions/video/types.d.ts +2 -0
- package/build/lib/hooks/GTM/actions/video/utils.d.ts +86 -0
- package/build/lib/hooks/GTM/actions/videoPlayer/index.d.ts +1 -0
- package/build/lib/hooks/GTM/actions/videoPlayer/interaction.d.ts +4 -0
- package/build/lib/hooks/GTM/actions/videoPlayer/types.d.ts +5 -0
- package/build/lib/hooks/GTM/types.d.ts +2 -1
- package/build/lib/hooks/GTM/useGTMAnalytics.d.ts +11 -9
- package/build/lib/utils/automotiveRolePermissionChecks.d.ts +0 -1
- package/package.json +2 -2
- package/styled.d.ts +1 -1
- package/build/app/pages/login/SSOLogin.d.ts +0 -5
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const fadeUp: import("styled-components").Keyframes;
|
|
2
|
+
export declare const spin: import("styled-components").Keyframes;
|
|
3
|
+
export declare const LoginWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const LoginCard: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const Heading: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const HeadingSubtitle: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const CardSubtitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const FormGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
|
+
export declare const LabelRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
10
|
+
export declare const FieldLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
+
export declare const Anchor: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
12
|
+
export declare const InputRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
13
|
+
export declare const Spinner: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
14
|
+
export declare const VerifyingText: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
15
|
+
export declare const PasswordWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
16
|
+
export declare const PasswordToggleIconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const buildSSOUrl: (ssoLoginUrl: string, relayState?: string) => string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { InventoryItem } from "lib/context";
|
|
1
2
|
type VideoAttribute = {
|
|
2
3
|
value: any;
|
|
3
4
|
attributeId: number;
|
|
@@ -36,10 +37,7 @@ export interface DetailsPreviewRecordFormValues {
|
|
|
36
37
|
videoRequest?: {
|
|
37
38
|
customerName: string;
|
|
38
39
|
videoType: string;
|
|
39
|
-
vehicle:
|
|
40
|
-
vin: string;
|
|
41
|
-
stockNumber: string;
|
|
42
|
-
};
|
|
40
|
+
vehicle: Partial<InventoryItem>;
|
|
43
41
|
advisorId: string;
|
|
44
42
|
repairOrderNumber: string;
|
|
45
43
|
note: string;
|
|
@@ -25,5 +25,9 @@ export declare const useVideoRecordUpload: ({ contineToInsert, }: {
|
|
|
25
25
|
total: number;
|
|
26
26
|
percentage: number;
|
|
27
27
|
};
|
|
28
|
+
setCdkAmplitudeFields: import("react").Dispatch<import("react").SetStateAction<{
|
|
29
|
+
values: DetailsPreviewRecordFormValues;
|
|
30
|
+
initialValues: DetailsPreviewRecordFormValues;
|
|
31
|
+
}>>;
|
|
28
32
|
};
|
|
29
33
|
export {};
|