@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.
- package/build/cjs/index.js +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/lib/http-client/http-client.d.ts +7 -0
- package/build/cjs/types/types/audit/audit.d.ts +4 -4
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/lib/http-client/http-client.d.ts +7 -0
- package/build/esm/types/types/audit/audit.d.ts +4 -4
- package/build/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -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;
|