-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref(ory): use schema
Citizens Schema v0.3.4
(#63)
* ref(ory): use schema `Citizens Schema v0.2.0` * fix(api): add firstname * fix(ory): correct schema adaptations * fix(schema): `emails` is an array * fix(schema): firstName is name * fix(schema): revert email array * ref(ory): adapting props to `Schema v0.3.4` --------- Co-authored-by: Marluan Espiritusanto <[email protected]>
- Loading branch information
1 parent
20112c7
commit cbff3b4
Showing
7 changed files
with
72 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
export interface CitizenCompleteData { | ||
id: string; | ||
name: string; | ||
names: string; | ||
firstSurname: string; | ||
secondSurname: string; | ||
gender: string; | ||
birthDate: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
export const CREATE_BROWSER_REGISTRATION_FLOW_ERROR = | ||
'¡Ups! Ha ocurrido un error, favor intentarlo más tarde.'; | ||
'¡Ups! Ha ocurrido un error, por favor inténtelo más tarde.'; | ||
export const INVALID_CEDULA_ERROR = | ||
'Al parecer ha introducido una cédula inválida'; | ||
export const IDENTITY_ALREADY_EXISTS_ERROR = | ||
'Esta cédula ya ha sido registrada.'; | ||
export const INVALID_CEDULA_NUMBER_ERROR = | ||
'Al parecer ha introducido una numeración de cédula inválida'; | ||
export const RECAPTCHA_ISSUES_ERROR = | ||
'Al parecer el reCaptcha no ha validado correctamente su solicitud, intente nuevamente más tarde'; | ||
'Al parecer el reCaptcha no ha validado correctamente su solicitud, refresque e intente nuevamente'; | ||
export const RECAPTCHA_VALIDATION_ERROR = | ||
'No podemos validar si eres un humano, intenta desde otro navegador o dispositivo.'; | ||
'No podemos validar la seguridad de su navegador, verifique si tiene actualizaciones pendientes o intente con otro dispositivo.'; | ||
export const VALIDATE_PASSWORD_ERROR = | ||
'Al parecer ha ocurrido un error al intentar validar su contraseña, inténtelo de nuevo más tarde.'; | ||
export const CREATE_IDENTITY_ERROR = | ||
'Ha ocurrido un error intentando crear la cuenta del ciudadano. Por favor, inténtelo más tarde.'; | ||
'Ha ocurrido un error intentando crear la cuenta ciudadana. Por favor, inténtelo más tarde.'; | ||
export const NON_ACCEPTED_TERMS_AND_CONDS_ERROR = | ||
'Para continuar, se deben leer y aceptar los términos y políticas de privacidad.'; | ||
'Para continuar, debe leer y aceptar los términos y políticas de privacidad.'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters