822bf96966
- Implemented CompanyNameComponent, DescriptionComponent, DeviceIdComponent, EconomicCodeComponent, EmailComponent, FirstNameComponent, FiscalCodeComponent, GuildIdComponent, LastNameComponent, LegalNameComponent, LicenseStartsAtComponent, MobileComponent, MobileNumberComponent, ModelComponent, NameComponent, NationalCodeComponent, NationalIdComponent, PartnerTokenComponent, PosTypeComponent, PostalCodeComponent, ProviderIdComponent, QuantityComponent, RegistrationCodeComponent, RegistrationNumberComponent, SerialNumberComponent, SetOffComponent, SkuComponent, TerminalComponent, UnitPriceComponent, UsernameComponent. - Added field control configurations for new fields in the form. - Updated routing and branding configurations for TIS tenant. - Created consumer type models for handling individual and legal consumer data.
29 lines
634 B
TypeScript
29 lines
634 B
TypeScript
import ISummary from '@/core/models/summary';
|
|
|
|
export interface IBusinessActivityRawResponse {
|
|
id: string;
|
|
name: string;
|
|
economic_code: string;
|
|
fiscal_code: string;
|
|
partner_token: string;
|
|
guild: ISummary;
|
|
created_at: string;
|
|
license_info: LicenseInfo;
|
|
}
|
|
export interface IBusinessActivityResponse extends IBusinessActivityRawResponse {}
|
|
|
|
export interface IBusinessActivityRequest {
|
|
economic_code: string;
|
|
fiscal_code: string;
|
|
partner_token: string;
|
|
name: string;
|
|
}
|
|
|
|
interface LicenseInfo {
|
|
id: string;
|
|
starts_at: string;
|
|
expires_at: string;
|
|
accounts_limit: number;
|
|
allocated_account_count: number;
|
|
}
|