@yuno-payments/dashboard-api-mfe 1.11.2 → 1.11.3
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 +2 -3
- package/build/cjs/types/mutations/notifications/notifications.mutation.d.ts +2 -3
- package/build/esm/index.js +3 -3
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -3
- package/build/esm/types/mutations/notifications/notifications.mutation.d.ts +2 -3
- package/build/index.d.ts +5 -7
- package/package.json +1 -1
|
@@ -352,9 +352,8 @@ export declare class Api extends HttpClient {
|
|
|
352
352
|
getMergedNotifications<T>(): Promise<AxiosResponse<T>>;
|
|
353
353
|
getNotificationsCustomer<T>(customer: any): Promise<AxiosResponse<T>>;
|
|
354
354
|
getValidateOpsgenieKey<T>(key: any): Promise<AxiosResponse<T>>;
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
text: string;
|
|
355
|
+
postSlackFeatureNotification<T>(payload: {
|
|
356
|
+
feature: string;
|
|
358
357
|
}): Promise<AxiosResponse<T>>;
|
|
359
358
|
pathNotification<T>(payload: PathNotification): Promise<AxiosResponse<T>>;
|
|
360
359
|
getNotificationsNumber<T>(customer: any): Promise<AxiosResponse<T>>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function usePostSlackFeatureNotification(): import("@tanstack/react-query").UseMutationResult<unknown, unknown, {
|
|
2
2
|
payload: {
|
|
3
|
-
|
|
4
|
-
text: string;
|
|
3
|
+
feature: string;
|
|
5
4
|
};
|
|
6
5
|
}, unknown>;
|