@yuno-payments/dashboard-api-mfe 0.36.53-beta.2 → 0.36.53
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.map +1 -1
- package/build/cjs/types/queries/users/users.query.d.ts +0 -1
- package/build/cjs/types/types/ai/ai.d.ts +0 -1
- package/build/cjs/types/types/checkout/styling/styling.d.ts +1 -0
- package/build/cjs/types/types/payment/payment.d.ts +0 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/users/users.query.d.ts +0 -1
- package/build/esm/types/types/ai/ai.d.ts +0 -1
- package/build/esm/types/types/checkout/styling/styling.d.ts +1 -0
- package/build/esm/types/types/payment/payment.d.ts +0 -2
- package/build/index.d.ts +1 -4
- package/package.json +1 -1
|
@@ -18,7 +18,6 @@ export declare function useCommunications(payload: {
|
|
|
18
18
|
skip: number;
|
|
19
19
|
limit: number;
|
|
20
20
|
search_value: string;
|
|
21
|
-
channel: string[];
|
|
22
21
|
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
23
22
|
export declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
24
23
|
export declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|
|
@@ -250,7 +250,6 @@ export declare namespace Payment {
|
|
|
250
250
|
response_message?: string;
|
|
251
251
|
reason?: string;
|
|
252
252
|
description?: string;
|
|
253
|
-
merchant_advice_code?: string;
|
|
254
253
|
merchant_reference?: string;
|
|
255
254
|
provider_data?: ProviderData;
|
|
256
255
|
created_at?: string;
|
|
@@ -292,7 +291,6 @@ export declare namespace Payment {
|
|
|
292
291
|
provider_transaction_id?: string;
|
|
293
292
|
provider_status?: string;
|
|
294
293
|
provider_status_detail?: string;
|
|
295
|
-
merchant_advice_code?: string;
|
|
296
294
|
merchant_reference?: string;
|
|
297
295
|
reason?: string;
|
|
298
296
|
description?: string;
|
package/build/index.d.ts
CHANGED
|
@@ -654,7 +654,6 @@ declare namespace Payment {
|
|
|
654
654
|
response_message?: string;
|
|
655
655
|
reason?: string;
|
|
656
656
|
description?: string;
|
|
657
|
-
merchant_advice_code?: string;
|
|
658
657
|
merchant_reference?: string;
|
|
659
658
|
provider_data?: ProviderData;
|
|
660
659
|
created_at?: string;
|
|
@@ -696,7 +695,6 @@ declare namespace Payment {
|
|
|
696
695
|
provider_transaction_id?: string;
|
|
697
696
|
provider_status?: string;
|
|
698
697
|
provider_status_detail?: string;
|
|
699
|
-
merchant_advice_code?: string;
|
|
700
698
|
merchant_reference?: string;
|
|
701
699
|
reason?: string;
|
|
702
700
|
description?: string;
|
|
@@ -3734,7 +3732,6 @@ declare namespace AI {
|
|
|
3734
3732
|
order_id: string;
|
|
3735
3733
|
payment_id: string;
|
|
3736
3734
|
status: string;
|
|
3737
|
-
sub_status: string;
|
|
3738
3735
|
destination_phone: string | null;
|
|
3739
3736
|
duration: number;
|
|
3740
3737
|
country: string;
|
|
@@ -4026,6 +4023,7 @@ declare namespace StylingSettings {
|
|
|
4026
4023
|
enable_ocr?: boolean;
|
|
4027
4024
|
save_on_success?: boolean;
|
|
4028
4025
|
visualization_mode?: VisualizationMode;
|
|
4026
|
+
credit_card_only_processing?: boolean;
|
|
4029
4027
|
};
|
|
4030
4028
|
web_sdk?: {
|
|
4031
4029
|
hide_pay_button?: boolean;
|
|
@@ -4667,7 +4665,6 @@ declare function useCommunications(payload: {
|
|
|
4667
4665
|
skip: number;
|
|
4668
4666
|
limit: number;
|
|
4669
4667
|
search_value: string;
|
|
4670
|
-
channel: string[];
|
|
4671
4668
|
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
4672
4669
|
declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
4673
4670
|
declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|