@zitadel/components 1.0.0-alpha.20 → 1.0.0-alpha.21

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.
@@ -334,7 +334,7 @@ declare global {
334
334
  }
335
335
  } //# sourceMappingURL=zl-checkbox.d.ts.map
336
336
  //#endregion
337
- //#region ../api/dist/index-BpCgp2NY.d.mts
337
+ //#region ../api/dist/index-BK4Q468Q.d.mts
338
338
  //#region src/generated/model/beginUserPasskeyRegistration201Options.d.ts
339
339
  /**
340
340
  * Generated by orval v8.10.0 🍺
@@ -3296,6 +3296,42 @@ declare const CreateSession201SessionState: {
3296
3296
  readonly active: "active";
3297
3297
  readonly expired: "expired";
3298
3298
  }; //#endregion
3299
+ //#region src/generated/model/createSession201SessionUser.d.ts
3300
+ /**
3301
+ * Generated by orval v8.10.0 🍺
3302
+ * Do not edit manually.
3303
+ * Zitadel NextGen
3304
+ * This is the next generation of the Zitadel identity platform.
3305
+ * OpenAPI spec version: 0.0.1
3306
+ */
3307
+ /**
3308
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
3309
+ property-named, so responses can mix users from different schemas.
3310
+ `identifier` and `display` are resolved independently from the user
3311
+ schema's `x-identifier` and `x-display` designations, live at read time.
3312
+ Clients render `display`, falling back to `identifier`, then `user_id`.
3313
+
3314
+ */
3315
+ type CreateSession201SessionUser = {
3316
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
3317
+ /** The current value of the schema's designated identifier
3318
+ (`x-identifier`). Absent when the schema designates no identifier or
3319
+ the user carries no value for it.
3320
+ */
3321
+ identifier?: string;
3322
+ /** The schema property `identifier` came from, so clients can reach the
3323
+ property's schema for semantics (a mailto link, a field label)
3324
+ instead of guessing from the value. Present exactly when
3325
+ `identifier` is.
3326
+ */
3327
+ identifier_property?: string;
3328
+ /** The `x-display` rendering — the designated properties' values joined
3329
+ in list order. Purely presentational, with no source attribution.
3330
+ Absent when the schema designates no display properties or the user
3331
+ carries no values for them.
3332
+ */
3333
+ display?: string;
3334
+ }; //#endregion
3299
3335
  //#region src/generated/model/createSession201SessionUserAgent.d.ts
3300
3336
  /**
3301
3337
  * Generated by orval v8.10.0 🍺
@@ -3339,23 +3375,13 @@ type CreateSession201Session = {
3339
3375
  factor has been verified through an `auth_attempt`.
3340
3376
  */
3341
3377
  user_id?: string | null;
3342
- /** Human-readable name of the authenticated user, resolved from the
3343
- conventional user-schema properties: `name` when defined, otherwise
3344
- the given and family name parts joined `givenName`/`familyName`
3345
- (the shipped presets' spelling) or `given_name`/`family_name`. Only
3346
- present on reads that hydrate the user's identity
3347
- (`GET /sessions/me`) and only when the session has an authenticated
3348
- user whose schema carries those properties; clients fall back to
3349
- `email`, then `user_id`.
3350
- */
3351
- name?: string;
3352
- /** Email address of the authenticated user, resolved from the
3353
- conventional `email` user-schema property. Only present on reads
3354
- that hydrate the user's identity (`GET /sessions/me`) and only when
3355
- the session has an authenticated user whose schema carries that
3356
- property.
3378
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
3379
+ property-named, so responses can mix users from different schemas.
3380
+ `identifier` and `display` are resolved independently from the user
3381
+ schema's `x-identifier` and `x-display` designations, live at read time.
3382
+ Clients render `display`, falling back to `identifier`, then `user_id`.
3357
3383
  */
3358
- email?: string;
3384
+ user?: CreateSession201SessionUser;
3359
3385
  /** Verified authentication factors accumulated by this session.
3360
3386
  Each key is a factor type (e.g. `password`, `totp`, `passkey`).
3361
3387
  Each value is a factor event object with at least `verified_at` and
@@ -3706,6 +3732,24 @@ type CreateUser201 = {
3706
3732
  */
