@zitadel/api 0.1.0-alpha.12 → 0.1.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/endpoints/zitadelNextGen.d.mts +2 -2
- package/dist/generated/endpoints/zitadelNextGen.mjs +23 -1
- package/dist/generated/endpoints/zitadelNextGen.mjs.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.msw.d.mts +4 -2
- package/dist/generated/endpoints/zitadelNextGen.msw.d.mts.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.msw.mjs +36 -10
- package/dist/generated/endpoints/zitadelNextGen.msw.mjs.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.zod.d.mts +51 -34
- package/dist/generated/endpoints/zitadelNextGen.zod.d.mts.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.zod.mjs +45 -25
- package/dist/generated/endpoints/zitadelNextGen.zod.mjs.map +1 -1
- package/dist/generated/model/index.d.mts +2 -2
- package/dist/generated/model/index.mjs +17 -23
- package/dist/generated/model/index.mjs.map +1 -1
- package/dist/{index-1TIHnDrM.d.mts → index-4CTwhwmD.d.mts} +132 -126
- package/dist/index-4CTwhwmD.d.mts.map +1 -0
- package/dist/runtime/api-factory.d.mts +1 -1
- package/dist/{zitadelNextGen-AAujo87_.d.mts → zitadelNextGen-DDnOEggX.d.mts} +12 -4
- package/dist/zitadelNextGen-DDnOEggX.d.mts.map +1 -0
- package/package.json +26 -5
- package/src/generated/endpoints/zitadelNextGen.msw.ts +42 -9
- package/src/generated/endpoints/zitadelNextGen.ts +34 -0
- package/src/generated/endpoints/zitadelNextGen.zod.ts +76 -39
- package/src/generated/model/createFlow201StepChallengeMethod.ts +1 -0
- package/src/generated/model/createFlowDefinition201.ts +0 -11
- package/src/generated/model/createFlowDefinition201FlowDefinition.ts +6 -4
- package/src/generated/model/createFlowDefinitionBodyFlowDefinition.ts +6 -4
- package/src/generated/model/createProjectBody.ts +5 -0
- package/src/generated/model/createSchemaBody.ts +9 -1
- package/src/generated/model/getFlowDefinition200.ts +0 -11
- package/src/generated/model/getFlowDefinition200FlowDefinition.ts +6 -4
- package/src/generated/model/getFlowStep200StepChallengeMethod.ts +1 -0
- package/src/generated/model/getSchemaById200.ts +9 -1
- package/src/generated/model/index.ts +4 -3
- package/src/generated/model/listSchemas200Item.ts +13 -0
- package/src/generated/model/listSchemasDefault.ts +20 -0
- package/src/generated/model/listSchemasDefaultDetails.ts +12 -0
- package/src/generated/model/listSchemasParams.ts +33 -0
- package/src/generated/model/submitFlowStep200StepChallengeMethod.ts +1 -0
- package/src/generated/model/submitFlowStep400StepChallengeMethod.ts +1 -0
- package/src/generated/model/updateFlowDefinition200.ts +0 -11
- package/src/generated/model/updateFlowDefinition200FlowDefinition.ts +6 -4
- package/src/generated/model/updateFlowDefinitionBody.ts +0 -1
- package/src/generated/model/updateFlowDefinitionBodyFlowDefinition.ts +6 -4
- package/dist/index-1TIHnDrM.d.mts.map +0 -1
- package/dist/zitadelNextGen-AAujo87_.d.mts.map +0 -1
- package/src/generated/model/createFlowDefinition201Status.ts +0 -26
- package/src/generated/model/getFlowDefinition200Status.ts +0 -26
- package/src/generated/model/updateFlowDefinition200Status.ts +0 -26
|
@@ -773,6 +773,7 @@ type CreateFlow201StepActionsItem = {
|
|
|
773
773
|
type CreateFlow201StepChallengeMethod = (typeof CreateFlow201StepChallengeMethod)[keyof typeof CreateFlow201StepChallengeMethod];
|
|
774
774
|
declare const CreateFlow201StepChallengeMethod: {
|
|
775
775
|
readonly passkey: "passkey";
|
|
776
|
+
readonly passkey_register: "passkey_register";
|
|
776
777
|
};
|
|
777
778
|
//#endregion
|
|
778
779
|
//#region src/generated/model/createFlow201StepChallengeOptions.d.ts
|
|
@@ -1610,10 +1611,12 @@ type CreateFlowDefinition201FlowDefinition = {
|
|
|
1610
1611
|
- draft -> active: To activate the flow definition.
|
|
1611
1612
|
- active -> draft: To remove the flow definition from active use immediately.
|
|
1612
1613
|
*/
|
|
1613
|
-
status
|
|
1614
|
-
/**
|
|
1615
|
-
|
|
1616
|
-
|
|
1614
|
+
status: CreateFlowDefinition201FlowDefinitionStatus;
|
|
1615
|
+
/** Server-assigned identifier of the user schema this flow operates on,
|
|
1616
|
+
as returned by `POST /schemas`. Opaque to the client — the shape is a
|
|
1617
|
+
server implementation detail. Step `fields` reference properties
|
|
1618
|
+
defined in the resolved schema; the engine resolves field types, validation, and
|
|
1619
|
+
implicit outcomes from schema annotations at runtime.
|
|
1617
1620
|
*/
|
|
1618
1621
|
user_schema: string;
|
|
1619
1622
|
/** Maps each purpose this definition handles to its entry-point step.
|
|
@@ -1636,43 +1639,10 @@ type CreateFlowDefinition201FlowDefinition = {
|
|
|
1636
1639
|
steps: CreateFlowDefinition201FlowDefinitionStepsItem[];
|
|
1637
1640
|
};
|
|
1638
1641
|
//#endregion
|
|
1639
|
-
//#region src/generated/model/createFlowDefinition201Status.d.ts
|
|
1640
|
-
/**
|
|
1641
|
-
* Generated by orval v8.10.0 🍺
|
|
1642
|
-
* Do not edit manually.
|
|
1643
|
-
* Zitadel NextGen
|
|
1644
|
-
* This is the next generation of the Zitadel identity platform.
|
|
1645
|
-
* OpenAPI spec version: 0.0.1
|
|
1646
|
-
*/
|
|
1647
|
-
/**
|
|
1648
|
-
* The lifecycle state of this flow definition.
|
|
1649
|
-
|
|
1650
|
-
active: The flow definition is ready to be used. The flow engine can select it for new flows.
|
|
1651
|
-
draft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.
|
|
1652
|
-
|
|
1653
|
-
Allowed transitions:
|
|
1654
|
-
- draft -> active: To activate the flow definition.
|
|
1655
|
-
- active -> draft: To remove the flow definition from active use immediately.
|
|
1656
|
-
|
|
1657
|
-
*/
|
|
1658
|
-
type CreateFlowDefinition201Status = (typeof CreateFlowDefinition201Status)[keyof typeof CreateFlowDefinition201Status];
|
|
1659
|
-
declare const CreateFlowDefinition201Status: {
|
|
1660
|
-
readonly active: "active";
|
|
1661
|
-
readonly draft: "draft";
|
|
1662
|
-
};
|
|
1663
|
-
//#endregion
|
|
1664
1642
|
//#region src/generated/model/createFlowDefinition201.d.ts
|
|
1665
1643
|
type CreateFlowDefinition201 = {
|
|
1666
1644
|
/** Unique identifier for the flow definition. */id: string; /** Identifier of the project this flow definition belongs to. */
|
|
1667
1645
|
project_id: string;
|
|
1668
|
-
/** The lifecycle state of this flow definition.
|
|
1669
|
-
active: The flow definition is ready to be used. The flow engine can select it for new flows.
|
|
1670
|
-
draft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.
|
|
1671
|
-
Allowed transitions:
|
|
1672
|
-
- draft -> active: To activate the flow definition.
|
|
1673
|
-
- active -> draft: To remove the flow definition from active use immediately.
|
|
1674
|
-
*/
|
|
1675
|
-
status: CreateFlowDefinition201Status;
|
|
1676
1646
|
/** A flow definition is the server-side configuration that describes a complete
|
|
1677
1647
|
authentication or identity flow. It is NOT sent to the frontend — the flow
|
|
1678
1648
|
engine evaluates it and produces FlowResponse payloads (steps with capability
|
|
@@ -2085,10 +2055,12 @@ type CreateFlowDefinitionBodyFlowDefinition = {
|
|
|
2085
2055
|
- draft -> active: To activate the flow definition.
|
|
2086
2056
|
- active -> draft: To remove the flow definition from active use immediately.
|
|
2087
2057
|
*/
|
|
2088
|
-
status
|
|
2089
|
-
/**
|
|
2090
|
-
|
|
2091
|
-
|
|
2058
|
+
status: CreateFlowDefinitionBodyFlowDefinitionStatus;
|
|
2059
|
+
/** Server-assigned identifier of the user schema this flow operates on,
|
|
2060
|
+
as returned by `POST /schemas`. Opaque to the client — the shape is a
|
|
2061
|
+
server implementation detail. Step `fields` reference properties
|
|
2062
|
+
defined in the resolved schema; the engine resolves field types, validation, and
|
|
2063
|
+
implicit outcomes from schema annotations at runtime.
|
|
2092
2064
|
*/
|
|
2093
2065
|
user_schema: string;
|
|
2094
2066
|
/** Maps each purpose this definition handles to its entry-point step.
|
|
@@ -2291,6 +2263,11 @@ type CreateProjectBody = {
|
|
|
2291
2263
|
/** Origins which are allowed for previewing and testing the project.
|
|
2292
2264
|
*/
|
|
2293
2265
|
previewOrigins?: string[];
|
|
2266
|
+
/** Whether the server should provision fallback default user schema and flow
|
|
2267
|
+
resources for the project. CLI-managed projects set this to false and
|
|
2268
|
+
upload their local .zitadel config files through the schema and flow APIs.
|
|
2269
|
+
*/
|
|
2270
|
+
seedDefaults?: boolean;
|
|
2294
2271
|
};
|
|
2295
2272
|
//#endregion
|
|
2296
2273
|
//#region src/generated/model/createProjectDefaultDetails.d.ts
|
|
@@ -2389,7 +2366,12 @@ type CreateSchema409 = {
|
|
|
2389
2366
|
* OpenAPI spec version: 0.0.1
|
|
2390
2367
|
*/
|
|
2391
2368
|
type CreateSchemaBody = {
|
|
2392
|
-
/**
|
|
2369
|
+
/**
|
|
2370
|
+
* The type of user this schema describes. This is a customer chosen name.
|
|
2371
|
+
* @maxLength 256
|
|
2372
|
+
*/
|
|
2373
|
+
objectType?: string; /** Discriminator value for a user schema create request. */
|
|
2374
|
+
kind: "user-schema"; /** The user Schema version used for this schema. */
|
|
2393
2375
|
metaSchema: string; /** A list of authentication methods supported by the user definition. */
|
|
2394
2376
|
"x-auth-methods": {
|
|
2395
2377
|
password?: {
|
|
@@ -2432,7 +2414,10 @@ type CreateSchemaBody = {
|
|
|
2432
2414
|
*/
|
|
2433
2415
|
position: number;
|
|
2434
2416
|
};
|
|
2435
|
-
};
|
|
2417
|
+
};
|
|
2418
|
+
/** A map of additional properties for the user definition, where the
|
|
2419
|
+
key is the property name and the value is the property schema
|
|
2420
|
+
*/
|
|
2436
2421
|
properties?: {
|
|
2437
2422
|
[key: string]: {
|
|
2438
2423
|
/** The verification method for this property, if applicable */"x-verify"?: string | null; /** The level of uniqueness for this property, if applicable */
|
|
@@ -4291,10 +4276,12 @@ type GetFlowDefinition200FlowDefinition = {
|
|
|
4291
4276
|
- draft -> active: To activate the flow definition.
|
|
4292
4277
|
- active -> draft: To remove the flow definition from active use immediately.
|
|
4293
4278
|
*/
|
|
4294
|
-
status
|
|
4295
|
-
/**
|
|
4296
|
-
|
|
4297
|
-
|
|
4279
|
+
status: GetFlowDefinition200FlowDefinitionStatus;
|
|
4280
|
+
/** Server-assigned identifier of the user schema this flow operates on,
|
|
4281
|
+
as returned by `POST /schemas`. Opaque to the client — the shape is a
|
|
4282
|
+
server implementation detail. Step `fields` reference properties
|
|
4283
|
+
defined in the resolved schema; the engine resolves field types, validation, and
|
|
4284
|
+
implicit outcomes from schema annotations at runtime.
|
|
4298
4285
|
*/
|
|
4299
4286
|
user_schema: string;
|
|
4300
4287
|
/** Maps each purpose this definition handles to its entry-point step.
|
|
@@ -4317,43 +4304,10 @@ type GetFlowDefinition200FlowDefinition = {
|
|
|
4317
4304
|
steps: GetFlowDefinition200FlowDefinitionStepsItem[];
|
|
4318
4305
|
};
|
|
4319
4306
|
//#endregion
|
|
4320
|
-
//#region src/generated/model/getFlowDefinition200Status.d.ts
|
|
4321
|
-
/**
|
|
4322
|
-
* Generated by orval v8.10.0 🍺
|
|
4323
|
-
* Do not edit manually.
|
|
4324
|
-
* Zitadel NextGen
|
|
4325
|
-
* This is the next generation of the Zitadel identity platform.
|
|
4326
|
-
* OpenAPI spec version: 0.0.1
|
|
4327
|
-
*/
|
|
4328
|
-
/**
|
|
4329
|
-
* The lifecycle state of this flow definition.
|
|
4330
|
-
|
|
4331
|
-
active: The flow definition is ready to be used. The flow engine can select it for new flows.
|
|
4332
|
-
draft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.
|
|
4333
|
-
|
|
4334
|
-
Allowed transitions:
|
|
4335
|
-
- draft -> active: To activate the flow definition.
|
|
4336
|
-
- active -> draft: To remove the flow definition from active use immediately.
|
|
4337
|
-
|
|
4338
|
-
*/
|
|
4339
|
-
type GetFlowDefinition200Status = (typeof GetFlowDefinition200Status)[keyof typeof GetFlowDefinition200Status];
|
|
4340
|
-
declare const GetFlowDefinition200Status: {
|
|
4341
|
-
readonly active: "active";
|
|
4342
|
-
readonly draft: "draft";
|
|
4343
|
-
};
|
|
4344
|
-
//#endregion
|
|
4345
4307
|
//#region src/generated/model/getFlowDefinition200.d.ts
|
|
4346
4308
|
type GetFlowDefinition200 = {
|
|
4347
4309
|
/** Unique identifier for the flow definition. */id: string; /** Identifier of the project this flow definition belongs to. */
|
|
4348
4310
|
project_id: string;
|
|
4349
|
-
/** The lifecycle state of this flow definition.
|
|
4350
|
-
active: The flow definition is ready to be used. The flow engine can select it for new flows.
|
|
4351
|
-
draft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.
|
|
4352
|
-
Allowed transitions:
|
|
4353
|
-
- draft -> active: To activate the flow definition.
|
|
4354
|
-
- active -> draft: To remove the flow definition from active use immediately.
|
|
4355
|
-
*/
|
|
4356
|
-
status: GetFlowDefinition200Status;
|
|
4357
4311
|
/** A flow definition is the server-side configuration that describes a complete
|
|
4358
4312
|
authentication or identity flow. It is NOT sent to the frontend — the flow
|
|
4359
4313
|
engine evaluates it and produces FlowResponse payloads (steps with capability
|
|
@@ -4529,6 +4483,7 @@ type GetFlowStep200StepActionsItem = {
|
|
|
4529
4483
|
type GetFlowStep200StepChallengeMethod = (typeof GetFlowStep200StepChallengeMethod)[keyof typeof GetFlowStep200StepChallengeMethod];
|
|
4530
4484
|
declare const GetFlowStep200StepChallengeMethod: {
|
|
4531
4485
|
readonly passkey: "passkey";
|
|
4486
|
+
readonly passkey_register: "passkey_register";
|
|
4532
4487
|
};
|
|
4533
4488
|
//#endregion
|
|
4534
4489
|
//#region src/generated/model/getFlowStep200StepChallengeOptions.d.ts
|
|
@@ -5791,7 +5746,12 @@ type GetReadyDefault = {
|
|
|
5791
5746
|
* OpenAPI spec version: 0.0.1
|
|
5792
5747
|
*/
|
|
5793
5748
|
type GetSchemaById200 = {
|
|
5794
|
-
/**
|
|
5749
|
+
/**
|
|
5750
|
+
* The type of user this schema describes. This is a customer chosen name.
|
|
5751
|
+
* @maxLength 256
|
|
5752
|
+
*/
|
|
5753
|
+
objectType?: string; /** Discriminator value for a user schema create request. */
|
|
5754
|
+
kind: "user-schema"; /** The user Schema version used for this schema. */
|
|
5795
5755
|
metaSchema: string; /** A list of authentication methods supported by the user definition. */
|
|
5796
5756
|
"x-auth-methods": {
|
|
5797
5757
|
password?: {
|
|
@@ -5834,7 +5794,10 @@ type GetSchemaById200 = {
|
|
|
5834
5794
|
*/
|
|
5835
5795
|
position: number;
|
|
5836
5796
|
};
|
|
5837
|
-
};
|
|
5797
|
+
};
|
|
5798
|
+
/** A map of additional properties for the user definition, where the
|
|
5799
|
+
key is the property name and the value is the property schema
|
|
5800
|
+
*/
|
|
5838
5801
|
properties?: {
|
|
5839
5802
|
[key: string]: {
|
|
5840
5803
|
/** The verification method for this property, if applicable */"x-verify"?: string | null; /** The level of uniqueness for this property, if applicable */
|
|
@@ -7058,6 +7021,77 @@ type ListFlowDefinitionsParams = {
|
|
|
7058
7021
|
purpose?: ListFlowDefinitionsPurpose;
|
|
7059
7022
|
};
|
|
7060
7023
|
//#endregion
|
|
7024
|
+
//#region src/generated/model/listSchemas200Item.d.ts
|
|
7025
|
+
/**
|
|
7026
|
+
* Generated by orval v8.10.0 🍺
|
|
7027
|
+
* Do not edit manually.
|
|
7028
|
+
* Zitadel NextGen
|
|
7029
|
+
* This is the next generation of the Zitadel identity platform.
|
|
7030
|
+
* OpenAPI spec version: 0.0.1
|
|
7031
|
+
*/
|
|
7032
|
+
type ListSchemas200Item = {
|
|
7033
|
+
/** The unique identifier for this schema. */id: string;
|
|
7034
|
+
createdAt: string;
|
|
7035
|
+
};
|
|
7036
|
+
//#endregion
|
|
7037
|
+
//#region src/generated/model/listSchemasDefaultDetails.d.ts
|
|
7038
|
+
/**
|
|
7039
|
+
* Generated by orval v8.10.0 🍺
|
|
7040
|
+
* Do not edit manually.
|
|
7041
|
+
* Zitadel NextGen
|
|
7042
|
+
* This is the next generation of the Zitadel identity platform.
|
|
7043
|
+
* OpenAPI spec version: 0.0.1
|
|
7044
|
+
*/
|
|
7045
|
+
/**
|
|
7046
|
+
* Additional error-specific context.
|
|
7047
|
+
*/
|
|
7048
|
+
type ListSchemasDefaultDetails = {
|
|
7049
|
+
[key: string]: unknown;
|
|
7050
|
+
};
|
|
7051
|
+
//#endregion
|
|
7052
|
+
//#region src/generated/model/listSchemasDefault.d.ts
|
|
7053
|
+
/**
|
|
7054
|
+
* Standard error payload returned for failed API requests.
|
|
7055
|
+
*/
|
|
7056
|
+
type ListSchemasDefault = {
|
|
7057
|
+
/** Stable machine-readable error code. */code: string; /** Human-readable explanation of the error. */
|
|
7058
|
+
message: string; /** Additional error-specific context. */
|
|
7059
|
+
details?: ListSchemasDefaultDetails;
|
|
7060
|
+
};
|
|
7061
|
+
//#endregion
|
|
7062
|
+
//#region src/generated/model/listSchemasParams.d.ts
|
|
7063
|
+
/**
|
|
7064
|
+
* Generated by orval v8.10.0 🍺
|
|
7065
|
+
* Do not edit manually.
|
|
7066
|
+
* Zitadel NextGen
|
|
7067
|
+
* This is the next generation of the Zitadel identity platform.
|
|
7068
|
+
* OpenAPI spec version: 0.0.1
|
|
7069
|
+
*/
|
|
7070
|
+
type ListSchemasParams = {
|
|
7071
|
+
/**
|
|
7072
|
+
* The unique identifier of the project
|
|
7073
|
+
* @pattern ^[a-zA-Z0-9_-]+$
|
|
7074
|
+
*/
|
|
7075
|
+
project_id: string;
|
|
7076
|
+
/**
|
|
7077
|
+
* Number of items to skip before returning results.
|
|
7078
|
+
* @minimum 0
|
|
7079
|
+
*/
|
|
7080
|
+
offset?: number;
|
|
7081
|
+
/**
|
|
7082
|
+
* Token for fetching the next page of results.
|
|
7083
|
+
Obtain this value from `next_page_token` in the previous response.
|
|
7084
|
+
Omit to start from the beginning.
|
|
7085
|
+
Its format is opaque and may change between releases.
|
|
7086
|
+
*/
|
|
7087
|
+
page_token?: string;
|
|
7088
|
+
/**
|
|
7089
|
+
* The type of object of the schema to filter by.
|
|
7090
|
+
* @maxLength 256
|
|
7091
|
+
*/
|
|
7092
|
+
object_type?: string;
|
|
7093
|
+
};
|
|
7094
|
+
//#endregion
|
|
7061
7095
|
//#region src/generated/model/listSessions200SessionsItemFactorsItemMethod.d.ts
|
|
7062
7096
|
/**
|
|
7063
7097
|
* Generated by orval v8.10.0 🍺
|
|
@@ -8139,6 +8173,7 @@ type SubmitFlowStep200StepActionsItem = {
|
|
|
8139
8173
|
type SubmitFlowStep200StepChallengeMethod = (typeof SubmitFlowStep200StepChallengeMethod)[keyof typeof SubmitFlowStep200StepChallengeMethod];
|
|
8140
8174
|
declare const SubmitFlowStep200StepChallengeMethod: {
|
|
8141
8175
|
readonly passkey: "passkey";
|
|
8176
|
+
readonly passkey_register: "passkey_register";
|
|
8142
8177
|
};
|
|
8143
8178
|
//#endregion
|
|
8144
8179
|
//#region src/generated/model/submitFlowStep200StepChallengeOptions.d.ts
|
|
@@ -8629,6 +8664,7 @@ type SubmitFlowStep400StepActionsItem = {
|
|
|
8629
8664
|
type SubmitFlowStep400StepChallengeMethod = (typeof SubmitFlowStep400StepChallengeMethod)[keyof typeof SubmitFlowStep400StepChallengeMethod];
|
|
8630
8665
|
declare const SubmitFlowStep400StepChallengeMethod: {
|
|
8631
8666
|
readonly passkey: "passkey";
|
|
8667
|
+
readonly passkey_register: "passkey_register";
|
|
8632
8668
|
};
|
|
8633
8669
|
//#endregion
|
|
8634
8670
|
//#region src/generated/model/submitFlowStep400StepChallengeOptions.d.ts
|
|
@@ -9492,10 +9528,12 @@ type UpdateFlowDefinition200FlowDefinition = {
|
|
|
9492
9528
|
- draft -> active: To activate the flow definition.
|
|
9493
9529
|
- active -> draft: To remove the flow definition from active use immediately.
|
|
9494
9530
|
*/
|
|
9495
|
-
status
|
|
9496
|
-
/**
|
|
9497
|
-
|
|
9498
|
-
|
|
9531
|
+
status: UpdateFlowDefinition200FlowDefinitionStatus;
|
|
9532
|
+
/** Server-assigned identifier of the user schema this flow operates on,
|
|
9533
|
+
as returned by `POST /schemas`. Opaque to the client — the shape is a
|
|
9534
|
+
server implementation detail. Step `fields` reference properties
|
|
9535
|
+
defined in the resolved schema; the engine resolves field types, validation, and
|
|
9536
|
+
implicit outcomes from schema annotations at runtime.
|
|
9499
9537
|
*/
|
|
9500
9538
|
user_schema: string;
|
|
9501
9539
|
/** Maps each purpose this definition handles to its entry-point step.
|
|
@@ -9518,43 +9556,10 @@ type UpdateFlowDefinition200FlowDefinition = {
|
|
|
9518
9556
|
steps: UpdateFlowDefinition200FlowDefinitionStepsItem[];
|
|
9519
9557
|
};
|
|
9520
9558
|
//#endregion
|
|
9521
|
-
//#region src/generated/model/updateFlowDefinition200Status.d.ts
|
|
9522
|
-
/**
|
|
9523
|
-
* Generated by orval v8.10.0 🍺
|
|
9524
|
-
* Do not edit manually.
|
|
9525
|
-
* Zitadel NextGen
|
|
9526
|
-
* This is the next generation of the Zitadel identity platform.
|
|
9527
|
-
* OpenAPI spec version: 0.0.1
|
|
9528
|
-
*/
|
|
9529
|
-
/**
|
|
9530
|
-
* The lifecycle state of this flow definition.
|
|
9531
|
-
|
|
9532
|
-
active: The flow definition is ready to be used. The flow engine can select it for new flows.
|
|
9533
|
-
draft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.
|
|
9534
|
-
|
|
9535
|
-
Allowed transitions:
|
|
9536
|
-
- draft -> active: To activate the flow definition.
|
|
9537
|
-
- active -> draft: To remove the flow definition from active use immediately.
|
|
9538
|
-
|
|
9539
|
-
*/
|
|
9540
|
-
type UpdateFlowDefinition200Status = (typeof UpdateFlowDefinition200Status)[keyof typeof UpdateFlowDefinition200Status];
|
|
9541
|
-
declare const UpdateFlowDefinition200Status: {
|
|
9542
|
-
readonly active: "active";
|
|
9543
|
-
readonly draft: "draft";
|
|
9544
|
-
};
|
|
9545
|
-
//#endregion
|
|
9546
9559
|
//#region src/generated/model/updateFlowDefinition200.d.ts
|
|
9547
9560
|
type UpdateFlowDefinition200 = {
|
|
9548
9561
|
/** Unique identifier for the flow definition. */id: string; /** Identifier of the project this flow definition belongs to. */
|
|
9549
9562
|
project_id: string;
|
|
9550
|
-
/** The lifecycle state of this flow definition.
|
|
9551
|
-
active: The flow definition is ready to be used. The flow engine can select it for new flows.
|
|
9552
|
-
draft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.
|
|
9553
|
-
Allowed transitions:
|
|
9554
|
-
- draft -> active: To activate the flow definition.
|
|
9555
|
-
- active -> draft: To remove the flow definition from active use immediately.
|
|
9556
|
-
*/
|
|
9557
|
-
status: UpdateFlowDefinition200Status;
|
|
9558
9563
|
/** A flow definition is the server-side configuration that describes a complete
|
|
9559
9564
|
authentication or identity flow. It is NOT sent to the frontend — the flow
|
|
9560
9565
|
engine evaluates it and produces FlowResponse payloads (steps with capability
|
|
@@ -9967,10 +9972,12 @@ type UpdateFlowDefinitionBodyFlowDefinition = {
|
|
|
9967
9972
|
- draft -> active: To activate the flow definition.
|
|
9968
9973
|
- active -> draft: To remove the flow definition from active use immediately.
|
|
9969
9974
|
*/
|
|
9970
|
-
status
|
|
9971
|
-
/**
|
|
9972
|
-
|
|
9973
|
-
|
|
9975
|
+
status: UpdateFlowDefinitionBodyFlowDefinitionStatus;
|
|
9976
|
+
/** Server-assigned identifier of the user schema this flow operates on,
|
|
9977
|
+
as returned by `POST /schemas`. Opaque to the client — the shape is a
|
|
9978
|
+
server implementation detail. Step `fields` reference properties
|
|
9979
|
+
defined in the resolved schema; the engine resolves field types, validation, and
|
|
9980
|
+
implicit outcomes from schema annotations at runtime.
|
|
9974
9981
|
*/
|
|
9975
9982
|
user_schema: string;
|
|
9976
9983
|
/** Maps each purpose this definition handles to its entry-point step.
|
|
@@ -9996,7 +10003,6 @@ type UpdateFlowDefinitionBodyFlowDefinition = {
|
|
|
9996
10003
|
//#region src/generated/model/updateFlowDefinitionBody.d.ts
|
|
9997
10004
|
/**
|
|
9998
10005
|
* Replaces the existing flow definition.
|
|
9999
|
-
If `flow_definition.status` is omitted, the current status is preserved
|
|
10000
10006
|
|
|
10001
10007
|
*/
|
|
10002
10008
|
type UpdateFlowDefinitionBody = {
|
|
@@ -10412,5 +10418,5 @@ type VerifyChallengeProofDefault = ({
|
|
|
10412
10418
|
code: "internal";
|
|
10413
10419
|
});
|
|
10414
10420
|
//#endregion
|
|
10415
|
-
export { SubmitFlowStepBodyFields as $, GetFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as $a, CreateFlow201StepComplete as $c, GetMySession200 as $i, ListSessions200SessionsItemFactorsItemPayload as $n, DeactivateFlowDefinition400 as $o, GetSessionParams as $r, CreateHandoff200 as $s, SetUserPasswordDefaultDetails as $t, UpdateFlowDefinition404 as A, GetFlowStep200StepGates as Aa, CreateFlowDefinition201FlowDefinitionStepsItemComplete as Ac, GetProject401Details as Ai, ActivateFlowDefinitionParams as Al, ListUsersDefault as An, ExchangeHandoff200 as Ao, GetUserByIDParams as Ar, CreateSession201Session as As, SubmitFlowStep200StepFieldsItem as At, UpdateFlowDefinition200FlowDefinitionStepsItemOnSuccess as B, GetFlowStep200StepChallengeMethod as Ba, CreateFlow400 as Bc, GetOpenIDConfiguration4xxDetails as Bi, ListSessionsDefaultDetails as Bn, EndSessionDefaultDetails as Bo, GetTokenBody as Br, CreateSchemaBody as Bs, SubmitFlowStep200Branding as Bt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as C, GetFlowStep410Details as Ca, CreateFlowDefinition201FlowDefinitionStepsItem as Cc, GetReady4xx as Ci, AuthorizeGet400Details as Cl, RevokeMySession409 as Cn, ExchangeHandoffBody as Co, Introspect400Details as Cr, CreateSessionDefault as Cs, SubmitFlowStep200 as Ct, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as D, GetFlowStep200Step as Da, CreateFlowDefinition201FlowDefinitionStepsItemGates as Dc, GetProject404 as Di, AuthorizeDevice400 as Dl, RevokeMySession401 as Dn, ExchangeHandoff401Details as Do, GetUserInfo200 as Dr, CreateSession400 as Ds, SubmitFlowStep200StepGates as Dt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as E, GetFlowStep200 as Ea, CreateFlowDefinition201FlowDefinitionStepsItemOnSuccess as Ec, GetProjectDefaultDetails as Ei, AuthorizeDeviceDefaultDetails as El, RevokeMySession404Details as En, ExchangeHandoff401 as Eo, GetUserInfoDefaultDetails as Er, CreateSessionBodyUserAgent as Es, SubmitFlowStep200StepSsoProvidersItem as Et, UpdateFlowDefinition200Status as F, GetFlowStep200StepFieldsItemValidationFormat as Fa, CreateFlowDefault as Fc, GetOpenIDConfiguration200TokenEndpointAuthMethodsSupportedItem as Fi, ListUsers400Details as Fn, ExchangeHandoff200SessionFactorsItem as Fo, GetUserByID401 as Fr, CreateSession201SessionFactorsItemPayload as Fs, SubmitFlowStep200StepChallenge as Ft, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItem as G, GetFlowDefinitionParams as Ga, CreateFlow201StepSsoProvidersItem as Gc, GetMyUser401Details as Gi, ListSessions400 as Gn, DeleteFlowDefinitionDefaultDetails as Go, GetTeamParams as Gr, CreateSchema201 as Gs, SubmitFlowEventBodyType as Gt, UpdateFlowDefinition200FlowDefinitionStepsItemGatesKind as H, GetFlowStep200StepActionsItemKind as Ha, CreateFlow201 as Hc, GetMyUserDefaultDetails as Hi, ListSessions403Details as Hn, EndSession400Details as Ho, GetToken200 as Hr, CreateSchema409Details as Hs, SubmitFlowEventDefault as Ht, UpdateFlowDefinition200FlowDefinition as I, GetFlowStep200StepFieldsItemType as Ia, CreateFlowDefaultDetails as Ic, GetOpenIDConfiguration200SubjectTypesSupportedItem as Ii, ListUsers200Item as In, ExchangeHandoff200SessionFactorsItemPayload as Io, GetUserByID401Details as Ir, CreateSession201SessionFactorsItemMethod as Is, SubmitFlowStep200StepChallengeOptions as It, UpdateFlowDefinition200FlowDefinitionAudience as J, GetFlowDefinition200 as Ja, CreateFlow201StepGatesConfig as Jc, GetMySessionDefaultDetails as Ji, ListSessions200SessionsItem as Jn, DeactivateFlowDefinitionParams as Jo, GetTeam404 as Jr, CreateProjectBody as Js, SubmitFlowEvent404Details as Jt, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItemKind as K, GetFlowDefinitionDefault as Ka, CreateFlow201StepGates as Kc, GetMyUser200 as Ki, ListSessions400Details as Kn, DeleteFlowDefinition409 as Ko, GetTeamDefault as Kr, CreateProjectDefault as Ks, SubmitFlowEventBodyPayload as Kt, UpdateFlowDefinition200FlowDefinitionStepsItem as L, GetFlowStep200StepComplete as La, CreateFlowBody as Lc, GetOpenIDConfiguration200DisplayValuesSupportedItem as Li, ListSessionsParams as Ln, ExchangeHandoff200SessionFactorsItemMethod as Lo, GetUserByID200 as Lr, CreateSchemaParams as Ls, SubmitFlowStep200StepChallengeMethod as Lt, UpdateFlowDefinition400 as M, GetFlowStep200StepGatesConfig as Ma, CreateFlowDefinition201FlowDefinitionStepsItemActionsItemKind as Mc, GetOpenIDConfigurationDefault as Mi, ActivateFlowDefinitionDefaultDetails as Ml, ListUsers500 as Mn, ExchangeHandoff200SessionUserAgent as Mo, GetUserByIDDefaultDetails as Mr, CreateSession201SessionState as Ms, SubmitFlowStep200StepFieldsItemValidationFormat as Mt, UpdateFlowDefinition400Details as N, GetFlowStep200StepFieldsItem as Na, CreateFlowDefinition201FlowDefinitionStatus as Nc, GetOpenIDConfigurationDefaultDetails as Ni, ActivateFlowDefinition400 as Nl, ListUsers500Details as Nn, ExchangeHandoff200SessionState as No, GetUserByID404 as Nr, CreateSession201SessionMetadata as Ns, SubmitFlowStep200StepFieldsItemType as Nt, UpdateFlowDefinitionBodyFlowDefinitionStatus as O, GetFlowStep200StepTexts as Oa, CreateFlowDefinition201FlowDefinitionStepsItemGatesKind as Oc, GetProject404Details as Oi, AuthorizeDevice400Details as Ol, RevokeMySession401Details as On, ExchangeHandoff400 as Oo, GetUserInfo4xx as Or, CreateSession400Details as Os, SubmitFlowStep200StepGatesKind as Ot, UpdateFlowDefinition200 as P, GetFlowStep200StepFieldsItemValidation as Pa, CreateFlowDefinition201FlowDefinitionAudience as Pc, GetOpenIDConfiguration200 as Pi, ActivateFlowDefinition400Details as Pl, ListUsers400 as Pn, ExchangeHandoff200SessionMetadata as Po, GetUserByID404Details as Pr, CreateSession201SessionFactorsItem as Ps, SubmitFlowStep200StepComplete as Pt, SubmitFlowStepBodyGateProofs as Q, GetFlowDefinition200FlowDefinitionStepsItemTransitions as Qa, CreateFlow201StepFieldsItemType as Qc, GetMySession401Details as Qi, ListSessions200SessionsItemFactorsItem as Qn, DeactivateFlowDefinition409Details as Qo, GetTeam200 as Qr, CreateHandoffDefault as Qs, SetUserPasswordDefault as Qt, UpdateFlowDefinition200FlowDefinitionStepsItemTransitions as R, GetFlowStep200StepChallenge as Ra, CreateFlowBodyPurpose as Rc, GetOpenIDConfiguration200ClaimTypesSupportedItem as Ri, ListSessionsState as Rn, EndSessionParams as Ro, GetTokenDefault as Rr, CreateSchemaDefault as Rs, SubmitFlowStep200StepActionsItem as Rt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGates as S, GetFlowStep410 as Sa, CreateFlowDefinition201FlowDefinition as Sc, GetReadyDefaultDetails as Si, AuthorizeGet400 as Sl, RevokeMySessionDefaultDetails as Sn, ExchangeHandoffDefaultDetails as So, Introspect400 as Sr, CreateTeam201 as Ss, SubmitFlowStep400BrandingLayout as St, UpdateFlowDefinitionBodyFlowDefinitionStepsItemComplete as T, GetFlowStep404Details as Ta, CreateFlowDefinition201FlowDefinitionStepsItemSsoProvidersItem as Tc, GetProjectDefault as Ti, AuthorizeDeviceDefault as Tl, RevokeMySession404 as Tn, ExchangeHandoff410Details as To, GetUserInfoDefault as Tr, CreateSessionBody as Ts, SubmitFlowStep200StepTexts as Tt, UpdateFlowDefinition200FlowDefinitionStepsItemGatesConfig as U, GetFlowStep200Branding as Ua, CreateFlow201Step as Uc, GetMyUser404 as Ui, ListSessions401 as Un, DeleteFlowDefinitionParams as Uo, GetToken4xx as Ur, CreateSchema400 as Us, SubmitFlowEventDefaultDetails as Ut, UpdateFlowDefinition200FlowDefinitionStepsItemGates as V, GetFlowStep200StepActionsItem as Va, CreateFlow400Details as Vc, GetMyUserDefault as Vi, ListSessions403 as Vn, EndSession400 as Vo, GetTokenBodyGrantType as Vr, CreateSchema409 as Vs, SubmitFlowStep200BrandingLayout as Vt, UpdateFlowDefinition200FlowDefinitionStepsItemComplete as W, GetFlowStep200BrandingLayout as Wa, CreateFlow201StepTexts as Wc, GetMyUser401 as Wi, ListSessions401Details as Wn, DeleteFlowDefinitionDefault as Wo, GetToken4xxDetails as Wr, CreateSchema400Details as Ws, SubmitFlowEventBody as Wt, SubmitFlowStepDefaultDetails as X, GetFlowDefinition200FlowDefinition as Xa, CreateFlow201StepFieldsItemValidation as Xc, GetMySession404Details as Xi, ListSessions200SessionsItemState as Xn, DeactivateFlowDefinitionDefaultDetails as Xo, GetTeam401 as Xr, CreateProject429Details as Xs, SubmitFlowEvent400Details as Xt, SubmitFlowStepDefault as Y, GetFlowDefinition200Status as Ya, CreateFlow201StepFieldsItem as Yc, GetMySession404 as Yi, ListSessions200SessionsItemUserAgent as Yn, DeactivateFlowDefinitionDefault as Yo, GetTeam404Details as Yr, CreateProject429 as Ys, SubmitFlowEvent400 as Yt, SubmitFlowStepBody as Z, GetFlowDefinition200FlowDefinitionStepsItem as Za, CreateFlow201StepFieldsItemValidationFormat as Zc, GetMySession401 as Zi, ListSessions200SessionsItemMetadata as Zn, DeactivateFlowDefinition409 as Zo, GetTeam401Details as Zr, CreateProject201 as Zs, SetUserPasswordParams as Zt, UpdateFlowDefinitionBodyFlowDefinition as _, GetHealthDefaultDetails as _a, CreateFlowDefinition409Details as _c, GetSchemaById404Details as _i, CreateAuthAttempt201ChallengesItemPayload as _l, RevokeSession404 as _n, GetAuthAttempt200ChallengesItemState as _o, IssueChallenge201Payload as _r, CreateTeamBody as _s, SubmitFlowStep400StepChallengeOptions as _t, VerifyChallengeProof200RequiredFactorsItem as a, GetMySession200FactorsItemMethod as aa, CreateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as ac, GetSession401Details as ai, CreateFlow201Branding as al, SetUserPassword400 as an, GetFlowDefinition200FlowDefinitionStepsItemActionsItem as ao, ListFlowDefinitions400 as ar, CreateUser409 as as, SubmitFlowStep400Step as at, UpdateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as b, GetFlowStepDefault as ba, CreateFlowDefinition201 as bc, GetSchemaById200 as bi, AuthorizeGetDefault as bl, RevokeSession401Details as bn, ExchangeHandoffParams as bo, IntrospectDefaultDetails as br, CreateTeam400 as bs, SubmitFlowStep400StepActionsItemKind as bt, VerifyChallengeProof200CompletedFactorsItemMethod as c, GetLive4xx as ca, CreateFlowDefinitionBodyFlowDefinitionStepsItemGates as cc, GetSession200State as ci, CreateAuthAttemptBody as cl, RevokeTokenDefaultDetails as cn, GetFlowDefinition200FlowDefinitionAudience as co, ListFlowDefinitions200FlowDefinitionsItem as cr, CreateUser403Details as cs, SubmitFlowStep400StepGates as ct, VerifyChallengeProof200ChallengesItemPayload as d, GetKeysDefaultDetails as da, CreateFlowDefinitionBodyFlowDefinitionStepsItemComplete as dc, GetSession200FactorsItemPayload as di, CreateAuthAttempt201RequiredFactorsItem as dl, RevokeToken4xxDetails as dn, GetAuthAttempt200State as do, IssueChallengeBody as dr, CreateUser400 as ds, SubmitFlowStep400StepFieldsItem as dt, GetMySession200UserAgent as ea, CreateFlowDefinitionDefault as ec, GetSessionDefault as ei, CreateFlow201StepChallenge as el, SetUserPasswordBody as en, GetFlowDefinition200FlowDefinitionStepsItemOnSuccess as eo, ListSessions200SessionsItemFactorsItemMethod as er, DeactivateFlowDefinition400Details as es, SubmitFlowStepBodyChallengeResponse as et, VerifyChallengeProof200ChallengesItemMethod as f, GetKeys200 as fa, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as fc, GetSession200FactorsItemMethod as fi, CreateAuthAttempt201CompletedFactorsItem as fl, RevokeSessionParams as fn, GetAuthAttempt200RequiredFactorsItem as fo, IssueChallengeBodyPasskeyOptions as fr, CreateUser400Details as fs, SubmitFlowStep400StepFieldsItemValidation as ft, UpdateFlowDefinitionBody as g, GetHealthDefault as ga, CreateFlowDefinition409 as gc, GetSchemaById404 as gi, CreateAuthAttempt201ChallengesItemState as gl, RevokeSession409Details as gn, GetAuthAttempt200ChallengesItem as go, IssueChallenge201State as gr, CreateTeamDefaultDetails as gs, SubmitFlowStep400StepChallenge as gt, UpdateFlowDefinitionDefaultDetails as h, GetKeys4xxDetails as ha, CreateFlowDefinitionBodyFlowDefinitionAudience as hc, GetSchemaByIdDefaultDetails as hi, CreateAuthAttempt201ChallengesItem as hl, RevokeSession409 as hn, GetAuthAttempt200CompletedFactorsItemMethod as ho, IssueChallenge201 as hr, CreateTeamDefault as hs, SubmitFlowStep400StepComplete as ht, VerifyChallengeProof200State as i, GetMySession200FactorsItemPayload as ia, CreateFlowDefinitionBodyFlowDefinitionStepsItem as ic, GetSession401 as ii, CreateFlow201StepActionsItemKind as il, SetUserPassword404Details as in, GetFlowDefinition200FlowDefinitionStepsItemComplete as io, ListFlowDefinitionsDefaultDetails as ir, CreateUserBody as is, SubmitFlowStep400 as it, UpdateFlowDefinition404Details as j, GetFlowStep200StepGatesKind as ja, CreateFlowDefinition201FlowDefinitionStepsItemActionsItem as jc, GetProject200 as ji, ActivateFlowDefinitionDefault as jl, ListUsersDefaultDetails as jn, ExchangeHandoff200Session as jo, GetUserByIDDefault as jr, CreateSession201SessionUserAgent as js, SubmitFlowStep200StepFieldsItemValidation as jt, UpdateFlowDefinitionBodyFlowDefinitionAudience as k, GetFlowStep200StepSsoProvidersItem as ka, CreateFlowDefinition201FlowDefinitionStepsItemGatesConfig as kc, GetProject401 as ki, AuthorizeDevice200 as kl, ListUsersParams as kn, ExchangeHandoff400Details as ko, GetUserInfo4xxDetails as kr, CreateSession201 as ks, SubmitFlowStep200StepGatesConfig as kt, VerifyChallengeProof200ChallengesItem as l, GetLive4xxDetails as la, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as lc, GetSession200Metadata as li, CreateAuthAttempt201 as ll, RevokeTokenBody as ln, GetAuthAttemptDefault as lo, ListFlowDefinitions200FlowDefinitionsItemStatus as lr, CreateUser401 as ls, SubmitFlowStep400StepGatesKind as lt, UpdateFlowDefinitionDefault as m, GetKeys4xx as ma, CreateFlowDefinitionBodyFlowDefinitionStatus as mc, GetSchemaByIdDefault as mi, CreateAuthAttempt201CompletedFactorsItemMethod as ml, RevokeSessionDefaultDetails as mn, GetAuthAttempt200CompletedFactorsItemPayload as mo, IssueChallengeBodyMethod as mr, CreateTeamParams as ms, SubmitFlowStep400StepFieldsItemType as mt, VerifyChallengeProofBody as n, GetMySession200Metadata as na, CreateFlowDefinitionBody as nc, GetSession404 as ni, CreateFlow201StepChallengeMethod as nl, SetUserPassword500Details as nn, GetFlowDefinition200FlowDefinitionStepsItemGatesKind as no, ListFlowDefinitionsPurpose as nr, CreateUserDefault as ns, SubmitFlowStep409 as nt, VerifyChallengeProof200CompletedFactorsItem as o, GetLiveDefault as oa, CreateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as oc, GetSession200 as oi, CreateFlow201BrandingLayout as ol, SetUserPassword400Details as on, GetFlowDefinition200FlowDefinitionStepsItemActionsItemKind as oo, ListFlowDefinitions400Details as or, CreateUser409Details as os, SubmitFlowStep400StepTexts as ot, UpdateFlowDefinitionParams as p, GetKeys200KeysItem as pa, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as pc, GetSchemaByIdParams as pi, CreateAuthAttempt201CompletedFactorsItemPayload as pl, RevokeSessionDefault as pn, GetAuthAttempt200CompletedFactorsItem as po, IssueChallengeBodyPasskeyOptionsUserVerification as pr, CreateUser201 as ps, SubmitFlowStep400StepFieldsItemValidationFormat as pt, UpdateFlowDefinition200FlowDefinitionStatus as q, GetFlowDefinitionDefaultDetails as qa, CreateFlow201StepGatesKind as qc, GetMySessionDefault as qi, ListSessions200 as qn, DeleteFlowDefinition409Details as qo, GetTeamDefaultDetails as qr, CreateProjectDefaultDetails as qs, SubmitFlowEvent404 as qt, VerifyChallengeProof200 as r, GetMySession200FactorsItem as ra, CreateFlowDefinitionBodyFlowDefinition as rc, GetSession404Details as ri, CreateFlow201StepActionsItem as rl, SetUserPassword404 as rn, GetFlowDefinition200FlowDefinitionStepsItemGatesConfig as ro, ListFlowDefinitionsDefault as rr, CreateUserDefaultDetails as rs, SubmitFlowStep409Details as rt, VerifyChallengeProof200CompletedFactorsItemPayload as s, GetLiveDefaultDetails as sa, CreateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as sc, GetSession200UserAgent as si, CreateAuthAttemptDefault as sl, RevokeTokenDefault as sn, GetFlowDefinition200FlowDefinitionStatus as so, ListFlowDefinitions200 as sr, CreateUser403 as ss, SubmitFlowStep400StepSsoProvidersItem as st, VerifyChallengeProofDefault as t, GetMySession200State as ta, CreateFlowDefinitionDefaultDetails as tc, GetSessionDefaultDetails as ti, CreateFlow201StepChallengeOptions as tl, SetUserPassword500 as tn, GetFlowDefinition200FlowDefinitionStepsItemGates as to, ListFlowDefinitionsParams as tr, CreateUserParams as ts, SubmitFlowStepBodyChallengeResponseProof as tt, VerifyChallengeProof200ChallengesItemState as u, GetKeysDefault as ua, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as uc, GetSession200FactorsItem as ui, CreateAuthAttempt201State as ul, RevokeToken4xx as un, GetAuthAttempt200 as uo, IssueChallengeDefault as ur, CreateUser401Details as us, SubmitFlowStep400StepGatesConfig as ut, UpdateFlowDefinitionBodyFlowDefinitionStepsItem as v, GetHealth4xx as va, CreateFlowDefinition400 as vc, GetSchemaById400 as vi, CreateAuthAttempt201ChallengesItemMethod as vl, RevokeSession404Details as vn, GetAuthAttempt200ChallengesItemPayload as vo, IssueChallenge201Method as vr, CreateTeam429 as vs, SubmitFlowStep400StepChallengeMethod as vt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as w, GetFlowStep404 as wa, CreateFlowDefinition201FlowDefinitionStepsItemTransitions as wc, GetReady4xxDetails as wi, AuthorizeDeviceParams as wl, RevokeMySession409Details as wn, ExchangeHandoff410 as wo, Introspect200 as wr, CreateSessionDefaultDetails as ws, SubmitFlowStep200Step as wt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as x, GetFlowStepDefaultDetails as xa, CreateFlowDefinition201Status as xc, GetReadyDefault as xi, AuthorizeGetDefaultDetails as xl, RevokeMySessionDefault as xn, ExchangeHandoffDefault as xo, IntrospectBody as xr, CreateTeam400Details as xs, SubmitFlowStep400Branding as xt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as y, GetHealth4xxDetails as ya, CreateFlowDefinition400Details as yc, GetSchemaById400Details as yi, AuthorizeGetParams as yl, RevokeSession401 as yn, GetAuthAttempt200ChallengesItemMethod as yo, IntrospectDefault as yr, CreateTeam429Details as ys, SubmitFlowStep400StepActionsItem as yt, UpdateFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as z, GetFlowStep200StepChallengeOptions as za, CreateFlowBodyHint as zc, GetOpenIDConfiguration4xx as zi, ListSessionsDefault as zn, EndSessionDefault as zo, GetTokenDefaultDetails as zr, CreateSchemaDefaultDetails as zs, SubmitFlowStep200StepActionsItemKind as zt };
|
|
10416
|
-
//# sourceMappingURL=index-
|
|
10421
|
+
export { SubmitFlowStepBodyChallengeResponse as $, GetFlowDefinition200FlowDefinitionStepsItem as $a, CreateFlow201StepFieldsItemType as $c, GetMySession404Details as $i, ListSessions200SessionsItemFactorsItemMethod as $n, DeactivateFlowDefinition409 as $o, GetTeam401 as $r, CreateProject201 as $s, SetUserPasswordBody as $t, UpdateFlowDefinition404 as A, GetFlowStep200Step as Aa, CreateFlowDefinition201FlowDefinitionStepsItemGatesConfig as Ac, GetProject404 as Ai, AuthorizeDevice200 as Al, ListUsersDefaultDetails as An, ExchangeHandoff400 as Ao, GetUserInfo200 as Ar, CreateSession400Details as As, SubmitFlowStep200StepFieldsItemValidation as At, UpdateFlowDefinition200FlowDefinitionStepsItemGates as B, GetFlowStep200StepComplete as Ba, CreateFlowBodyHint as Bc, GetOpenIDConfiguration200DisplayValuesSupportedItem as Bi, ListSessions403 as Bn, EndSessionParams as Bo, GetUserByID200 as Br, CreateSchemaDefault as Bs, SubmitFlowStep200BrandingLayout as Bt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as C, GetFlowStepDefault as Ca, CreateFlowDefinition201FlowDefinition as Cc, GetSchemaById200 as Ci, AuthorizeGet400 as Cl, RevokeMySession409Details as Cn, ExchangeHandoffDefault as Co, IntrospectDefaultDetails as Cr, CreateTeam400Details as Cs, SubmitFlowStep200Step as Ct, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as D, GetFlowStep404 as Da, CreateFlowDefinition201FlowDefinitionStepsItemOnSuccess as Dc, GetReady4xxDetails as Di, AuthorizeDeviceDefaultDetails as Dl, RevokeMySession401Details as Dn, ExchangeHandoff410Details as Do, Introspect200 as Dr, CreateSessionBody as Ds, SubmitFlowStep200StepGatesKind as Dt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as E, GetFlowStep410Details as Ea, CreateFlowDefinition201FlowDefinitionStepsItemSsoProvidersItem as Ec, GetReady4xx as Ei, AuthorizeDeviceDefault as El, RevokeMySession401 as En, ExchangeHandoff410 as Eo, Introspect400Details as Er, CreateSessionDefaultDetails as Es, SubmitFlowStep200StepGates as Et, UpdateFlowDefinition200FlowDefinition as F, GetFlowStep200StepGatesConfig as Fa, CreateFlowDefinition201FlowDefinitionAudience as Fc, GetOpenIDConfigurationDefault as Fi, ActivateFlowDefinition400Details as Fl, ListUsers200Item as Fn, ExchangeHandoff200SessionState as Fo, GetUserByIDDefaultDetails as Fr, CreateSession201SessionMetadata as Fs, SubmitFlowStep200StepChallengeOptions as Ft, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItemKind as G, GetFlowStep200StepActionsItemKind as Ga, CreateFlow201StepTexts as Gc, GetMyUserDefaultDetails as Gi, ListSessions400Details as Gn, DeleteFlowDefinitionParams as Go, GetToken200 as Gr, CreateSchema400 as Gs, SubmitFlowEventBodyPayload as Gt, UpdateFlowDefinition200FlowDefinitionStepsItemGatesConfig as H, GetFlowStep200StepChallengeOptions as Ha, CreateFlow400Details as Hc, GetOpenIDConfiguration4xx as Hi, ListSessions401 as Hn, EndSessionDefaultDetails as Ho, GetTokenDefaultDetails as Hr, CreateSchemaBody as Hs, SubmitFlowEventDefaultDetails as Ht, UpdateFlowDefinition200FlowDefinitionStepsItem as I, GetFlowStep200StepFieldsItem as Ia, CreateFlowDefault as Ic, GetOpenIDConfigurationDefaultDetails as Ii, ListSessionsParams as In, ExchangeHandoff200SessionMetadata as Io, GetUserByID404 as Ir, CreateSession201SessionFactorsItem as Is, SubmitFlowStep200StepChallengeMethod as It, SubmitFlowStepDefault as J, GetFlowDefinitionParams as Ja, CreateFlow201StepGatesKind as Jc, GetMyUser401Details as Ji, ListSessions200SessionsItemUserAgent as Jn, DeleteFlowDefinition409 as Jo, GetTeamParams as Jr, CreateProjectDefault as Js, SubmitFlowEvent400 as Jt, UpdateFlowDefinition200FlowDefinitionStatus as K, GetFlowStep200Branding as Ka, CreateFlow201StepSsoProvidersItem as Kc, GetMyUser404 as Ki, ListSessions200 as Kn, DeleteFlowDefinitionDefault as Ko, GetToken4xx as Kr, CreateSchema400Details as Ks, SubmitFlowEvent404 as Kt, UpdateFlowDefinition200FlowDefinitionStepsItemTransitions as L, GetFlowStep200StepFieldsItemValidation as La, CreateFlowDefaultDetails as Lc, GetOpenIDConfiguration200 as Li, ListSessionsState as Ln, ExchangeHandoff200SessionFactorsItem as Lo, GetUserByID404Details as Lr, CreateSession201SessionFactorsItemPayload as Ls, SubmitFlowStep200StepActionsItem as Lt, UpdateFlowDefinition400 as M, GetFlowStep200StepSsoProvidersItem as Ma, CreateFlowDefinition201FlowDefinitionStepsItemActionsItem as Mc, GetProject401 as Mi, ActivateFlowDefinitionDefault as Ml, ListUsers500Details as Mn, ExchangeHandoff200 as Mo, GetUserInfo4xxDetails as Mr, CreateSession201Session as Ms, SubmitFlowStep200StepFieldsItemType as Mt, UpdateFlowDefinition400Details as N, GetFlowStep200StepGates as Na, CreateFlowDefinition201FlowDefinitionStepsItemActionsItemKind as Nc, GetProject401Details as Ni, ActivateFlowDefinitionDefaultDetails as Nl, ListUsers400 as Nn, ExchangeHandoff200Session as No, GetUserByIDParams as Nr, CreateSession201SessionUserAgent as Ns, SubmitFlowStep200StepComplete as Nt, UpdateFlowDefinitionBodyFlowDefinitionStatus as O, GetFlowStep404Details as Oa, CreateFlowDefinition201FlowDefinitionStepsItemGates as Oc, GetProjectDefault as Oi, AuthorizeDevice400 as Ol, ListUsersParams as On, ExchangeHandoff401 as Oo, GetUserInfoDefault as Or, CreateSessionBodyUserAgent as Os, SubmitFlowStep200StepGatesConfig as Ot, UpdateFlowDefinition200 as P, GetFlowStep200StepGatesKind as Pa, CreateFlowDefinition201FlowDefinitionStatus as Pc, GetProject200 as Pi, ActivateFlowDefinition400 as Pl, ListUsers400Details as Pn, ExchangeHandoff200SessionUserAgent as Po, GetUserByIDDefault as Pr, CreateSession201SessionState as Ps, SubmitFlowStep200StepChallenge as Pt, SubmitFlowStepBodyFields as Q, GetFlowDefinition200FlowDefinition as Qa, CreateFlow201StepFieldsItemValidationFormat as Qc, GetMySession404 as Qi, ListSessions200SessionsItemFactorsItemPayload as Qn, DeactivateFlowDefinitionDefaultDetails as Qo, GetTeam404Details as Qr, CreateProject429Details as Qs, SetUserPasswordDefaultDetails as Qt, UpdateFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as R, GetFlowStep200StepFieldsItemValidationFormat as Ra, CreateFlowBody as Rc, GetOpenIDConfiguration200TokenEndpointAuthMethodsSupportedItem as Ri, ListSessionsDefault as Rn, ExchangeHandoff200SessionFactorsItemPayload as Ro, GetUserByID401 as Rr, CreateSession201SessionFactorsItemMethod as Rs, SubmitFlowStep200StepActionsItemKind as Rt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGates as S, GetHealth4xxDetails as Sa, CreateFlowDefinition201 as Sc, GetSchemaById400Details as Si, AuthorizeGetDefaultDetails as Sl, RevokeMySession409 as Sn, ExchangeHandoffParams as So, IntrospectDefault as Sr, CreateTeam400 as Ss, SubmitFlowStep200 as St, UpdateFlowDefinitionBodyFlowDefinitionStepsItemComplete as T, GetFlowStep410 as Ta, CreateFlowDefinition201FlowDefinitionStepsItemTransitions as Tc, GetReadyDefaultDetails as Ti, AuthorizeDeviceParams as Tl, RevokeMySession404Details as Tn, ExchangeHandoffBody as To, Introspect400 as Tr, CreateSessionDefault as Ts, SubmitFlowStep200StepSsoProvidersItem as Tt, UpdateFlowDefinition200FlowDefinitionStepsItemComplete as U, GetFlowStep200StepChallengeMethod as Ua, CreateFlow201 as Uc, GetOpenIDConfiguration4xxDetails as Ui, ListSessions401Details as Un, EndSession400 as Uo, GetTokenBody as Ur, CreateSchema409 as Us, SubmitFlowEventBody as Ut, UpdateFlowDefinition200FlowDefinitionStepsItemGatesKind as V, GetFlowStep200StepChallenge as Va, CreateFlow400 as Vc, GetOpenIDConfiguration200ClaimTypesSupportedItem as Vi, ListSessions403Details as Vn, EndSessionDefault as Vo, GetTokenDefault as Vr, CreateSchemaDefaultDetails as Vs, SubmitFlowEventDefault as Vt, UpdateFlowDefinition200FlowDefinitionStepsItemActionsItem as W, GetFlowStep200StepActionsItem as Wa, CreateFlow201Step as Wc, GetMyUserDefault as Wi, ListSessions400 as Wn, EndSession400Details as Wo, GetTokenBodyGrantType as Wr, CreateSchema409Details as Ws, SubmitFlowEventBodyType as Wt, SubmitFlowStepBody as X, GetFlowDefinitionDefaultDetails as Xa, CreateFlow201StepFieldsItem as Xc, GetMySessionDefault as Xi, ListSessions200SessionsItemMetadata as Xn, DeactivateFlowDefinitionParams as Xo, GetTeamDefaultDetails as Xr, CreateProjectBody as Xs, SetUserPasswordParams as Xt, SubmitFlowStepDefaultDetails as Y, GetFlowDefinitionDefault as Ya, CreateFlow201StepGatesConfig as Yc, GetMyUser200 as Yi, ListSessions200SessionsItemState as Yn, DeleteFlowDefinition409Details as Yo, GetTeamDefault as Yr, CreateProjectDefaultDetails as Ys, SubmitFlowEvent400Details as Yt, SubmitFlowStepBodyGateProofs as Z, GetFlowDefinition200 as Za, CreateFlow201StepFieldsItemValidation as Zc, GetMySessionDefaultDetails as Zi, ListSessions200SessionsItemFactorsItem as Zn, DeactivateFlowDefinitionDefault as Zo, GetTeam404 as Zr, CreateProject429 as Zs, SetUserPasswordDefault as Zt, UpdateFlowDefinitionBodyFlowDefinition as _, GetKeys4xx as _a, CreateFlowDefinitionBodyFlowDefinitionAudience as _c, GetSchemaByIdDefault as _i, CreateAuthAttempt201ChallengesItemState as _l, RevokeSession404Details as _n, GetAuthAttempt200CompletedFactorsItemMethod as _o, IssueChallengeBodyMethod as _r, CreateTeamDefault as _s, SubmitFlowStep400StepChallengeMethod as _t, VerifyChallengeProof200RequiredFactorsItem as a, GetMySession200Metadata as aa, CreateFlowDefinitionBodyFlowDefinition as ac, GetSession404 as ai, CreateFlow201StepActionsItemKind as al, SetUserPassword400Details as an, GetFlowDefinition200FlowDefinitionStepsItemGatesConfig as ao, ListFlowDefinitionsPurpose as ar, CreateUserDefaultDetails as as, SubmitFlowStep400StepTexts as at, UpdateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as b, GetHealthDefaultDetails as ba, CreateFlowDefinition400 as bc, GetSchemaById404Details as bi, AuthorizeGetParams as bl, RevokeMySessionDefault as bn, GetAuthAttempt200ChallengesItemPayload as bo, IssueChallenge201Payload as br, CreateTeam429 as bs, SubmitFlowStep400Branding as bt, VerifyChallengeProof200CompletedFactorsItemMethod as c, GetMySession200FactorsItemMethod as ca, CreateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersItem as cc, GetSession401Details as ci, CreateAuthAttemptDefault as cl, RevokeTokenBody as cn, GetFlowDefinition200FlowDefinitionStepsItemActionsItemKind as co, ListFlowDefinitions400 as cr, CreateUser409Details as cs, SubmitFlowStep400StepGatesKind as ct, VerifyChallengeProof200ChallengesItemPayload as d, GetLive4xx as da, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesKind as dc, GetSession200State as di, CreateAuthAttempt201State as dl, RevokeSessionParams as dn, GetAuthAttemptDefault as do, ListFlowDefinitions200FlowDefinitionsItem as dr, CreateUser401 as ds, SubmitFlowStep400StepFieldsItemValidation as dt, GetMySession401 as ea, CreateHandoffDefault as ec, GetTeam401Details as ei, CreateFlow201StepComplete as el, SetUserPassword500 as en, GetFlowDefinition200FlowDefinitionStepsItemTransitions as eo, ListSchemasParams as er, DeactivateFlowDefinition409Details as es, SubmitFlowStepBodyChallengeResponseProof as et, VerifyChallengeProof200ChallengesItemMethod as f, GetLive4xxDetails as fa, CreateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as fc, GetSession200Metadata as fi, CreateAuthAttempt201RequiredFactorsItem as fl, RevokeSessionDefault as fn, GetAuthAttempt200 as fo, ListFlowDefinitions200FlowDefinitionsItemStatus as fr, CreateUser401Details as fs, SubmitFlowStep400StepFieldsItemValidationFormat as ft, UpdateFlowDefinitionBody as g, GetKeys200KeysItem as ga, CreateFlowDefinitionBodyFlowDefinitionStatus as gc, GetSchemaByIdParams as gi, CreateAuthAttempt201ChallengesItem as gl, RevokeSession404 as gn, GetAuthAttempt200CompletedFactorsItemPayload as go, IssueChallengeBodyPasskeyOptionsUserVerification as gr, CreateTeamParams as gs, SubmitFlowStep400StepChallengeOptions as gt, UpdateFlowDefinitionDefaultDetails as h, GetKeys200 as ha, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemKind as hc, GetSession200FactorsItemMethod as hi, CreateAuthAttempt201CompletedFactorsItemMethod as hl, RevokeSession409Details as hn, GetAuthAttempt200CompletedFactorsItem as ho, IssueChallengeBodyPasskeyOptions as hr, CreateUser201 as hs, SubmitFlowStep400StepChallenge as ht, VerifyChallengeProof200State as i, GetMySession200State as ia, CreateFlowDefinitionBody as ic, GetSessionDefaultDetails as ii, CreateFlow201StepActionsItem as il, SetUserPassword400 as in, GetFlowDefinition200FlowDefinitionStepsItemGatesKind as io, ListFlowDefinitionsParams as ir, CreateUserDefault as is, SubmitFlowStep400Step as it, UpdateFlowDefinition404Details as j, GetFlowStep200StepTexts as ja, CreateFlowDefinition201FlowDefinitionStepsItemComplete as jc, GetProject404Details as ji, ActivateFlowDefinitionParams as jl, ListUsers500 as jn, ExchangeHandoff400Details as jo, GetUserInfo4xx as jr, CreateSession201 as js, SubmitFlowStep200StepFieldsItemValidationFormat as jt, UpdateFlowDefinitionBodyFlowDefinitionAudience as k, GetFlowStep200 as ka, CreateFlowDefinition201FlowDefinitionStepsItemGatesKind as kc, GetProjectDefaultDetails as ki, AuthorizeDevice400Details as kl, ListUsersDefault as kn, ExchangeHandoff401Details as ko, GetUserInfoDefaultDetails as kr, CreateSession400 as ks, SubmitFlowStep200StepFieldsItem as kt, VerifyChallengeProof200ChallengesItem as l, GetLiveDefault as la, CreateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as lc, GetSession200 as li, CreateAuthAttemptBody as ll, RevokeToken4xx as ln, GetFlowDefinition200FlowDefinitionStatus as lo, ListFlowDefinitions400Details as lr, CreateUser403 as ls, SubmitFlowStep400StepGatesConfig as lt, UpdateFlowDefinitionDefault as m, GetKeysDefaultDetails as ma, CreateFlowDefinitionBodyFlowDefinitionStepsItemActionsItem as mc, GetSession200FactorsItemPayload as mi, CreateAuthAttempt201CompletedFactorsItemPayload as ml, RevokeSession409 as mn, GetAuthAttempt200RequiredFactorsItem as mo, IssueChallengeBody as mr, CreateUser400Details as ms, SubmitFlowStep400StepComplete as mt, VerifyChallengeProofBody as n, GetMySession200 as na, CreateFlowDefinitionDefault as nc, GetSessionParams as ni, CreateFlow201StepChallengeOptions as nl, SetUserPassword404 as nn, GetFlowDefinition200FlowDefinitionStepsItemOnSuccess as no, ListSchemasDefaultDetails as nr, DeactivateFlowDefinition400Details as ns, SubmitFlowStep409Details as nt, VerifyChallengeProof200CompletedFactorsItem as o, GetMySession200FactorsItem as oa, CreateFlowDefinitionBodyFlowDefinitionStepsItem as oc, GetSession404Details as oi, CreateFlow201Branding as ol, RevokeTokenDefault as on, GetFlowDefinition200FlowDefinitionStepsItemComplete as oo, ListFlowDefinitionsDefault as or, CreateUserBody as os, SubmitFlowStep400StepSsoProvidersItem as ot, UpdateFlowDefinitionParams as p, GetKeysDefault as pa, CreateFlowDefinitionBodyFlowDefinitionStepsItemComplete as pc, GetSession200FactorsItem as pi, CreateAuthAttempt201CompletedFactorsItem as pl, RevokeSessionDefaultDetails as pn, GetAuthAttempt200State as po, IssueChallengeDefault as pr, CreateUser400 as ps, SubmitFlowStep400StepFieldsItemType as pt, UpdateFlowDefinition200FlowDefinitionAudience as q, GetFlowStep200BrandingLayout as qa, CreateFlow201StepGates as qc, GetMyUser401 as qi, ListSessions200SessionsItem as qn, DeleteFlowDefinitionDefaultDetails as qo, GetToken4xxDetails as qr, CreateSchema201 as qs, SubmitFlowEvent404Details as qt, VerifyChallengeProof200 as r, GetMySession200UserAgent as ra, CreateFlowDefinitionDefaultDetails as rc, GetSessionDefault as ri, CreateFlow201StepChallengeMethod as rl, SetUserPassword404Details as rn, GetFlowDefinition200FlowDefinitionStepsItemGates as ro, ListSchemas200Item as rr, CreateUserParams as rs, SubmitFlowStep400 as rt, VerifyChallengeProof200CompletedFactorsItemPayload as s, GetMySession200FactorsItemPayload as sa, CreateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as sc, GetSession401 as si, CreateFlow201BrandingLayout as sl, RevokeTokenDefaultDetails as sn, GetFlowDefinition200FlowDefinitionStepsItemActionsItem as so, ListFlowDefinitionsDefaultDetails as sr, CreateUser409 as ss, SubmitFlowStep400StepGates as st, VerifyChallengeProofDefault as t, GetMySession401Details as ta, CreateHandoff200 as tc, GetTeam200 as ti, CreateFlow201StepChallenge as tl, SetUserPassword500Details as tn, GetFlowDefinition200FlowDefinitionStepsItemSsoProvidersItem as to, ListSchemasDefault as tr, DeactivateFlowDefinition400 as ts, SubmitFlowStep409 as tt, VerifyChallengeProof200ChallengesItemState as u, GetLiveDefaultDetails as ua, CreateFlowDefinitionBodyFlowDefinitionStepsItemGates as uc, GetSession200UserAgent as ui, CreateAuthAttempt201 as ul, RevokeToken4xxDetails as un, GetFlowDefinition200FlowDefinitionAudience as uo, ListFlowDefinitions200 as ur, CreateUser403Details as us, SubmitFlowStep400StepFieldsItem as ut, UpdateFlowDefinitionBodyFlowDefinitionStepsItem as v, GetKeys4xxDetails as va, CreateFlowDefinition409 as vc, GetSchemaByIdDefaultDetails as vi, CreateAuthAttempt201ChallengesItemPayload as vl, RevokeSession401 as vn, GetAuthAttempt200ChallengesItem as vo, IssueChallenge201 as vr, CreateTeamDefaultDetails as vs, SubmitFlowStep400StepActionsItem as vt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemGatesConfig as w, GetFlowStepDefaultDetails as wa, CreateFlowDefinition201FlowDefinitionStepsItem as wc, GetReadyDefault as wi, AuthorizeGet400Details as wl, RevokeMySession404 as wn, ExchangeHandoffDefaultDetails as wo, IntrospectBody as wr, CreateTeam201 as ws, SubmitFlowStep200StepTexts as wt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemOnSuccess as x, GetHealth4xx as xa, CreateFlowDefinition400Details as xc, GetSchemaById400 as xi, AuthorizeGetDefault as xl, RevokeMySessionDefaultDetails as xn, GetAuthAttempt200ChallengesItemMethod as xo, IssueChallenge201Method as xr, CreateTeam429Details as xs, SubmitFlowStep400BrandingLayout as xt, UpdateFlowDefinitionBodyFlowDefinitionStepsItemTransitions as y, GetHealthDefault as ya, CreateFlowDefinition409Details as yc, GetSchemaById404 as yi, CreateAuthAttempt201ChallengesItemMethod as yl, RevokeSession401Details as yn, GetAuthAttempt200ChallengesItemState as yo, IssueChallenge201State as yr, CreateTeamBody as ys, SubmitFlowStep400StepActionsItemKind as yt, UpdateFlowDefinition200FlowDefinitionStepsItemOnSuccess as z, GetFlowStep200StepFieldsItemType as za, CreateFlowBodyPurpose as zc, GetOpenIDConfiguration200SubjectTypesSupportedItem as zi, ListSessionsDefaultDetails as zn, ExchangeHandoff200SessionFactorsItemMethod as zo, GetUserByID401Details as zr, CreateSchemaParams as zs, SubmitFlowStep200Branding as zt };
|
|
10422
|
+
//# sourceMappingURL=index-4CTwhwmD.d.mts.map
|