@zitadel/api 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.
- package/dist/generated/endpoints/zitadelNextGen.d.mts +1 -1
- package/dist/generated/endpoints/zitadelNextGen.msw.d.mts +1 -1
- package/dist/generated/endpoints/zitadelNextGen.msw.d.mts.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.msw.mjs +123 -40
- package/dist/generated/endpoints/zitadelNextGen.msw.mjs.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.zod.d.mts +53 -24
- package/dist/generated/endpoints/zitadelNextGen.zod.d.mts.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.zod.mjs +38 -9
- package/dist/generated/endpoints/zitadelNextGen.zod.mjs.map +1 -1
- package/dist/generated/model/index.d.mts +2 -2
- package/dist/{index-BpCgp2NY.d.mts → index-BK4Q468Q.d.mts} +289 -82
- package/dist/index-BK4Q468Q.d.mts.map +1 -0
- package/dist/runtime/api-factory.d.mts +1 -1
- package/dist/{zitadelNextGen-C4IZjGCT.d.mts → zitadelNextGen-C8m49W5h.d.mts} +2 -2
- package/dist/{zitadelNextGen-C4IZjGCT.d.mts.map → zitadelNextGen-C8m49W5h.d.mts.map} +1 -1
- package/package.json +1 -1
- package/src/generated/endpoints/zitadelNextGen.msw.ts +128 -30
- package/src/generated/endpoints/zitadelNextGen.zod.ts +152 -36
- package/src/generated/model/createSession201Session.ts +7 -16
- package/src/generated/model/createSession201SessionUser.ts +37 -0
- package/src/generated/model/createUser201.ts +18 -0
- package/src/generated/model/exchangeHandoff200Session.ts +7 -16
- package/src/generated/model/exchangeHandoff200SessionUser.ts +37 -0
- package/src/generated/model/getMySession200.ts +7 -16
- package/src/generated/model/getMySession200User.ts +37 -0
- package/src/generated/model/getMyUser200.ts +18 -0
- package/src/generated/model/getSession200.ts +7 -16
- package/src/generated/model/getSession200User.ts +37 -0
- package/src/generated/model/getUserByID200.ts +18 -0
- package/src/generated/model/index.ts +5 -0
- package/src/generated/model/querySessions200SessionsItem.ts +7 -16
- package/src/generated/model/querySessions200SessionsItemUser.ts +37 -0
- package/src/generated/model/queryUsers200UsersItem.ts +18 -0
- package/dist/index-BpCgp2NY.d.mts.map +0 -1
|
@@ -4220,6 +4220,43 @@ declare const CreateSession201SessionState: {
|
|
|
4220
4220
|
readonly expired: "expired";
|
|
4221
4221
|
};
|
|
4222
4222
|
//#endregion
|
|
4223
|
+
//#region src/generated/model/createSession201SessionUser.d.ts
|
|
4224
|
+
/**
|
|
4225
|
+
* Generated by orval v8.10.0 🍺
|
|
4226
|
+
* Do not edit manually.
|
|
4227
|
+
* Zitadel NextGen
|
|
4228
|
+
* This is the next generation of the Zitadel identity platform.
|
|
4229
|
+
* OpenAPI spec version: 0.0.1
|
|
4230
|
+
*/
|
|
4231
|
+
/**
|
|
4232
|
+
* A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
4233
|
+
property-named, so responses can mix users from different schemas.
|
|
4234
|
+
`identifier` and `display` are resolved independently from the user
|
|
4235
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
4236
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
4237
|
+
|
|
4238
|
+
*/
|
|
4239
|
+
type CreateSession201SessionUser = {
|
|
4240
|
+
/** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
|
|
4241
|
+
/** The current value of the schema's designated identifier
|
|
4242
|
+
(`x-identifier`). Absent when the schema designates no identifier or
|
|
4243
|
+
the user carries no value for it.
|
|
4244
|
+
*/
|
|
4245
|
+
identifier?: string;
|
|
4246
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
4247
|
+
property's schema for semantics (a mailto link, a field label)
|
|
4248
|
+
instead of guessing from the value. Present exactly when
|
|
4249
|
+
`identifier` is.
|
|
4250
|
+
*/
|
|
4251
|
+
identifier_property?: string;
|
|
4252
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
4253
|
+
in list order. Purely presentational, with no source attribution.
|
|
4254
|
+
Absent when the schema designates no display properties or the user
|
|
4255
|
+
carries no values for them.
|
|
4256
|
+
*/
|
|
4257
|
+
display?: string;
|
|
4258
|
+
};
|
|
4259
|
+
//#endregion
|
|
4223
4260
|
//#region src/generated/model/createSession201SessionUserAgent.d.ts
|
|
4224
4261
|
/**
|
|
4225
4262
|
* Generated by orval v8.10.0 🍺
|
|
@@ -4264,23 +4301,13 @@ type CreateSession201Session = {
|
|
|
4264
4301
|
factor has been verified through an `auth_attempt`.
|
|
4265
4302
|
*/
|
|
4266
4303
|
user_id?: string | null;
|
|
4267
|
-
/**
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
(`GET /sessions/me`) and only when the session has an authenticated
|
|
4273
|
-
user whose schema carries those properties; clients fall back to
|
|
4274
|
-
`email`, then `user_id`.
|
|
4275
|
-
*/
|
|
4276
|
-
name?: string;
|
|
4277
|
-
/** Email address of the authenticated user, resolved from the
|
|
4278
|
-
conventional `email` user-schema property. Only present on reads
|
|
4279
|
-
that hydrate the user's identity (`GET /sessions/me`) and only when
|
|
4280
|
-
the session has an authenticated user whose schema carries that
|
|
4281
|
-
property.
|
|
4304
|
+
/** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
4305
|
+
property-named, so responses can mix users from different schemas.
|
|
4306
|
+
`identifier` and `display` are resolved independently from the user
|
|
4307
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
4308
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
4282
4309
|
*/
|
|
4283
|
-
|
|
4310
|
+
user?: CreateSession201SessionUser;
|
|
4284
4311
|
/** Verified authentication factors accumulated by this session.
|
|
4285
4312
|
Each key is a factor type (e.g. `password`, `totp`, `passkey`).
|
|
4286
4313
|
Each value is a factor event object with at least `verified_at` and
|
|
@@ -4890,6 +4917,24 @@ type CreateUser201 = {
|
|
|
4890
4917
|
*/
|
|
4891
4918
|
attributes: CreateUser201Attributes;
|
|
4892
4919
|
metadata: CreateUser201Metadata;
|
|
4920
|
+
/** The current value of the user schema's designated identifier
|
|
4921
|
+
(`x-identifier`), resolved live at read time. Absent when the schema
|
|
4922
|
+
designates no identifier or the user carries no value for it.
|
|
4923
|
+
*/
|
|
4924
|
+
readonly identifier?: string;
|
|
4925
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
4926
|
+
property's schema for semantics (a mailto link, a field label)
|
|
4927
|
+
instead of guessing from the value. Present exactly when
|
|
4928
|
+
`identifier` is.
|
|
4929
|
+
*/
|
|
4930
|
+
readonly identifier_property?: string;
|
|
4931
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
4932
|
+
in list order, resolved live at read time. Purely presentational.
|
|
4933
|
+
Absent when the schema designates no display properties or the user
|
|
4934
|
+
carries no values for them. Clients render `display`, falling back
|
|
4935
|
+
to `identifier`, then `id`.
|
|
4936
|
+
*/
|
|
4937
|
+
readonly display?: string;
|
|
4893
4938
|
/** The user's team memberships, present only when the request asked for them with
|
|
4894
4939
|
`expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
|
|
4895
4940
|
means the user has none.
|
|
@@ -5734,6 +5779,43 @@ declare const ExchangeHandoff200SessionState: {
|
|
|
5734
5779
|
readonly expired: "expired";
|
|
5735
5780
|
};
|
|
5736
5781
|
//#endregion
|
|
5782
|
+
//#region src/generated/model/exchangeHandoff200SessionUser.d.ts
|
|
5783
|
+
/**
|
|
5784
|
+
* Generated by orval v8.10.0 🍺
|
|
5785
|
+
* Do not edit manually.
|
|
5786
|
+
* Zitadel NextGen
|
|
5787
|
+
* This is the next generation of the Zitadel identity platform.
|
|
5788
|
+
* OpenAPI spec version: 0.0.1
|
|
5789
|
+
*/
|
|
5790
|
+
/**
|
|
5791
|
+
* A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
5792
|
+
property-named, so responses can mix users from different schemas.
|
|
5793
|
+
`identifier` and `display` are resolved independently from the user
|
|
5794
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
5795
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
5796
|
+
|
|
5797
|
+
*/
|
|
5798
|
+
type ExchangeHandoff200SessionUser = {
|
|
5799
|
+
/** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
|
|
5800
|
+
/** The current value of the schema's designated identifier
|
|
5801
|
+
(`x-identifier`). Absent when the schema designates no identifier or
|
|
5802
|
+
the user carries no value for it.
|
|
5803
|
+
*/
|
|
5804
|
+
identifier?: string;
|
|
5805
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
5806
|
+
property's schema for semantics (a mailto link, a field label)
|
|
5807
|
+
instead of guessing from the value. Present exactly when
|
|
5808
|
+
`identifier` is.
|
|
5809
|
+
*/
|
|
5810
|
+
identifier_property?: string;
|
|
5811
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
5812
|
+
in list order. Purely presentational, with no source attribution.
|
|
5813
|
+
Absent when the schema designates no display properties or the user
|
|
5814
|
+
carries no values for them.
|
|
5815
|
+
*/
|
|
5816
|
+
display?: string;
|
|
5817
|
+
};
|
|
5818
|
+
//#endregion
|
|
5737
5819
|
//#region src/generated/model/exchangeHandoff200SessionUserAgent.d.ts
|
|
5738
5820
|
/**
|
|
5739
5821
|
* Generated by orval v8.10.0 🍺
|
|
@@ -5778,23 +5860,13 @@ type ExchangeHandoff200Session = {
|
|
|
5778
5860
|
factor has been verified through an `auth_attempt`.
|
|
5779
5861
|
*/
|
|
5780
5862
|
user_id?: string | null;
|
|
5781
|
-
/**
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
(`GET /sessions/me`) and only when the session has an authenticated
|
|
5787
|
-
user whose schema carries those properties; clients fall back to
|
|
5788
|
-
`email`, then `user_id`.
|
|
5863
|
+
/** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
5864
|
+
property-named, so responses can mix users from different schemas.
|
|
5865
|
+
`identifier` and `display` are resolved independently from the user
|
|
5866
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
5867
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
5789
5868
|
*/
|
|
5790
|
-
|
|
5791
|
-
/** Email address of the authenticated user, resolved from the
|
|
5792
|
-
conventional `email` user-schema property. Only present on reads
|
|
5793
|
-
that hydrate the user's identity (`GET /sessions/me`) and only when
|
|
5794
|
-
the session has an authenticated user whose schema carries that
|
|
5795
|
-
property.
|
|
5796
|
-
*/
|
|
5797
|
-
email?: string;
|
|
5869
|
+
user?: ExchangeHandoff200SessionUser;
|
|
5798
5870
|
/** Verified authentication factors accumulated by this session.
|
|
5799
5871
|
Each key is a factor type (e.g. `password`, `totp`, `passkey`).
|
|
5800
5872
|
Each value is a factor event object with at least `verified_at` and
|
|
@@ -10130,6 +10202,43 @@ declare const GetMySession200State: {
|
|
|
10130
10202
|
readonly expired: "expired";
|
|
10131
10203
|
};
|
|
10132
10204
|
//#endregion
|
|
10205
|
+
//#region src/generated/model/getMySession200User.d.ts
|
|
10206
|
+
/**
|
|
10207
|
+
* Generated by orval v8.10.0 🍺
|
|
10208
|
+
* Do not edit manually.
|
|
10209
|
+
* Zitadel NextGen
|
|
10210
|
+
* This is the next generation of the Zitadel identity platform.
|
|
10211
|
+
* OpenAPI spec version: 0.0.1
|
|
10212
|
+
*/
|
|
10213
|
+
/**
|
|
10214
|
+
* A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
10215
|
+
property-named, so responses can mix users from different schemas.
|
|
10216
|
+
`identifier` and `display` are resolved independently from the user
|
|
10217
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
10218
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
10219
|
+
|
|
10220
|
+
*/
|
|
10221
|
+
type GetMySession200User = {
|
|
10222
|
+
/** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
|
|
10223
|
+
/** The current value of the schema's designated identifier
|
|
10224
|
+
(`x-identifier`). Absent when the schema designates no identifier or
|
|
10225
|
+
the user carries no value for it.
|
|
10226
|
+
*/
|
|
10227
|
+
identifier?: string;
|
|
10228
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
10229
|
+
property's schema for semantics (a mailto link, a field label)
|
|
10230
|
+
instead of guessing from the value. Present exactly when
|
|
10231
|
+
`identifier` is.
|
|
10232
|
+
*/
|
|
10233
|
+
identifier_property?: string;
|
|
10234
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
10235
|
+
in list order. Purely presentational, with no source attribution.
|
|
10236
|
+
Absent when the schema designates no display properties or the user
|
|
10237
|
+
carries no values for them.
|
|
10238
|
+
*/
|
|
10239
|
+
display?: string;
|
|
10240
|
+
};
|
|
10241
|
+
//#endregion
|
|
10133
10242
|
//#region src/generated/model/getMySession200UserAgent.d.ts
|
|
10134
10243
|
/**
|
|
10135
10244
|
* Generated by orval v8.10.0 🍺
|
|
@@ -10174,23 +10283,13 @@ type GetMySession200 = {
|
|
|
10174
10283
|
factor has been verified through an `auth_attempt`.
|
|
10175
10284
|
*/
|
|
10176
10285
|
user_id?: string | null;
|
|
10177
|
-
/**
|
|
10178
|
-
|
|
10179
|
-
|
|
10180
|
-
|
|
10181
|
-
|
|
10182
|
-
(`GET /sessions/me`) and only when the session has an authenticated
|
|
10183
|
-
user whose schema carries those properties; clients fall back to
|
|
10184
|
-
`email`, then `user_id`.
|
|
10185
|
-
*/
|
|
10186
|
-
name?: string;
|
|
10187
|
-
/** Email address of the authenticated user, resolved from the
|
|
10188
|
-
conventional `email` user-schema property. Only present on reads
|
|
10189
|
-
that hydrate the user's identity (`GET /sessions/me`) and only when
|
|
10190
|
-
the session has an authenticated user whose schema carries that
|
|
10191
|
-
property.
|
|
10286
|
+
/** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
10287
|
+
property-named, so responses can mix users from different schemas.
|
|
10288
|
+
`identifier` and `display` are resolved independently from the user
|
|
10289
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
10290
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
10192
10291
|
*/
|
|
10193
|
-
|
|
10292
|
+
user?: GetMySession200User;
|
|
10194
10293
|
/** Verified authentication factors accumulated by this session.
|
|
10195
10294
|
Each key is a factor type (e.g. `password`, `totp`, `passkey`).
|
|
10196
10295
|
Each value is a factor event object with at least `verified_at` and
|
|
@@ -10476,6 +10575,24 @@ type GetMyUser200 = {
|
|
|
10476
10575
|
*/
|
|
10477
10576
|
attributes: GetMyUser200Attributes;
|
|
10478
10577
|
metadata: GetMyUser200Metadata;
|
|
10578
|
+
/** The current value of the user schema's designated identifier
|
|
10579
|
+
(`x-identifier`), resolved live at read time. Absent when the schema
|
|
10580
|
+
designates no identifier or the user carries no value for it.
|
|
10581
|
+
*/
|
|
10582
|
+
readonly identifier?: string;
|
|
10583
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
10584
|
+
property's schema for semantics (a mailto link, a field label)
|
|
10585
|
+
instead of guessing from the value. Present exactly when
|
|
10586
|
+
`identifier` is.
|
|
10587
|
+
*/
|
|
10588
|
+
readonly identifier_property?: string;
|
|
10589
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
10590
|
+
in list order, resolved live at read time. Purely presentational.
|
|
10591
|
+
Absent when the schema designates no display properties or the user
|
|
10592
|
+
carries no values for them. Clients render `display`, falling back
|
|
10593
|
+
to `identifier`, then `id`.
|
|
10594
|
+
*/
|
|
10595
|
+
readonly display?: string;
|
|
10479
10596
|
/** The user's team memberships, present only when the request asked for them with
|
|
10480
10597
|
`expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
|
|
10481
10598
|
means the user has none.
|
|
@@ -11270,6 +11387,43 @@ declare const GetSession200State: {
|
|
|
11270
11387
|
readonly expired: "expired";
|
|
11271
11388
|
};
|
|
11272
11389
|
//#endregion
|
|
11390
|
+
//#region src/generated/model/getSession200User.d.ts
|
|
11391
|
+
/**
|
|
11392
|
+
* Generated by orval v8.10.0 🍺
|
|
11393
|
+
* Do not edit manually.
|
|
11394
|
+
* Zitadel NextGen
|
|
11395
|
+
* This is the next generation of the Zitadel identity platform.
|
|
11396
|
+
* OpenAPI spec version: 0.0.1
|
|
11397
|
+
*/
|
|
11398
|
+
/**
|
|
11399
|
+
* A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
11400
|
+
property-named, so responses can mix users from different schemas.
|
|
11401
|
+
`identifier` and `display` are resolved independently from the user
|
|
11402
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
11403
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
11404
|
+
|
|
11405
|
+
*/
|
|
11406
|
+
type GetSession200User = {
|
|
11407
|
+
/** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
|
|
11408
|
+
/** The current value of the schema's designated identifier
|
|
11409
|
+
(`x-identifier`). Absent when the schema designates no identifier or
|
|
11410
|
+
the user carries no value for it.
|
|
11411
|
+
*/
|
|
11412
|
+
identifier?: string;
|
|
11413
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
11414
|
+
property's schema for semantics (a mailto link, a field label)
|
|
11415
|
+
instead of guessing from the value. Present exactly when
|
|
11416
|
+
`identifier` is.
|
|
11417
|
+
*/
|
|
11418
|
+
identifier_property?: string;
|
|
11419
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
11420
|
+
in list order. Purely presentational, with no source attribution.
|
|
11421
|
+
Absent when the schema designates no display properties or the user
|
|
11422
|
+
carries no values for them.
|
|
11423
|
+
*/
|
|
11424
|
+
display?: string;
|
|
11425
|
+
};
|
|
11426
|
+
//#endregion
|
|
11273
11427
|
//#region src/generated/model/getSession200UserAgent.d.ts
|
|
11274
11428
|
/**
|
|
11275
11429
|
* Generated by orval v8.10.0 🍺
|
|
@@ -11314,23 +11468,13 @@ type GetSession200 = {
|
|
|
11314
11468
|
factor has been verified through an `auth_attempt`.
|
|
11315
11469
|
*/
|
|
11316
11470
|
user_id?: string | null;
|
|
11317
|
-
/**
|
|
11318
|
-
|
|
11319
|
-
|
|
11320
|
-
|
|
11321
|
-
|
|
11322
|
-
(`GET /sessions/me`) and only when the session has an authenticated
|
|
11323
|
-
user whose schema carries those properties; clients fall back to
|
|
11324
|
-
`email`, then `user_id`.
|
|
11325
|
-
*/
|
|
11326
|
-
name?: string;
|
|
11327
|
-
/** Email address of the authenticated user, resolved from the
|
|
11328
|
-
conventional `email` user-schema property. Only present on reads
|
|
11329
|
-
that hydrate the user's identity (`GET /sessions/me`) and only when
|
|
11330
|
-
the session has an authenticated user whose schema carries that
|
|
11331
|
-
property.
|
|
11471
|
+
/** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
11472
|
+
property-named, so responses can mix users from different schemas.
|
|
11473
|
+
`identifier` and `display` are resolved independently from the user
|
|
11474
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
11475
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
11332
11476
|
*/
|
|
11333
|
-
|
|
11477
|
+
user?: GetSession200User;
|
|
11334
11478
|
/** Verified authentication factors accumulated by this session.
|
|
11335
11479
|
Each key is a factor type (e.g. `password`, `totp`, `passkey`).
|
|
11336
11480
|
Each value is a factor event object with at least `verified_at` and
|
|
@@ -11763,6 +11907,24 @@ type GetUserByID200 = {
|
|
|
11763
11907
|
*/
|
|
11764
11908
|
attributes: GetUserByID200Attributes;
|
|
11765
11909
|
metadata: GetUserByID200Metadata;
|
|
11910
|
+
/** The current value of the user schema's designated identifier
|
|
11911
|
+
(`x-identifier`), resolved live at read time. Absent when the schema
|
|
11912
|
+
designates no identifier or the user carries no value for it.
|
|
11913
|
+
*/
|
|
11914
|
+
readonly identifier?: string;
|
|
11915
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
11916
|
+
property's schema for semantics (a mailto link, a field label)
|
|
11917
|
+
instead of guessing from the value. Present exactly when
|
|
11918
|
+
`identifier` is.
|
|
11919
|
+
*/
|
|
11920
|
+
readonly identifier_property?: string;
|
|
11921
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
11922
|
+
in list order, resolved live at read time. Purely presentational.
|
|
11923
|
+
Absent when the schema designates no display properties or the user
|
|
11924
|
+
carries no values for them. Clients render `display`, falling back
|
|
11925
|
+
to `identifier`, then `id`.
|
|
11926
|
+
*/
|
|
11927
|
+
readonly display?: string;
|
|
11766
11928
|
/** The user's team memberships, present only when the request asked for them with
|
|
11767
11929
|
`expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
|
|
11768
11930
|
means the user has none.
|
|
@@ -16025,6 +16187,43 @@ declare const QuerySessions200SessionsItemState: {
|
|
|
16025
16187
|
readonly expired: "expired";
|
|
16026
16188
|
};
|
|
16027
16189
|
//#endregion
|
|
16190
|
+
//#region src/generated/model/querySessions200SessionsItemUser.d.ts
|
|
16191
|
+
/**
|
|
16192
|
+
* Generated by orval v8.10.0 🍺
|
|
16193
|
+
* Do not edit manually.
|
|
16194
|
+
* Zitadel NextGen
|
|
16195
|
+
* This is the next generation of the Zitadel identity platform.
|
|
16196
|
+
* OpenAPI spec version: 0.0.1
|
|
16197
|
+
*/
|
|
16198
|
+
/**
|
|
16199
|
+
* A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
16200
|
+
property-named, so responses can mix users from different schemas.
|
|
16201
|
+
`identifier` and `display` are resolved independently from the user
|
|
16202
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
16203
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
16204
|
+
|
|
16205
|
+
*/
|
|
16206
|
+
type QuerySessions200SessionsItemUser = {
|
|
16207
|
+
/** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
|
|
16208
|
+
/** The current value of the schema's designated identifier
|
|
16209
|
+
(`x-identifier`). Absent when the schema designates no identifier or
|
|
16210
|
+
the user carries no value for it.
|
|
16211
|
+
*/
|
|
16212
|
+
identifier?: string;
|
|
16213
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
16214
|
+
property's schema for semantics (a mailto link, a field label)
|
|
16215
|
+
instead of guessing from the value. Present exactly when
|
|
16216
|
+
`identifier` is.
|
|
16217
|
+
*/
|
|
16218
|
+
identifier_property?: string;
|
|
16219
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
16220
|
+
in list order. Purely presentational, with no source attribution.
|
|
16221
|
+
Absent when the schema designates no display properties or the user
|
|
16222
|
+
carries no values for them.
|
|
16223
|
+
*/
|
|
16224
|
+
display?: string;
|
|
16225
|
+
};
|
|
16226
|
+
//#endregion
|
|
16028
16227
|
//#region src/generated/model/querySessions200SessionsItemUserAgent.d.ts
|
|
16029
16228
|
/**
|
|
16030
16229
|
* Generated by orval v8.10.0 🍺
|
|
@@ -16069,23 +16268,13 @@ type QuerySessions200SessionsItem = {
|
|
|
16069
16268
|
factor has been verified through an `auth_attempt`.
|
|
16070
16269
|
*/
|
|
16071
16270
|
user_id?: string | null;
|
|
16072
|
-
/**
|
|
16073
|
-
|
|
16074
|
-
|
|
16075
|
-
|
|
16076
|
-
|
|
16077
|
-
(`GET /sessions/me`) and only when the session has an authenticated
|
|
16078
|
-
user whose schema carries those properties; clients fall back to
|
|
16079
|
-
`email`, then `user_id`.
|
|
16080
|
-
*/
|
|
16081
|
-
name?: string;
|
|
16082
|
-
/** Email address of the authenticated user, resolved from the
|
|
16083
|
-
conventional `email` user-schema property. Only present on reads
|
|
16084
|
-
that hydrate the user's identity (`GET /sessions/me`) and only when
|
|
16085
|
-
the session has an authenticated user whose schema carries that
|
|
16086
|
-
property.
|
|
16271
|
+
/** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
|
|
16272
|
+
property-named, so responses can mix users from different schemas.
|
|
16273
|
+
`identifier` and `display` are resolved independently from the user
|
|
16274
|
+
schema's `x-identifier` and `x-display` designations, live at read time.
|
|
16275
|
+
Clients render `display`, falling back to `identifier`, then `user_id`.
|
|
16087
16276
|
*/
|
|
16088
|
-
|
|
16277
|
+
user?: QuerySessions200SessionsItemUser;
|
|
16089
16278
|
/** Verified authentication factors accumulated by this session.
|
|
16090
16279
|
Each key is a factor type (e.g. `password`, `totp`, `passkey`).
|
|
16091
16280
|
Each value is a factor event object with at least `verified_at` and
|
|
@@ -16954,6 +17143,24 @@ type QueryUsers200UsersItem = {
|
|
|
16954
17143
|
*/
|
|
16955
17144
|
attributes: QueryUsers200UsersItemAttributes;
|
|
16956
17145
|
metadata: QueryUsers200UsersItemMetadata;
|
|
17146
|
+
/** The current value of the user schema's designated identifier
|
|
17147
|
+
(`x-identifier`), resolved live at read time. Absent when the schema
|
|
17148
|
+
designates no identifier or the user carries no value for it.
|
|
17149
|
+
*/
|
|
17150
|
+
readonly identifier?: string;
|
|
17151
|
+
/** The schema property `identifier` came from, so clients can reach the
|
|
17152
|
+
property's schema for semantics (a mailto link, a field label)
|
|
17153
|
+
instead of guessing from the value. Present exactly when
|
|
17154
|
+
`identifier` is.
|
|
17155
|
+
*/
|
|
17156
|
+
readonly identifier_property?: string;
|
|
17157
|
+
/** The `x-display` rendering — the designated properties' values joined
|
|
17158
|
+
in list order, resolved live at read time. Purely presentational.
|
|
17159
|
+
Absent when the schema designates no display properties or the user
|
|
17160
|
+
carries no values for them. Clients render `display`, falling back
|
|
17161
|
+
to `identifier`, then `id`.
|
|
17162
|
+
*/
|
|
17163
|
+
readonly display?: string;
|
|
16957
17164
|
/** The user's team memberships, present only when the request asked for them with
|
|
16958
17165
|
`expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
|
|
16959
17166
|
means the user has none.
|
|
@@ -20749,5 +20956,5 @@ type VerifyChallengeProofDefault = ({
|
|
|
20749
20956
|
code: "user.invalid";
|
|
20750
20957
|
});
|
|
20751
20958
|
//#endregion
|
|
20752
|
-
export { UpdateFlowDefinition200FlowDefinitionStepsItemOnSuccess as $, GetUserByIDDefault as $a, GetClaimStatus403 as $c, CreateGrantBodyPrincipalType as $d, CreateFlowBodyHint as $f, ListFlowDefinitions200FlowDefinitionsItem as $i, DeleteUserByID404 as $l, QueryTeams403Details as $n, GetProjectDefault as $o, CompleteClaim403 as $p, PatchProject401Details as $r, GetFlowStep200StepTexts as $s, SubmitFlowStep200BrandingLayout as $t, CreateTeam403 as $u, UpdateFlowDefinitionBodyFlowDefinition as A, ListEnvironments200EnvironmentsItem as Aa, GetFlowDefinition200FlowDefinitionStatus as Ac, CreateReleaseDefault as Ad, CreateFlowDefinitionBodyFlowDefinitionAudience as Af, ListUserPasskeys200 as Ai, FinishUserPasskeyRegistration401 as Al, QueryUsers200 as An, GetSession200FactorsItem as Ao, CreateBranding201BrandingLayout as Ap, QueryProjectsDefault as Ar, GetHealthDefault as As, SubmitFlowStep400StepChallengeMethod as At, CreateUser403 as Au, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as B, IssueChallenge201 as Ba, GetEvent401Details as Bc, CreateRelease200PointersItemKind as Bd, CreateFlowDefinition201FlowDefinitionStepsItemSsoProvidersItem as Bf, ListSchemas200SchemasItemMetadata as Bi, ExchangeHandoff401 as Bl, QueryTeamsDefaultDetails as Bn, GetSchemaById200 as Bo, CreateAuthAttempt201ChallengesItemState as Bp, QueryProjects403 as Br, GetGrant401 as Bs, SubmitFlowStep200StepGatesKind as Bt, CreateUser201MetadataStatus as Bu, UpdateTeam401Details as C, ListEvents400 as Ca, GetFlowDefinition200FlowDefinitionStepsItemOnSuccess as Cc, CreateSchemaBody as Cd, CreateFlowDefinitionBodyFlowDefinitionStepsItemGates as Cf, ListUserPasskeys404Details as Ci, FinishUserPasskeyRegistrationBodyAttestation as Cl, QueryUsersBodyExpandItem as Cn, GetSession403Details as Co, CreateBrandingDefaultDetails as Cp, QuerySessions200SessionsItem as Cr, GetMySession200FactorsItem as Cs, SubmitFlowStep400StepFieldsItem as Ct, CreateUserDefault as Cu, UpdateTeam200Status as D, ListEnvironmentsParams as Da, GetFlowDefinition200FlowDefinitionStepsItemComplete as Dc, CreateSchema400Details as Dd, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as Df, ListUserPasskeys401Details as Di, FinishUserPasskeyRegistration404Details as Dl, QueryUsers401Details as Dn, GetSession200UserAgent as Do, CreateBranding400Details as Dp, QuerySessions200SessionsItemFactorsItem as Dr, GetLiveDefaultDetails as Ds, SubmitFlowStep400StepComplete as Dt, CreateUser500Details as Du, UpdateTeam200 as E, ListEvents200DataItem as Ea, GetFlowDefinition200FlowDefinitionStepsItemGatesConfig as Ec, CreateSchema400 as Ed, CreateFlowDefinitionBodyFlowDefinitionStepsItemComplete as Ef, ListUserPasskeys401 as Ei, FinishUserPasskeyRegistration404 as El, QueryUsers401 as En, GetSession200 as Eo, CreateBranding400 as Ep, QuerySessions200SessionsItemMetadata as Er, GetLiveDefault as Es, SubmitFlowStep400StepFieldsItemType as Et, CreateUser500 as Eu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGates as F, IssueChallengeDefault as Fa, GetEvent404 as Fc, CreateRelease201PointersItem as Fd, CreateFlowDefinition201 as Ff, ListSchemasDefault as Fi, ExchangeHandoffParams as Fl, QueryUsers200UsersItemMetadataStatus as Fn, GetSchemaByIdDefaultDetails as Fo, CreateAuthAttempt201RequiredFactorsItem as Fp, QueryProjectsBodyFilterItem as Fr, GetGrantDefault as Fs, SubmitFlowStep200 as Ft, CreateUser400Details as Fu, UpdateFlowDefinition400 as G, InitClaimDefaultDetails as Ga, GetClaimStatusParams as Gc, CreateProject429Details as Gd, CreateFlowDefinition201FlowDefinitionStepsItemComplete as Gf, ListReleases200ReleasesItemMetadata as Gi, ExchangeHandoff200Session as Gl, QueryTeamsBodyFilterItem as Gn, GetReleaseById200 as Go, CompleteClaimBody as Gp, QueryProjects400Details as Gr, GetGrant200ObjectType as Gs, SubmitFlowStep200StepFieldsItemType as Gt, CreateTeamDefaultDetails as Gu, UpdateFlowDefinitionBodyFlowDefinitionAudience as H, IssueChallenge201Payload as Ha, GetEnvironmentByNameParams as Hc, CreateProjectDefault as Hd, CreateFlowDefinition201FlowDefinitionStepsItemGates as Hf, ListReleasesDefault as Hi, ExchangeHandoff400 as Hl, QueryTeamsBodySorting as Hn, GetSchemaById200Metadata as Ho, CreateAuthAttempt201ChallengesItemMethod as Hp, QueryProjects401 as Hr, GetGrant200 as Hs, SubmitFlowStep200StepFieldsItem as Ht, CreateUser201Attributes as Hu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as I, IssueChallengeBody as Ia, GetEvent404Details as Ic, CreateRelease201PointersItemKind as Id, CreateFlowDefinition201UserSchema as If, ListSchemasDefaultDetails as Ii, ExchangeHandoffDefault as Il, QueryUsers200UsersItemMetadataLifecycleOwnerTeam as In, GetSchemaById404 as Io, CreateAuthAttempt201CompletedFactorsItem as Ip, QueryProjectsBodyFilterItemOperation as Ir, GetGrant404 as Is, SubmitFlowStep200Step as It, CreateUser201 as Iu, UpdateFlowDefinition200UserSchema as J, InitClaim404 as Ja, GetClaimStatus429 as Jc, CreateHandoff200 as Jd, CreateFlowDefinition201FlowDefinitionStatus as Jf, ListFlowDefinitionsExpandItem as Ji, ExchangeHandoff200SessionMetadata as Jl, QueryTeams429 as Jn, GetReleaseById200Metadata as Jo, CompleteClaim410 as Jp, PatchProjectDefault as Jr, GetFlowStep410Details as Js, SubmitFlowStep200StepChallengeOptions as Jt, CreateTeam429Details as Ju, UpdateFlowDefinition400Details as K, InitClaim409 as Ka, GetClaimStatusDefault as Kc, CreateProject201 as Kd, CreateFlowDefinition201FlowDefinitionStepsItemActionsItem as Kf, ListFlowDefinitionsParams as Ki, ExchangeHandoff200SessionUserAgent as Kl, QueryTeamsBodyFilterItemOperation as Kn, GetReleaseById200PointersItem as Ko, CompleteClaim429 as Kp, QueryProjects200 as Kr, GetFlowStepDefault as Ks, SubmitFlowStep200StepComplete as Kt, CreateTeamBody as Ku, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as L, IssueChallengeBodyPasskeyOptions as La, GetEvent403 as Lc, CreateRelease201Metadata as Ld, CreateFlowDefinition201FlowDefinition as Lf, ListSchemas200 as Li, ExchangeHandoffBody as Ll, QueryUsers200UsersItemAttributes as Ln, GetSchemaById404Details as Lo, CreateAuthAttempt201CompletedFactorsItemPayload as Lp, QueryProjectsBodyFilterItemField as Lr, GetGrant404Details as Ls, SubmitFlowStep200StepTexts as Lt, CreateUser201TeamsItem as Lu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as M, ListBrandingDefault as Ma, GetEventParams as Mc, CreateReleaseBodyPointersItem as Md, CreateFlowDefinition409Details as Mf, ListSchemasParams as Mi, FinishUserPasskeyRegistration400 as Ml, QueryUsers200UsersItemTeamsItem as Mn, GetSession200FactorsItemMethod as Mo, CreateAuthAttemptBody as Mp, QueryProjectsBodySorting as Mr, GetHealth4xx as Ms, SubmitFlowStep400StepActionsItemKind as Mt, CreateUser401 as Mu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as N, ListBrandingDefaultDetails as Na, GetEventDefault as Nc, CreateReleaseBodyPointersItemKind as Nd, CreateFlowDefinition400 as Nf, ListSchemasRevisions as Ni, FinishUserPasskeyRegistration400Details as Nl, QueryUsers200UsersItemTeamsItemMembershipStatus as Nn, GetSchemaByIdParams as No, CreateAuthAttempt201 as Np, QueryProjectsBodySortingField as Nr, GetHealth4xxDetails as Ns, SubmitFlowStep400Branding as Nt, CreateUser401Details as Nu, UpdateFlowDefinitionDefault as O, ListEnvironmentsDefault as Oa, GetFlowDefinition200FlowDefinitionStepsItemActionsItem as Oc, CreateSchema201 as Od, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as Of, ListUserPasskeys400 as Oi, FinishUserPasskeyRegistration403 as Ol, QueryUsers400 as On, GetSession200State as Oo, CreateBranding201 as Op, QuerySessions200SessionsItemFactorsItemPayload as Or, GetLive4xx as Os, SubmitFlowStep400StepChallenge as Ot, CreateUser409 as Ou, UpdateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as P, ListBranding200Item as Pa, GetEventDefaultDetails as Pc, CreateRelease201 as Pd, CreateFlowDefinition400Details as Pf, ListSchemasKind as Pi, FinishUserPasskeyRegistration201 as Pl, QueryUsers200UsersItemMetadata as Pn, GetSchemaByIdDefault as Po, CreateAuthAttempt201State as Pp, QueryProjectsBodySortingDirection as Pr, GetGrantParams as Ps, SubmitFlowStep400BrandingLayout as Pt, CreateUser400 as Pu, UpdateFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as Q, GetUserByIDParams as Qa, GetClaimStatus404Details as Qc, CreateGrantBodyRelation as Qd, CreateFlowBodyPurpose as Qf, ListFlowDefinitions200 as Qi, DeleteUserByIDDefault as Ql, QueryTeams403 as Qn, GetReady4xxDetails as Qo, CompleteClaim404Details as Qp, PatchProject401 as Qr, GetFlowStep200Step as Qs, SubmitFlowStep200Branding as Qt, CreateTeam404Details as Qu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemComplete as R, IssueChallengeBodyPasskeyOptionsUserVerification as Ra, GetEvent403Details as Rc, CreateRelease200 as Rd, CreateFlowDefinition201FlowDefinitionStepsItem as Rf, ListSchemas200SchemasItem as Ri, ExchangeHandoff410 as Rl, QueryTeamsParams as Rn, GetSchemaById400 as Ro, CreateAuthAttempt201CompletedFactorsItemMethod as Rp, QueryProjects429 as Rr, GetGrant403 as Rs, SubmitFlowStep200StepSsoProvidersItem as Rt, CreateUser201TeamsItemMembershipStatus as Ru, UpdateTeam401 as S, ListEvents401Details as Sa, GetFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as Sc, CreateSchemaDefaultDetails as Sd, CreateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as Sf, ListUserPasskeys404 as Si, FinishUserPasskeyRegistrationBody as Sl, QueryUsersBodyFilterItemField as Sn, GetSession403 as So, CreateBrandingDefault as Sp, QuerySessions200 as Sr, GetMySession200Metadata as Ss, SubmitFlowStep400StepGatesConfig as St, CreateUserParams as Su, UpdateTeam400Details as T, ListEvents200 as Ta, GetFlowDefinition200FlowDefinitionStepsItemGatesKind as Tc, CreateSchema409Details as Td, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as Tf, ListUserPasskeys403Details as Ti, FinishUserPasskeyRegistration500Details as Tl, QueryUsers403Details as Tn, GetSession401Details as To, CreateBrandingBodyLayout as Tp, QuerySessions200SessionsItemState as Tr, GetMySession200FactorsItemMethod as Ts, SubmitFlowStep400StepFieldsItemValidationFormat as Tt, CreateUserBodyAttributes as Tu, UpdateFlowDefinition404 as U, IssueChallenge201Method as Ua, GetEnvironmentByNameDefault as Uc, CreateProjectBody as Ud, CreateFlowDefinition201FlowDefinitionStepsItemGatesKind as Uf, ListReleases200 as Ui, ExchangeHandoff400Details as Ul, QueryTeamsBodySortingField as Un, GetReleaseByIdParams as Uo, CompleteClaimDefault as Up, QueryProjects401Details as Ur, GetGrant200Relation as Us, SubmitFlowStep200StepFieldsItemValidation as Ut, CreateTeamParams as Uu, UpdateFlowDefinitionBodyFlowDefinitionStatus as V, IssueChallenge201State as Va, GetEvent200 as Vc, CreateRelease200Metadata as Vd, CreateFlowDefinition201FlowDefinitionStepsItemOnSuccess as Vf, ListReleasesParams as Vi, ExchangeHandoff401Details as Vl, QueryTeamsBody as Vn, GetSchemaById200Schema as Vo, CreateAuthAttempt201ChallengesItemPayload as Vp, QueryProjects403Details as Vr, GetGrant401Details as Vs, SubmitFlowStep200StepGatesConfig as Vt, CreateUser201MetadataLifecycleOwnerTeam as Vu, UpdateFlowDefinition404Details as W, InitClaimDefault as Wa, GetEnvironmentByName200 as Wc, CreateProject429 as Wd, CreateFlowDefinition201FlowDefinitionStepsItemGatesConfig as Wf, ListReleases200ReleasesItem as Wi, ExchangeHandoff200 as Wl, QueryTeamsBodySortingDirection as Wn, GetReleaseByIdDefault as Wo, CompleteClaimDefaultDetails as Wp, QueryProjects400 as Wr, GetGrant200PrincipalType as Ws, SubmitFlowStep200StepFieldsItemValidationFormat as Wt, CreateTeamDefault as Wu, UpdateFlowDefinition200FlowDefinitionStepsItem as X, InitClaim401Details as Xa, GetClaimStatus410 as Xc, CreateGrantDefault as Xd, CreateFlowDefault as Xf, ListFlowDefinitions400 as Xi, ExchangeHandoff200SessionFactorsItemPayload as Xl, QueryTeams404 as Xn, GetReadyDefaultDetails as Xo, CompleteClaim409Details as Xp, PatchProject404 as Xr, GetFlowStep404Details as Xs, SubmitFlowStep200StepActionsItem as Xt, CreateTeam409Details as Xu, UpdateFlowDefinition200FlowDefinition as Y, InitClaim401 as Ya, GetClaimStatus429Details as Yc, CreateGrantParams as Yd, CreateFlowDefinition201FlowDefinitionAudience as Yf, ListFlowDefinitionsDefault as Yi, ExchangeHandoff200SessionFactorsItem as Yl, QueryTeams429Details as Yn, GetReadyDefault as Yo, CompleteClaim409 as Yp, PatchProjectBody as Yr, GetFlowStep404 as Ys, SubmitFlowStep200StepChallengeMethod as Yt, CreateTeam409 as Yu, UpdateFlowDefinition200FlowDefinitionStepsItemTransitions as Z, InitClaim201 as Za, GetClaimStatus404 as Zc, CreateGrantBody as Zd, CreateFlowBody as Zf, ListFlowDefinitions400Details as Zi, ExchangeHandoff200SessionFactorsItemMethod as Zl, QueryTeams404Details as Zn, GetReady4xx as Zo, CompleteClaim404 as Zp, PatchProject404Details as Zr, GetFlowStep200 as Zs, SubmitFlowStep200StepActionsItemKind as Zt, CreateTeam404 as Zu, UpdateTeam409Details as _, ListEventsDefaultDetails as _a, GetFlowDefinition200 as _c, CreateSession201SessionFactorsItem as _d, CreateFlowDefinitionBody as _f, ListUserTeams200TeamsItemMembershipStatus as _i, GetAuthAttempt200ChallengesItem as _l, BeginUserPasskeyRegistration201Options as _m, QueryUsersBodySorting as _n, GetTeam200 as _o, CreateFlow201StepActionsItem as _p, QuerySessions403Details as _r, GetMySession404 as _s, SubmitFlowStep400Step as _t, DeleteGrant401 as _u, VerifyChallengeProof200RequiredFactorsItem as a, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemOnSuccess as aa, GetFlowStep200StepFieldsItemValidation as ac, CreateTeam201 as ad, CreateGrant404Details as af, ListUserTeams500 as ai, GetBrandingById404 as al, BeginUserPasskeyRegistrationBody as am, SetUserPassword404Details as an, GetUserByID200TeamsItem as ao, CreateFlow201StepSsoProvidersItem as ap, QueryTeams200TeamsItem as ar, GetMyUserDefault as as, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItemKind as at, DeleteTeam403 as au, UpdateTeam403 as b, ListEvents403Details as ba, GetFlowDefinition200FlowDefinitionStepsItem as bc, CreateSchemaParams as bd, CreateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as bf, ListUserPasskeys500 as bi, GetAuthAttempt200ChallengesItemMethod as bl, QueryUsersBodyFilterItem as bn, GetSession404 as bo, CreateFlow201BrandingLayout as bp, QuerySessions400 as br, GetMySession200UserAgent as bs, SubmitFlowStep400StepGates as bt, DeleteFlowDefinition409 as bu, VerifyChallengeProof200CompletedFactorsItemMethod as c, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemGatesConfig as ca, GetFlowStep200StepComplete as cc, CreateSessionBody as cd, CreateGrant401 as cf, ListUserTeams404Details as ci, GetBrandingById200Branding as cl, BeginUserPasskeyRegistration404 as cm, RevokeSessionDefault as cn, GetUserByID200MetadataStatus as co, CreateFlow201StepGatesConfig as cp, QuerySessionsDefault as cr, GetMyUser401Details as cs, SubmitFlowStepDefault as ct, DeleteTeam401Details as cu, VerifyChallengeProof200ChallengesItemPayload as d, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemActionsItemKind as da, GetFlowStep200StepChallengeMethod as dc, CreateSession400Details as dd, CreateGrant400Details as df, ListUserTeams401 as di, GetAuthAttempt200 as dl, BeginUserPasskeyRegistration403Details as dm, RevokeSession401 as dn, GetTeamDefault as do, CreateFlow201StepFieldsItemValidationFormat as dp, QuerySessionsBodySortingField as dr, GetMyUser200TeamsItemMembershipStatus as ds, SubmitFlowStepBodyFields as dt, DeleteGrantParams as du, ListFlowDefinitions200FlowDefinitionsItemUserSchema as ea, GetFlowStep200StepSsoProvidersItem as ec, CreateTeam403Details as ed, CreateGrant429 as ef, PatchProject400 as ei, GetClaimStatus401 as el, CompleteClaim401 as em, SetUserPasswordDefault as en, GetUserByID404 as eo, CreateFlow400 as ep, QueryTeams401 as er, GetProject404 as es, UpdateFlowDefinition200FlowDefinitionStepsItemGates as et, DeleteUserByID404Details as eu, VerifyChallengeProof200ChallengesItemMethod as f, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStatus as fa, GetFlowStep200StepActionsItem as fc, CreateSession201 as fd, CreateGrant201 as ff, ListUserTeams401Details as fi, GetAuthAttempt200State as fl, BeginUserPasskeyRegistration401 as fm, RevokeSession401Details as fn, GetTeamDefaultDetails as fo, CreateFlow201StepFieldsItemType as fp, QuerySessionsBodySortingDirection as fr, GetMyUser200Metadata as fs, SubmitFlowStepBodyChallengeResponse as ft, DeleteGrantDefault as fu, UpdateTeam409 as g, ListEventsDefault as ga, GetFlowDefinitionDefault as gc, CreateSession201SessionMetadata as gd, CreateFlowDefinitionDefault as gf, ListUserTeams200TeamsItem as gi, GetAuthAttempt200CompletedFactorsItemMethod as gl, BeginUserPasskeyRegistration201 as gm, QueryUsersBody as gn, GetTeam401Details as go, CreateFlow201StepChallengeMethod as gp, QuerySessions403 as gr, GetMySessionDefault as gs, SubmitFlowStep400 as gt, DeleteGrant403Details as gu, UpdateTeamBody as h, ListEventsOrder as ha, GetFlowStep200BrandingLayout as hc, CreateSession201SessionState as hd, CreateGrant201ObjectType as hf, ListUserTeams200 as hi, GetAuthAttempt200CompletedFactorsItemPayload as hl, BeginUserPasskeyRegistration400Details as hm, QueryUsersDefault as hn, GetTeam401 as ho, CreateFlow201StepChallengeOptions as hp, QuerySessionsBodyFilterItemField as hr, GetMyUser200Attributes as hs, SubmitFlowStep409Details as ht, DeleteGrant403 as hu, VerifyChallengeProof200State as i, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemSsoProvidersItem as ia, GetFlowStep200StepFieldsItem as ic, CreateTeam400Details as id, CreateGrant404 as if, ListUserTeamsDefault as ii, GetBrandingByIdDefaultDetails as il, BeginUserPasskeyRegistrationDefault as im, SetUserPassword404 as in, GetUserByID200 as io, CreateFlow201StepTexts as ip, QueryTeams200 as ir, GetProject200 as is, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItem as it, DeleteTeamDefaultDetails as iu, UpdateFlowDefinitionBodyFlowDefinitionStepsItem as j, ListBrandingParams as ja, GetFlowDefinition200FlowDefinitionAudience as jc, CreateReleaseBody as jd, CreateFlowDefinition409 as jf, ListUserPasskeys200PasskeysItem as ji, FinishUserPasskeyRegistration401Details as jl, QueryUsers200UsersItem as jn, GetSession200FactorsItemPayload as jo, CreateAuthAttemptDefault as jp, QueryProjectsBody as jr, GetHealthDefaultDetails as js, SubmitFlowStep400StepActionsItem as jt, CreateUser403Details as ju, UpdateFlowDefinitionBody as k, ListEnvironments200 as ka, GetFlowDefinition200FlowDefinitionStepsItemActionsItemKind as kc, CreateReleaseParams as kd, CreateFlowDefinitionBodyFlowDefinitionStatus as kf, ListUserPasskeys400Details as ki, FinishUserPasskeyRegistration403Details as kl, QueryUsers400Details as kn, GetSession200Metadata as ko, CreateBranding201Branding as kp, QuerySessions200SessionsItemFactorsItemMethod as kr, GetLive4xxDetails as ks, SubmitFlowStep400StepChallengeOptions as kt, CreateUser409Details as ku, VerifyChallengeProof200ChallengesItem as l, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemComplete as la, GetFlowStep200StepChallenge as lc, CreateSessionBodyUserAgent as ld, CreateGrant401Details as lf, ListUserTeams403 as li, GetBrandingById200BrandingLayout as ll, BeginUserPasskeyRegistration404Details as lm, RevokeSession403 as ln, GetUserByID200MetadataLifecycleOwnerTeam as lo, CreateFlow201StepFieldsItem as lp, QuerySessionsBody as lr, GetMyUser200 as ls, SubmitFlowStepBody as lt, DeleteTeam400 as lu, UpdateTeamDefaultDetails as m, ListEventsParams as ma, GetFlowStep200Branding as mc, CreateSession201SessionUserAgent as md, CreateGrant201PrincipalType as mf, ListUserTeams400Details as mi, GetAuthAttempt200CompletedFactorsItem as ml, BeginUserPasskeyRegistration400 as mm, RevokeMySession401 as mn, GetTeam404Details as mo, CreateFlow201StepChallenge as mp, QuerySessionsBodyFilterItemOperation as mr, GetMyUser200MetadataLifecycleOwnerTeam as ms, SubmitFlowStep409 as mt, DeleteGrant404Details as mu, VerifyChallengeProofBody as n, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItem as na, GetFlowStep200StepGatesKind as nc, CreateTeam401Details as nd, CreateGrant409 as nf, PatchProject200 as ni, GetClaimStatus200 as nl, CompleteClaim400Details as nm, SetUserPassword500 as nn, GetUserByID401 as no, CreateFlow201 as np, QueryTeams400 as nr, GetProject401 as ns, UpdateFlowDefinition200FlowDefinitionStepsItemGatesConfig as nt, DeleteUserByID401Details as nu, VerifyChallengeProof200CompletedFactorsItem as o, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemGates as oa, GetFlowStep200StepFieldsItemValidationFormat as oc, CreateTeam201Status as od, CreateGrant403 as of, ListUserTeams500Details as oi, GetBrandingById404Details as ol, BeginUserPasskeyRegistration500 as om, SetUserPassword400 as on, GetUserByID200TeamsItemMembershipStatus as oo, CreateFlow201StepGates as op, QueryTeams200TeamsItemStatus as or, GetMyUser404 as os, UpdateFlowDefinition200FlowDefinitionStatus as ot, DeleteTeam403Details as ou, UpdateTeamDefault as p, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionAudience as pa, GetFlowStep200StepActionsItemKind as pc, CreateSession201Session as pd, CreateGrant201Relation as pf, ListUserTeams400 as pi, GetAuthAttempt200RequiredFactorsItem as pl, BeginUserPasskeyRegistration401Details as pm, RevokeMySessionDefault as pn, GetTeam404 as po, CreateFlow201StepComplete as pp, QuerySessionsBodyFilterItem as pr, GetMyUser200MetadataStatus as ps, SubmitFlowStepBodyChallengeResponseProof as pt, DeleteGrant404 as pu, UpdateFlowDefinition200 as q, InitClaim409Details as qa, GetClaimStatusDefaultDetails as qc, CreateHandoffDefault as qd, CreateFlowDefinition201FlowDefinitionStepsItemActionsItemKind as qf, ListFlowDefinitionsPurpose as qi, ExchangeHandoff200SessionState as ql, QueryTeamsBodyFilterItemField as qn, GetReleaseById200PointersItemKind as qo, CompleteClaim429Details as qp, QueryProjects200ProjectsItem as qr, GetFlowStep410 as qs, SubmitFlowStep200StepChallenge as qt, CreateTeam429 as qu, VerifyChallengeProof200 as r, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemTransitions as ra, GetFlowStep200StepGatesConfig as rc, CreateTeam400 as rd, CreateGrant409Details as rf, ListUserTeamsParams as ri, GetBrandingByIdDefault as rl, CompleteClaim200 as rm, SetUserPassword500Details as rn, GetUserByID401Details as ro, CreateFlow201Step as rp, QueryTeams400Details as rr, GetProject401Details as rs, UpdateFlowDefinition200FlowDefinitionStepsItemComplete as rt, DeleteTeamDefault as ru, VerifyChallengeProof200CompletedFactorsItemPayload as s, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemGatesKind as sa, GetFlowStep200StepFieldsItemType as sc, CreateSessionDefault as sd, CreateGrant403Details as sf, ListUserTeams404 as si, GetBrandingById200 as sl, BeginUserPasskeyRegistration500Details as sm, SetUserPassword400Details as sn, GetUserByID200Metadata as so, CreateFlow201StepGatesKind as sp, QuerySessionsParams as sr, GetMyUser401 as ss, UpdateFlowDefinition200FlowDefinitionAudience as st, DeleteTeam401 as su, VerifyChallengeProofDefault as t, ListFlowDefinitions200FlowDefinitionsItemFlowDefinition as ta, GetFlowStep200StepGates as tc, CreateTeam401 as td, CreateGrant429Details as tf, PatchProject400Details as ti, GetClaimStatus401Details as tl, CompleteClaim400 as tm, SetUserPasswordBody as tn, GetUserByID404Details as to, CreateFlow400Details as tp, QueryTeams401Details as tr, GetProject404Details as ts, UpdateFlowDefinition200FlowDefinitionStepsItemGatesKind as tt, DeleteUserByID401 as tu, VerifyChallengeProof200ChallengesItemState as u, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemActionsItem as ua, GetFlowStep200StepChallengeOptions as uc, CreateSession400 as ud, CreateGrant400 as uf, ListUserTeams403Details as ui, GetAuthAttemptDefault as ul, BeginUserPasskeyRegistration403 as um, RevokeSession403Details as un, GetUserByID200Attributes as uo, CreateFlow201StepFieldsItemValidation as up, QuerySessionsBodySorting as ur, GetMyUser200TeamsItem as us, SubmitFlowStepBodyGateProofs as ut, DeleteTeam400Details as uu, UpdateTeam404 as v, ListEventsCategoryItem as va, GetFlowDefinition200UserSchema as vc, CreateSession201SessionFactorsItemPayload as vd, CreateFlowDefinitionBodyFlowDefinition as vf, ListUserPasskeysParams as vi, GetAuthAttempt200ChallengesItemState as vl, QueryUsersBodySortingField as vn, GetTeam200Status as vo, CreateFlow201StepActionsItemKind as vp, QuerySessions401 as vr, GetMySession401 as vs, SubmitFlowStep400StepTexts as vt, DeleteGrant401Details as vu, UpdateTeam400 as w, ListEvents400Details as wa, GetFlowDefinition200FlowDefinitionStepsItemGates as wc, CreateSchema409 as wd, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as wf, ListUserPasskeys403 as wi, FinishUserPasskeyRegistration500 as wl, QueryUsers403 as wn, GetSession401 as wo, CreateBrandingBody as wp, QuerySessions200SessionsItemUserAgent as wr, GetMySession200FactorsItemPayload as ws, SubmitFlowStep400StepFieldsItemValidation as wt, CreateUserBody as wu, UpdateTeam403Details as x, ListEvents401 as xa, GetFlowDefinition200FlowDefinitionStepsItemTransitions as xc, CreateSchemaDefault as xd, CreateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as xf, ListUserPasskeys500Details as xi, FinishUserPasskeyRegistrationDefault as xl, QueryUsersBodyFilterItemOperation as xn, GetSession404Details as xo, CreateBrandingParams as xp, QuerySessions400Details as xr, GetMySession200State as xs, SubmitFlowStep400StepGatesKind as xt, DeleteFlowDefinition409Details as xu, UpdateTeam404Details as y, ListEvents403 as ya, GetFlowDefinition200FlowDefinition as yc, CreateSession201SessionFactorsItemMethod as yd, CreateFlowDefinitionBodyFlowDefinitionStepsItem as yf, ListUserPasskeysDefault as yi, GetAuthAttempt200ChallengesItemPayload as yl, QueryUsersBodySortingDirection as yn, GetSessionDefault as yo, CreateFlow201Branding as yp, QuerySessions401Details as yr, GetMySession200 as ys, SubmitFlowStep400StepSsoProvidersItem as yt, DeleteFlowDefinitionDefault as yu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as z, IssueChallengeBodyMethod as za, GetEvent401 as zc, CreateRelease200PointersItem as zd, CreateFlowDefinition201FlowDefinitionStepsItemTransitions as zf, ListSchemas200SchemasItemSchema as zi, ExchangeHandoff410Details as zl, QueryTeamsDefault as zn, GetSchemaById400Details as zo, CreateAuthAttempt201ChallengesItem as zp, QueryProjects429Details as zr, GetGrant403Details as zs, SubmitFlowStep200StepGates as zt, CreateUser201Metadata as zu };
|
|
20753
|
-
//# sourceMappingURL=index-
|
|
20959
|
+
export { UpdateFlowDefinition200FlowDefinitionStepsItemOnSuccess as $, GetUserByIDParams as $a, GetClaimStatus410 as $c, CreateHandoff200 as $d, CreateFlowDefinition201FlowDefinitionStatus as $f, ListFlowDefinitions200 as $i, ExchangeHandoff200SessionFactorsItem as $l, QueryTeams403Details as $n, GetReady4xx as $o, CompleteClaim410 as $p, PatchProject401 as $r, GetFlowStep404Details as $s, SubmitFlowStep200BrandingLayout as $t, CreateTeam409 as $u, UpdateFlowDefinitionBodyFlowDefinition as A, ListEnvironments200 as Aa, GetFlowDefinition200FlowDefinitionStepsItemComplete as Ac, CreateSchema409Details as Ad, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as Af, ListUserPasskeys400Details as Ai, FinishUserPasskeyRegistration404Details as Al, QueryUsers200 as An, GetSession200State as Ao, CreateBrandingBodyLayout as Ap, QuerySessions200SessionsItemFactorsItemMethod as Ar, GetLiveDefaultDetails as As, SubmitFlowStep400StepChallengeMethod as At, CreateUser500 as Au, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as B, IssueChallengeBodyMethod as Ba, GetEvent403 as Bc, CreateRelease201PointersItem as Bd, CreateFlowDefinition201 as Bf, ListSchemas200SchemasItemSchema as Bi, ExchangeHandoffBody as Bl, QueryTeamsDefaultDetails as Bn, GetSchemaById400 as Bo, CreateAuthAttempt201RequiredFactorsItem as Bp, QueryProjects429Details as Br, GetGrant404Details as Bs, SubmitFlowStep200StepGatesKind as Bt, CreateUser201 as Bu, UpdateTeam401Details as C, ListEvents401Details as Ca, GetFlowDefinition200FlowDefinitionStepsItem as Cc, CreateSession201SessionFactorsItemPayload as Cd, CreateFlowDefinitionBodyFlowDefinition as Cf, ListUserPasskeys404 as Ci, GetAuthAttempt200ChallengesItemMethod as Cl, QueryUsersBodyExpandItem as Cn, GetSession403 as Co, CreateFlow201StepActionsItemKind as Cp, QuerySessions200SessionsItem as Cr, GetMySession200User as Cs, SubmitFlowStep400StepFieldsItem as Ct, DeleteFlowDefinitionDefault as Cu, UpdateTeam200Status as D, ListEvents200DataItem as Da, GetFlowDefinition200FlowDefinitionStepsItemGates as Dc, CreateSchemaDefaultDetails as Dd, CreateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as Df, ListUserPasskeys401 as Di, FinishUserPasskeyRegistration500 as Dl, QueryUsers401Details as Dn, GetSession200 as Do, CreateBrandingDefault as Dp, QuerySessions200SessionsItemMetadata as Dr, GetMySession200FactorsItemPayload as Ds, SubmitFlowStep400StepComplete as Dt, CreateUserDefault as Du, UpdateTeam200 as E, ListEvents200 as Ea, GetFlowDefinition200FlowDefinitionStepsItemOnSuccess as Ec, CreateSchemaDefault as Ed, CreateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as Ef, ListUserPasskeys403Details as Ei, FinishUserPasskeyRegistrationBodyAttestation as El, QueryUsers401 as En, GetSession401Details as Eo, CreateBrandingParams as Ep, QuerySessions200SessionsItemState as Er, GetMySession200FactorsItem as Es, SubmitFlowStep400StepFieldsItemType as Et, CreateUserParams as Eu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGates as F, ListBranding200Item as Fa, GetEventParams as Fc, CreateReleaseDefault as Fd, CreateFlowDefinitionBodyFlowDefinitionAudience as Ff, ListSchemasKind as Fi, FinishUserPasskeyRegistration400 as Fl, QueryUsers200UsersItemMetadataStatus as Fn, GetSchemaByIdParams as Fo, CreateBranding201BrandingLayout as Fp, QueryProjectsBodySortingDirection as Fr, GetHealth4xx as Fs, SubmitFlowStep200 as Ft, CreateUser403Details as Fu, UpdateFlowDefinition400 as G, InitClaimDefault as Ga, GetEnvironmentByNameParams as Gc, CreateRelease200PointersItemKind as Gd, CreateFlowDefinition201FlowDefinitionStepsItemSsoProvidersItem as Gf, ListReleases200ReleasesItem as Gi, ExchangeHandoff400 as Gl, QueryTeamsBodyFilterItem as Gn, GetReleaseByIdParams as Go, CreateAuthAttempt201ChallengesItemState as Gp, QueryProjects400 as Gr, GetGrant200 as Gs, SubmitFlowStep200StepFieldsItemType as Gt, CreateUser201MetadataLifecycleOwnerTeam as Gu, UpdateFlowDefinitionBodyFlowDefinitionAudience as H, IssueChallenge201State as Ha, GetEvent401 as Hc, CreateRelease201Metadata as Hd, CreateFlowDefinition201FlowDefinition as Hf, ListReleasesParams as Hi, ExchangeHandoff410Details as Hl, QueryTeamsBodySorting as Hn, GetSchemaById200 as Ho, CreateAuthAttempt201CompletedFactorsItemPayload as Hp, QueryProjects403Details as Hr, GetGrant403Details as Hs, SubmitFlowStep200StepFieldsItem as Ht, CreateUser201TeamsItemMembershipStatus as Hu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as I, IssueChallengeDefault as Ia, GetEventDefault as Ic, CreateReleaseBody as Id, CreateFlowDefinition409 as If, ListSchemasDefault as Ii, FinishUserPasskeyRegistration400Details as Il, QueryUsers200UsersItemMetadataLifecycleOwnerTeam as In, GetSchemaByIdDefault as Io, CreateAuthAttemptDefault as Ip, QueryProjectsBodyFilterItem as Ir, GetHealth4xxDetails as Is, SubmitFlowStep200Step as It, CreateUser401 as Iu, UpdateFlowDefinition200UserSchema as J, InitClaim409Details as Ja, GetClaimStatusParams as Jc, CreateProjectBody as Jd, CreateFlowDefinition201FlowDefinitionStepsItemGatesKind as Jf, ListFlowDefinitionsPurpose as Ji, ExchangeHandoff200Session as Jl, QueryTeams429 as Jn, GetReleaseById200PointersItem as Jo, CompleteClaimDefault as Jp, QueryProjects200ProjectsItem as Jr, GetGrant200ObjectType as Js, SubmitFlowStep200StepChallengeOptions as Jt, CreateTeamDefault as Ju, UpdateFlowDefinition400Details as K, InitClaimDefaultDetails as Ka, GetEnvironmentByNameDefault as Kc, CreateRelease200Metadata as Kd, CreateFlowDefinition201FlowDefinitionStepsItemOnSuccess as Kf, ListReleases200ReleasesItemMetadata as Ki, ExchangeHandoff400Details as Kl, QueryTeamsBodyFilterItemOperation as Kn, GetReleaseByIdDefault as Ko, CreateAuthAttempt201ChallengesItemPayload as Kp, QueryProjects400Details as Kr, GetGrant200Relation as Ks, SubmitFlowStep200StepComplete as Kt, CreateUser201Attributes as Ku, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as L, IssueChallengeBody as La, GetEventDefaultDetails as Lc, CreateReleaseBodyPointersItem as Ld, CreateFlowDefinition409Details as Lf, ListSchemasDefaultDetails as Li, FinishUserPasskeyRegistration201 as Ll, QueryUsers200UsersItemAttributes as Ln, GetSchemaByIdDefaultDetails as Lo, CreateAuthAttemptBody as Lp, QueryProjectsBodyFilterItemOperation as Lr, GetGrantParams as Ls, SubmitFlowStep200StepTexts as Lt, CreateUser401Details as Lu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as M, ListBrandingParams as Ma, GetFlowDefinition200FlowDefinitionStepsItemActionsItemKind as Mc, CreateSchema400Details as Md, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as Mf, ListUserPasskeys200PasskeysItem as Mi, FinishUserPasskeyRegistration403Details as Ml, QueryUsers200UsersItemTeamsItem as Mn, GetSession200FactorsItem as Mo, CreateBranding400Details as Mp, QueryProjectsBody as Mr, GetLive4xxDetails as Ms, SubmitFlowStep400StepActionsItemKind as Mt, CreateUser409 as Mu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as N, ListBrandingDefault as Na, GetFlowDefinition200FlowDefinitionStatus as Nc, CreateSchema201 as Nd, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as Nf, ListSchemasParams as Ni, FinishUserPasskeyRegistration401 as Nl, QueryUsers200UsersItemTeamsItemMembershipStatus as Nn, GetSession200FactorsItemPayload as No, CreateBranding201 as Np, QueryProjectsBodySorting as Nr, GetHealthDefault as Ns, SubmitFlowStep400Branding as Nt, CreateUser409Details as Nu, UpdateFlowDefinitionDefault as O, ListEnvironmentsParams as Oa, GetFlowDefinition200FlowDefinitionStepsItemGatesKind as Oc, CreateSchemaBody as Od, CreateFlowDefinitionBodyFlowDefinitionStepsItemGates as Of, ListUserPasskeys401Details as Oi, FinishUserPasskeyRegistration500Details as Ol, QueryUsers400 as On, GetSession200UserAgent as Oo, CreateBrandingDefaultDetails as Op, QuerySessions200SessionsItemFactorsItem as Or, GetMySession200FactorsItemMethod as Os, SubmitFlowStep400StepChallenge as Ot, CreateUserBody as Ou, UpdateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as P, ListBrandingDefaultDetails as Pa, GetFlowDefinition200FlowDefinitionAudience as Pc, CreateReleaseParams as Pd, CreateFlowDefinitionBodyFlowDefinitionStatus as Pf, ListSchemasRevisions as Pi, FinishUserPasskeyRegistration401Details as Pl, QueryUsers200UsersItemMetadata as Pn, GetSession200FactorsItemMethod as Po, CreateBranding201Branding as Pp, QueryProjectsBodySortingField as Pr, GetHealthDefaultDetails as Ps, SubmitFlowStep400BrandingLayout as Pt, CreateUser403 as Pu, UpdateFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as Q, InitClaim201 as Qa, GetClaimStatus429Details as Qc, CreateHandoffDefault as Qd, CreateFlowDefinition201FlowDefinitionStepsItemActionsItemKind as Qf, ListFlowDefinitions400Details as Qi, ExchangeHandoff200SessionMetadata as Ql, QueryTeams403 as Qn, GetReadyDefaultDetails as Qo, CompleteClaim429Details as Qp, PatchProject404Details as Qr, GetFlowStep404 as Qs, SubmitFlowStep200Branding as Qt, CreateTeam429Details as Qu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemComplete as R, IssueChallengeBodyPasskeyOptions as Ra, GetEvent404 as Rc, CreateReleaseBodyPointersItemKind as Rd, CreateFlowDefinition400 as Rf, ListSchemas200 as Ri, ExchangeHandoffParams as Rl, QueryTeamsParams as Rn, GetSchemaById404 as Ro, CreateAuthAttempt201 as Rp, QueryProjectsBodyFilterItemField as Rr, GetGrantDefault as Rs, SubmitFlowStep200StepSsoProvidersItem as Rt, CreateUser400 as Ru, UpdateTeam401 as S, ListEvents401 as Sa, GetFlowDefinition200FlowDefinition as Sc, CreateSession201SessionFactorsItem as Sd, CreateFlowDefinitionBody as Sf, ListUserPasskeys500Details as Si, GetAuthAttempt200ChallengesItemPayload as Sl, BeginUserPasskeyRegistration201Options as Sm, QueryUsersBodyFilterItemField as Sn, GetSession404Details as So, CreateFlow201StepActionsItem as Sp, QuerySessions200 as Sr, GetMySession200UserAgent as Ss, SubmitFlowStep400StepGatesConfig as St, DeleteGrant401Details as Su, UpdateTeam400Details as T, ListEvents400Details as Ta, GetFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as Tc, CreateSchemaParams as Td, CreateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as Tf, ListUserPasskeys403 as Ti, FinishUserPasskeyRegistrationBody as Tl, QueryUsers403Details as Tn, GetSession401 as To, CreateFlow201BrandingLayout as Tp, QuerySessions200SessionsItemUser as Tr, GetMySession200Metadata as Ts, SubmitFlowStep400StepFieldsItemValidationFormat as Tt, DeleteFlowDefinition409Details as Tu, UpdateFlowDefinition404 as U, IssueChallenge201Payload as Ua, GetEvent401Details as Uc, CreateRelease200 as Ud, CreateFlowDefinition201FlowDefinitionStepsItem as Uf, ListReleasesDefault as Ui, ExchangeHandoff401 as Ul, QueryTeamsBodySortingField as Un, GetSchemaById200Schema as Uo, CreateAuthAttempt201CompletedFactorsItemMethod as Up, QueryProjects401 as Ur, GetGrant401 as Us, SubmitFlowStep200StepFieldsItemValidation as Ut, CreateUser201Metadata as Uu, UpdateFlowDefinitionBodyFlowDefinitionStatus as V, IssueChallenge201 as Va, GetEvent403Details as Vc, CreateRelease201PointersItemKind as Vd, CreateFlowDefinition201UserSchema as Vf, ListSchemas200SchemasItemMetadata as Vi, ExchangeHandoff410 as Vl, QueryTeamsBody as Vn, GetSchemaById400Details as Vo, CreateAuthAttempt201CompletedFactorsItem as Vp, QueryProjects403 as Vr, GetGrant403 as Vs, SubmitFlowStep200StepGatesConfig as Vt, CreateUser201TeamsItem as Vu, UpdateFlowDefinition404Details as W, IssueChallenge201Method as Wa, GetEvent200 as Wc, CreateRelease200PointersItem as Wd, CreateFlowDefinition201FlowDefinitionStepsItemTransitions as Wf, ListReleases200 as Wi, ExchangeHandoff401Details as Wl, QueryTeamsBodySortingDirection as Wn, GetSchemaById200Metadata as Wo, CreateAuthAttempt201ChallengesItem as Wp, QueryProjects401Details as Wr, GetGrant401Details as Ws, SubmitFlowStep200StepFieldsItemValidationFormat as Wt, CreateUser201MetadataStatus as Wu, UpdateFlowDefinition200FlowDefinitionStepsItem as X, InitClaim401 as Xa, GetClaimStatusDefaultDetails as Xc, CreateProject429Details as Xd, CreateFlowDefinition201FlowDefinitionStepsItemComplete as Xf, ListFlowDefinitionsDefault as Xi, ExchangeHandoff200SessionUser as Xl, QueryTeams404 as Xn, GetReleaseById200Metadata as Xo, CompleteClaimBody as Xp, PatchProjectBody as Xr, GetFlowStep410 as Xs, SubmitFlowStep200StepActionsItem as Xt, CreateTeamBody as Xu, UpdateFlowDefinition200FlowDefinition as Y, InitClaim404 as Ya, GetClaimStatusDefault as Yc, CreateProject429 as Yd, CreateFlowDefinition201FlowDefinitionStepsItemGatesConfig as Yf, ListFlowDefinitionsExpandItem as Yi, ExchangeHandoff200SessionUserAgent as Yl, QueryTeams429Details as Yn, GetReleaseById200PointersItemKind as Yo, CompleteClaimDefaultDetails as Yp, PatchProjectDefault as Yr, GetFlowStepDefault as Ys, SubmitFlowStep200StepChallengeMethod as Yt, CreateTeamDefaultDetails as Yu, UpdateFlowDefinition200FlowDefinitionStepsItemTransitions as Z, InitClaim401Details as Za, GetClaimStatus429 as Zc, CreateProject201 as Zd, CreateFlowDefinition201FlowDefinitionStepsItemActionsItem as Zf, ListFlowDefinitions400 as Zi, ExchangeHandoff200SessionState as Zl, QueryTeams404Details as Zn, GetReadyDefault as Zo, CompleteClaim429 as Zp, PatchProject404 as Zr, GetFlowStep410Details as Zs, SubmitFlowStep200StepActionsItemKind as Zt, CreateTeam429 as Zu, UpdateTeam409Details as _, ListEventsDefault as _a, GetFlowStep200Branding as _c, CreateSession201Session as _d, CreateGrant201 as _f, ListUserTeams200TeamsItem as _i, GetAuthAttempt200CompletedFactorsItem as _l, BeginUserPasskeyRegistration401 as _m, QueryUsersBodySorting as _n, GetTeam401Details as _o, CreateFlow201StepFieldsItemType as _p, QuerySessions403Details as _r, GetMyUser200Attributes as _s, SubmitFlowStep400Step as _t, DeleteGrant404 as _u, VerifyChallengeProof200RequiredFactorsItem as a, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemSsoProvidersItem as aa, GetFlowStep200StepGatesKind as ac, CreateTeam401 as ad, CreateGrant429 as af, ListUserTeamsDefault as ai, GetClaimStatus200 as al, CompleteClaim401 as am, SetUserPassword404Details as an, GetUserByID200 as ao, CreateFlow400 as ap, QueryTeams200TeamsItem as ar, GetProject401Details as as, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItemKind as at, DeleteUserByID401 as au, UpdateTeam403 as b, ListEvents403 as ba, GetFlowDefinition200 as bc, CreateSession201SessionState as bd, CreateGrant201ObjectType as bf, ListUserPasskeysDefault as bi, GetAuthAttempt200ChallengesItem as bl, BeginUserPasskeyRegistration400Details as bm, QueryUsersBodyFilterItem as bn, GetSessionDefault as bo, CreateFlow201StepChallengeOptions as bp, QuerySessions400 as br, GetMySession401 as bs, SubmitFlowStep400StepGates as bt, DeleteGrant403Details as bu, VerifyChallengeProof200CompletedFactorsItemMethod as c, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemGatesKind as ca, GetFlowStep200StepFieldsItemValidation as cc, CreateTeam400Details as cd, CreateGrant409Details as cf, ListUserTeams404 as ci, GetBrandingById404 as cl, CompleteClaim200 as cm, RevokeSessionDefault as cn, GetUserByID200Metadata as co, CreateFlow201Step as cp, QuerySessionsDefault as cr, GetMyUser404 as cs, SubmitFlowStepDefault as ct, DeleteTeamDefaultDetails as cu, VerifyChallengeProof200ChallengesItemPayload as d, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemActionsItem as da, GetFlowStep200StepComplete as dc, CreateSessionDefault as dd, CreateGrant403 as df, ListUserTeams403Details as di, GetBrandingById200Branding as dl, BeginUserPasskeyRegistration500 as dm, RevokeSession401 as dn, GetUserByID200Attributes as do, CreateFlow201StepGates as dp, QuerySessionsBodySortingField as dr, GetMyUser200 as ds, SubmitFlowStepBodyFields as dt, DeleteTeam401 as du, ListFlowDefinitions200FlowDefinitionsItem as ea, GetFlowStep200 as ec, CreateTeam409Details as ed, CreateGrantParams as ef, PatchProject401Details as ei, GetClaimStatus404 as el, CompleteClaim409 as em, SetUserPasswordDefault as en, GetUserByIDDefault as eo, CreateFlowDefinition201FlowDefinitionAudience as ep, QueryTeams401 as er, GetReady4xxDetails as es, UpdateFlowDefinition200FlowDefinitionStepsItemGates as et, ExchangeHandoff200SessionFactorsItemPayload as eu, VerifyChallengeProof200ChallengesItemMethod as f, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemActionsItemKind as fa, GetFlowStep200StepChallenge as fc, CreateSessionBody as fd, CreateGrant403Details as ff, ListUserTeams401 as fi, GetBrandingById200BrandingLayout as fl, BeginUserPasskeyRegistration500Details as fm, RevokeSession401Details as fn, GetTeamDefault as fo, CreateFlow201StepGatesKind as fp, QuerySessionsBodySortingDirection as fr, GetMyUser200TeamsItem as fs, SubmitFlowStepBodyChallengeResponse as ft, DeleteTeam401Details as fu, UpdateTeam409 as g, ListEventsOrder as ga, GetFlowStep200StepActionsItemKind as gc, CreateSession201 as gd, CreateGrant400Details as gf, ListUserTeams200 as gi, GetAuthAttempt200RequiredFactorsItem as gl, BeginUserPasskeyRegistration403Details as gm, QueryUsersBody as gn, GetTeam401 as go, CreateFlow201StepFieldsItemValidationFormat as gp, QuerySessions403 as gr, GetMyUser200MetadataLifecycleOwnerTeam as gs, SubmitFlowStep400 as gt, DeleteGrantDefault as gu, UpdateTeamBody as h, ListEventsParams as ha, GetFlowStep200StepActionsItem as hc, CreateSession400Details as hd, CreateGrant400 as hf, ListUserTeams400Details as hi, GetAuthAttempt200State as hl, BeginUserPasskeyRegistration403 as hm, QueryUsersDefault as hn, GetTeam404Details as ho, CreateFlow201StepFieldsItemValidation as hp, QuerySessionsBodyFilterItemField as hr, GetMyUser200MetadataStatus as hs, SubmitFlowStep409Details as ht, DeleteGrantParams as hu, VerifyChallengeProof200State as i, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemTransitions as ia, GetFlowStep200StepGates as ic, CreateTeam403Details as id, CreateGrantBodyPrincipalType as if, ListUserTeamsParams as ii, GetClaimStatus401Details as il, CompleteClaim403 as im, SetUserPassword404 as in, GetUserByID401Details as io, CreateFlowBodyHint as ip, QueryTeams200 as ir, GetProject401 as is, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItem as it, DeleteUserByID404Details as iu, UpdateFlowDefinitionBodyFlowDefinitionStepsItem as j, ListEnvironments200EnvironmentsItem as ja, GetFlowDefinition200FlowDefinitionStepsItemActionsItem as jc, CreateSchema400 as jd, CreateFlowDefinitionBodyFlowDefinitionStepsItemComplete as jf, ListUserPasskeys200 as ji, FinishUserPasskeyRegistration403 as jl, QueryUsers200UsersItem as jn, GetSession200Metadata as jo, CreateBranding400 as jp, QueryProjectsDefault as jr, GetLive4xx as js, SubmitFlowStep400StepActionsItem as jt, CreateUser500Details as ju, UpdateFlowDefinitionBody as k, ListEnvironmentsDefault as ka, GetFlowDefinition200FlowDefinitionStepsItemGatesConfig as kc, CreateSchema409 as kd, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as kf, ListUserPasskeys400 as ki, FinishUserPasskeyRegistration404 as kl, QueryUsers400Details as kn, GetSession200User as ko, CreateBrandingBody as kp, QuerySessions200SessionsItemFactorsItemPayload as kr, GetLiveDefault as ks, SubmitFlowStep400StepChallengeOptions as kt, CreateUserBodyAttributes as ku, VerifyChallengeProof200ChallengesItem as l, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemGatesConfig as la, GetFlowStep200StepFieldsItemValidationFormat as lc, CreateTeam201 as ld, CreateGrant404 as lf, ListUserTeams404Details as li, GetBrandingById404Details as ll, BeginUserPasskeyRegistrationDefault as lm, RevokeSession403 as ln, GetUserByID200MetadataStatus as lo, CreateFlow201StepTexts as lp, QuerySessionsBody as lr, GetMyUser401 as ls, SubmitFlowStepBody as lt, DeleteTeam403 as lu, UpdateTeamDefaultDetails as m, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionAudience as ma, GetFlowStep200StepChallengeMethod as mc, CreateSession400 as md, CreateGrant401Details as mf, ListUserTeams400 as mi, GetAuthAttempt200 as ml, BeginUserPasskeyRegistration404Details as mm, RevokeMySession401 as mn, GetTeam404 as mo, CreateFlow201StepFieldsItem as mp, QuerySessionsBodyFilterItemOperation as mr, GetMyUser200Metadata as ms, SubmitFlowStep409 as mt, DeleteTeam400Details as mu, VerifyChallengeProofBody as n, ListFlowDefinitions200FlowDefinitionsItemFlowDefinition as na, GetFlowStep200StepTexts as nc, CreateTeam404Details as nd, CreateGrantBody as nf, PatchProject400Details as ni, GetClaimStatus403 as nl, CompleteClaim404 as nm, SetUserPassword500 as nn, GetUserByID404Details as no, CreateFlowBody as np, QueryTeams400 as nr, GetProject404 as ns, UpdateFlowDefinition200FlowDefinitionStepsItemGatesConfig as nt, DeleteUserByIDDefault as nu, VerifyChallengeProof200CompletedFactorsItem as o, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemOnSuccess as oa, GetFlowStep200StepGatesConfig as oc, CreateTeam401Details as od, CreateGrant429Details as of, ListUserTeams500 as oi, GetBrandingByIdDefault as ol, CompleteClaim400 as om, SetUserPassword400 as on, GetUserByID200TeamsItem as oo, CreateFlow400Details as op, QueryTeams200TeamsItemStatus as or, GetProject200 as os, UpdateFlowDefinition200FlowDefinitionStatus as ot, DeleteUserByID401Details as ou, UpdateTeamDefault as p, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStatus as pa, GetFlowStep200StepChallengeOptions as pc, CreateSessionBodyUserAgent as pd, CreateGrant401 as pf, ListUserTeams401Details as pi, GetAuthAttemptDefault as pl, BeginUserPasskeyRegistration404 as pm, RevokeMySessionDefault as pn, GetTeamDefaultDetails as po, CreateFlow201StepGatesConfig as pp, QuerySessionsBodyFilterItem as pr, GetMyUser200TeamsItemMembershipStatus as ps, SubmitFlowStepBodyChallengeResponseProof as pt, DeleteTeam400 as pu, UpdateFlowDefinition200 as q, InitClaim409 as qa, GetEnvironmentByName200 as qc, CreateProjectDefault as qd, CreateFlowDefinition201FlowDefinitionStepsItemGates as qf, ListFlowDefinitionsParams as qi, ExchangeHandoff200 as ql, QueryTeamsBodyFilterItemField as qn, GetReleaseById200 as qo, CreateAuthAttempt201ChallengesItemMethod as qp, QueryProjects200 as qr, GetGrant200PrincipalType as qs, SubmitFlowStep200StepChallenge as qt, CreateTeamParams as qu, VerifyChallengeProof200 as r, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItem as ra, GetFlowStep200StepSsoProvidersItem as rc, CreateTeam403 as rd, CreateGrantBodyRelation as rf, PatchProject200 as ri, GetClaimStatus401 as rl, CompleteClaim404Details as rm, SetUserPassword500Details as rn, GetUserByID401 as ro, CreateFlowBodyPurpose as rp, QueryTeams400Details as rr, GetProject404Details as rs, UpdateFlowDefinition200FlowDefinitionStepsItemComplete as rt, DeleteUserByID404 as ru, VerifyChallengeProof200CompletedFactorsItemPayload as s, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemGates as sa, GetFlowStep200StepFieldsItem as sc, CreateTeam400 as sd, CreateGrant409 as sf, ListUserTeams500Details as si, GetBrandingByIdDefaultDetails as sl, CompleteClaim400Details as sm, SetUserPassword400Details as sn, GetUserByID200TeamsItemMembershipStatus as so, CreateFlow201 as sp, QuerySessionsParams as sr, GetMyUserDefault as ss, UpdateFlowDefinition200FlowDefinitionAudience as st, DeleteTeamDefault as su, VerifyChallengeProofDefault as t, ListFlowDefinitions200FlowDefinitionsItemUserSchema as ta, GetFlowStep200Step as tc, CreateTeam404 as td, CreateGrantDefault as tf, PatchProject400 as ti, GetClaimStatus404Details as tl, CompleteClaim409Details as tm, SetUserPasswordBody as tn, GetUserByID404 as to, CreateFlowDefault as tp, QueryTeams401Details as tr, GetProjectDefault as ts, UpdateFlowDefinition200FlowDefinitionStepsItemGatesKind as tt, ExchangeHandoff200SessionFactorsItemMethod as tu, VerifyChallengeProof200ChallengesItemState as u, ListFlowDefinitions200FlowDefinitionsItemFlowDefinitionStepsItemComplete as ua, GetFlowStep200StepFieldsItemType as uc, CreateTeam201Status as ud, CreateGrant404Details as uf, ListUserTeams403 as ui, GetBrandingById200 as ul, BeginUserPasskeyRegistrationBody as um, RevokeSession403Details as un, GetUserByID200MetadataLifecycleOwnerTeam as uo, CreateFlow201StepSsoProvidersItem as up, QuerySessionsBodySorting as ur, GetMyUser401Details as us, SubmitFlowStepBodyGateProofs as ut, DeleteTeam403Details as uu, UpdateTeam404 as v, ListEventsDefaultDetails as va, GetFlowStep200BrandingLayout as vc, CreateSession201SessionUserAgent as vd, CreateGrant201Relation as vf, ListUserTeams200TeamsItemMembershipStatus as vi, GetAuthAttempt200CompletedFactorsItemPayload as vl, BeginUserPasskeyRegistration401Details as vm, QueryUsersBodySortingField as vn, GetTeam200 as vo, CreateFlow201StepComplete as vp, QuerySessions401 as vr, GetMySessionDefault as vs, SubmitFlowStep400StepTexts as vt, DeleteGrant404Details as vu, UpdateTeam400 as w, ListEvents400 as wa, GetFlowDefinition200FlowDefinitionStepsItemTransitions as wc, CreateSession201SessionFactorsItemMethod as wd, CreateFlowDefinitionBodyFlowDefinitionStepsItem as wf, ListUserPasskeys404Details as wi, FinishUserPasskeyRegistrationDefault as wl, QueryUsers403 as wn, GetSession403Details as wo, CreateFlow201Branding as wp, QuerySessions200SessionsItemUserAgent as wr, GetMySession200State as ws, SubmitFlowStep400StepFieldsItemValidation as wt, DeleteFlowDefinition409 as wu, UpdateTeam403Details as x, ListEvents403Details as xa, GetFlowDefinition200UserSchema as xc, CreateSession201SessionMetadata as xd, CreateFlowDefinitionDefault as xf, ListUserPasskeys500 as xi, GetAuthAttempt200ChallengesItemState as xl, BeginUserPasskeyRegistration201 as xm, QueryUsersBodyFilterItemOperation as xn, GetSession404 as xo, CreateFlow201StepChallengeMethod as xp, QuerySessions400Details as xr, GetMySession200 as xs, SubmitFlowStep400StepGatesKind as xt, DeleteGrant401 as xu, UpdateTeam404Details as y, ListEventsCategoryItem as ya, GetFlowDefinitionDefault as yc, CreateSession201SessionUser as yd, CreateGrant201PrincipalType as yf, ListUserPasskeysParams as yi, GetAuthAttempt200CompletedFactorsItemMethod as yl, BeginUserPasskeyRegistration400 as ym, QueryUsersBodySortingDirection as yn, GetTeam200Status as yo, CreateFlow201StepChallenge as yp, QuerySessions401Details as yr, GetMySession404 as ys, SubmitFlowStep400StepSsoProvidersItem as yt, DeleteGrant403 as yu, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as z, IssueChallengeBodyPasskeyOptionsUserVerification as za, GetEvent404Details as zc, CreateRelease201 as zd, CreateFlowDefinition400Details as zf, ListSchemas200SchemasItem as zi, ExchangeHandoffDefault as zl, QueryTeamsDefault as zn, GetSchemaById404Details as zo, CreateAuthAttempt201State as zp, QueryProjects429 as zr, GetGrant404 as zs, SubmitFlowStep200StepGates as zt, CreateUser400Details as zu };
|
|
20960
|
+
//# sourceMappingURL=index-BK4Q468Q.d.mts.map
|