@yuno-payments/dashboard-api-mfe 0.34.28 → 0.34.29
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/types/queries/smart-routing/smart-routing.query.d.ts +1 -1
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +1 -1
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -25,4 +25,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
25
25
|
conditionType: string;
|
|
26
26
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
27
27
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
28
|
-
export declare function use3DSExcemptions(): UseQueryResult<
|
|
28
|
+
export declare function use3DSExcemptions(): UseQueryResult<SmartRouting.ThreeDSExcemptionsResponse>;
|
|
@@ -25,4 +25,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
25
25
|
conditionType: string;
|
|
26
26
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
27
27
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
28
|
-
export declare function use3DSExcemptions(): UseQueryResult<
|
|
28
|
+
export declare function use3DSExcemptions(): UseQueryResult<SmartRouting.ThreeDSExcemptionsResponse>;
|
package/build/index.d.ts
CHANGED
|
@@ -1998,6 +1998,9 @@ declare namespace SmartRouting {
|
|
|
1998
1998
|
payment_method: string;
|
|
1999
1999
|
message: string;
|
|
2000
2000
|
}
|
|
2001
|
+
export interface ThreeDSExcemptionsResponse {
|
|
2002
|
+
three_ds_exemptions: string[];
|
|
2003
|
+
}
|
|
2001
2004
|
export {};
|
|
2002
2005
|
}
|
|
2003
2006
|
|
|
@@ -4306,7 +4309,7 @@ declare function useGetSmartRoutingSearchConditionValues({ text, conditionType,
|
|
|
4306
4309
|
conditionType: string;
|
|
4307
4310
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
4308
4311
|
declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
4309
|
-
declare function use3DSExcemptions(): UseQueryResult<
|
|
4312
|
+
declare function use3DSExcemptions(): UseQueryResult<SmartRouting.ThreeDSExcemptionsResponse>;
|
|
4310
4313
|
|
|
4311
4314
|
declare function useGetRoutingMonitorsTemplates(organizationCode: string): UseQueryResult<RoutingMonitors.TemplateSelector[], unknown>;
|
|
4312
4315
|
declare function useGetRoutingMonitorsTemplate(code: string, organizationCode: string): UseQueryResult<RoutingMonitors.Template, unknown>;
|