@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;
|
package/build/index.d.ts
CHANGED
|
@@ -654,6 +654,7 @@ declare namespace Payment {
|
|
|
654
654
|
response_message?: string;
|
|
655
655
|
reason?: string;
|
|
656
656
|
description?: string;
|
|
657
|
+
merchant_advice_code?: string;
|
|
657
658
|
merchant_reference?: string;
|
|
658
659
|
provider_data?: ProviderData;
|
|
659
660
|
created_at?: string;
|
|
@@ -695,6 +696,7 @@ declare namespace Payment {
|
|
|
695
696
|
provider_transaction_id?: string;
|
|
696
697
|
provider_status?: string;
|
|
697
698
|
provider_status_detail?: string;
|
|
699
|
+
merchant_advice_code?: string;
|
|
698
700
|
merchant_reference?: string;
|
|
699
701
|
reason?: string;
|
|
700
702
|
description?: string;
|
|
@@ -3732,6 +3734,7 @@ declare namespace AI {
|
|
|
3732
3734
|
order_id: string;
|
|
3733
3735
|
payment_id: string;
|
|
3734
3736
|
status: string;
|
|
3737
|
+
sub_status: string;
|
|
3735
3738
|
destination_phone: string | null;
|
|
3736
3739
|
duration: number;
|
|
3737
3740
|
country: string;
|
|
@@ -4664,6 +4667,7 @@ declare function useCommunications(payload: {
|
|
|
4664
4667
|
skip: number;
|
|
4665
4668
|
limit: number;
|
|
4666
4669
|
search_value: string;
|
|
4670
|
+
channel: string[];
|
|
4667
4671
|
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
4668
4672
|
declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
4669
4673
|
declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|