@yuno-payments/dashboard-api-mfe 1.2.2-CORECM-15741.2 → 1.2.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/api/api.d.ts +8 -8
- package/build/cjs/types/mutations/accounts/accounts.mutation.d.ts +7 -7
- package/build/cjs/types/mutations/audit/audit.mutation.d.ts +1 -1
- package/build/cjs/types/mutations/checkouts/checkouts.mutation.d.ts +1 -1
- package/build/cjs/types/mutations/organization-settings/organization-settings.mutations.d.ts +2 -2
- package/build/cjs/types/mutations/payments/payments.mutation.d.ts +4 -4
- package/build/cjs/types/mutations/saml-config/saml-config.query.d.ts +3 -3
- package/build/cjs/types/mutations/settings/settings.mutation.d.ts +4 -4
- package/build/cjs/types/mutations/users/users.mutation.d.ts +7 -7
- package/build/cjs/types/queries/firebase/firebase.query.d.ts +1 -1
- package/build/cjs/types/queries/installments/installments.query.d.ts +1 -1
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +3 -0
- package/build/cjs/types/types/checkout/checkout.d.ts +0 -1
- package/build/cjs/types/types/installments/installments.d.ts +13 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +8 -8
- package/build/esm/types/mutations/accounts/accounts.mutation.d.ts +7 -7
- package/build/esm/types/mutations/audit/audit.mutation.d.ts +1 -1
- package/build/esm/types/mutations/checkouts/checkouts.mutation.d.ts +1 -1
- package/build/esm/types/mutations/organization-settings/organization-settings.mutations.d.ts +2 -2
- package/build/esm/types/mutations/payments/payments.mutation.d.ts +4 -4
- package/build/esm/types/mutations/saml-config/saml-config.query.d.ts +3 -3
- package/build/esm/types/mutations/settings/settings.mutation.d.ts +4 -4
- package/build/esm/types/mutations/users/users.mutation.d.ts +7 -7
- package/build/esm/types/queries/firebase/firebase.query.d.ts +1 -1
- package/build/esm/types/queries/installments/installments.query.d.ts +1 -1
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +3 -0
- package/build/esm/types/types/checkout/checkout.d.ts +0 -1
- package/build/esm/types/types/installments/installments.d.ts +13 -0
- package/build/index.d.ts +56 -41
- package/package.json +3 -3
- package/build/cjs/types/utils/use-account-code.d.ts +0 -2
- package/build/cjs/types/utils/use-is-testing.d.ts +0 -3
- package/build/esm/types/utils/use-account-code.d.ts +0 -2
- package/build/esm/types/utils/use-is-testing.d.ts +0 -3
package/build/index.d.ts
CHANGED
|
@@ -1821,7 +1821,6 @@ declare namespace Checkout {
|
|
|
1821
1821
|
updated_at: string;
|
|
1822
1822
|
}
|
|
1823
1823
|
export interface UpdateIsActiveCheckoutParams {
|
|
1824
|
-
accountCode?: string;
|
|
1825
1824
|
checkoutCode: string;
|
|
1826
1825
|
paymentMethods: {
|
|
1827
1826
|
is_active: boolean;
|
|
@@ -5092,6 +5091,19 @@ interface GetOnboardingTimelineParams {
|
|
|
5092
5091
|
}
|
|
5093
5092
|
|
|
5094
5093
|
declare namespace Installments {
|
|
5094
|
+
interface GetInstallmentsPlansParams {
|
|
5095
|
+
account_id?: string | string[];
|
|
5096
|
+
country_code?: string | string[];
|
|
5097
|
+
brand?: string | string[];
|
|
5098
|
+
name?: string;
|
|
5099
|
+
merchant_reference?: string;
|
|
5100
|
+
issuer?: string | string[];
|
|
5101
|
+
bin?: string | string[];
|
|
5102
|
+
start_date?: string;
|
|
5103
|
+
end_date?: string;
|
|
5104
|
+
page?: number;
|
|
5105
|
+
size?: number;
|
|
5106
|
+
}
|
|
5095
5107
|
interface FinancialCost {
|
|
5096
5108
|
type: 'CFT' | 'TEA' | string;
|
|
5097
5109
|
rate: number;
|
|
@@ -5205,14 +5217,14 @@ type RetryDuplicateAccountResponse = {
|
|
|
5205
5217
|
|
|
5206
5218
|
declare function usePostWebhookMultiAccount({ onSuccessCallback, }: {
|
|
5207
5219
|
onSuccessCallback?: (data: any) => void;
|
|
5208
|
-
}): UseMutationResult<AxiosResponse<unknown, any>, unknown, {
|
|
5220
|
+
}): UseMutationResult<AxiosResponse<unknown, any, {}>, unknown, {
|
|
5209
5221
|
payload: Webhook.WebHookV2MultiAccount;
|
|
5210
5222
|
}, {
|
|
5211
5223
|
payload: Webhook.WebHookV2MultiAccount;
|
|
5212
5224
|
}>;
|
|
5213
5225
|
declare function useDeleteWebhookV2({ onSuccessCallback, }: {
|
|
5214
5226
|
onSuccessCallback?: (data: any) => void;
|
|
5215
|
-
}): UseMutationResult<AxiosResponse<null, any>, unknown, {
|
|
5227
|
+
}): UseMutationResult<AxiosResponse<null, any, {}>, unknown, {
|
|
5216
5228
|
code: string;
|
|
5217
5229
|
accountCode: string;
|
|
5218
5230
|
}, {
|
|
@@ -5221,7 +5233,7 @@ declare function useDeleteWebhookV2({ onSuccessCallback, }: {
|
|
|
5221
5233
|
}>;
|
|
5222
5234
|
declare function useUpdateWebhookV2({ onSuccessCallback, }: {
|
|
5223
5235
|
onSuccessCallback?: (data: any) => void;
|
|
5224
|
-
}): UseMutationResult<AxiosResponse<Webhook.WebHookV2, any>, unknown, {
|
|
5236
|
+
}): UseMutationResult<AxiosResponse<Webhook.WebHookV2, any, {}>, unknown, {
|
|
5225
5237
|
code: string;
|
|
5226
5238
|
payload: any;
|
|
5227
5239
|
accountCode: string;
|
|
@@ -5230,21 +5242,21 @@ declare function useUpdateWebhookV2({ onSuccessCallback, }: {
|
|
|
5230
5242
|
payload: any;
|
|
5231
5243
|
accountCode: string;
|
|
5232
5244
|
}>;
|
|
5233
|
-
declare function usePostAccount(): UseMutationResult<AxiosResponse<Organization.Account, any>, unknown, {
|
|
5245
|
+
declare function usePostAccount(): UseMutationResult<AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
5234
5246
|
name: string;
|
|
5235
5247
|
principal: boolean;
|
|
5236
5248
|
}, unknown>;
|
|
5237
5249
|
declare function useDuplicateAccount(): UseMutationResult<AxiosResponse<DuplicateAccountResponse>, AxiosError>;
|
|
5238
5250
|
declare function useRetryDuplicateAccount(): UseMutationResult<AxiosResponse<RetryDuplicateAccountResponse>, AxiosError>;
|
|
5239
|
-
declare function usePatchAccountV2(): UseMutationResult<AxiosResponse<Organization.Account, any>, unknown, {
|
|
5251
|
+
declare function usePatchAccountV2(): UseMutationResult<AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
5240
5252
|
name: string;
|
|
5241
5253
|
code: string;
|
|
5242
5254
|
principal: boolean;
|
|
5243
5255
|
}, unknown>;
|
|
5244
|
-
declare function usePutAccountPrincipal(): UseMutationResult<AxiosResponse<Organization.Account, any>, unknown, {
|
|
5256
|
+
declare function usePutAccountPrincipal(): UseMutationResult<AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
5245
5257
|
account_code: string;
|
|
5246
5258
|
}, unknown>;
|
|
5247
|
-
declare function usePutAccountsUserMassive(): UseMutationResult<AxiosResponse<Organization.Account, any>, unknown, {
|
|
5259
|
+
declare function usePutAccountsUserMassive(): UseMutationResult<AxiosResponse<Organization.Account, any, {}>, unknown, {
|
|
5248
5260
|
organizationCode: string;
|
|
5249
5261
|
userCode: string;
|
|
5250
5262
|
payload: {
|
|
@@ -5306,39 +5318,39 @@ declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordRes
|
|
|
5306
5318
|
|
|
5307
5319
|
declare function useUpdateProfile({ onSuccessCallback, }: {
|
|
5308
5320
|
onSuccessCallback?: () => void;
|
|
5309
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any>, unknown, User.UserRequestPayload, User.UserRequestPayload>;
|
|
5310
|
-
declare function useInviteUsersMultiaccountMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponseInviteUser, any>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
5311
|
-
declare function useInviteUsersMultiaccountMassiveV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.MassiveUserInviteResponseV2, any>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
5312
|
-
declare function useUnInviteUsersV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any>, unknown, {
|
|
5321
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any, {}>, unknown, User.UserRequestPayload, User.UserRequestPayload>;
|
|
5322
|
+
declare function useInviteUsersMultiaccountMassive(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponseInviteUser, any, {}>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
5323
|
+
declare function useInviteUsersMultiaccountMassiveV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.MassiveUserInviteResponseV2, any, {}>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
5324
|
+
declare function useUnInviteUsersV2(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.UserResponsePayload, any, {}>, unknown, {
|
|
5313
5325
|
userCode: string;
|
|
5314
5326
|
organizationCode: string;
|
|
5315
5327
|
}, unknown>;
|
|
5316
|
-
declare function useCreateUserAuth0(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.CreateUserAuth0Response, any>, unknown, User.CreateUserAuth0Request, unknown>;
|
|
5317
|
-
declare function usePostCall(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, void, unknown>;
|
|
5318
|
-
declare function useLoginMethods(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
5328
|
+
declare function useCreateUserAuth0(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<User.CreateUserAuth0Response, any, {}>, unknown, User.CreateUserAuth0Request, unknown>;
|
|
5329
|
+
declare function usePostCall(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
5330
|
+
declare function useLoginMethods(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
5319
5331
|
methodCode: string;
|
|
5320
5332
|
enabled: boolean;
|
|
5321
5333
|
}, unknown>;
|
|
5322
5334
|
|
|
5323
|
-
declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
|
|
5335
|
+
declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
|
|
5324
5336
|
|
|
5325
|
-
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any>, unknown, {
|
|
5337
|
+
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any, {}>, unknown, {
|
|
5326
5338
|
payload: OperationTransaction.Request;
|
|
5327
5339
|
transactionId: string;
|
|
5328
5340
|
paymentId: string;
|
|
5329
5341
|
action: OperationTransaction.Actions;
|
|
5330
5342
|
}, unknown>;
|
|
5331
|
-
declare function useChargebacksUpload(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.UploadRequest, any>, unknown, {
|
|
5343
|
+
declare function useChargebacksUpload(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.UploadRequest, any, {}>, unknown, {
|
|
5332
5344
|
payload: Payment.UploadRequest;
|
|
5333
5345
|
paymentId: string;
|
|
5334
5346
|
transactionId: string;
|
|
5335
5347
|
handleSetProgress: (progress: number) => void;
|
|
5336
5348
|
}, unknown>;
|
|
5337
|
-
declare function useProviderRawResponse(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.ProviderRawResponse.Response, any>, unknown, {
|
|
5349
|
+
declare function useProviderRawResponse(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Payment.ProviderRawResponse.Response, any, {}>, unknown, {
|
|
5338
5350
|
transactionCode: string;
|
|
5339
5351
|
payload: Payment.ProviderRawResponse.Request;
|
|
5340
5352
|
}, unknown>;
|
|
5341
|
-
declare function useAddToRiskList(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
5353
|
+
declare function useAddToRiskList(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
5342
5354
|
paymentId: string;
|
|
5343
5355
|
payload: AddToRiskListRequest;
|
|
5344
5356
|
}, unknown>;
|
|
@@ -5469,20 +5481,20 @@ declare function useRescheduleSubscription(): _tanstack_react_query.UseMutationR
|
|
|
5469
5481
|
}, unknown>;
|
|
5470
5482
|
declare function useListSubscriptions(): _tanstack_react_query.UseMutationResult<any, unknown, ListSubscriptionsParams, unknown>;
|
|
5471
5483
|
|
|
5472
|
-
declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
5484
|
+
declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
5473
5485
|
payload: any;
|
|
5474
5486
|
}, {
|
|
5475
5487
|
payload: any;
|
|
5476
5488
|
}>;
|
|
5477
|
-
declare function usePostUserThemeSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, ThemeSettings, unknown>;
|
|
5478
|
-
declare function usePostUserSettingsTables(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
5489
|
+
declare function usePostUserThemeSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, ThemeSettings, unknown>;
|
|
5490
|
+
declare function usePostUserSettingsTables(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
5479
5491
|
payload: any;
|
|
5480
5492
|
section: string;
|
|
5481
5493
|
}, {
|
|
5482
5494
|
payload: any;
|
|
5483
5495
|
section: string;
|
|
5484
5496
|
}>;
|
|
5485
|
-
declare function usePostUserSettingsPinned(onMutate: any): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, {
|
|
5497
|
+
declare function usePostUserSettingsPinned(onMutate: any): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
|
|
5486
5498
|
payload: PinnedSections;
|
|
5487
5499
|
}, any>;
|
|
5488
5500
|
|
|
@@ -5582,11 +5594,11 @@ declare function useUploadFileS3ClientBatchRefunds(): {
|
|
|
5582
5594
|
cancelRequest: () => void;
|
|
5583
5595
|
};
|
|
5584
5596
|
|
|
5585
|
-
declare function useUpdateMFAConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any>, unknown, {
|
|
5597
|
+
declare function useUpdateMFAConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any, {}>, unknown, {
|
|
5586
5598
|
payload: OrganizationSettings.MfaConfigRequest;
|
|
5587
5599
|
organizationCode: string;
|
|
5588
5600
|
}, unknown>;
|
|
5589
|
-
declare function useExcludeUsers(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any>, unknown, {
|
|
5601
|
+
declare function useExcludeUsers(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OrganizationSettings.MfaConfig, any, {}>, unknown, {
|
|
5590
5602
|
payload: OrganizationSettings.MfaUserExcluded[];
|
|
5591
5603
|
organizationCode: string;
|
|
5592
5604
|
}, unknown>;
|
|
@@ -5634,7 +5646,7 @@ declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
|
|
|
5634
5646
|
|
|
5635
5647
|
declare function usePostAuditMonitors({ onMutate }: {
|
|
5636
5648
|
onMutate: any;
|
|
5637
|
-
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Audit.AuditMonitors, any>, unknown, {
|
|
5649
|
+
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<Audit.AuditMonitors, any, {}>, unknown, {
|
|
5638
5650
|
payload: Audit.AuditMonitorsParams;
|
|
5639
5651
|
}, unknown>;
|
|
5640
5652
|
|
|
@@ -5658,9 +5670,9 @@ declare function useUpdateReconciliationAlert(): UseMutationResult<Reconciliatio
|
|
|
5658
5670
|
|
|
5659
5671
|
declare function usePostCreateInsightsReport(): UseMutationResult<unknown>;
|
|
5660
5672
|
|
|
5661
|
-
declare function useCreateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, SamlConfig.SamlConfigRequest, unknown>;
|
|
5662
|
-
declare function useUpdateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, Partial<SamlConfig.SamlConfigRequest>, unknown>;
|
|
5663
|
-
declare function useDeleteSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any>, unknown, void, unknown>;
|
|
5673
|
+
declare function useCreateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, SamlConfig.SamlConfigRequest, unknown>;
|
|
5674
|
+
declare function useUpdateSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, Partial<SamlConfig.SamlConfigRequest>, unknown>;
|
|
5675
|
+
declare function useDeleteSamlConfig(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
5664
5676
|
|
|
5665
5677
|
interface CreateAIsResponse {
|
|
5666
5678
|
code: string;
|
|
@@ -5862,6 +5874,9 @@ declare function useGetLocales(): UseQueryResult<Cms.Language[], AxiosError>;
|
|
|
5862
5874
|
interface ErrorProp {
|
|
5863
5875
|
name?: string;
|
|
5864
5876
|
}
|
|
5877
|
+
declare const useIsTesting: () => {
|
|
5878
|
+
isTesting: boolean;
|
|
5879
|
+
};
|
|
5865
5880
|
declare function useGetSmartRoutingMethods(accountCode: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.PaymentMethods & ErrorProp, unknown>;
|
|
5866
5881
|
declare function useGetSmartRoutingWorkflow(accountCode: string, paymentMethod: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.WorkflowVersions & ErrorProp, unknown>;
|
|
5867
5882
|
declare function useGetSmartRoutingConditionTypes(accountCode: string, paymentMethod: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.ConditionTypes & ErrorProp, unknown>;
|
|
@@ -6281,7 +6296,7 @@ declare function useFirebaseUserSubscribe({ onSuccessCallback, }: {
|
|
|
6281
6296
|
onSuccessCallback?: (data: any) => void;
|
|
6282
6297
|
}): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<{
|
|
6283
6298
|
code: string;
|
|
6284
|
-
}, any>, unknown, {
|
|
6299
|
+
}, any, {}>, unknown, {
|
|
6285
6300
|
payload: FirebaseUserSubscribe;
|
|
6286
6301
|
}, {
|
|
6287
6302
|
payload: FirebaseUserSubscribe;
|
|
@@ -6401,7 +6416,7 @@ declare function useGetRecipientById(organizationCode: string, params: GetRecipi
|
|
|
6401
6416
|
declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
|
|
6402
6417
|
declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
|
|
6403
6418
|
|
|
6404
|
-
declare function useGetInstallmentsPlans(accountCode: string, enabled?: boolean): UseQueryResult<Installments.GetInstallmentsPlansResponse, Error>;
|
|
6419
|
+
declare function useGetInstallmentsPlans(accountCode: string, enabled?: boolean, params?: Installments.GetInstallmentsPlansParams): UseQueryResult<Installments.GetInstallmentsPlansResponse, Error>;
|
|
6405
6420
|
|
|
6406
6421
|
interface CreateChartGPTChartPayload {
|
|
6407
6422
|
user_prompt: string;
|
|
@@ -6517,7 +6532,7 @@ interface S3Payload {
|
|
|
6517
6532
|
}
|
|
6518
6533
|
declare class Api extends HttpClient {
|
|
6519
6534
|
constructor(config?: AxiosRequestConfig);
|
|
6520
|
-
simulateAxiosError(): Promise<AxiosResponse<any, any>>;
|
|
6535
|
+
simulateAxiosError(): Promise<AxiosResponse<any, any, {}>>;
|
|
6521
6536
|
updateReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
6522
6537
|
createReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
6523
6538
|
getReconciliationTransactions<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -6749,14 +6764,14 @@ declare class Api extends HttpClient {
|
|
|
6749
6764
|
}): Promise<AxiosResponse<Checkout.GetCountryDataResponse>>;
|
|
6750
6765
|
getStylingSdkDynamic({ accountCode }: {
|
|
6751
6766
|
accountCode: any;
|
|
6752
|
-
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
6767
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
6753
6768
|
getStylingSettingsV2({ accountCode }: {
|
|
6754
6769
|
accountCode: string;
|
|
6755
|
-
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
6770
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
6756
6771
|
changeStylingSettings({ accountCode, payload, }: {
|
|
6757
6772
|
accountCode: string;
|
|
6758
6773
|
payload: StylingSettings.UpdateSettings;
|
|
6759
|
-
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
6774
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
6760
6775
|
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
6761
6776
|
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
6762
6777
|
createReconciliationsReportV3<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
@@ -6912,7 +6927,7 @@ declare class Api extends HttpClient {
|
|
|
6912
6927
|
getSubscriptionPayments<T>(subscriptionCode: string, page?: number, size?: number): Promise<AxiosResponse<T, any>>;
|
|
6913
6928
|
postListSubscriptions<T>(payload: ListSubscriptionsParams): Promise<AxiosResponse<T, any>>;
|
|
6914
6929
|
getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
6915
|
-
getInstallmentPlans(): Promise<AxiosResponse<Installments.GetInstallmentsPlansResponse>>;
|
|
6930
|
+
getInstallmentPlans(params?: Installments.GetInstallmentsPlansParams): Promise<AxiosResponse<Installments.GetInstallmentsPlansResponse>>;
|
|
6916
6931
|
createInstallmentsPlan<T, P = unknown>(payload: P): Promise<AxiosResponse<T>>;
|
|
6917
6932
|
updateInstallmentsPlan<T, P = unknown>(code: string, payload: P): Promise<AxiosResponse<T>>;
|
|
6918
6933
|
deleteInstallmentsPlan<T>(code: string): Promise<AxiosResponse<T>>;
|
|
@@ -6988,11 +7003,11 @@ declare class Api extends HttpClient {
|
|
|
6988
7003
|
getVelocityRules<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
6989
7004
|
postChangePaymentsWebhook<T>({ status, paymentCode, }: ChangePaymentsWebhook): Promise<AxiosResponse<T, any>>;
|
|
6990
7005
|
uploadFileS3ClientBatchRefunds<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
6991
|
-
promise: Promise<AxiosResponse<T, any>>;
|
|
7006
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
6992
7007
|
cancel: () => void;
|
|
6993
7008
|
};
|
|
6994
7009
|
uploadFileS3ClientChargeBacks<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
6995
|
-
promise: Promise<AxiosResponse<T, any>>;
|
|
7010
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
6996
7011
|
cancel: () => void;
|
|
6997
7012
|
};
|
|
6998
7013
|
batchRefundByFile<T>({ payload, }: {
|
|
@@ -7027,7 +7042,7 @@ declare class Api extends HttpClient {
|
|
|
7027
7042
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
7028
7043
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
7029
7044
|
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
7030
|
-
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any>>;
|
|
7045
|
+
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
7031
7046
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
7032
7047
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
7033
7048
|
getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -7145,5 +7160,5 @@ declare const useChartAssistantSocket: () => {
|
|
|
7145
7160
|
connectionError: string | null;
|
|
7146
7161
|
};
|
|
7147
7162
|
|
|
7148
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useListSubscriptions, useListUserExports, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
7163
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
7149
7164
|
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "1.2.2
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"prepare": "husky install",
|
|
33
33
|
"coverage": "cross-env BABEL_ENV=test jest --coverage",
|
|
34
34
|
"build:types": "tsc",
|
|
35
|
-
"
|
|
35
|
+
"release": "npm publish --access public"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@babel/core": "^7.15.0",
|
|
@@ -113,4 +113,4 @@
|
|
|
113
113
|
"@rspack/binding-linux-x64-gnu": "^1.2.6",
|
|
114
114
|
"@rspack/binding-linux-x64-musl": "^1.2.6"
|
|
115
115
|
}
|
|
116
|
-
}
|
|
116
|
+
}
|