@yuno-payments/dashboard-api-mfe 0.39.5 → 0.40.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.
@@ -1,10 +1,11 @@
1
+ /// <reference types="react" />
1
2
  export declare function Auth0Provider({ children }: {
2
3
  children: any;
3
- }): import("react/jsx-runtime").JSX.Element;
4
+ }): import("react").JSX.Element;
4
5
  export declare function useAuth0(): {
5
6
  loginWithRedirect(): void;
6
7
  getAccessTokenSilently(): Promise<string>;
7
8
  };
8
9
  export declare function ApiProvider({ children }: {
9
10
  children: any;
10
- }): import("react/jsx-runtime").JSX.Element;
11
+ }): import("react").JSX.Element;
@@ -4,7 +4,7 @@ export declare const environment: {
4
4
  BFF_URL_SBX: string | undefined;
5
5
  BFF_URL_STG: string | undefined;
6
6
  BFF_URL_DEV: string | undefined;
7
- BFF_URL_LOCAL: string;
7
+ BFF_URL_LOCAL: string | undefined;
8
8
  WS_URL_LOCAL: string | undefined;
9
9
  WS_URL_PROD: string | undefined;
10
10
  WS_URL_SBX: string | undefined;
@@ -31,6 +31,7 @@ export declare function useValidateCredentials(): import("@tanstack/react-query"
31
31
  provider_type: string;
32
32
  integration_code: string;
33
33
  payment_method: string;
34
+ country_code?: string;
34
35
  };
35
36
  }, unknown>;
36
37
  export {};
@@ -16,6 +16,7 @@ export declare namespace Organization {
16
16
  allowed_sections?: {
17
17
  nova: boolean;
18
18
  reconciliations: boolean;
19
+ future_providers: boolean;
19
20
  };
20
21
  }
21
22
  enum CustomClaims {
@@ -32,6 +33,7 @@ export declare namespace Organization {
32
33
  params: Connection.ConnectionPayload[];
33
34
  provider: {
34
35
  async: boolean;
36
+ location_coverage: string[];
35
37
  };
36
38
  code: number;
37
39
  }
@@ -1,4 +1,5 @@
1
+ /// <reference types="react" />
1
2
  import { QueryClient } from '@tanstack/react-query';
2
3
  export declare const createWrapper: (customQueryClient?: QueryClient) => ({ children }: {
3
4
  children: any;
4
- }) => import("react/jsx-runtime").JSX.Element;
5
+ }) => import("react").JSX.Element;