3707
3733
  attributes: CreateUser201Attributes;
3708
3734
  metadata: CreateUser201Metadata;
3735
+ /** The current value of the user schema's designated identifier
3736
+ (`x-identifier`), resolved live at read time. Absent when the schema
3737
+ designates no identifier or the user carries no value for it.
3738
+ */
3739
+ readonly identifier?: string;
3740
+ /** The schema property `identifier` came from, so clients can reach the
3741
+ property's schema for semantics (a mailto link, a field label)
3742
+ instead of guessing from the value. Present exactly when
3743
+ `identifier` is.
3744
+ */
3745
+ readonly identifier_property?: string;
3746
+ /** The `x-display` rendering — the designated properties' values joined
3747
+ in list order, resolved live at read time. Purely presentational.
3748
+ Absent when the schema designates no display properties or the user
3749
+ carries no values for them. Clients render `display`, falling back
3750
+ to `identifier`, then `id`.
3751
+ */
3752
+ readonly display?: string;
3709
3753
  /** The user's team memberships, present only when the request asked for them with
3710
3754
  `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
3711
3755
  means the user has none.
@@ -3946,6 +3990,42 @@ declare const ExchangeHandoff200SessionState: {
3946
3990
  readonly active: "active";
3947
3991
  readonly expired: "expired";
3948
3992
  }; //#endregion
3993
+ //#region src/generated/model/exchangeHandoff200SessionUser.d.ts
3994
+ /**
3995
+ * Generated by orval v8.10.0 🍺
3996
+ * Do not edit manually.
3997
+ * Zitadel NextGen
3998
+ * This is the next generation of the Zitadel identity platform.
3999
+ * OpenAPI spec version: 0.0.1
4000
+ */
4001
+ /**
4002
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
4003
+ property-named, so responses can mix users from different schemas.
4004
+ `identifier` and `display` are resolved independently from the user
4005
+ schema's `x-identifier` and `x-display` designations, live at read time.
4006
+ Clients render `display`, falling back to `identifier`, then `user_id`.
4007
+
4008
+ */
4009
+ type ExchangeHandoff200SessionUser = {
4010
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
4011
+ /** The current value of the schema's designated identifier
4012
+ (`x-identifier`). Absent when the schema designates no identifier or
4013
+ the user carries no value for it.
4014
+ */
4015
+ identifier?: string;
4016
+ /** The schema property `identifier` came from, so clients can reach the
4017
+ property's schema for semantics (a mailto link, a field label)
4018
+ instead of guessing from the value. Present exactly when
4019
+ `identifier` is.
4020
+ */
4021
+ identifier_property?: string;
4022
+ /** The `x-display` rendering — the designated properties' values joined
4023
+ in list order. Purely presentational, with no source attribution.
4024
+ Absent when the schema designates no display properties or the user
4025
+ carries no values for them.
4026
+ */
4027
+ display?: string;
4028
+ }; //#endregion
3949
4029
  //#region src/generated/model/exchangeHandoff200SessionUserAgent.d.ts
3950
4030
  /**
3951
4031
  * Generated by orval v8.10.0 🍺
@@ -3989,23 +4069,13 @@ type ExchangeHandoff200Session = {
3989
4069
  factor has been verified through an `auth_attempt`.
3990
4070
  */
3991
4071
  user_id?: string | null;
3992
- /** Human-readable name of the authenticated user, resolved from the
3993
- conventional user-schema properties: `name` when defined, otherwise
3994
- the given and family name parts joined `givenName`/`familyName`
3995
- (the shipped presets' spelling) or `given_name`/`family_name`. Only
3996
- present on reads that hydrate the user's identity
3997
- (`GET /sessions/me`) and only when the session has an authenticated
3998
- user whose schema carries those properties; clients fall back to
3999
- `email`, then `user_id`.
4072
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
4073
+ property-named, so responses can mix users from different schemas.
4074
+ `identifier` and `display` are resolved independently from the user
4075
+ schema's `x-identifier` and `x-display` designations, live at read time.
4076
+ Clients render `display`, falling back to `identifier`, then `user_id`.
4000
4077
  */
