aquasis-fe-components 2.0.0 → 2.2.0
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/dist/aquasis-fe-components.js +14063 -14049
- package/dist/aquasis-fe-components.umd.cjs +170 -170
- package/dist/config/env.d.ts +1 -0
- package/dist/lib/LanguageSwitcher/index.d.ts +1 -0
- package/dist/lib/ReleaseNote/CreateReleaseNote/ReleaseNoteSlides/index.d.ts +1 -0
- package/dist/lib/ReleaseNote/CreateReleaseNote/index.d.ts +1 -0
- package/dist/lib/ReleaseNote/index.d.ts +1 -0
- package/dist/reactQuery/index.d.ts +1 -1
- package/dist/services/appServices.d.ts +1 -1
- package/dist/types/app.d.ts +0 -7
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GLOBAL_AUTH_URL: string;
|
|
@@ -2,4 +2,4 @@ import { IApp, ILanguage, IRole } from '../types/app';
|
|
|
2
2
|
import { AxiosError } from 'axios';
|
|
3
3
|
export declare const useGetApps: () => import('@tanstack/react-query').UseQueryResult<IApp[], AxiosError<unknown, any>>;
|
|
4
4
|
export declare const useGetRoles: () => import('@tanstack/react-query').UseQueryResult<IRole[], AxiosError<unknown, any>>;
|
|
5
|
-
export declare const useGetLanguages: () => import('@tanstack/react-query').UseQueryResult<ILanguage[], AxiosError<unknown, any>>;
|
|
5
|
+
export declare const useGetLanguages: (gauApiUrl: string) => import('@tanstack/react-query').UseQueryResult<ILanguage[], AxiosError<unknown, any>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IApp, ILanguage, IRole } from '../types/app';
|
|
2
2
|
export declare const getApps: () => Promise<IApp[]>;
|
|
3
|
-
export declare const getLanguages: () => Promise<ILanguage[]>;
|
|
3
|
+
export declare const getLanguages: (gauApiUrl: string) => Promise<ILanguage[]>;
|
|
4
4
|
export declare const getRoles: () => Promise<IRole[]>;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
export type FlagType = "EN" | "ES" | "PT" | "RO" | "JP" | "BR";
|
|
2
|
-
declare global {
|
|
3
|
-
interface Window {
|
|
4
|
-
baseUrl: string;
|
|
5
|
-
globalAuthUrl: string;
|
|
6
|
-
globalAuthFEUrl: string;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
2
|
export type AppIdsType = {
|
|
10
3
|
"426E659E-F4EF-496A-9DC8-97C6580382E8": "flowise";
|
|
11
4
|
"26EE36AF-E3AB-41B0-9AB6-BE8BC95CAC33": "meterwise";
|