@yuno-payments/dashboard-api-mfe 0.36.60-RC.7 → 0.36.60-RC.8

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,5 +1,12 @@
1
1
  import { Axios } from './axios';
2
2
  import { AxiosRequestConfig, AxiosResponse, AxiosError, CancelTokenSource } from 'axios';
3
+ /**
4
+ * Serializes parameters for URL query string with proper encoding
5
+ * and handling of arrays without duplication
6
+ * @param params - Object with parameters to serialize
7
+ * @returns URL encoded query string
8
+ */
9
+ export declare const serializeParams: (params: Record<string, any>) => string;
3
10
  /**
4
11
  * @class Api Class is a fancy es6 wrapper class for axios.
5
12
  *
@@ -146,8 +146,8 @@ export declare namespace Audit {
146
146
  periodicity?: string;
147
147
  account_code?: string[];
148
148
  organizationCode?: string;
149
- status_codes?: string;
150
- methods?: string;
149
+ status_codes?: string[];
150
+ methods?: string[];
151
151
  }
152
152
  interface AuditWebhooksParams {
153
153
  page: number;
@@ -155,8 +155,8 @@ export declare namespace Audit {
155
155
  organizationCode?: string;
156
156
  periodicity?: string;
157
157
  account_code?: string[];
158
- status_codes?: string;
159
- methods?: string;
158
+ status_codes?: string[];
159
+ methods?: string[];
160
160
  }
161
161
  interface AuditWebhooks {
162
162
  id: number;
package/build/index.d.ts CHANGED
@@ -3687,8 +3687,8 @@ declare namespace Audit {
3687
3687
  periodicity?: string;
3688
3688
  account_code?: string[];
3689
3689
  organizationCode?: string;
3690
- status_codes?: string;
3691
- methods?: string;
3690
+ status_codes?: string[];
3691
+ methods?: string[];
3692
3692
  }
3693
3693
  interface AuditWebhooksParams {
3694
3694
  page: number;
@@ -3696,8 +3696,8 @@ declare namespace Audit {
3696
3696
  organizationCode?: string;
3697
3697
  periodicity?: string;
3698
3698
  account_code?: string[];
3699
- status_codes?: string;
3700
- methods?: string;
3699
+ status_codes?: string[];
3700
+ methods?: string[];
3701
3701
  }
3702
3702
  interface AuditWebhooks {
3703
3703
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "0.36.60-RC.7",
3
+ "version": "0.36.60-RC.8",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",