4001
- name?: string;
4002
- /** Email address of the authenticated user, resolved from the
4003
- conventional `email` user-schema property. Only present on reads
4004
- that hydrate the user's identity (`GET /sessions/me`) and only when
4005
- the session has an authenticated user whose schema carries that
4006
- property.
4007
- */
4008
- email?: string;
4078
+ user?: ExchangeHandoff200SessionUser;
4009
4079
  /** Verified authentication factors accumulated by this session.
4010
4080
  Each key is a factor type (e.g. `password`, `totp`, `passkey`).
4011
4081
  Each value is a factor event object with at least `verified_at` and
@@ -7189,6 +7259,42 @@ declare const GetMySession200State: {
7189
7259
  readonly active: "active";
7190
7260
  readonly expired: "expired";
7191
7261
  }; //#endregion
7262
+ //#region src/generated/model/getMySession200User.d.ts
7263
+ /**
7264
+ * Generated by orval v8.10.0 🍺
7265
+ * Do not edit manually.
7266
+ * Zitadel NextGen
7267
+ * This is the next generation of the Zitadel identity platform.
7268
+ * OpenAPI spec version: 0.0.1
7269
+ */
7270
+ /**
7271
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
7272
+ property-named, so responses can mix users from different schemas.
7273
+ `identifier` and `display` are resolved independently from the user
7274
+ schema's `x-identifier` and `x-display` designations, live at read time.
7275
+ Clients render `display`, falling back to `identifier`, then `user_id`.
7276
+
7277
+ */
7278
+ type GetMySession200User = {
7279
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
7280
+ /** The current value of the schema's designated identifier
7281
+ (`x-identifier`). Absent when the schema designates no identifier or
7282
+ the user carries no value for it.
7283
+ */
7284
+ identifier?: string;
7285
+ /** The schema property `identifier` came from, so clients can reach the
7286
+ property's schema for semantics (a mailto link, a field label)
7287
+ instead of guessing from the value. Present exactly when
7288
+ `identifier` is.
7289
+ */
7290
+ identifier_property?: string;
7291
+ /** The `x-display` rendering — the designated properties' values joined
7292
+ in list order. Purely presentational, with no source attribution.
7293
+ Absent when the schema designates no display properties or the user
7294
+ carries no values for them.
7295
+ */
7296
+ display?: string;
7297
+ }; //#endregion
7192
7298
  //#region src/generated/model/getMySession200UserAgent.d.ts
7193
7299
  /**
7194
7300
  * Generated by orval v8.10.0 🍺
@@ -7232,23 +7338,13 @@ type GetMySession200 = {
7232
7338
  factor has been verified through an `auth_attempt`.
7233
7339
  */
7234
7340
  user_id?: string | null;
7235
- /** Human-readable name of the authenticated user, resolved from the
7236
- conventional user-schema properties: `name` when defined, otherwise
7237
- the given and family name parts joined `givenName`/`familyName`
7238
- (the shipped presets' spelling) or `given_name`/`family_name`. Only
7239
- present on reads that hydrate the user's identity
7240
- (`GET /sessions/me`) and only when the session has an authenticated
7241
- user whose schema carries those properties; clients fall back to
7242
- `email`, then `user_id`.
7341
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
7342
+ property-named, so responses can mix users from different schemas.
7343
+ `identifier` and `display` are resolved independently from the user
7344
+ schema's `x-identifier` and `x-display` designations, live at read time.
7345
+ Clients render `display`, falling back to `identifier`, then `user_id`.
7243
7346
  */
7244
- name?: string;
7245
- /** Email address of the authenticated user, resolved from the
7246
- conventional `email` user-schema property. Only present on reads
7247
- that hydrate the user's identity (`GET /sessions/me`) and only when
7248
- the session has an authenticated user whose schema carries that
7249
- property.
7250
- */
7251
- email?: string;
7347
+ user?: GetMySession200User;
7252
7348
  /** Verified authentication factors accumulated by this session.
7253
7349
  Each key is a factor type (e.g. `password`, `totp`, `passkey`).
7254
7350
  Each value is a factor event object with at least `verified_at` and
@@ -7452,6 +7548,24 @@ type GetMyUser200 = {
7452
7548
  */
