@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.
@@ -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
- postSlackMessageChannel<T>(payload: {
356
- channel: string;
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 usePostSlackMessageChannel(): import("@tanstack/react-query").UseMutationResult<unknown, unknown, {
1
+ export declare function usePostSlackFeatureNotification(): import("@tanstack/react-query").UseMutationResult<unknown, unknown, {
2
2
  payload: {
3
- channel: string;
4
- text: string;
3
+ feature: string;
5
4
  };
6
5
  }, unknown>;