@yuno-payments/dashboard-api-mfe 0.36.51-beta.4 → 0.36.53-beta.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.
- package/build/cjs/index.js +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/queries/users/users.query.d.ts +1 -0
- package/build/cjs/types/types/ai/ai.d.ts +1 -0
- package/build/cjs/types/types/payment/payment.d.ts +2 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/users/users.query.d.ts +1 -0
- package/build/esm/types/types/ai/ai.d.ts +1 -0
- package/build/esm/types/types/payment/payment.d.ts +2 -0
- package/build/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare function useCommunications(payload: {
|
|
|
18
18
|
skip: number;
|
|
19
19
|
limit: number;
|
|
20
20
|
search_value: string;
|
|
21
|
+
channel: string[];
|
|
21
22
|
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
22
23
|
export declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
23
24
|
export declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|
|
@@ -250,6 +250,7 @@ export declare namespace Payment {
|
|
|
250
250
|
response_message?: string;
|
|
251
251
|
reason?: string;
|
|
252
252
|
description?: string;
|
|
253
|
+
merchant_advice_code?: string;
|
|
253
254
|
merchant_reference?: string;
|
|
254
255
|
provider_data?: ProviderData;
|
|
255
256
|
created_at?: string;
|
|
@@ -291,6 +292,7 @@ export declare namespace Payment {
|
|
|
291
292
|
provider_transaction_id?: string;
|
|
292
293
|
provider_status?: string;
|
|
293
294
|
provider_status_detail?: string;
|
|
295
|
+
merchant_advice_code?: string;
|
|
294
296
|
merchant_reference?: string;
|
|
295
297
|
reason?: string;
|
|
296
298
|
description?: string;
|