7453
7549
  attributes: GetMyUser200Attributes;
7454
7550
  metadata: GetMyUser200Metadata;
7551
+ /** The current value of the user schema's designated identifier
7552
+ (`x-identifier`), resolved live at read time. Absent when the schema
7553
+ designates no identifier or the user carries no value for it.
7554
+ */
7555
+ readonly identifier?: string;
7556
+ /** The schema property `identifier` came from, so clients can reach the
7557
+ property's schema for semantics (a mailto link, a field label)
7558
+ instead of guessing from the value. Present exactly when
7559
+ `identifier` is.
7560
+ */
7561
+ readonly identifier_property?: string;
7562
+ /** The `x-display` rendering — the designated properties' values joined
7563
+ in list order, resolved live at read time. Purely presentational.
7564
+ Absent when the schema designates no display properties or the user
7565
+ carries no values for them. Clients render `display`, falling back
7566
+ to `identifier`, then `id`.
7567
+ */
7568
+ readonly display?: string;
7455
7569
  /** The user's team memberships, present only when the request asked for them with
7456
7570
  `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
7457
7571
  means the user has none.
@@ -7924,6 +8038,42 @@ declare const GetSession200State: {
7924
8038
  readonly active: "active";
7925
8039
  readonly expired: "expired";
7926
8040
  }; //#endregion
8041
+ //#region src/generated/model/getSession200User.d.ts
8042
+ /**
8043
+ * Generated by orval v8.10.0 🍺
8044
+ * Do not edit manually.
8045
+ * Zitadel NextGen
8046
+ * This is the next generation of the Zitadel identity platform.
8047
+ * OpenAPI spec version: 0.0.1
8048
+ */
8049
+ /**
8050
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
8051
+ property-named, so responses can mix users from different schemas.
8052
+ `identifier` and `display` are resolved independently from the user
8053
+ schema's `x-identifier` and `x-display` designations, live at read time.
8054
+ Clients render `display`, falling back to `identifier`, then `user_id`.
8055
+
8056
+ */
8057
+ type GetSession200User = {
8058
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
8059
+ /** The current value of the schema's designated identifier
8060
+ (`x-identifier`). Absent when the schema designates no identifier or
8061
+ the user carries no value for it.
8062
+ */
8063
+ identifier?: string;
8064
+ /** The schema property `identifier` came from, so clients can reach the
8065
+ property's schema for semantics (a mailto link, a field label)
8066
+ instead of guessing from the value. Present exactly when
8067
+ `identifier` is.
8068
+ */
8069
+ identifier_property?: string;
8070
+ /** The `x-display` rendering — the designated properties' values joined
8071
+ in list order. Purely presentational, with no source attribution.
8072
+ Absent when the schema designates no display properties or the user
8073
+ carries no values for them.
8074
+ */
8075
+ display?: string;
8076
+ }; //#endregion
7927
8077
  //#region src/generated/model/getSession200UserAgent.d.ts
7928
8078
  /**
7929
8079
  * Generated by orval v8.10.0 🍺
@@ -7967,23 +8117,13 @@ type GetSession200 = {
7967
8117
  factor has been verified through an `auth_attempt`.
7968
8118
  */
7969
8119
  user_id?: string | null;
7970
- /** Human-readable name of the authenticated user, resolved from the
7971
- conventional user-schema properties: `name` when defined, otherwise
7972
- the given and family name parts joined `givenName`/`familyName`
7973
- (the shipped presets' spelling) or `given_name`/`family_name`. Only
7974
- present on reads that hydrate the user's identity
7975
- (`GET /sessions/me`) and only when the session has an authenticated
7976
- user whose schema carries those properties; clients fall back to
7977
- `email`, then `user_id`.
7978
- */
7979
- name?: string;
7980
- /** Email address of the authenticated user, resolved from the
7981
- conventional `email` user-schema property. Only present on reads
7982
- that hydrate the user's identity (`GET /sessions/me`) and only when
7983
- the session has an authenticated user whose schema carries that
7984
- property.
8120
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
8121
+ property-named, so responses can mix users from different schemas.
8122
+ `identifier` and `display` are resolved independently from the user
8123
+ schema's `x-identifier` and `x-display` designations, live at read time.
8124
+ Clients render `display`, falling back to `identifier`, then `user_id`.
7985
8125
  */
