@yuno-payments/dashboard-api-mfe 0.36.36 → 0.36.39
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 +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -0
- package/build/cjs/types/msw/handlers/organizations.d.ts +1 -0
- package/build/cjs/types/queries/data-report/fraud/fraud.query.d.ts +1 -0
- package/build/cjs/types/types/organization/organization.d.ts +4 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -0
- package/build/esm/types/msw/handlers/organizations.d.ts +1 -0
- package/build/esm/types/queries/data-report/fraud/fraud.query.d.ts +1 -0
- package/build/esm/types/types/organization/organization.d.ts +4 -0
- package/build/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -179,6 +179,7 @@ export declare class Api extends HttpClient {
|
|
|
179
179
|
getInsights3dsDeclineReasons(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
180
180
|
getInsights3dsFrictionlessVsChallenge(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
181
181
|
getInsightsChargebacksVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
182
|
+
getInsightsChargebacksTotalRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
182
183
|
getInsightsChargebacksWinRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
183
184
|
getInsightsChargebacksDisputed(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
184
185
|
getInsightsChargebacksByProviderAndCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const organizationsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -8,6 +8,7 @@ export declare function useInsights3dsConversionRateAndEvolution(body: InsightsF
|
|
|
8
8
|
export declare function useInsights3dsDeclineReasons(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<Insights3dsDeclineReasons>>;
|
|
9
9
|
export declare function useInsights3dsFrictionlessVsChallenge(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<Insights3dsFrictionlessVsChallenge>>;
|
|
10
10
|
export declare function useInsightsChargebacksVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksResumeResponse>>;
|
|
11
|
+
export declare function useInsightsChargebacksTotalRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksWinRate>>;
|
|
11
12
|
export declare function useInsightsChargebacksWinRate(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksWinRate>>;
|
|
12
13
|
export declare function useInsightsChargebacksDisputed(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksDisputed>>;
|
|
13
14
|
export declare function useInsightsChargebacksByProviderAndCardBrand(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksByProviderAndCardBrand>>;
|
|
@@ -13,6 +13,10 @@ export declare namespace Organization {
|
|
|
13
13
|
updated_at: Date;
|
|
14
14
|
nps: number;
|
|
15
15
|
type: string;
|
|
16
|
+
allowed_sections?: {
|
|
17
|
+
nova: boolean;
|
|
18
|
+
reconciliations: boolean;
|
|
19
|
+
};
|
|
16
20
|
}
|
|
17
21
|
enum CustomClaims {
|
|
18
22
|
ORGANIZATION_CODE = "https://dashboard.dev.y.uno/organization_code",
|