@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
34 lines (33 loc) • 1.26 kB
TypeScript
import type { BusinessLineType } from '../../api/industryCodes/useIndustryCodes';
import type { IndustryCodeFieldSchema } from '../Shared/fields/IndustryCodeField/types';
import type { FormList } from '../../types/form';
import type { SalesChannel, SalesChannelsFieldSchema } from './fields/SalesChannels/types';
import type { SctaFieldSchema } from './fields/SctaField/types';
import type { WebDataFieldSchema } from './fields/WebDataField/types';
export declare const salesChannelsWithWebData: SalesChannel[];
export declare const SALES_CHANNELS_FIELD: Array<keyof SalesChannelsFieldSchema>;
export declare const WEB_DATA_FIELD: Array<keyof WebDataFieldSchema>;
export declare const INDUSTRY_CODE_FIELD: Array<keyof IndustryCodeFieldSchema>;
export declare const SCTA_FIELD: Array<keyof SctaFieldSchema>;
export declare const businessLinesConfigurations: {
industryCodes: {
rule: string;
};
salesChannels: {
rule: string;
};
webAddress: {
rule: string;
};
webExempt: {
rule: string;
};
sctaUrl: {
rule: string;
};
sctaExempt: {
rule: string;
};
};
export declare const businessLinesForms: FormList;
export declare const businessLineTypes: BusinessLineType[];