7986
- email?: string;
8126
+ user?: GetSession200User;
7987
8127
  /** Verified authentication factors accumulated by this session.
7988
8128
  Each key is a factor type (e.g. `password`, `totp`, `passkey`).
7989
8129
  Each value is a factor event object with at least `verified_at` and
@@ -8231,6 +8371,24 @@ type GetUserByID200 = {
8231
8371
  */
8232
8372
  attributes: GetUserByID200Attributes;
8233
8373
  metadata: GetUserByID200Metadata;
8374
+ /** The current value of the user schema's designated identifier
8375
+ (`x-identifier`), resolved live at read time. Absent when the schema
8376
+ designates no identifier or the user carries no value for it.
8377
+ */
8378
+ readonly identifier?: string;
8379
+ /** The schema property `identifier` came from, so clients can reach the
8380
+ property's schema for semantics (a mailto link, a field label)
8381
+ instead of guessing from the value. Present exactly when
8382
+ `identifier` is.
8383
+ */
8384
+ readonly identifier_property?: string;
8385
+ /** The `x-display` rendering — the designated properties' values joined
8386
+ in list order, resolved live at read time. Purely presentational.
8387
+ Absent when the schema designates no display properties or the user
8388
+ carries no values for them. Clients render `display`, falling back
8389
+ to `identifier`, then `id`.
8390
+ */
8391
+ readonly display?: string;
8234
8392
  /** The user's team memberships, present only when the request asked for them with
8235
8393
  `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
8236
8394
  means the user has none.
@@ -11319,6 +11477,42 @@ declare const QuerySessions200SessionsItemState: {
11319
11477
  readonly active: "active";
11320
11478
  readonly expired: "expired";
11321
11479
  }; //#endregion
11480
+ //#region src/generated/model/querySessions200SessionsItemUser.d.ts
11481
+ /**
11482
+ * Generated by orval v8.10.0 🍺
11483
+ * Do not edit manually.
11484
+ * Zitadel NextGen
11485
+ * This is the next generation of the Zitadel identity platform.
11486
+ * OpenAPI spec version: 0.0.1
11487
+ */
11488
+ /**
11489
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
11490
+ property-named, so responses can mix users from different schemas.
11491
+ `identifier` and `display` are resolved independently from the user
11492
+ schema's `x-identifier` and `x-display` designations, live at read time.
11493
+ Clients render `display`, falling back to `identifier`, then `user_id`.
11494
+
11495
+ */
11496
+ type QuerySessions200SessionsItemUser = {
11497
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
11498
+ /** The current value of the schema's designated identifier
11499
+ (`x-identifier`). Absent when the schema designates no identifier or
11500
+ the user carries no value for it.
11501
+ */
11502
+ identifier?: string;
11503
+ /** The schema property `identifier` came from, so clients can reach the
11504
+ property's schema for semantics (a mailto link, a field label)
11505
+ instead of guessing from the value. Present exactly when
11506
+ `identifier` is.
11507
+ */
11508
+ identifier_property?: string;
11509
+ /** The `x-display` rendering — the designated properties' values joined
11510
+ in list order. Purely presentational, with no source attribution.
11511
+ Absent when the schema designates no display properties or the user
11512
+ carries no values for them.
11513
+ */
11514
+ display?: string;
11515
+ }; //#endregion
11322
11516
  //#region src/generated/model/querySessions200SessionsItemUserAgent.d.ts
11323
11517
  /**
11324
11518
  * Generated by orval v8.10.0 🍺
@@ -11362,23 +11556,13 @@ type QuerySessions200SessionsItem = {
11362
11556
  factor has been verified through an `auth_attempt`.
11363
11557
  */
11364
11558
  user_id?: string | null;
