@yuno-payments/dashboard-api-mfe 1.4.1 → 1.4.2

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.
@@ -194,9 +194,9 @@ export declare class Api extends HttpClient {
194
194
  name: string;
195
195
  code: string;
196
196
  }, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
197
- postSmartRoutingCreateWorkflow<T>(accountCode: string, data: any): Promise<AxiosResponse<T, any>>;
197
+ postSmartRoutingCreateWorkflow<T>(accountCode: string, data: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
198
198
  postSmartRoutingPublishVersion<T>(accountCode: string, versionCode: string, organizationCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
199
- deleteSmartRoutingVersion<T>(accountCode: string, versionCode: string): Promise<AxiosResponse<T, any>>;
199
+ deleteSmartRoutingVersion<T>(accountCode: string, versionCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
200
200
  postSmartRoutingDuplicateVersion<T>(accountCode: string, versionCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
201
201
  getSmartRoutingDeclinedGroup<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
202
202
  updateSmartRoutingDeclinedGroup<T>(accountCode: string, declineId: string, payload: any): Promise<AxiosResponse<T, any>>;
@@ -13,9 +13,10 @@ export declare function useSaveVersion({ data, accountCode, routingType, }: {
13
13
  accountCode: string;
14
14
  routingType?: SmartRouting.RoutingType;
15
15
  }, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
16
- export declare function useDeleteVersion({ versionCode, accountCode }: {
17
- versionCode: any;
18
- accountCode: any;
16
+ export declare function useDeleteVersion({ versionCode, accountCode, routingType, }: {
17
+ versionCode: string;
18
+ accountCode: string;
19
+ routingType?: SmartRouting.RoutingType;
19
20
  }, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
20
21
  export declare function useDuplicateVersion({ versionCode, accountCode, routingType, }: {
21
22
  versionCode: string | number;
@@ -78,7 +78,7 @@ export declare namespace Installments {
78
78
  message?: string;
79
79
  }
80
80
  interface SearchInstallmentsPlansRequest {
81
- account_id?: string[];
81
+ account_ids?: string[];
82
82
  country_code?: string[];
83
83
  brand?: string[];
84
84
  name?: string;