@zitadel/components 0.1.0-alpha.12 → 0.1.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/dist/atoms/index.d.mts +1 -1
- package/dist/{default-6uEUU3Kn.mjs → default-W5MwYLBc.mjs} +2 -2
- package/dist/{default-6uEUU3Kn.mjs.map → default-W5MwYLBc.mjs.map} +1 -1
- package/dist/{index-eaABWYuQ.d.mts → index-BP3l3mje.d.mts} +129 -18
- package/dist/index-BP3l3mje.d.mts.map +1 -0
- package/dist/{index-1zs8u08H.d.mts → index-Bypr00UG.d.mts} +117 -124
- package/dist/index-Bypr00UG.d.mts.map +1 -0
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +3 -3
- package/dist/orchestrator/index.d.mts +3 -3
- package/dist/orchestrator/index.mjs +3 -3
- package/dist/{orchestrator-D6mdML5f.mjs → orchestrator-qkFBKFgJ.mjs} +359 -35
- package/dist/orchestrator-qkFBKFgJ.mjs.map +1 -0
- package/dist/standalone.mjs +358 -34
- package/package.json +4 -4
- package/dist/index-1zs8u08H.d.mts.map +0 -1
- package/dist/index-eaABWYuQ.d.mts.map +0 -1
- package/dist/orchestrator-D6mdML5f.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -204,10 +204,11 @@ on each update.
|
|
|
204
204
|
|
|
205
205
|
### `<zitadel-logout>`
|
|
206
206
|
|
|
207
|
-
Session menu / sign-out control for embedded apps. Reads the
|
|
208
|
-
`
|
|
209
|
-
(`DELETE /sessions/me`) through
|
|
210
|
-
the same token adoption as
|
|
207
|
+
Session menu / sign-out control for embedded apps. Reads the signed-in
|
|
208
|
+
identity from `getMySession` (`GET /sessions/me`) — the same source as
|
|
209
|
+
`<zitadel-session>` — calls `revokeMySession` (`DELETE /sessions/me`) through
|
|
210
|
+
the SDK handle, and clears the session. Uses the same token adoption as
|
|
211
|
+
`<zitadel-login>` (`applyBaseTokens`).
|
|
211
212
|
|
|
212
213
|
| Property | Type | Notes |
|
|
213
214
|
| --- | --- | --- |
|
package/dist/atoms/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $t as
|
|
1
|
+
import { $t as zlCardManifest, Qt as ZlCard, Xt as ZlCheckboxChangeDetail, Yt as ZlCheckbox, Zt as zlCheckboxManifest, a as ZlPill, an as ZlIcon, c as ZlPasskeyErrorDetail, d as ZlPageShell, en as ZlButton, f as zlPageShellManifest, h as zlFieldManifest, i as zlSelectManifest, in as IconName, l as ZlPasskeyResultDetail, m as ZlFieldType, n as ZlSelectChangeDetail, nn as ZlAlert, o as zlPillManifest, on as zlIconManifest, p as ZlField, r as ZlSelectOption, rn as zlAlertManifest, s as ZlPasskey, t as ZlSelect, tn as zlButtonManifest, u as zlPasskeyManifest } from "../index-Bypr00UG.mjs";
|
|
2
2
|
export { IconName, ZlAlert, ZlButton, ZlCard, ZlCheckbox, ZlCheckboxChangeDetail, ZlField, ZlFieldType, ZlIcon, ZlPageShell, ZlPasskey, ZlPasskeyErrorDetail, ZlPasskeyResultDetail, ZlPill, ZlSelect, ZlSelectChangeDetail, ZlSelectOption, zlAlertManifest, zlButtonManifest, zlCardManifest, zlCheckboxManifest, zlFieldManifest, zlIconManifest, zlPageShellManifest, zlPasskeyManifest, zlPillManifest, zlSelectManifest };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/orchestrator/templates/default.liquid
|
|
2
|
-
var default_default = "<zl-page-shell data-zl-template-root>\n {% if branding.logo_url %}\n <img slot=\"header\" class=\"zl-card-logo\" src=\"{{ branding.logo_url }}\" alt=\"\" />\n {% endif %}\n <zl-card>\n <h1 slot=\"header\" class=\"zl-card-title\">{{ step.texts.title_key | t: identity.display_name }}</h1>\n {% if step.texts.description_key %}\n {% assign card_subtitle = step.texts.description_key | t: identity.display_name %}\n {% if card_subtitle != \"\" %}\n <p slot=\"header\" class=\"zl-card-subtitle\">{{ card_subtitle }}</p>\n {% endif %}\n {% endif %}\n\n {% if errors and errors.size > 0 %}\n {% for err in errors %}\n {% if err | formLevelError %}\n {% assign alert_heading = err.text_key | alertHeading %}\n {% assign alert_body = err.text_key | alertBody %}\n <zl-alert severity=\"error\"{% if alert_heading != \"\" %} heading=\"{{ alert_heading | t }}\"{% endif %}>\n {% if alert_body != \"\" %}{{ alert_body | t }}{% elsif err.text_key %}{{ err.text_key | t }}{% else %}{{ err.message }}{% endif %}\n </zl-alert>\n {% endif %}\n {% endfor %}\n {% endif %}\n\n {% for f in fields %}\n {% assign field_placeholder = f.text_key | fieldPlaceholder %}\n {% assign field_help = f.text_key | fieldHelp %}\n {% assign field_err = f.name | fieldError: errors %}\n {% case f.type %}\n {% when 'checkbox' %}\n <zl-checkbox\n name=\"{{ f.name }}\"\n data-testid=\"zitadel-field-{{ f.name }}\"\n label=\"{{ f.text_key | t }}\"\n value=\"true\"\n {% if f.value %}checked{% endif %}\n {% if f.required %}required{% endif %}\n ></zl-checkbox>\n {% when 'select' %}\n <zl-select\n name=\"{{ f.name }}\"\n data-testid=\"zitadel-field-{{ f.name }}\"\n label=\"{{ f.text_key | t }}\"\n value=\"{{ f.value }}\"\n options='{{ f.validation.enum | selectOptions | json }}'\n {% if f.required %}required{% endif %}\n {% if field_placeholder != \"\" %}placeholder=\"{{ field_placeholder }}\"{% endif %}\n ></zl-select>\n {% else %}\n {% assign autocomplete_val = '' %}\n {% if f.name == 'email' %}\n {% assign autocomplete_val = 'email' %}\n {% elsif f.type == 'password' and step.name contains 'register' %}\n {% assign autocomplete_val = 'new-password' %}\n {% elsif f.type == 'password' %}\n {% assign autocomplete_val = 'current-password' %}\n {% endif %}\n <zl-field\n name=\"{{ f.name }}\"\n data-testid=\"zitadel-field-{{ f.name }}\"\n label=\"{{ f.text_key | t }}\"\n type=\"{{ f.type }}\"\n value=\"{{ f.value }}\"\n {% if autocomplete_val != '' %}autocomplete=\"{{ autocomplete_val }}\"{% endif %}\n {% if f.required %}required{% endif %}\n {% if field_placeholder != \"\" %}placeholder=\"{{ field_placeholder }}\"{% endif %}\n {% if field_err != \"\" %}invalid error=\"{{ field_err }}\"{% endif %}\n >\n {% if field_help != \"\" %}\n <span slot=\"help\">{{ field_help }}</span>\n {% endif %}\n </zl-field>\n {% endcase %}\n {% endfor %}\n\n {% assign recover = actions | where: \"name\", \"recover\" | first %}\n {% if recover %}\n <p class=\"zl-card-forgot\">\n <a href=\"#\" class=\"zl-card-forgot__link\" data-action=\"recover\">{{ recover.text_key | t }}</a>\n </p>\n {% endif %}\n\n {% for a in actions %}\n {% if a.primary %}\n <zl-button\n hierarchy=\"primary\"\n size=\"medium\"\n type=\"submit\"\n block\n action=\"{{ a.name }}\"\n data-testid=\"zitadel-action-{{ a.name }}\"\n label=\"{{ a.text_key | t }}\"\n {% if loading %}loading{% endif %}\n ></zl-button>\n {% endif %}\n {% endfor %}\n\n {% for a in actions %}\n {% unless a.primary or a.name == 'passkey' or a.name == 'register' or a.name == 'sign_in' or a.name == 'recover' %}\n <zl-button\n hierarchy=\"secondary\"\n size=\"medium\"\n type=\"button\"\n block\n action=\"{{ a.name }}\"\n data-testid=\"zitadel-action-{{ a.name }}\"\n label=\"{{ a.text_key | t }}\"\n ></zl-button>\n {% endunless %}\n {% endfor %}\n\n {% assign passkey = actions | where: \"name\", \"passkey\" | first %}\n {% if passkey %}\n <zl-button\n hierarchy=\"secondary\"\n size=\"medium\"\n block\n action=\"passkey\"\n data-testid=\"zitadel-action-passkey\"\n label=\"{{ passkey.text_key | t }}\"\n ></zl-button>\n {% endif %}\n\n\n {% assign register = actions | where: \"name\", \"register\" | first %}\n {% if register %}\n <p class=\"zl-card-nav\">\n {{ 'identifier.action.register.lead' | t }}<a href=\"#\" class=\"zl-card-nav__link\" data-action=\"register\" data-testid=\"zitadel-action-register-link\">{{ 'identifier.action.register.link' | t }}</a>\n </p>\n {% endif %}\n\n {% assign sign_in = actions | where: \"name\", \"sign_in\" | first %}\n {% if sign_in %}\n <p class=\"zl-card-nav\">\n {{ 'register.action.sign_in.lead' | t }}<a href=\"#\" class=\"zl-card-nav__link\" data-action=\"sign_in\" data-testid=\"zitadel-action-sign_in-link\">{{ 'register.action.sign_in.link' | t }}</a>\n </p>\n {% endif %}\n\n {% if challenge %}\n {% if challenge.method == \"passkey\" or challenge.method == \"passkey_register\" %}\n {% assign ceremony = \"authenticate\" %}\n {% if challenge.method == \"passkey_register\" %}{% assign ceremony = \"register\" %}{% endif %}\n <zl-passkey\n ceremony=\"{{ ceremony }}\"\n method=\"{{
|
|
2
|
+
var default_default = "<zl-page-shell data-zl-template-root>\n {% if branding.logo_url %}\n <img slot=\"header\" class=\"zl-card-logo\" src=\"{{ branding.logo_url }}\" alt=\"\" />\n {% endif %}\n <zl-card>\n <h1 slot=\"header\" class=\"zl-card-title\">{{ step.texts.title_key | t: identity.display_name }}</h1>\n {% if step.texts.description_key %}\n {% assign card_subtitle = step.texts.description_key | t: identity.display_name %}\n {% if card_subtitle != \"\" %}\n <p slot=\"header\" class=\"zl-card-subtitle\">{{ card_subtitle }}</p>\n {% endif %}\n {% endif %}\n\n {% if errors and errors.size > 0 %}\n {% for err in errors %}\n {% if err | formLevelError %}\n {% assign alert_heading = err.text_key | alertHeading %}\n {% assign alert_body = err.text_key | alertBody %}\n <zl-alert severity=\"error\"{% if alert_heading != \"\" %} heading=\"{{ alert_heading | t }}\"{% endif %}>\n {% if alert_body != \"\" %}{{ alert_body | t }}{% elsif err.text_key %}{{ err.text_key | t }}{% else %}{{ err.message }}{% endif %}\n </zl-alert>\n {% endif %}\n {% endfor %}\n {% endif %}\n\n {% for f in fields %}\n {% assign field_placeholder = f.text_key | fieldPlaceholder %}\n {% assign field_help = f.text_key | fieldHelp %}\n {% assign field_err = f.name | fieldError: errors %}\n {% case f.type %}\n {% when 'checkbox' %}\n <zl-checkbox\n name=\"{{ f.name }}\"\n data-testid=\"zitadel-field-{{ f.name }}\"\n label=\"{{ f.text_key | t }}\"\n value=\"true\"\n {% if f.value %}checked{% endif %}\n {% if f.required %}required{% endif %}\n ></zl-checkbox>\n {% when 'select' %}\n <zl-select\n name=\"{{ f.name }}\"\n data-testid=\"zitadel-field-{{ f.name }}\"\n label=\"{{ f.text_key | t }}\"\n value=\"{{ f.value }}\"\n options='{{ f.validation.enum | selectOptions | json }}'\n {% if f.required %}required{% endif %}\n {% if field_placeholder != \"\" %}placeholder=\"{{ field_placeholder }}\"{% endif %}\n ></zl-select>\n {% else %}\n {% assign autocomplete_val = '' %}\n {% if f.name == 'email' %}\n {% assign autocomplete_val = 'email' %}\n {% elsif f.type == 'password' and step.name contains 'register' %}\n {% assign autocomplete_val = 'new-password' %}\n {% elsif f.type == 'password' %}\n {% assign autocomplete_val = 'current-password' %}\n {% endif %}\n <zl-field\n name=\"{{ f.name }}\"\n data-testid=\"zitadel-field-{{ f.name }}\"\n label=\"{{ f.text_key | t }}\"\n type=\"{{ f.type }}\"\n value=\"{{ f.value }}\"\n {% if autocomplete_val != '' %}autocomplete=\"{{ autocomplete_val }}\"{% endif %}\n {% if f.required %}required{% endif %}\n {% if field_placeholder != \"\" %}placeholder=\"{{ field_placeholder }}\"{% endif %}\n {% if field_err != \"\" %}invalid error=\"{{ field_err }}\"{% endif %}\n >\n {% if field_help != \"\" %}\n <span slot=\"help\">{{ field_help }}</span>\n {% endif %}\n </zl-field>\n {% endcase %}\n {% endfor %}\n\n {% assign recover = actions | where: \"name\", \"recover\" | first %}\n {% if recover %}\n <p class=\"zl-card-forgot\">\n <a href=\"#\" class=\"zl-card-forgot__link\" data-action=\"recover\">{{ recover.text_key | t }}</a>\n </p>\n {% endif %}\n\n {% for a in actions %}\n {% if a.primary %}\n <zl-button\n hierarchy=\"primary\"\n size=\"medium\"\n type=\"submit\"\n block\n action=\"{{ a.name }}\"\n data-testid=\"zitadel-action-{{ a.name }}\"\n label=\"{{ a.text_key | t }}\"\n {% if loading %}loading{% endif %}\n ></zl-button>\n {% endif %}\n {% endfor %}\n\n {% for a in actions %}\n {% unless a.primary or a.name == 'passkey' or a.name == 'register' or a.name == 'sign_in' or a.name == 'recover' %}\n <zl-button\n hierarchy=\"secondary\"\n size=\"medium\"\n type=\"button\"\n block\n action=\"{{ a.name }}\"\n data-testid=\"zitadel-action-{{ a.name }}\"\n label=\"{{ a.text_key | t }}\"\n ></zl-button>\n {% endunless %}\n {% endfor %}\n\n {% assign passkey = actions | where: \"name\", \"passkey\" | first %}\n {% if passkey %}\n <zl-button\n hierarchy=\"secondary\"\n size=\"medium\"\n block\n action=\"passkey\"\n data-testid=\"zitadel-action-passkey\"\n label=\"{{ passkey.text_key | t }}\"\n ></zl-button>\n {% endif %}\n\n\n {% assign register = actions | where: \"name\", \"register\" | first %}\n {% if register %}\n <p class=\"zl-card-nav\">\n {{ 'identifier.action.register.lead' | t }}<a href=\"#\" class=\"zl-card-nav__link\" data-action=\"register\" data-testid=\"zitadel-action-register-link\">{{ 'identifier.action.register.link' | t }}</a>\n </p>\n {% endif %}\n\n {% assign sign_in = actions | where: \"name\", \"sign_in\" | first %}\n {% if sign_in %}\n <p class=\"zl-card-nav\">\n {{ 'register.action.sign_in.lead' | t }}<a href=\"#\" class=\"zl-card-nav__link\" data-action=\"sign_in\" data-testid=\"zitadel-action-sign_in-link\">{{ 'register.action.sign_in.link' | t }}</a>\n </p>\n {% endif %}\n\n {% if challenge %}\n {% if challenge.method == \"passkey\" or challenge.method == \"passkey_register\" %}\n {% assign ceremony = \"authenticate\" %}\n {% assign submit_method = challenge.method %}\n {% if challenge.method == \"passkey_register\" or challenge.options.user %}\n {% assign ceremony = \"register\" %}\n {% assign submit_method = \"passkey_register\" %}\n {% endif %}\n <zl-passkey\n ceremony=\"{{ ceremony }}\"\n method=\"{{ submit_method }}\"\n challenge-id=\"{{ challenge.challenge_id }}\"\n options='{{ challenge.options | json }}'\n ></zl-passkey>\n {% endif %}\n {% endif %}\n\n {% mandatory_gates %}\n </zl-card>\n</zl-page-shell>\n";
|
|
3
3
|
//#endregion
|
|
4
4
|
export { default_default as t };
|
|
5
5
|
|
|
6
|
-
//# sourceMappingURL=default-
|
|
6
|
+
//# sourceMappingURL=default-W5MwYLBc.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-
|
|
1
|
+
{"version":3,"file":"default-W5MwYLBc.mjs","names":[],"sources":["../src/orchestrator/templates/default.liquid"],"sourcesContent":["export default \"<zl-page-shell data-zl-template-root>\\n {% if branding.logo_url %}\\n <img slot=\\\"header\\\" class=\\\"zl-card-logo\\\" src=\\\"{{ branding.logo_url }}\\\" alt=\\\"\\\" />\\n {% endif %}\\n <zl-card>\\n <h1 slot=\\\"header\\\" class=\\\"zl-card-title\\\">{{ step.texts.title_key | t: identity.display_name }}</h1>\\n {% if step.texts.description_key %}\\n {% assign card_subtitle = step.texts.description_key | t: identity.display_name %}\\n {% if card_subtitle != \\\"\\\" %}\\n <p slot=\\\"header\\\" class=\\\"zl-card-subtitle\\\">{{ card_subtitle }}</p>\\n {% endif %}\\n {% endif %}\\n\\n {% if errors and errors.size > 0 %}\\n {% for err in errors %}\\n {% if err | formLevelError %}\\n {% assign alert_heading = err.text_key | alertHeading %}\\n {% assign alert_body = err.text_key | alertBody %}\\n <zl-alert severity=\\\"error\\\"{% if alert_heading != \\\"\\\" %} heading=\\\"{{ alert_heading | t }}\\\"{% endif %}>\\n {% if alert_body != \\\"\\\" %}{{ alert_body | t }}{% elsif err.text_key %}{{ err.text_key | t }}{% else %}{{ err.message }}{% endif %}\\n </zl-alert>\\n {% endif %}\\n {% endfor %}\\n {% endif %}\\n\\n {% for f in fields %}\\n {% assign field_placeholder = f.text_key | fieldPlaceholder %}\\n {% assign field_help = f.text_key | fieldHelp %}\\n {% assign field_err = f.name | fieldError: errors %}\\n {% case f.type %}\\n {% when 'checkbox' %}\\n <zl-checkbox\\n name=\\\"{{ f.name }}\\\"\\n data-testid=\\\"zitadel-field-{{ f.name }}\\\"\\n label=\\\"{{ f.text_key | t }}\\\"\\n value=\\\"true\\\"\\n {% if f.value %}checked{% endif %}\\n {% if f.required %}required{% endif %}\\n ></zl-checkbox>\\n {% when 'select' %}\\n <zl-select\\n name=\\\"{{ f.name }}\\\"\\n data-testid=\\\"zitadel-field-{{ f.name }}\\\"\\n label=\\\"{{ f.text_key | t }}\\\"\\n value=\\\"{{ f.value }}\\\"\\n options='{{ f.validation.enum | selectOptions | json }}'\\n {% if f.required %}required{% endif %}\\n {% if field_placeholder != \\\"\\\" %}placeholder=\\\"{{ field_placeholder }}\\\"{% endif %}\\n ></zl-select>\\n {% else %}\\n {% assign autocomplete_val = '' %}\\n {% if f.name == 'email' %}\\n {% assign autocomplete_val = 'email' %}\\n {% elsif f.type == 'password' and step.name contains 'register' %}\\n {% assign autocomplete_val = 'new-password' %}\\n {% elsif f.type == 'password' %}\\n {% assign autocomplete_val = 'current-password' %}\\n {% endif %}\\n <zl-field\\n name=\\\"{{ f.name }}\\\"\\n data-testid=\\\"zitadel-field-{{ f.name }}\\\"\\n label=\\\"{{ f.text_key | t }}\\\"\\n type=\\\"{{ f.type }}\\\"\\n value=\\\"{{ f.value }}\\\"\\n {% if autocomplete_val != '' %}autocomplete=\\\"{{ autocomplete_val }}\\\"{% endif %}\\n {% if f.required %}required{% endif %}\\n {% if field_placeholder != \\\"\\\" %}placeholder=\\\"{{ field_placeholder }}\\\"{% endif %}\\n {% if field_err != \\\"\\\" %}invalid error=\\\"{{ field_err }}\\\"{% endif %}\\n >\\n {% if field_help != \\\"\\\" %}\\n <span slot=\\\"help\\\">{{ field_help }}</span>\\n {% endif %}\\n </zl-field>\\n {% endcase %}\\n {% endfor %}\\n\\n {% assign recover = actions | where: \\\"name\\\", \\\"recover\\\" | first %}\\n {% if recover %}\\n <p class=\\\"zl-card-forgot\\\">\\n <a href=\\\"#\\\" class=\\\"zl-card-forgot__link\\\" data-action=\\\"recover\\\">{{ recover.text_key | t }}</a>\\n </p>\\n {% endif %}\\n\\n {% for a in actions %}\\n {% if a.primary %}\\n <zl-button\\n hierarchy=\\\"primary\\\"\\n size=\\\"medium\\\"\\n type=\\\"submit\\\"\\n block\\n action=\\\"{{ a.name }}\\\"\\n data-testid=\\\"zitadel-action-{{ a.name }}\\\"\\n label=\\\"{{ a.text_key | t }}\\\"\\n {% if loading %}loading{% endif %}\\n ></zl-button>\\n {% endif %}\\n {% endfor %}\\n\\n {% for a in actions %}\\n {% unless a.primary or a.name == 'passkey' or a.name == 'register' or a.name == 'sign_in' or a.name == 'recover' %}\\n <zl-button\\n hierarchy=\\\"secondary\\\"\\n size=\\\"medium\\\"\\n type=\\\"button\\\"\\n block\\n action=\\\"{{ a.name }}\\\"\\n data-testid=\\\"zitadel-action-{{ a.name }}\\\"\\n label=\\\"{{ a.text_key | t }}\\\"\\n ></zl-button>\\n {% endunless %}\\n {% endfor %}\\n\\n {% assign passkey = actions | where: \\\"name\\\", \\\"passkey\\\" | first %}\\n {% if passkey %}\\n <zl-button\\n hierarchy=\\\"secondary\\\"\\n size=\\\"medium\\\"\\n block\\n action=\\\"passkey\\\"\\n data-testid=\\\"zitadel-action-passkey\\\"\\n label=\\\"{{ passkey.text_key | t }}\\\"\\n ></zl-button>\\n {% endif %}\\n\\n\\n {% assign register = actions | where: \\\"name\\\", \\\"register\\\" | first %}\\n {% if register %}\\n <p class=\\\"zl-card-nav\\\">\\n {{ 'identifier.action.register.lead' | t }}<a href=\\\"#\\\" class=\\\"zl-card-nav__link\\\" data-action=\\\"register\\\" data-testid=\\\"zitadel-action-register-link\\\">{{ 'identifier.action.register.link' | t }}</a>\\n </p>\\n {% endif %}\\n\\n {% assign sign_in = actions | where: \\\"name\\\", \\\"sign_in\\\" | first %}\\n {% if sign_in %}\\n <p class=\\\"zl-card-nav\\\">\\n {{ 'register.action.sign_in.lead' | t }}<a href=\\\"#\\\" class=\\\"zl-card-nav__link\\\" data-action=\\\"sign_in\\\" data-testid=\\\"zitadel-action-sign_in-link\\\">{{ 'register.action.sign_in.link' | t }}</a>\\n </p>\\n {% endif %}\\n\\n {% if challenge %}\\n {% if challenge.method == \\\"passkey\\\" or challenge.method == \\\"passkey_register\\\" %}\\n {% assign ceremony = \\\"authenticate\\\" %}\\n {% assign submit_method = challenge.method %}\\n {% if challenge.method == \\\"passkey_register\\\" or challenge.options.user %}\\n {% assign ceremony = \\\"register\\\" %}\\n {% assign submit_method = \\\"passkey_register\\\" %}\\n {% endif %}\\n <zl-passkey\\n ceremony=\\\"{{ ceremony }}\\\"\\n method=\\\"{{ submit_method }}\\\"\\n challenge-id=\\\"{{ challenge.challenge_id }}\\\"\\n options='{{ challenge.options | json }}'\\n ></zl-passkey>\\n {% endif %}\\n {% endif %}\\n\\n {% mandatory_gates %}\\n </zl-card>\\n</zl-page-shell>\\n\";"],"mappings":";AAAA,IAAA,kBAAe"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { $ as ExchangeHandoff200, A as CreateFlow201StepGates, At as ListFlowDefinitionsParams, B as CreateSchemaBody, Bt as
|
|
1
|
+
import { $ as ExchangeHandoff200, A as CreateFlow201StepGates, At as ListFlowDefinitionsParams, B as CreateSchemaBody, Bt as SetUserPasswordParams, C as CreateFlow201, Ct as GetUserByIDParams, D as CreateFlow201StepActionsItem, Dt as IssueChallenge201, E as CreateFlow201Step, Et as IntrospectBody, F as CreateFlowDefinitionBody, Ft as ListUsers200Item, G as CreateTeamBody, Gt as UpdateFlowDefinitionBody, H as CreateSession201, Ht as SubmitFlowStep200, I as CreateHandoff200, It as ListUsersParams, J as CreateUserBody, Jt as VerifyChallengeProofBody, K as CreateTeamParams, Kt as UpdateFlowDefinitionParams, L as CreateProject201, Lt as RevokeSessionParams, M as CreateFlowBody, Mt as ListSchemasParams, N as CreateFlowBodyPurpose, Nt as ListSessions200, O as CreateFlow201StepChallenge, Ot as IssueChallengeBody, P as CreateFlowDefinition201, Pt as ListSessionsParams, Q as EndSessionParams, R as CreateProjectBody, Rt as RevokeTokenBody, S as CreateAuthAttemptBody, St as GetUserByID200, T as CreateFlow201BrandingLayout, Tt as Introspect200, U as CreateSessionBody, Ut as SubmitFlowStepBody, V as CreateSchemaParams, Vt as SubmitFlowEventBody, W as CreateTeam201, Wt as UpdateFlowDefinition200, X as DeactivateFlowDefinitionParams, Y as CreateUserParams, Z as DeleteFlowDefinitionParams, _ as AuthorizeDevice200, _t as GetSessionParams, at as GetFlowStep200, b as AuthorizeGetParams, bt as GetToken200, ct as GetLiveDefault, dt as GetOpenIDConfiguration200, et as ExchangeHandoffBody, ft as GetProject200, g as ActivateFlowDefinitionParams, gt as GetSession200, ht as GetSchemaByIdParams, it as GetFlowDefinitionParams, j as CreateFlow201StepSsoProvidersItem, jt as ListSchemas200Item, k as CreateFlow201StepFieldsItem, kt as ListFlowDefinitions200, lt as GetMySession200, mt as GetSchemaById200, nt as GetAuthAttempt200, ot as GetHealthDefault, pt as GetReadyDefault, q as CreateUser201, qt as VerifyChallengeProof200, rt as GetFlowDefinition200, st as GetKeys200, tt as ExchangeHandoffParams, ut as GetMyUser200, v as AuthorizeDeviceParams, vt as GetTeam200, w as CreateFlow201Branding, wt as GetUserInfo200, x as CreateAuthAttempt201, xt as GetTokenBody, y as AuthorizeGetDefault, yt as GetTeamParams, z as CreateSchema201, zt as SetUserPasswordBody } from "./index-Bypr00UG.mjs";
|
|
2
2
|
import * as _$lit from "lit";
|
|
3
3
|
import { LitElement, PropertyValues, ReactiveController, ReactiveControllerHost, nothing } from "lit";
|
|
4
4
|
import layoutChromeCss from "./templates/layout-chrome.css?inline";
|
|
5
5
|
|
|
6
|
-
//#region ../api/dist/zitadelNextGen-
|
|
6
|
+
//#region ../api/dist/zitadelNextGen-DDnOEggX.d.mts
|
|
7
7
|
//#region src/generated/endpoints/zitadelNextGen.d.ts
|
|
8
8
|
declare namespace zitadelNextGen_d_exports {
|
|
9
|
-
export { activateFlowDefinition, authorizeDevice, authorizeGet, createAuthAttempt, createFlow, createFlowDefinition, createHandoff, createProject, createSchema, createSession, createTeam, createUser, deactivateFlowDefinition, deleteFlowDefinition, endSession, exchangeHandoff, getActivateFlowDefinitionUrl, getAuthAttempt, getAuthorizeDeviceUrl, getAuthorizeGetUrl, getCreateAuthAttemptUrl, getCreateFlowDefinitionUrl, getCreateFlowUrl, getCreateHandoffUrl, getCreateProjectUrl, getCreateSchemaUrl, getCreateSessionUrl, getCreateTeamUrl, getCreateUserUrl, getDeactivateFlowDefinitionUrl, getDeleteFlowDefinitionUrl, getEndSessionUrl, getExchangeHandoffUrl, getFlowDefinition, getFlowStep, getGetAuthAttemptUrl, getGetFlowDefinitionUrl, getGetFlowStepUrl, getGetHealthUrl, getGetKeysUrl, getGetLiveUrl, getGetMySessionUrl, getGetMyUserUrl, getGetOpenIDConfigurationUrl, getGetProjectUrl, getGetReadyUrl, getGetSchemaByIdUrl, getGetSessionUrl, getGetTeamUrl, getGetTokenUrl, getGetUserByIDUrl, getGetUserInfoUrl, getHealth, getIntrospectUrl, getIssueChallengeUrl, getKeys, getListFlowDefinitionsUrl, getListSessionsUrl, getListUsersUrl, getLive, getMySession, getMyUser, getOpenIDConfiguration, getProject, getReady, getRevokeMySessionUrl, getRevokeSessionUrl, getRevokeTokenUrl, getSchemaById, getSession, getSetUserPasswordUrl, getSubmitFlowEventUrl, getSubmitFlowStepUrl, getTeam, getToken, getUpdateFlowDefinitionUrl, getUserByID, getUserInfo, getVerifyChallengeProofUrl, introspect, issueChallenge, listFlowDefinitions, listSessions, listUsers, revokeMySession, revokeSession, revokeToken, setUserPassword, submitFlowEvent, submitFlowStep, updateFlowDefinition, verifyChallengeProof };
|
|
9
|
+
export { activateFlowDefinition, authorizeDevice, authorizeGet, createAuthAttempt, createFlow, createFlowDefinition, createHandoff, createProject, createSchema, createSession, createTeam, createUser, deactivateFlowDefinition, deleteFlowDefinition, endSession, exchangeHandoff, getActivateFlowDefinitionUrl, getAuthAttempt, getAuthorizeDeviceUrl, getAuthorizeGetUrl, getCreateAuthAttemptUrl, getCreateFlowDefinitionUrl, getCreateFlowUrl, getCreateHandoffUrl, getCreateProjectUrl, getCreateSchemaUrl, getCreateSessionUrl, getCreateTeamUrl, getCreateUserUrl, getDeactivateFlowDefinitionUrl, getDeleteFlowDefinitionUrl, getEndSessionUrl, getExchangeHandoffUrl, getFlowDefinition, getFlowStep, getGetAuthAttemptUrl, getGetFlowDefinitionUrl, getGetFlowStepUrl, getGetHealthUrl, getGetKeysUrl, getGetLiveUrl, getGetMySessionUrl, getGetMyUserUrl, getGetOpenIDConfigurationUrl, getGetProjectUrl, getGetReadyUrl, getGetSchemaByIdUrl, getGetSessionUrl, getGetTeamUrl, getGetTokenUrl, getGetUserByIDUrl, getGetUserInfoUrl, getHealth, getIntrospectUrl, getIssueChallengeUrl, getKeys, getListFlowDefinitionsUrl, getListSchemasUrl, getListSessionsUrl, getListUsersUrl, getLive, getMySession, getMyUser, getOpenIDConfiguration, getProject, getReady, getRevokeMySessionUrl, getRevokeSessionUrl, getRevokeTokenUrl, getSchemaById, getSession, getSetUserPasswordUrl, getSubmitFlowEventUrl, getSubmitFlowStepUrl, getTeam, getToken, getUpdateFlowDefinitionUrl, getUserByID, getUserInfo, getVerifyChallengeProofUrl, introspect, issueChallenge, listFlowDefinitions, listSchemas, listSessions, listUsers, revokeMySession, revokeSession, revokeToken, setUserPassword, submitFlowEvent, submitFlowStep, updateFlowDefinition, verifyChallengeProof };
|
|
10
10
|
}
|
|
11
11
|
declare const getGetOpenIDConfigurationUrl: () => string;
|
|
12
12
|
/**
|
|
@@ -352,6 +352,14 @@ schema-url which will be resolved by the server.
|
|
|
352
352
|
* @summary Create new schema
|
|
353
353
|
*/
|
|
354
354
|
declare const createSchema: (createSchemaBody: CreateSchemaBody, params: CreateSchemaParams, options?: RequestInit) => Promise<CreateSchema201>;
|
|
355
|
+
declare const getListSchemasUrl: (params: ListSchemasParams) => string;
|
|
356
|
+
/**
|
|
357
|
+
* Retrieve a list of all schemas available in the system. This endpoint
|
|
358
|
+
supports pagination and filtering based on schema attributes.
|
|
359
|
+
|
|
360
|
+
* @summary List all schemas
|
|
361
|
+
*/
|
|
362
|
+
declare const listSchemas: (params: ListSchemasParams, options?: RequestInit) => Promise<ListSchemas200Item[]>;
|
|
355
363
|
declare const getGetSchemaByIdUrl: (id: string, params: GetSchemaByIdParams) => string;
|
|
356
364
|
/**
|
|
357
365
|
* Get a schema by its ID. This will return the default revision of the schema.
|
|
@@ -726,10 +734,16 @@ declare global {
|
|
|
726
734
|
* `<zitadel-logout>` — orchestrator-tier element that lets the signed-in user
|
|
727
735
|
* sign out without touching the flow API.
|
|
728
736
|
*
|
|
729
|
-
* Reads the user's
|
|
730
|
-
* (
|
|
731
|
-
*
|
|
732
|
-
* `
|
|
737
|
+
* Reads the user's identity from the typed `getMySession` operation
|
|
738
|
+
* (`GET /sessions/me`, credentialed) — the same source as `<zitadel-session>`,
|
|
739
|
+
* so both signed-in surfaces stay consistent and work against the real backend.
|
|
740
|
+
* The avatar/preview show `name`, then `email`, then the always-present
|
|
741
|
+
* `user_id`. NOTE: the current server response includes only the `user_id`, so
|
|
742
|
+
* the avatar falls back to the id until the backend returns a human-readable
|
|
743
|
+
* `name`/`email`.
|
|
744
|
+
*
|
|
745
|
+
* It renders an avatar trigger with a dropdown that exposes a "Sign out"
|
|
746
|
+
* action, and calls the typed `revokeMySession` operation in `@zitadel/api`
|
|
733
747
|
* (`DELETE /sessions/me`). The server clears the session cookie via
|
|
734
748
|
* `Set-Cookie: Max-Age=0`; on success the element fires `zitadel-signout`
|
|
735
749
|
* and optionally navigates to `post-sign-out-url`. (`getEndSessionUrl()`
|
|
@@ -784,28 +798,41 @@ declare class ZitadelLogout extends LitElement {
|
|
|
784
798
|
accessor clientId: string;
|
|
785
799
|
private accessor displayName;
|
|
786
800
|
private accessor displayEmail;
|
|
801
|
+
private accessor displayUserId;
|
|
787
802
|
private accessor open;
|
|
788
803
|
private accessor loading;
|
|
789
804
|
private accessor errorMessage;
|
|
790
805
|
private templateMode;
|
|
806
|
+
private pendingTemplate;
|
|
807
|
+
private projectedContainer;
|
|
808
|
+
private identityRequested;
|
|
791
809
|
connectedCallback(): void;
|
|
792
810
|
disconnectedCallback(): void;
|
|
793
811
|
updated(): void;
|
|
812
|
+
/** Declarative config read from this element's attributes. */
|
|
813
|
+
private get projectAttrs();
|
|
794
814
|
/**
|
|
795
|
-
*
|
|
796
|
-
*
|
|
797
|
-
*
|
|
798
|
-
*
|
|
815
|
+
* Fetches the signed-in identity from `GET /sessions/me` once a project is
|
|
816
|
+
* resolvable. No-ops until then (and on repeat calls) so framework property
|
|
817
|
+
* timing doesn't matter and we never fire the request twice. A pending
|
|
818
|
+
* `<template>` is already projected in `connectedCallback`, so when no config
|
|
819
|
+
* is available yet the logout control still renders; it is re-projected with
|
|
820
|
+
* the real identity once a later request succeeds.
|
|
799
821
|
*/
|
|
800
|
-
private
|
|
822
|
+
private maybeLoadIdentity;
|
|
823
|
+
private loadIdentity;
|
|
801
824
|
private get initial();
|
|
802
825
|
/**
|
|
803
|
-
* Clones
|
|
826
|
+
* Clones the consumer-supplied `<template>` into the light DOM, fills the
|
|
804
827
|
* `{{name}}`, `{{email}}`, and `{{initial}}` tokens via a TreeWalker, and
|
|
805
828
|
* wires every element with `data-action="logout"` to trigger sign-out.
|
|
806
829
|
* Light-DOM mounting is deliberate so the consumer's existing CSS applies.
|
|
830
|
+
*
|
|
831
|
+
* Re-runnable: each call replaces the previously projected clone, so a late
|
|
832
|
+
* identity fetch (or a `project` assigned post-mount) updates the rendered
|
|
833
|
+
* markup instead of leaving the placeholders stuck on their initial values.
|
|
807
834
|
*/
|
|
808
|
-
private
|
|
835
|
+
private projectTemplate;
|
|
809
836
|
private readonly handleDocumentClick;
|
|
810
837
|
private readonly handleDocumentKeydown;
|
|
811
838
|
private toggleOpen;
|
|
@@ -815,8 +842,6 @@ declare class ZitadelLogout extends LitElement {
|
|
|
815
842
|
* clears the cookie via `Set-Cookie: Max-Age=0`. On success this element fires
|
|
816
843
|
* `zitadel-signout` and optionally navigates to `postSignOutUrl`.
|
|
817
844
|
*/
|
|
818
|
-
/** Declarative config read from this element's attributes. */
|
|
819
|
-
private get projectAttrs();
|
|
820
845
|
private doLogout;
|
|
821
846
|
/**
|
|
822
847
|
* Returns the absolute URL the end-session request will hit. Useful for
|
|
@@ -834,6 +859,92 @@ declare global {
|
|
|
834
859
|
}
|
|
835
860
|
} //# sourceMappingURL=zitadel-logout.d.ts.map
|
|
836
861
|
//#endregion
|
|
862
|
+
//#region src/orchestrator/zitadel-session.d.ts
|
|
863
|
+
/**
|
|
864
|
+
* `<zitadel-session>` — the full-screen "signed in" card.
|
|
865
|
+
*
|
|
866
|
+
* Renders the post-sign-in confirmation surface (Figma `7355:8959`): a
|
|
867
|
+
* centred auth card reading "Signed in as {identity}" with a **Sign out**
|
|
868
|
+
* action. Composed from the same `<zl-page-shell>` / `<zl-card>` /
|
|
869
|
+
* `<zl-button>` atoms as the `<zitadel-login>` orchestrator, so it inherits
|
|
870
|
+
* tenant branding tokens with no hardcoded colour, radius, or shadow.
|
|
871
|
+
*
|
|
872
|
+
* This is the companion surface to `<zitadel-login>` for the "go straight to
|
|
873
|
+
* /login" flow: the orchestrator signs the user in and redirects here (or to
|
|
874
|
+
* the consumer's own page); this element proves the session and offers a way
|
|
875
|
+
* back out. The in-app avatar menu lives in the separate `<zitadel-logout>`.
|
|
876
|
+
*
|
|
877
|
+
* - Identity is fetched from the typed `getMySession` operation
|
|
878
|
+
* (`GET /sessions/me`), sent with credentials so the session cookie
|
|
879
|
+
* authenticates it. The card shows `name`, then `email`, then the
|
|
880
|
+
* always-present `user_id`. NOTE: the current server response includes only
|
|
881
|
+
* the `user_id`, so the card displays the raw id until the backend returns a
|
|
882
|
+
* human-readable `name`/`email` on `/sessions/me`. A failed or
|
|
883
|
+
* unauthenticated request renders the card without an identity line rather
|
|
884
|
+
* than throwing.
|
|
885
|
+
* - **Sign out** calls the typed `revokeMySession` operation
|
|
886
|
+
* (`DELETE /sessions/me`); the server clears the session cookie. On success
|
|
887
|
+
* the element fires `zitadel-signout` (detail `{ name, email }`, matching the
|
|
888
|
+
* shared SPA contract) and optionally navigates to `post-sign-out-url`.
|
|
889
|
+
*
|
|
890
|
+
* A "Continue" action is intentionally omitted for now: the post-sign-in
|
|
891
|
+
* destination contract is still being decided. Consumers redirect after
|
|
892
|
+
* sign-in via the `<zitadel-login>` `post-sign-in-url`.
|
|
893
|
+
*/
|
|
894
|
+
declare class ZitadelSession extends LitElement {
|
|
895
|
+
static styles: _$lit.CSSResult[];
|
|
896
|
+
/**
|
|
897
|
+
* SDK project handle returned by `configureZitadel()`. Set from JS (or a
|
|
898
|
+
* framework binding). Takes precedence over the
|
|
899
|
+
* `project-id`/`proxy-path`/`url` attributes and the global singleton.
|
|
900
|
+
*/
|
|
901
|
+
accessor project: ZitadelProject | undefined;
|
|
902
|
+
/** Project ID, set declaratively in HTML for no-JS configuration. */
|
|
903
|
+
accessor projectId: string;
|
|
904
|
+
/** Proxy path for API requests (e.g. `/__nextgen`), set declaratively in HTML. */
|
|
905
|
+
accessor proxyPath: string;
|
|
906
|
+
/** Full URL of the Zitadel auth backend, set declaratively in HTML. */
|
|
907
|
+
accessor url: string;
|
|
908
|
+
/** URL to navigate to after a successful sign-out. */
|
|
909
|
+
accessor postSignOutUrl: string;
|
|
910
|
+
/** Heading text. Defaults to the English label. */
|
|
911
|
+
accessor heading: string;
|
|
912
|
+
/** Sign-out action label. */
|
|
913
|
+
accessor logoutLabel: string;
|
|
914
|
+
private accessor displayName;
|
|
915
|
+
private accessor displayEmail;
|
|
916
|
+
private accessor displayUserId;
|
|
917
|
+
private accessor loading;
|
|
918
|
+
private accessor errorMessage;
|
|
919
|
+
private identityRequested;
|
|
920
|
+
connectedCallback(): void;
|
|
921
|
+
/** Single identity line: human-readable name, then email, then user_id. */
|
|
922
|
+
private get identityLabel();
|
|
923
|
+
updated(): void;
|
|
924
|
+
/** Declarative config read from this element's attributes. */
|
|
925
|
+
private get projectAttrs();
|
|
926
|
+
/**
|
|
927
|
+
* Fetches the signed-in identity from `GET /sessions/me` once a project is
|
|
928
|
+
* resolvable. No-ops until then (and on repeat calls) so framework property
|
|
929
|
+
* timing doesn't matter and we never fire the request twice.
|
|
930
|
+
*/
|
|
931
|
+
private maybeLoadIdentity;
|
|
932
|
+
private fetchIdentity;
|
|
933
|
+
/**
|
|
934
|
+
* Calls `DELETE /sessions/me` (`revokeMySession`) with credentials. On
|
|
935
|
+
* success fires `zitadel-signout` and optionally navigates to
|
|
936
|
+
* `postSignOutUrl`; on failure surfaces an inline error and stays put.
|
|
937
|
+
*/
|
|
938
|
+
private doLogout;
|
|
939
|
+
private handleLogout;
|
|
940
|
+
render(): _$lit.TemplateResult<1>;
|
|
941
|
+
}
|
|
942
|
+
declare global {
|
|
943
|
+
interface HTMLElementTagNameMap {
|
|
944
|
+
"zitadel-session": ZitadelSession;
|
|
945
|
+
}
|
|
946
|
+
} //# sourceMappingURL=zitadel-session.d.ts.map
|
|
947
|
+
//#endregion
|
|
837
948
|
//#region src/orchestrator/branding.d.ts
|
|
838
949
|
type FlowLayout = CreateFlow201BrandingLayout;
|
|
839
950
|
type BrandingPalette = {
|
|
@@ -1022,5 +1133,5 @@ type LiquidContext = {
|
|
|
1022
1133
|
loading: boolean;
|
|
1023
1134
|
};
|
|
1024
1135
|
//#endregion
|
|
1025
|
-
export {
|
|
1026
|
-
//# sourceMappingURL=index-
|
|
1136
|
+
export { ZitadelSession as A, BrandingAssets as C, BrandingTheme as D, BrandingShape as E, de as F, Locale as I, en as L, ZitadelLogin as M, builtinLocales as N, BrandingTypography as O, it as P, Branding as S, BrandingPalette as T, applyBrandingTokens as _, LiquidContext as a, ResolvedTheme as b, getCurrentStep as c, createSanitiser as d, MANDATORY_GATES_MARKER as f, applyFontUrl as g, TEMPLATE_NAMES as h, FlowMessage as i, ZitadelLogout as j, FlowLayout as k, startFlow as l, patchMandatoryGates as m, FlowError as n, BrandingValidationResult as o, mandatoryGatesMarkerComment as p, FlowIdentity as r, validateBranding as s, layoutChromeCss as t, submitStep as u, buildBrandingStylesheet as v, BrandingAttribution as w, ThemeController as x, resolveTheme as y };
|
|
1137
|
+
//# sourceMappingURL=index-BP3l3mje.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-BP3l3mje.d.mts","names":["$s","CreateProject201","$t","SetUserPasswordBody","Al","AuthorizeDevice200","Ar","GetUserInfo200","Bo","EndSessionParams","Br","GetUserByID200","Ci","GetSchemaById200","Dr","Introspect200","Ds","CreateSessionBody","Fn","ListUsers200Item","Go","DeleteFlowDefinitionParams","Gr","GetToken200","Hs","CreateSchemaBody","In","ListSessionsParams","Ja","GetFlowDefinitionParams","Jr","GetTeamParams","Kn","ListSessions200","Li","GetOpenIDConfiguration200","Mo","ExchangeHandoff200","Nr","GetUserByIDParams","On","ListUsersParams","P","UpdateFlowDefinition200","Pi","GetProject200","Rc","CreateFlowBody","Sc","CreateFlowDefinition201","So","ExchangeHandoffParams","St","SubmitFlowStep200","Tl","AuthorizeDeviceParams","To","ExchangeHandoffBody","Uc","CreateFlow201","Ur","GetTokenBody","Ut","SubmitFlowEventBody","X","SubmitFlowStepBody","Xo","DeactivateFlowDefinitionParams","Xs","CreateProjectBody","Xt","SetUserPasswordParams","Yi","GetMyUser200","Za","GetFlowDefinition200","bl","AuthorizeGetParams","cn","RevokeTokenBody","dn","RevokeSessionParams","er","ListSchemasParams","fo","GetAuthAttempt200","g","UpdateFlowDefinitionBody","gi","GetSchemaByIdParams","gs","CreateTeamParams","ha","GetKeys200","hs","CreateUser201","ic","CreateFlowDefinitionBody","ir","ListFlowDefinitionsParams","jl","ActivateFlowDefinitionParams","js","CreateSession201","ka","GetFlowStep200","la","GetLiveDefault","li","GetSession200","ll","CreateAuthAttemptBody","mr","IssueChallengeBody","n","VerifyChallengeProofBody","na","GetMySession200","ni","GetSessionParams","os","CreateUserBody","p","UpdateFlowDefinitionParams","qs","CreateSchema201","r","VerifyChallengeProof200","rr","ListSchemas200Item","rs","CreateUserParams","tc","CreateHandoff200","ti","GetTeam200","ul","CreateAuthAttempt201","ur","ListFlowDefinitions200","vr","IssueChallenge201","wi","GetReadyDefault","wr","IntrospectBody","ws","CreateTeam201","xl","AuthorizeGetDefault","ya","GetHealthDefault","ys","CreateTeamBody","zs","CreateSchemaParams","zitadelNextGen_d_exports","activateFlowDefinition","authorizeDevice","authorizeGet","createAuthAttempt","createFlow","createFlowDefinition","createHandoff","createProject","createSchema","createSession","createTeam","createUser","deactivateFlowDefinition","deleteFlowDefinition","endSession","exchangeHandoff","getActivateFlowDefinitionUrl","getAuthAttempt","getAuthorizeDeviceUrl","getAuthorizeGetUrl","getCreateAuthAttemptUrl","getCreateFlowDefinitionUrl","getCreateFlowUrl","getCreateHandoffUrl","getCreateProjectUrl","getCreateSchemaUrl","getCreateSessionUrl","getCreateTeamUrl","getCreateUserUrl","getDeactivateFlowDefinitionUrl","getDeleteFlowDefinitionUrl","getEndSessionUrl","getExchangeHandoffUrl","getFlowDefinition","getFlowStep","getGetAuthAttemptUrl","getGetFlowDefinitionUrl","getGetFlowStepUrl","getGetHealthUrl","getGetKeysUrl","getGetLiveUrl","getGetMySessionUrl","getGetMyUserUrl","getGetOpenIDConfigurationUrl","getGetProjectUrl","getGetReadyUrl","getGetSchemaByIdUrl","getGetSessionUrl","getGetTeamUrl","getGetTokenUrl","getGetUserByIDUrl","getGetUserInfoUrl","getHealth","getIntrospectUrl","getIssueChallengeUrl","getKeys","getListFlowDefinitionsUrl","getListSchemasUrl","getListSessionsUrl","getListUsersUrl","getLive","getMySession","getMyUser","getOpenIDConfiguration","getProject","getReady","getRevokeMySessionUrl","getRevokeSessionUrl","getRevokeTokenUrl","getSchemaById","getSession","getSetUserPasswordUrl","getSubmitFlowEventUrl","getSubmitFlowStepUrl","getTeam","getToken","getUpdateFlowDefinitionUrl","getUserByID","getUserInfo","getVerifyChallengeProofUrl","introspect","issueChallenge","listFlowDefinitions","listSchemas","listSessions","listUsers","revokeMySession","revokeSession","revokeToken","setUserPassword","submitFlowEvent","submitFlowStep","updateFlowDefinition","verifyChallengeProof","RequestInit","Promise","options","params","introspectBody","revokeTokenBody","getTokenBody","createUserBody","userId","setUserPasswordBody","createFlowBody","id","submitFlowStepBody","submitFlowEventBody","createAuthAttemptBody","attemptId","issueChallengeBody","challengeId","verifyChallengeProofBody","createProjectBody","projectId","createSessionBody","exchangeHandoffBody","sessionId","createSchemaBody","createFlowDefinitionBody","updateFlowDefinitionBody","createTeamBody","teamId","$","A","At","B","Bt","C","Ct","D","Dt","E","Et","F","Ft","G","H","I","It","J","K","L","Lt","M","Mt","N","Nt","O","Ot","Pt","Q","R","Rt","S","T","Tt","U","V","Vt","W","Y","Z","_","_t","a","at","b","bt","c","ct","d","dt","et","f","ft","gt","h","ht","i","it","j","jt","k","kt","l","lt","m","mt","nt","o","ot","pt","q","rt","s","st","t","tt","u","ut","v","vt","w","wt","x","xt","y","yt","z","zt","Vt","zitadelNextGen_d_exports","ZitadelClient","ZitadelApi","ZitadelClientOptions","baseUrl","token","createZitadelClient","opts","createApi","apiBase","ZitadelApi","ZitadelConfig","proxyPath","projectId","url","ZitadelProject","configureZitadel","config","getApi","project","getZitadelConfig","_resetConfigForTesting"],"sources":["../../api/dist/zitadelNextGen-DDnOEggX.d.mts","../../api/dist/runtime/api-factory.d.mts","../../api/dist/runtime/config.d.mts","../src/orchestrator/locales/en.ts","../src/orchestrator/locales/de.ts","../src/orchestrator/locales/it.ts","../src/orchestrator/locales/index.ts","../src/orchestrator/zitadel-login.ts","../src/orchestrator/zitadel-logout.ts","../src/orchestrator/zitadel-session.ts","../src/orchestrator/branding.ts","../src/orchestrator/theme-controller.ts","../src/orchestrator/branding-to-tokens.ts","../src/orchestrator/font-loader.ts","../src/orchestrator/template-names.ts","../src/orchestrator/mandatory-gates.ts","../src/orchestrator/sanitiser.ts","../src/orchestrator/api-client.ts","../src/orchestrator/branding-validator.ts","../src/orchestrator/template-context.ts"],"mappings":";;;;;;;kBAGkB4J,wBAAAA;EAAAA,SACPC,sBAAAA,EAAwBC,eAAAA,EAAiBC,YAAAA,EAAcC,iBAAAA,EAAmBC,UAAAA,EAAYC,oBAAAA,EAAsBC,aAAAA,EAAeC,aAAAA,EAAeC,YAAAA,EAAcC,aAAAA,EAAeC,UAAAA,EAAYC,UAAAA,EAAYC,wBAAAA,EAA0BC,oBAAAA,EAAsBC,UAAAA,EAAYC,eAAAA,EAAiBC,4BAAAA,EAA8BC,cAAAA,EAAgBC,qBAAAA,EAAuBC,kBAAAA,EAAoBC,uBAAAA,EAAyBC,0BAAAA,EAA4BC,gBAAAA,EAAkBC,mBAAAA,EAAqBC,mBAAAA,EAAqBC,kBAAAA,EAAoBC,mBAAAA,EAAqBC,gBAAAA,EAAkBC,gBAAAA,EAAkBC,8BAAAA,EAAgCC,0BAAAA,EAA4BC,gBAAAA,EAAkBC,qBAAAA,EAAuBC,iBAAAA,EAAmBC,WAAAA,EAAaC,oBAAAA,EAAsBC,uBAAAA,EAAyBC,iBAAAA,EAAmBC,eAAAA,EAAiBC,aAAAA,EAAeC,aAAAA,EAAeC,kBAAAA,EAAoBC,eAAAA,EAAiBC,4BAAAA,EAA8BC,gBAAAA,EAAkBC,cAAAA,EAAgBC,mBAAAA,EAAqBC,gBAAAA,EAAkBC,aAAAA,EAAeC,cAAAA,EAAgBC,iBAAAA,EAAmBC,iBAAAA,EAAmBC,SAAAA,EAAWC,gBAAAA,EAAkBC,oBAAAA,EAAsBC,OAAAA,EAASC,yBAAAA,EAA2BC,iBAAAA,EAAmBC,kBAAAA,EAAoBC,eAAAA,EAAiBC,OAAAA,EAASC,YAAAA,EAAcC,SAAAA,EAAWC,sBAAAA,EAAwBC,UAAAA,EAAYC,QAAAA,EAAUC,qBAAAA,EAAuBC,mBAAAA,EAAqBC,iBAAAA,EAAmBC,aAAAA,EAAeC,UAAAA,EAAYC,qBAAAA,EAAuBC,qBAAAA,EAAuBC,oBAAAA,EAAsBC,OAAAA,EAASC,QAAAA,EAAUC,0BAAAA,EAA4BC,WAAAA,EAAaC,WAAAA,EAAaC,0BAAAA,EAA4BC,UAAAA,EAAYC,cAAAA,EAAgBC,mBAAAA,EAAqBC,WAAAA,EAAaC,YAAAA,EAAcC,SAAAA,EAAWC,eAAAA,EAAiBC,aAAAA,EAAeC,WAAAA,EAAaC,eAAAA,EAAiBC,eAAAA,EAAiBC,cAAAA,EAAgBC,oBAAAA,EAAsBC,oBAAAA;AAAAA;AAAAA,cAErpDlD,4BAAAA;;;;;cAKAoB,sBAAAA,GAAyBiC,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQzN,yBAAAA;AAAAA,cAC3D6I,kBAAAA,GAAqB8E,MAAAA,EAAQjL,kBAAAA;;;;cAI7BkF,YAAAA,GAAe+F,MAAAA,EAAQjL,kBAAAA,EAAoBgL,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvG,mBAAAA;AAAAA,cAC7E0B,qBAAAA,GAAwB+E,MAAAA,EAAQvM,qBAAAA;;;;cAIhCuG,eAAAA,GAAkBgG,MAAAA,EAAQvM,qBAAAA,EAAuBsM,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvP,kBAAAA;AAAAA,cACnFuL,gBAAAA,GAAmBkE,MAAAA,GAASrP,gBAAAA;;;;cAI5BkK,UAAAA,GAAamF,MAAAA,GAASrP,gBAAAA,EAAkBoP,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cAClE1C,gBAAAA;;;;cAIA2B,UAAAA,GAAakB,cAAAA,EAAgB9G,cAAAA,EAAgB4G,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ7O,aAAAA;AAAAA,cAC/EqL,aAAAA;;;;cAIAgB,OAAAA,GAAUyC,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ/J,UAAAA;AAAAA,cAC5CoI,iBAAAA;;;;cAIAoB,WAAAA,GAAcW,eAAAA,EAAiBjL,eAAAA,EAAiB8K,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cAC1E9C,cAAAA;;;;cAIA0B,QAAAA,GAAWyB,YAAAA,EAAcpM,YAAAA,EAAcgM,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQrO,WAAAA;AAAAA,cACzEyL,iBAAAA;;;;cAIA2B,WAAAA,GAAckB,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQrP,cAAAA;AAAAA,cAChD4L,eAAAA;;;;;cAKAc,SAAAA,GAAY4C,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQrG,gBAAAA;AAAAA,cAC9C8C,aAAAA;;;;;cAKAoB,OAAAA,GAAUoC,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQjJ,cAAAA;AAAAA,cAC5C+F,cAAAA;;;;;cAKAoB,QAAAA,GAAW+B,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ7G,eAAAA;AAAAA,cAC7C0C,gBAAAA,GAAmBqE,MAAAA,EAAQ3H,gBAAAA;;;;cAI3BqC,UAAAA,GAAa0F,cAAAA,EAAgBzI,cAAAA,EAAgBqI,MAAAA,EAAQ3H,gBAAAA,EAAkB0H,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ7J,aAAAA;AAAAA,cACzGyH,eAAAA,GAAkBsC,MAAAA,GAASrN,eAAAA;;;;cAI3ByM,SAAAA,GAAYY,MAAAA,GAASrN,eAAAA,EAAiBoN,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQzO,gBAAAA;AAAAA,cACxE4L,iBAAAA,GAAoBoD,MAAAA,UAAgBL,MAAAA,EAAQvN,iBAAAA;;;;cAI5CmM,WAAAA,GAAcyB,MAAAA,UAAgBL,MAAAA,EAAQvN,iBAAAA,EAAmBsN,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQjP,cAAAA;AAAAA,cAC3FyN,qBAAAA,GAAwB+B,MAAAA,UAAgBL,MAAAA,EAAQvL,qBAAAA;;;;cAIhD+K,eAAAA,GAAkBa,MAAAA,UAAgBC,mBAAAA,EAAqBjQ,mBAAAA,EAAqB2P,MAAAA,EAAQvL,qBAAAA,EAAuBsL,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cACrIrD,eAAAA;;;;cAIAoB,SAAAA,GAAYkC,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQnL,YAAAA;AAAAA,cAC9C0G,gBAAAA;;;;;;;;;;;;;;;;cAgBAlB,UAAAA,GAAaoG,cAAAA,EAAgBtN,cAAAA,EAAgB8M,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQjM,aAAAA;AAAAA,cAC/EuI,iBAAAA,GAAoBoE,EAAAA;;;;;;;cAOpBvE,WAAAA,GAAcuE,EAAAA,UAAYT,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQnJ,cAAAA;AAAAA,cAC5D6H,oBAAAA,GAAuBgC,EAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgCvBd,cAAAA,GAAiBc,EAAAA,UAAYC,kBAAAA,EAAoBtM,kBAAAA,EAAoB4L,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvM,iBAAAA;AAAAA,cACvGgL,qBAAAA,GAAwBiC,EAAAA;;;;;;;cAOxBf,eAAAA,GAAkBe,EAAAA,UAAYE,mBAAAA,EAAqBzM,mBAAAA,EAAqB8L,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cAClG3E,uBAAAA;;;;;;;;;;;;cAYAjB,iBAAAA,GAAoByG,qBAAAA,EAAuB1J,qBAAAA,EAAuB8I,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQnH,oBAAAA;AAAAA,cACpGuD,oBAAAA,GAAuB0E,SAAAA;;;;;;;;;;;;cAYvB5F,cAAAA,GAAiB4F,SAAAA,UAAmBb,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvK,iBAAAA;AAAAA,cACtE8H,oBAAAA,GAAuBuD,SAAAA;;;;;;;;;;;cAWvB5B,cAAAA,GAAiB4B,SAAAA,UAAmBC,kBAAAA,EAAoB1J,kBAAAA,EAAoB4I,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ/G,iBAAAA;AAAAA,cAC9G+F,0BAAAA,GAA6B8B,SAAAA,UAAmBE,WAAAA;;;;;;;;;;;;;;;cAehDlB,oBAAAA,GAAuBgB,SAAAA,UAAmBE,WAAAA,UAAqBC,wBAAAA,EAA0B1J,wBAAAA,EAA0B0I,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ7H,uBAAAA;AAAAA,cACrJqD,mBAAAA,GAAsBsF,SAAAA;;;;;;;;;;;;;;;cAetBvG,aAAAA,GAAgBuG,SAAAA,UAAmBb,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvH,gBAAAA;AAAAA,cACrEgD,mBAAAA;;;;cAIAjB,aAAAA,GAAgB0G,iBAAAA,EAAmBzM,iBAAAA,EAAmBwL,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ3P,gBAAAA;AAAAA,cACxFwM,gBAAAA,GAAmBsE,SAAAA;;;;;;cAMnBlD,UAAAA,GAAakD,SAAAA,UAAmBlB,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ/M,aAAAA;AAAAA,cAClE0I,mBAAAA;;;;;;;;;;;;;;;;;;cAkBAjB,aAAAA,GAAgB0G,iBAAAA,EAAmB/P,iBAAAA,EAAmB4O,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQrJ,gBAAAA;AAAAA,cACxFgH,kBAAAA,GAAqBuC,MAAAA,EAAQnO,kBAAAA;;;;;;;cAO7BsN,YAAAA,GAAea,MAAAA,EAAQnO,kBAAAA,EAAoBkO,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ3N,eAAAA;AAAAA,cAC7E4J,qBAAAA,GAAwBiE,MAAAA,EAAQ3M,qBAAAA;;;;;;;;;;;;;;;;;;;;;;cAsBhCyH,eAAAA,GAAkBqG,mBAAAA,EAAqBxN,mBAAAA,EAAqBqM,MAAAA,EAAQ3M,qBAAAA,EAAuB0M,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvN,kBAAAA;AAAAA,cAC7HuK,gBAAAA,GAAmBsE,SAAAA,UAAmBpB,MAAAA,EAAQvI,gBAAAA;;AAjS2nD;;;;;AAE/nD;;;;cA0S1C4G,UAAAA,GAAa+C,SAAAA,UAAmBpB,MAAAA,EAAQvI,gBAAAA,EAAkBsI,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ/I,aAAAA;AAAAA,cAC5FmH,mBAAAA,GAAsBkD,SAAAA,UAAmBpB,MAAAA,EAAQ7K,mBAAAA;;;;;;;;;cASjDmK,aAAAA,GAAgB8B,SAAAA,UAAmBpB,MAAAA,EAAQ7K,mBAAAA,EAAqB4K,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cAC1FtD,kBAAAA;;;;AA/S+C;;;;;;;cA0T/CoB,YAAAA,GAAemC,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQvI,eAAAA;AAAAA,cACjD0G,qBAAAA;;;;;;;;;cASAoB,eAAAA,GAAkBU,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cAC5CtE,kBAAAA,GAAqBwE,MAAAA,EAAQnG,kBAAAA;;;;AAhUwB;;;;;;;;cA4UrDU,YAAAA,GAAe8G,gBAAAA,EAAkB1P,gBAAAA,EAAkBqO,MAAAA,EAAQnG,kBAAAA,EAAoBkG,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ/H,eAAAA;AAAAA,cACjHyF,iBAAAA,GAAoBwC,MAAAA,EAAQ3K,iBAAAA;;;;;;;cAO5B6J,WAAAA,GAAcc,MAAAA,EAAQ3K,iBAAAA,EAAmB0K,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ3H,kBAAAA;AAAAA,cAC3E0E,mBAAAA,GAAsB2D,EAAAA,UAAYR,MAAAA,EAAQrK,mBAAAA;;;;;cAK1CyI,aAAAA,GAAgBoC,EAAAA,UAAYR,MAAAA,EAAQrK,mBAAAA,EAAqBoK,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ/O,gBAAAA;AAAAA,cAC3FqK,0BAAAA;;;;;;;;;;cAUAhB,oBAAAA,GAAuBkH,wBAAAA,EAA0BnL,wBAAAA,EAA0B4J,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQ3M,uBAAAA;AAAAA,cAC7GoK,yBAAAA,GAA4ByC,MAAAA,EAAQ3J,yBAAAA;;;AA7VqC;;;;cAoWzE4I,mBAAAA,GAAsBe,MAAAA,EAAQ3J,yBAAAA,EAA2B0J,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQjH,sBAAAA;AAAAA,cAC3FsD,uBAAAA,GAA0BqE,EAAAA,UAAYR,MAAAA,EAAQjO,uBAAAA;;;;;cAK9CiK,iBAAAA,GAAoBwE,EAAAA,UAAYR,MAAAA,EAAQjO,uBAAAA,EAAyBgO,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQjL,oBAAAA;AAAAA,cACnG8J,0BAAAA,GAA6B6B,EAAAA,UAAYR,MAAAA,EAAQnI,0BAAAA;;;;;;;cAOjD8H,oBAAAA,GAAuBa,EAAAA,UAAYe,wBAAAA,EAA0B9L,wBAAAA,EAA0BuK,MAAAA,EAAQnI,0BAAAA,EAA4BkI,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQjN,uBAAAA;AAAAA,cAC7JgJ,0BAAAA,GAA6B2E,EAAAA,UAAYR,MAAAA,EAAQzO,0BAAAA;;;AA9W2C;;;;;cAsX5FqJ,oBAAAA,GAAuB4F,EAAAA,UAAYR,MAAAA,EAAQzO,0BAAAA,EAA4BwO,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cACjG/E,4BAAAA,GAA+ByF,EAAAA,UAAYR,MAAAA,EAAQzJ,4BAAAA;;;;;;;cAOnDwD,sBAAAA,GAAyByG,EAAAA,UAAYR,MAAAA,EAAQzJ,4BAAAA,EAA8BwJ,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cACrGlE,8BAAAA,GAAiC4E,EAAAA,UAAYR,MAAAA,EAAQ3L,8BAAAA;;;;;AA1XC;;;cAkYtDsG,wBAAAA,GAA2B6F,EAAAA,UAAYR,MAAAA,EAAQ3L,8BAAAA,EAAgC0L,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA;AAAAA,cACzGpE,gBAAAA,GAAmBsE,MAAAA,EAAQnK,gBAAAA;AAlYI;;;AAAA,cAsY/B4E,UAAAA,GAAauF,MAAAA,EAAQnK,gBAAAA,EAAkB2L,cAAAA,GAAiB7H,cAAAA,EAAgBoG,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQzG,aAAAA;AAAAA,cAC1G0D,aAAAA,GAAgB0E,MAAAA,UAAgBzB,MAAAA,EAAQ/N,aAAAA;;;;;;cAMxCwM,OAAAA,GAAUgD,MAAAA,UAAgBzB,MAAAA,EAAQ/N,aAAAA,EAAe8N,OAAAA,GAAUF,WAAAA,KAAgBC,OAAAA,CAAQrH,UAAAA;;;;;;;AAlb04D;KCOt+D2O,aAAAA,UAAuBD,wBAAAA;;KAEvBE,UAAAA,GAAaD,aAAAA;;;;;;;;UCaRc,cAAAA;EFlBgPrN;EAAAA,SEoB/OkN,SAAAA;EFpB4QhN;EAAAA,SEsB5QiN,SAAAA;EFtB0T/M;EAAAA,SEwB1TgN,GAAAA;AAAAA;;;;;;;;;;;;;;;;;;AF5Bg+D;;;;;;;;;;cGgB99D,EAAA,EAAI,MAAA;AAAA,KAsKL,MAAA,GAAS,MAAA;;;cCvKR,EAAA,EAAI,MAAA;;;cCFJ,EAAA,EAAI,MAAA;;;cCEJ,cAAA,EAAgB,QAAA,CAAS,MAAA,SAAe,MAAA;;;;ANfs7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cOsE99D,YAAA,SAAqB,UAAA;EAAA,OAChB,iBAAA,EAAmB,cAAA;EAAA,OAUnB,MAAA,EAViC,KAAA,CAU3B,SAAA;EAAA,SAQe,OAAA,EAAS,qBAAA;EPrF4kBlM;;;;;;EAAAA,SO6FjlB,OAAA,EAAS,cAAA;EP7FktBO;;;;;EAAAA,SOoGtsB,SAAA;EPpGyzBM;;;;EAAAA,SO0GzzB,SAAA;EP1G+4BK;;;;EAAAA,SOgHx6B,GAAA;EPhHigCK;;;;;;;;EAAAA,SO0Hl+B,aAAA;EP1HwnCS;;;;;;EAAAA,SOkI1nC,YAAA;EPlI0uCO;;;;;EAAAA,SOyI9vC,IAAA;EPzIi3CM;;;;;;;;;;;;EAAAA,SOuJt3C,OAAA,EAAS,MAAA,SAAe,MAAA;EAAA,iBAEvC,QAAA;EAAA,iBAEA,QAAA;EAAA,iBAEA,OAAA;EAAA,iBAEA,YAAA;EAAA,iBAEA,UAAA;EAAA,iBAET,eAAA;EAAA,QAET,MAAA;EAAA,iBAES,QAAA;EPvKgB5E;;;;EAAAA,QO6KzB,mBAAA;EAEC,gBAAA,CAAA,GAAoB,WAAA,GAAc,gBAAA;EP/KwCG;;;;;;;;;;EAAAA,UO0NhE,YAAA,CAAA;EP1N8IK;;;;;;;;;EAAAA,QOyOzJ,aAAA;EAYC,UAAA,CAAW,OAAA,EAAS,cAAA;EAmBpB,OAAA,CAAQ,OAAA,EAAS,cAAA;EPxQ0OM;;;;;;;EAAAA,QOqRtP,sBAAA;EAUL,MAAA,CAAA,GAvB+B,KAAA,CAuBzB,cAAA;EP/R+VK;;;;;;;;;;;;EAAAA,QO+TtW,iBAAA;EP/T2eM;;;;;;;EAAAA,QO+U3e,qBAAA;EP/UokBI;EAAAA,YO+VhkB,YAAA,CAAA;EAAA,QAIE,SAAA;EAAA,QA4BN,aAAA;EP/XknBE;;;;;;;;;;;;EAAAA,QOyZ5mB,iBAAA;EAAA,QAoCN,UAAA;EP7b4vBO;;;;;;;EAAAA,QOggB5vB,cAAA;EAAA,QAYA,mBAAA;EAAA,QAeA,uBAAA;EAAA,QAyBA,iBAAA;EAAA,QAQA,eAAA;EAAA,QASA,qBAAA;EAAA,QAgBA,gBAAA;EPrlB+3BO;EAAAA,QO2lB/3B,qBAAA;EAAA,QASA,gBAAA;EPpmBs6BE;;;;;EAAAA,QOwnBt6B,mBAAA;EPxnBw9BG;;;;;;;;;;;;;EAAAA,QOipBx9B,kBAAA;EAAA,QAiBA,iBAAA;EAAA,QASA,qBAAA;EAAA,QAQM,MAAA;EAAA,QAqCN,oBAAA;AAAA;AAAA,QAkBF,MAAA;EAAA,UACI,qBAAA;IACR,eAAA,EAAiB,YAAA;EAAA;AAAA;;;;;;;APhvBs9D;;;;;;;;;;;;;;;;;;;;;;;;;;;;cQ2C99D,aAAA,SAAsB,UAAA;EAAA,OACjB,MAAA,EADS,KAAA,CACH,SAAA;ERxCkfxB;;;;;;EAAAA,SQ2L/d,OAAA,EAAS,cAAA;ER3LknBO;;;;;EAAAA,SQkMtmB,SAAA;ERlMqtBM;;;;EAAAA,SQwMrtB,SAAA;ERxMyzBK;;;;EAAAA,SQ8Ml1B,GAAA;ER9Mw6BK;EAAAA,SQiNx4B,cAAA;ERjN86BE;;;;;;EAAAA,SQyNt7B,QAAA;EAAA,iBAEnC,WAAA;EAAA,iBAEA,YAAA;EAAA,iBAEA,aAAA;EAAA,iBAEA,IAAA;EAAA,iBAEA,OAAA;EAAA,iBAEA,YAAA;EAAA,QAKlB,YAAA;EAAA,QAKA,eAAA;EAAA,QAEA,kBAAA;EAAA,QAKA,iBAAA;EAEC,iBAAA,CAAA;EAmBA,oBAAA,CAAA;EAMA,OAAA,CAAA;ERjR0zCoB;EAAAA,YQ4RvzC,YAAA,CAAA;ER5Ro2CE;;;;;;;;EAAAA,QQwSx2C,iBAAA;EAAA,QAYM,YAAA;EAAA,YAcF,OAAA,CAAA;ERlUqhDW;;;;;;;;;;EAAAA,QQiVzhD,eAAA;EAAA,iBAqBS,mBAAA;EAAA,iBAMA,qBAAA;EAAA,QAOT,UAAA;ERnXyBpF;;;;;;EAAAA,QQ8XnB,QAAA;ER9XiFI;;;;;;EQ4Z/F,gBAAA,CAAA;EAAA,QASQ,kBAAA;EAKC,MAAA,CAAA,GA/OuD,KAAA,CA+OjD,cAAA,aAAA,OAAA;AAAA;AAAA,QAmGT,MAAA;EAAA,UACI,qBAAA;IACR,gBAAA,EAAkB,aAAA;EAAA;AAAA;;;;;;ARnhBq9D;;;;;;;;;;;;;;;;;;;;;;;;;;;;cS4C99D,cAAA,SAAuB,UAAA;EAAA,OAClB,MAAA,EADU,KAAA,CACJ,SAAA;ETzCkfsB;;;;;EAAAA,SSoF/d,OAAA,EAAS,cAAA;ETpF+lBM;EAAAA,SSuFnlB,SAAA;ETvFmnBE;EAAAA,SS0FnnB,SAAA;ET1FkqBE;EAAAA,SS6F3rB,GAAA;ET7F+tBE;EAAAA,SSgG/rB,cAAA;EThG6tBE;EAAAA,SSmG7vB,OAAA;ETnGkyBE;EAAAA,SSsGvwB,WAAA;EAAA,iBAEtC,WAAA;EAAA,iBAEA,YAAA;EAAA,iBAEA,aAAA;EAAA,iBAEA,OAAA;EAAA,iBAEA,YAAA;EAAA,QAKlB,iBAAA;EAEC,iBAAA,CAAA;ETvH0+BS;EAAAA,YS8Hv+B,aAAA,CAAA;EAIH,OAAA,CAAA;ETlI6hCG;EAAAA,YSyI1hC,YAAA,CAAA;ETzI8jCE;;;;;EAAAA,QSkJlkC,iBAAA;EAAA,QAYM,aAAA;ET9J8qCO;;;;;EAAAA,QS8K9qC,QAAA;EAAA,QAsBN,YAAA;EAKC,MAAA,CAAA,GArHuD,KAAA,CAqHjD,cAAA;AAAA;AAAA,QA4BT,MAAA;EAAA,UACI,qBAAA;IACR,iBAAA,EAAmB,cAAA;EAAA;AAAA;;;KCzNX,UAAA,GAAa,2BAAA;AAAA,KAEb,eAAA;EACV,OAAA;EACA,UAAA;EACA,UAAA;EACA,OAAA;EACA,KAAA;EACA,MAAA;EACA,IAAA;EACA,UAAA;EACA,IAAA;EACA,OAAA;EACA,OAAA;EACA,KAAA;AAAA;AAAA,KAGU,kBAAA;EACV,WAAA;EACA,gBAAA;EACA,KAAA;AAAA;AAAA,KAGU,aAAA;EACV,MAAA;EACA,OAAA;AAAA;AAAA,KAGU,aAAA;EACV,IAAA;EACA,IAAA;IACE,OAAA,GAAU,eAAA;EAAA;AAAA;AAAA,KAIF,cAAA;EACV,SAAA;EACA,OAAA;EACA,gBAAA;AAAA;;;;;;;;;;;;KAcU,QAAA,GAAW,qBAAA;EACrB,OAAA,GAAU,eAAA;EACV,UAAA,GAAa,kBAAA;EACb,KAAA,GAAQ,aAAA;EACR,MAAA,GAAS,cAAA;EACT,KAAA,GAAQ,aAAA;EACR,WAAA,GAAc,mBAAA;AAAA;AAAA,KAGJ,mBAAA;EACV,YAAA;EACA,WAAA;IAAgB,KAAA;IAAe,IAAA;EAAA;AAAA;;;KCnErB,aAAA;AAAA,cAIC,eAAA,YAA2B,kBAAA;EAAA,iBACrB,IAAA;EAAA,QAET,QAAA;EAAA,QAEA,UAAA;EAAA,QAKA,MAAA;cAEI,IAAA,EAAM,sBAAA;EAAA,IAKd,KAAA,CAAA,GAAS,aAAA;EAIb,WAAA,CAAY,QAAA,EAAU,QAAA;EAKtB,aAAA,CAAA;EAIA,gBAAA,CAAA;EAAA,QAIQ,OAAA;EAAA,QAcA,MAAA;EAAA,QAMA,MAAA;EAAA,QAMA,aAAA;EAAA,QAMA,MAAA;AAAA;;;KCjBE,uBAAA;EACV,aAAA,GAAgB,aAAA;AAAA;;AZpEy9D;;;;iBY4E39D,uBAAA,CACd,QAAA,EAAU,QAAA,cACV,OAAA,GAAS,uBAAA;;;;;;;;;iBAoJK,mBAAA,CACd,UAAA,EAAY,UAAA,EACZ,QAAA,EAAU,QAAA,cACV,aAAA,EAAe,aAAA;AAAA,iBAgBD,YAAA,CAAa,QAAA,EAAU,QAAA,eAAuB,aAAA;;;;;;;iBC9M9C,YAAA,CAAa,UAAA,EAAY,UAAA,EAAY,OAAA;;;;;;;;;AbvCs7D;;;ccS99D,cAAA;EAAA;;;;;;;cCeA,sBAAA;AAAA,cAEA,2BAAA;AAAA,iBAEG,mBAAA,CACd,IAAA,UACA,IAAA,EAAM,iBAAA,EACN,MAAA,EAAQ,MAAA;;;;;;;iBC+EM,eAAA,CAAA,IAAoB,IAAA;;;iBC/Dd,SAAA,CAAU,GAAA,EAAK,UAAA,EAAY,KAAA,EAAO,cAAA,GAAiB,OAAA,CAAQ,aAAA;AAAA,iBAO3D,UAAA,CACpB,GAAA,EAAK,UAAA,EACL,EAAA,UACA,IAAA,EAAM,kBAAA,GACL,OAAA,CAAQ,aAAA;AAAA,iBAeW,cAAA,CAAe,GAAA,EAAK,UAAA,EAAY,EAAA,WAAa,OAAA,CAAQ,aAAA;;;KCpD/D,wBAAA;EACV,QAAA,EAAU,QAAA;EACV,MAAA;AAAA;AAAA,iBAGc,gBAAA,CAAiB,KAAA,EAAO,QAAA,eAAuB,wBAAA;;;KCEnD,WAAA;EACV,KAAA;EACA,QAAA;AAAA;AAAA,KAGU,SAAA;EACV,IAAA;EACA,QAAA;EACA,OAAA;AAAA;AAAA,KAGU,YAAA;EACV,YAAA;EACA,aAAA;EACA,UAAA;AAAA;;;;;;;;;KAWU,aAAA;EACV,IAAA,EAAM,IAAA,CAAK,iBAAA;EACX,MAAA,WAAiB,2BAAA;EACjB,OAAA,WAAkB,4BAAA;EAClB,KAAA,EAAO,sBAAA;EACP,aAAA,WAAwB,iCAAA;EACxB,SAAA,EAAW,0BAAA;EACX,QAAA,WAAmB,WAAA;EACnB,QAAA,EAAU,YAAA;EACV,MAAA,WAAiB,SAAA;EACjB,QAAA,EAAU,QAAA,GAAW,MAAA;EACrB,OAAA;AAAA"}
|