11365
- /** Human-readable name of the authenticated user, resolved from the
11366
- conventional user-schema properties: `name` when defined, otherwise
11367
- the given and family name parts joined `givenName`/`familyName`
11368
- (the shipped presets' spelling) or `given_name`/`family_name`. Only
11369
- present on reads that hydrate the user's identity
11370
- (`GET /sessions/me`) and only when the session has an authenticated
11371
- user whose schema carries those properties; clients fall back to
11372
- `email`, then `user_id`.
11373
- */
11374
- name?: string;
11375
- /** Email address of the authenticated user, resolved from the
11376
- conventional `email` user-schema property. Only present on reads
11377
- that hydrate the user's identity (`GET /sessions/me`) and only when
11378
- the session has an authenticated user whose schema carries that
11379
- property.
11559
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
11560
+ property-named, so responses can mix users from different schemas.
11561
+ `identifier` and `display` are resolved independently from the user
11562
+ schema's `x-identifier` and `x-display` designations, live at read time.
11563
+ Clients render `display`, falling back to `identifier`, then `user_id`.
11380
11564
  */
11381
- email?: string;
11565
+ user?: QuerySessions200SessionsItemUser;
11382
11566
  /** Verified authentication factors accumulated by this session.
11383
11567
  Each key is a factor type (e.g. `password`, `totp`, `passkey`).
11384
11568
  Each value is a factor event object with at least `verified_at` and
@@ -11974,6 +12158,24 @@ type QueryUsers200UsersItem = {
11974
12158
  */
11975
12159
  attributes: QueryUsers200UsersItemAttributes;
11976
12160
  metadata: QueryUsers200UsersItemMetadata;
12161
+ /** The current value of the user schema's designated identifier
12162
+ (`x-identifier`), resolved live at read time. Absent when the schema
12163
+ designates no identifier or the user carries no value for it.
12164
+ */
12165
+ readonly identifier?: string;
12166
+ /** The schema property `identifier` came from, so clients can reach the
12167
+ property's schema for semantics (a mailto link, a field label)
12168
+ instead of guessing from the value. Present exactly when
12169
+ `identifier` is.
12170
+ */
12171
+ readonly identifier_property?: string;
12172
+ /** The `x-display` rendering — the designated properties' values joined
12173
+ in list order, resolved live at read time. Purely presentational.
12174
+ Absent when the schema designates no display properties or the user
12175
+ carries no values for them. Clients render `display`, falling back
12176
+ to `identifier`, then `id`.
12177
+ */
12178
+ readonly display?: string;
11977
12179
  /** The user's team memberships, present only when the request asked for them with
11978
12180
  `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
11979
12181
  means the user has none.
@@ -14430,7 +14632,7 @@ declare class ZlPasskey extends LitElement {
14430
14632
  */
14431
14633
  startCeremony(): Promise<void>;
14432
14634
  private handleCancelSubmit;
14433
- render(): typeof nothing | _$lit.TemplateResult<1>;
14635
+ render(): _$lit.TemplateResult<1> | typeof nothing;
14434
14636
  /**
14435
14637
  * `navigator.credentials.get()` — authentication ceremony.
14436
14638
  */
@@ -14639,4 +14841,4 @@ declare global {
14639
14841
  } //# sourceMappingURL=zl-select.d.ts.map
14640
14842
  //#endregion
