diff --git a/src/tools/auth0/handlers/themes.ts b/src/tools/auth0/handlers/themes.ts index e4e149ce3..a186c8b42 100644 --- a/src/tools/auth0/handlers/themes.ts +++ b/src/tools/auth0/handlers/themes.ts @@ -277,6 +277,11 @@ export const schema = { pattern: '^#(([0-9a-fA-F]{3}){1,2}|([0-9a-fA-F]{4}){1,2})$', type: 'string', }, + read_only_background: { + description: 'Read only background', + pattern: '^#(([0-9a-fA-F]{3}){1,2}|([0-9a-fA-F]{4}){1,2})$', + type: 'string', + }, }, required: [ 'body_text', diff --git a/src/tools/auth0/handlers/userAttributeProfiles.ts b/src/tools/auth0/handlers/userAttributeProfiles.ts index 7fd858cd4..c4d819ecd 100644 --- a/src/tools/auth0/handlers/userAttributeProfiles.ts +++ b/src/tools/auth0/handlers/userAttributeProfiles.ts @@ -210,12 +210,15 @@ export default class UserAttributeProfilesHandler extends DefaultAPIHandler { if (this.existing) return this.existing; try { - this.existing = await paginate(this.client.userAttributeProfiles.getAll, { - checkpoint: true, - include_totals: true, - is_global: false, - take: 10, - }); + this.existing = await paginate( + this.client.userAttributeProfiles.getAll, + { + checkpoint: true, + include_totals: true, + is_global: false, + take: 10, + } + ); return this.existing; } catch (err) {