Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 74 additions & 1 deletion docs/resource-specific-documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ The Deploy CLI's own client grant is intentionally not exported nor configurable

Multilingual custom text prompts follow a particular hierarchy. Under the root-level `prompts` resource property is a proprietary `customText` property that is used to bundle custom text translations with other prompts settings. Underneath `customText` is the two-character language code. Thirdly is the prompt ID, followed by the screen ID, followed by text ID.

RenderSettings of a prompt-screen follow a particular hierarchy. Under the root-level `prompts` we store `screenRenderers` property that is used to configure the rendering settings of a given prompt & screen. Thirdly is the prompt Name, followed by the screen Name mapped to the respective renderer configs file. Refer [more](https://auth0.com/docs/customize/login-pages/advanced-customizations/getting-started/configure-acul-screens) on this.

**Hierarchy**

```yaml
Expand All @@ -21,11 +23,29 @@ prompts:
<PROMPT_ID>: # prompt ID
<SCREEN_ID>: # prompt screen ID
<TEXT_ID>: 'Some text'
screenRenderers:
- <PROMPT-NAME>:
<SCREEN-NAME>: ./prompts/screenRenderSettings/promptName_screenName.json #Add the renderer configs for a given prompt & a given screen
```

**Example**
**YAML Example**

```
Folder structure when in YAML mode.

./prompts/
/screenRenderSettings
/signup-id_signup-id.json
/login-id_login-id.json
/login-passwordless_login-passwordless-email-code.json
/login-passwordless_login-passwordless-sms-otp.json
/login-password_login-password.json
/signup-password_signup-password.json
./tenant.yaml
```

```yaml
# Contents of ./tenant.yaml
prompts:
identifier_first: true
universal_login_experience: classic
Expand All @@ -43,7 +63,60 @@ prompts:
mfa-login-options:
pageTitle: 'Log in to ${clientName}'
authenticatorNamesSMS: 'SMS'
screenRenderers:
- signup-id:
signup-id: ./prompts/screenRenderSettings/signup-id_signup-id.json
- login-passwordless:
login-passwordless-email-code: ./prompts/screenRenderSettings/login-passwordless_login-passwordless-email-code.json
login-passwordless-sms-otp: ./prompts/screenRenderSettings/login-passwordless_login-passwordless-sms-otp.json
```

**Directory Example**

```
Folder structure when in directory mode.

./prompts/
/screenRenderSettings
/signup-id_signup-id.json
/login-id_login-id.json
/login-passwordless_login-passwordless-email-code.json
/login-passwordless_login-passwordless-sms-otp.json
/login-password_login-password.json
/signup-password_signup-password.json
/custom-text.json
/prompts.json
```

Contents of `promptName_screenName.json`

```json
{
"prompt": "signup-id",
"screen": "signup-id",
"rendering_mode": "advanced",
"context_configuration": [
"branding.settings",
"branding.themes.default"
],
"default_head_tags_disabled": false,
"head_tags": [
{
"tag": "script",
"attributes": {
"src": "URL_TO_YOUR_ASSET",
"async": true,
"defer": true,
"integrity": [
"ASSET_SHA"
]
}
}
]
}
```



## Databases

Expand Down
9 changes: 9 additions & 0 deletions examples/directory/prompts/custom-text.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"en": {
"login-id": {
"login-id": {
"invalid-email-format": "Email is not valid."
}
}
}
}
6 changes: 6 additions & 0 deletions examples/directory/prompts/prompts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"universal_login_experience": "new",
"identifier_first": false,
"webauthn_platform_first_factor": true,
"enable_ulp_wcag_compliance": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"prompt": "login-id",
"screen": "login-id",
"rendering_mode": "advanced",
"context_configuration": [
"branding.settings",
"branding.themes.default"
],
"default_head_tags_disabled": true,
"head_tags": [
{
"tag": "script",
"attributes": {
"src": "http://127.0.0.1:8090/index.js",
"defer": true
}
},
{
"tag": "link",
"attributes": {
"rel": "stylesheet",
"href": "http://127.0.0.1:8090/index.css"
}
},
{
"tag": "meta",
"attributes": {
"name": "viewport",
"content": "width=device-width, initial-scale=1"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"prompt": "signup-id",
"screen": "signup-id",
"rendering_mode": "advanced",
"context_configuration": [],
"default_head_tags_disabled": false,
"head_tags": [
{
"tag": "script",
"attributes": {
"src": "URL_TO_YOUR_ASSET",
"async": true,
"defer": true,
"integrity": [
"ASSET_SHA"
]
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"prompt": "login-id",
"screen": "login-id",
"rendering_mode": "advanced",
"context_configuration": [
"branding.settings",
"branding.themes.default"
],
"default_head_tags_disabled": true,
"head_tags": [
{
"tag": "script",
"attributes": {
"src": "http://127.0.0.1:8090/index.js",
"defer": true
}
},
{
"tag": "link",
"attributes": {
"rel": "stylesheet",
"href": "http://127.0.0.1:8090/index.css"
}
},
{
"tag": "meta",
"attributes": {
"name": "viewport",
"content": "width=device-width, initial-scale=1"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"prompt": "signup-id",
"screen": "signup-id",
"rendering_mode": "advanced",
"context_configuration": [],
"default_head_tags_disabled": false,
"head_tags": [
{
"tag": "script",
"attributes": {
"src": "URL_TO_YOUR_ASSET",
"async": true,
"defer": true,
"integrity": [
"ASSET_SHA"
]
}
}
]
}
16 changes: 16 additions & 0 deletions examples/yaml/tenant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,19 @@ triggers:
post-user-registration: []
pre-user-registration: []
send-phone-message: []

prompts:
customText:
en:
login-id:
login-id:
invalid-email-format: Email is not valid.
enable_ulp_wcag_compliance: false
identifier_first: false
partials: {}
screenRenderers:
- signup-id:
signup-id: ./prompts/screenRenderSettings/signup-id_signup-id.json
- login-passwordless:
login-passwordless-email-code: ./prompts/screenRenderSettings/login-passwordless_login-passwordless-email-code.json
login-passwordless-sms-otp: ./prompts/screenRenderSettings/login-passwordless_login-passwordless-sms-otp.json
1 change: 1 addition & 0 deletions src/tools/auth0/handlers/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,7 @@ export default class PromptsHandler extends DefaultHandler {
} else {
updatePayload = {
...updatePrams,
rendering_mode
};
}

Expand Down
Loading
Loading