14641
14843
  export { CreateTeam201 as $, ListUserPasskeysParams as $t, CreateFlow201StepChallenge as A, ZlAlert as An, GetReleaseByIdParams as At, CreateGrantParams as B, ListBranding200Item as Bt, CreateBrandingBody as C, ZlCheckbox as Cn, GetHealthDefault as Ct, CreateFlow201BrandingLayout as D, zlCardManifest as Dn, GetProject200 as Dt, CreateFlow201Branding as E, ZlCard as En, GetMyUser200 as Et, CreateFlowBodyPurpose as F, ZlIcon as Fn, GetUserByID200 as Ft, CreateRelease201 as G, ListEventsParams as Gt, CreateProject201 as H, ListEnvironments200 as Ht, CreateFlowDefinition201 as I, zlIconManifest as In, GetUserByIDParams as It, CreateSchema201 as J, ListReleases200 as Jt, CreateReleaseBody as K, ListFlowDefinitions200 as Kt, CreateFlowDefinitionBody as L, InitClaim201 as Lt, CreateFlow201StepGates as M, IconName as Mn, GetSchemaByIdParams as Mt, CreateFlow201StepSsoProvidersItem as N, IconSize as Nn, GetSession200 as Nt, CreateFlow201Step as O, ZlButton as On, GetReadyDefault as Ot, CreateFlowBody as P, IconTone as Pn, GetTeam200 as Pt, CreateSessionBody as Q, ListUserPasskeys200 as Qt, CreateGrant201 as R, IssueChallenge201 as Rt, CreateBranding201 as S, VerifyChallengeProofBody as Sn, GetGrantParams as St, CreateFlow201 as T, zlCheckboxManifest as Tn, GetMySession200 as Tt, CreateProjectBody as U, ListEnvironmentsParams as Ut, CreateHandoff200 as V, ListBrandingParams as Vt, CreateRelease200 as W, ListEvents200 as Wt, CreateSchemaParams as X, ListSchemas200 as Xt, CreateSchemaBody as Y, ListReleasesParams as Yt, CreateSession201 as Z, ListSchemasParams as Zt, BeginUserPasskeyRegistrationBody as _, UpdateFlowDefinition200 as _n, GetEvent200 as _t, ZlPill as a, QueryProjectsBody as an, DeleteGrantParams as at, CreateAuthAttempt201 as b, UpdateTeamBody as bn, GetFlowStep200 as bt, ZlPasskeyErrorDetail as c, QuerySessionsParams as cn, ExchangeHandoffParams as ct, ZlPageShell as d, QueryTeamsParams as dn, GetAuthAttempt200 as dt, ListUserTeams200 as en, CreateTeamBody as et, zlPageShellManifest as f, QueryUsers200 as fn, GetBrandingById200 as ft, BeginUserPasskeyRegistration201 as g, SubmitFlowStepBody as gn, GetEnvironmentByNameParams as gt, zlFieldManifest as h, SubmitFlowStep200 as hn, GetEnvironmentByName200 as ht, zlSelectManifest as i, QueryProjects200 as in, CreateUserParams as it, CreateFlow201StepFieldsItem as j, zlAlertManifest as jn, GetSchemaById200 as jt, CreateFlow201StepActionsItem as k, zlButtonManifest as kn, GetReleaseById200 as kt, ZlPasskeyResultDetail as l, QueryTeams200 as ln, FinishUserPasskeyRegistration201 as lt, ZlFieldType as m, SetUserPasswordBody as mn, GetClaimStatusParams as mt, ZlSelectChangeDetail as n, PatchProject200 as nn, CreateUser201 as nt, zlPillManifest as o, QuerySessions200 as on, ExchangeHandoff200 as ot, ZlField as p, QueryUsersBody as pn, GetClaimStatus200 as pt, CreateReleaseParams as q, ListFlowDefinitionsParams as qt, ZlSelectOption as r, PatchProjectBody as rn, CreateUserBody as rt, ZlPasskey as s, QuerySessionsBody as sn, ExchangeHandoffBody as st, ZlSelect as t, ListUserTeamsParams as tn, CreateTeamParams as tt, zlPasskeyManifest as u, QueryTeamsBody as un, FinishUserPasskeyRegistrationBody as ut, CompleteClaim200 as v, UpdateFlowDefinitionBody as vn, GetEventParams as vt, CreateBrandingParams as w, ZlCheckboxChangeDetail as wn, GetLiveDefault as wt, CreateAuthAttemptBody as x, VerifyChallengeProof200 as xn, GetGrant200 as xt, CompleteClaimBody as y, UpdateTeam200 as yn, GetFlowDefinition200 as yt, CreateGrantBody as z, IssueChallengeBody as zt };
14642
- //# sourceMappingURL=index-BPgWdWx7.d.mts.map
14844
+ //# sourceMappingURL=index-Dx8rvpNs.d.mts.map