@yuno-payments/dashboard-api-mfe 0.36.19 → 0.36.20-CORECM-11508.1
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/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +5 -1
- package/build/cjs/types/queries/checkouts/styling/styling.query.d.ts +5 -1
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +5 -1
- package/build/esm/types/queries/checkouts/styling/styling.query.d.ts +5 -1
- package/build/index.d.ts +11 -3
- package/package.json +1 -1
|
@@ -213,9 +213,13 @@ export declare class Api extends HttpClient {
|
|
|
213
213
|
accountCode: string;
|
|
214
214
|
}): Promise<AxiosResponse<Styling.Theme, any>>;
|
|
215
215
|
updateStylingTheme({ accountCode, theme, }: Styling.UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
|
|
216
|
-
|
|
216
|
+
getStylingSdkDynamic({ accountCode }: {
|
|
217
217
|
accountCode: any;
|
|
218
218
|
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
219
|
+
getStylingSettings({ accountCode, environment, }: {
|
|
220
|
+
accountCode: string;
|
|
221
|
+
environment?: string;
|
|
222
|
+
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
219
223
|
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
220
224
|
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
221
225
|
createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export declare function useGetStylingTheme({ accountCode }: {
|
|
2
2
|
accountCode: string;
|
|
3
3
|
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Theme, unknown>;
|
|
4
|
-
export declare function
|
|
4
|
+
export declare function useGetStylingSdkDynamic({ accountCode, }: {
|
|
5
5
|
accountCode: string;
|
|
6
6
|
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
|
|
7
|
+
export declare function useGetStylingSettings({ accountCode, environment, }: {
|
|
8
|
+
accountCode: string;
|
|
9
|
+
environment?: string;
|
|
10
|
+
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
|