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.
24 lines
421 B
TypeScript
24 lines
421 B
TypeScript
export interface IAccountRawResponse {
|
|
id: string;
|
|
role: string;
|
|
created_at: string;
|
|
account: Account;
|
|
}
|
|
export interface IAccountResponse extends IAccountRawResponse {}
|
|
|
|
export interface IAccountRequest {
|
|
username?: string;
|
|
password?: string;
|
|
role?: string;
|
|
status?: string;
|
|
}
|
|
|
|
export interface IAccountPasswordRequest {
|
|
password: string;
|
|
}
|
|
|
|
interface Account {
|
|
username: string;
|
|
status: string;
|
|
}
|