2019-12-29 23:29:56 +01:00
|
|
|
import { IUserProfile } from '@src/model/UserStore'
|
2018-11-07 22:42:22 +01:00
|
|
|
|
|
|
|
|
export interface ISignupOptions {
|
|
|
|
|
email?: string
|
|
|
|
|
username: string
|
2019-10-10 16:53:33 +02:00
|
|
|
name?: string
|
|
|
|
|
surname?: string
|
2018-11-07 22:42:22 +01:00
|
|
|
password?: string
|
|
|
|
|
lang?: string
|
|
|
|
|
repeatPassword?: string
|
2018-11-11 19:27:04 +01:00
|
|
|
terms?: boolean
|
2019-12-29 01:54:00 +01:00
|
|
|
aportador_solidario?: string
|
2019-12-29 23:29:56 +01:00
|
|
|
profile?: IUserProfile
|
2020-01-20 01:50:21 +01:00
|
|
|
// already_registered: boolean
|
2018-11-07 22:42:22 +01:00
|
|
|
}
|
2021-04-30 01:32:44 +02:00
|
|
|
|
|
|
|
|
export interface ISignupIscrizioneConacreisOptions {
|
|
|
|
|
userId?: string
|
|
|
|
|
name?: string
|
|
|
|
|
surname?: string
|
|
|
|
|
email?: string
|
|
|
|
|
fiscalcode?: string
|
|
|
|
|
residency_address?: string
|
|
|
|
|
residency_city?: string
|
|
|
|
|
residency_province?: string
|
|
|
|
|
residency_country?: string
|
|
|
|
|
residency_zipcode?: string
|
|
|
|
|
dateofbirth?: Date
|
|
|
|
|
cell_phone?: string
|
|
|
|
|
newsletter_on?: boolean
|
|
|
|
|
accetta_carta_costituzionale_on?: boolean
|
|
|
|
|
iscrizione_compilata?: boolean
|
|
|
|
|
annoTesseramento?: number
|
|
|
|
|
motivazioni?: string
|
|
|
|
|
competenze_professionalita?: string
|
|
|
|
|
cosa_potrei_offrire?: string
|
|
|
|
|
cosa_vorrei_ricevere?: string
|
|
|
|
|
altre_comunicazioni?: string
|
|
|
|
|
come_ci_hai_conosciuto?: string
|
|
|
|
|
terms?: boolean
|
|
|
|
|
note?: string
|
|
|
|
|
}
|