@zitadel/api 0.1.0-alpha.13 → 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 +33 -4
- package/dist/generated/endpoints/zitadelNextGen.msw.mjs.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.zod.d.mts +39 -9
- package/dist/generated/endpoints/zitadelNextGen.zod.d.mts.map +1 -1
- package/dist/generated/endpoints/zitadelNextGen.zod.mjs +37 -8
- package/dist/generated/endpoints/zitadelNextGen.zod.mjs.map +1 -1
- package/dist/generated/model/index.d.mts +2 -2
- package/dist/{index-DLJ0vloQ.d.mts → index-4CTwhwmD.d.mts} +123 -21
- package/dist/index-4CTwhwmD.d.mts.map +1 -0
- package/dist/runtime/api-factory.d.mts +1 -1
- package/dist/{zitadelNextGen-CVTkhQJe.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 +39 -3
- package/src/generated/endpoints/zitadelNextGen.ts +34 -0
- package/src/generated/endpoints/zitadelNextGen.zod.ts +73 -10
- package/src/generated/model/createFlowDefinition201FlowDefinition.ts +5 -3
- package/src/generated/model/createFlowDefinitionBodyFlowDefinition.ts +5 -3
- package/src/generated/model/createProjectBody.ts +5 -0
- package/src/generated/model/createSchemaBody.ts +9 -1
- package/src/generated/model/getFlowDefinition200FlowDefinition.ts +5 -3
- package/src/generated/model/getSchemaById200.ts +9 -1
- package/src/generated/model/index.ts +4 -0
- 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/updateFlowDefinition200FlowDefinition.ts +5 -3
- package/src/generated/model/updateFlowDefinitionBodyFlowDefinition.ts +5 -3
- package/dist/index-DLJ0vloQ.d.mts.map +0 -1
- package/dist/zitadelNextGen-CVTkhQJe.d.mts.map +0 -1
|
@@ -312,11 +312,11 @@ declare const GetFlowStepResponse: zod.ZodObject<{
|
|
|
312
312
|
name: zod.ZodString;
|
|
313
313
|
type: zod.ZodEnum<{
|
|
314
314
|
number: "number";
|
|
315
|
-
email: "email";
|
|
316
315
|
url: "url";
|
|
317
|
-
text: "text";
|
|
318
316
|
date: "date";
|
|
317
|
+
email: "email";
|
|
319
318
|
password: "password";
|
|
319
|
+
text: "text";
|
|
320
320
|
tel: "tel";
|
|
321
321
|
hidden: "hidden";
|
|
322
322
|
checkbox: "checkbox";
|
|
@@ -462,11 +462,11 @@ declare const SubmitFlowStepResponse: zod.ZodObject<{
|
|
|
462
462
|
name: zod.ZodString;
|
|
463
463
|
type: zod.ZodEnum<{
|
|
464
464
|
number: "number";
|
|
465
|
-
email: "email";
|
|
466
465
|
url: "url";
|
|
467
|
-
text: "text";
|
|
468
466
|
date: "date";
|
|
467
|
+
email: "email";
|
|
469
468
|
password: "password";
|
|
469
|
+
text: "text";
|
|
470
470
|
tel: "tel";
|
|
471
471
|
hidden: "hidden";
|
|
472
472
|
checkbox: "checkbox";
|
|
@@ -828,8 +828,10 @@ declare const CreateHandoffResponse: zod.ZodObject<{
|
|
|
828
828
|
/**
|
|
829
829
|
* @summary Create project
|
|
830
830
|
*/
|
|
831
|
+
declare const createProjectBodySeedDefaultsDefault = true;
|
|
831
832
|
declare const CreateProjectBody: zod.ZodObject<{
|
|
832
833
|
previewOrigins: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
834
|
+
seedDefaults: zod.ZodDefault<zod.ZodBoolean>;
|
|
833
835
|
}, zod.z.core.$strip>;
|
|
834
836
|
/**
|
|
835
837
|
* Returns the current state of a project.
|
|
@@ -1163,6 +1165,7 @@ declare const CreateSchemaQueryParams: zod.ZodObject<{
|
|
|
1163
1165
|
project_id: zod.ZodString;
|
|
1164
1166
|
team_id: zod.ZodOptional<zod.ZodString>;
|
|
1165
1167
|
}, zod.z.core.$strict>;
|
|
1168
|
+
declare const createSchemaBodyOneObjectTypeMax = 256;
|
|
1166
1169
|
declare const createSchemaBodyOneXAuthMethodsPasswordPositionMin = 0;
|
|
1167
1170
|
declare const createSchemaBodyOneXAuthMethodsPasskeyPositionMin = 0;
|
|
1168
1171
|
declare const createSchemaBodyOneXAuthMethodsMagicLinkPositionMin = 0;
|
|
@@ -1172,6 +1175,7 @@ declare const createSchemaBodyOnePropertiesXEditableDefault = true;
|
|
|
1172
1175
|
declare const createSchemaBodyOnePropertiesXSensitiveDefault = false;
|
|
1173
1176
|
declare const createSchemaBodyOnePropertiesXMfaDefault = false;
|
|
1174
1177
|
declare const CreateSchemaBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
1178
|
+
objectType: zod.ZodOptional<zod.ZodString>;
|
|
1175
1179
|
kind: zod.ZodLiteral<"user-schema">;
|
|
1176
1180
|
metaSchema: zod.ZodURL;
|
|
1177
1181
|
"x-auth-methods": zod.ZodObject<{
|
|
@@ -1213,6 +1217,30 @@ declare const CreateSchemaBody: zod.ZodUnion<readonly [zod.ZodObject<{
|
|
|
1213
1217
|
kind: zod.ZodLiteral<"schema-url">;
|
|
1214
1218
|
url: zod.ZodURL;
|
|
1215
1219
|
}, zod.z.core.$strip>]>;
|
|
1220
|
+
/**
|
|
1221
|
+
* Retrieve a list of all schemas available in the system. This endpoint
|
|
1222
|
+
supports pagination and filtering based on schema attributes.
|
|
1223
|
+
|
|
1224
|
+
* @summary List all schemas
|
|
1225
|
+
*/
|
|
1226
|
+
declare const listSchemasQueryProjectIdRegExp: RegExp;
|
|
1227
|
+
declare const listSchemasQueryOffsetDefault = 0;
|
|
1228
|
+
declare const listSchemasQueryOffsetMin = 0;
|
|
1229
|
+
declare const listSchemasQueryObjectTypeMax = 256;
|
|
1230
|
+
declare const ListSchemasQueryParams: zod.ZodObject<{
|
|
1231
|
+
project_id: zod.ZodString;
|
|
1232
|
+
offset: zod.ZodDefault<zod.ZodNumber>;
|
|
1233
|
+
page_token: zod.ZodOptional<zod.ZodString>;
|
|
1234
|
+
object_type: zod.ZodOptional<zod.ZodString>;
|
|
1235
|
+
}, zod.z.core.$strict>;
|
|
1236
|
+
declare const ListSchemasResponseItem: zod.ZodObject<{
|
|
1237
|
+
id: zod.ZodString;
|
|
1238
|
+
createdAt: zod.z.ZodISODateTime;
|
|
1239
|
+
}, zod.z.core.$strip>;
|
|
1240
|
+
declare const ListSchemasResponse: zod.ZodArray<zod.ZodObject<{
|
|
1241
|
+
id: zod.ZodString;
|
|
1242
|
+
createdAt: zod.z.ZodISODateTime;
|
|
1243
|
+
}, zod.z.core.$strip>>;
|
|
1216
1244
|
/**
|
|
1217
1245
|
* Get a schema by its ID. This will return the default revision of the schema.
|
|
1218
1246
|
* @summary Get schema by ID
|
|
@@ -1226,6 +1254,7 @@ declare const GetSchemaByIdQueryParams: zod.ZodObject<{
|
|
|
1226
1254
|
project_id: zod.ZodString;
|
|
1227
1255
|
team_id: zod.ZodOptional<zod.ZodString>;
|
|
1228
1256
|
}, zod.z.core.$strict>;
|
|
1257
|
+
declare const getSchemaByIdResponseOneObjectTypeMax = 256;
|
|
1229
1258
|
declare const getSchemaByIdResponseOneXAuthMethodsPasswordPositionMin = 0;
|
|
1230
1259
|
declare const getSchemaByIdResponseOneXAuthMethodsPasskeyPositionMin = 0;
|
|
1231
1260
|
declare const getSchemaByIdResponseOneXAuthMethodsMagicLinkPositionMin = 0;
|
|
@@ -1235,6 +1264,7 @@ declare const getSchemaByIdResponseOnePropertiesXEditableDefault = true;
|
|
|
1235
1264
|
declare const getSchemaByIdResponseOnePropertiesXSensitiveDefault = false;
|
|
1236
1265
|
declare const getSchemaByIdResponseOnePropertiesXMfaDefault = false;
|
|
1237
1266
|
declare const GetSchemaByIdResponse: zod.ZodObject<{
|
|
1267
|
+
objectType: zod.ZodOptional<zod.ZodString>;
|
|
1238
1268
|
kind: zod.ZodLiteral<"user-schema">;
|
|
1239
1269
|
metaSchema: zod.ZodURL;
|
|
1240
1270
|
"x-auth-methods": zod.ZodObject<{
|
|
@@ -1298,7 +1328,7 @@ declare const CreateFlowDefinitionBody: zod.ZodObject<{
|
|
|
1298
1328
|
active: "active";
|
|
1299
1329
|
draft: "draft";
|
|
1300
1330
|
}>;
|
|
1301
|
-
user_schema: zod.
|
|
1331
|
+
user_schema: zod.ZodString;
|
|
1302
1332
|
purposes: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
1303
1333
|
audience: zod.ZodOptional<zod.ZodObject<{
|
|
1304
1334
|
team_ids: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
@@ -1412,7 +1442,7 @@ declare const GetFlowDefinitionResponse: zod.ZodObject<{
|
|
|
1412
1442
|
active: "active";
|
|
1413
1443
|
draft: "draft";
|
|
1414
1444
|
}>;
|
|
1415
|
-
user_schema: zod.
|
|
1445
|
+
user_schema: zod.ZodString;
|
|
1416
1446
|
purposes: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
1417
1447
|
audience: zod.ZodOptional<zod.ZodObject<{
|
|
1418
1448
|
team_ids: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
@@ -1491,7 +1521,7 @@ declare const UpdateFlowDefinitionBody: zod.ZodObject<{
|
|
|
1491
1521
|
active: "active";
|
|
1492
1522
|
draft: "draft";
|
|
1493
1523
|
}>;
|
|
1494
|
-
user_schema: zod.
|
|
1524
|
+
user_schema: zod.ZodString;
|
|
1495
1525
|
purposes: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
1496
1526
|
audience: zod.ZodOptional<zod.ZodObject<{
|
|
1497
1527
|
team_ids: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
@@ -1556,7 +1586,7 @@ declare const UpdateFlowDefinitionResponse: zod.ZodObject<{
|
|
|
1556
1586
|
active: "active";
|
|
1557
1587
|
draft: "draft";
|
|
1558
1588
|
}>;
|
|
1559
|
-
user_schema: zod.
|
|
1589
|
+
user_schema: zod.ZodString;
|
|
1560
1590
|
purposes: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
1561
1591
|
audience: zod.ZodOptional<zod.ZodObject<{
|
|
1562
1592
|
team_ids: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
@@ -1676,5 +1706,5 @@ declare const GetTeamResponse: zod.ZodObject<{
|
|
|
1676
1706
|
updatedAt: zod.z.ZodISODateTime;
|
|
1677
1707
|
}, zod.z.core.$strip>;
|
|
1678
1708
|
//#endregion
|
|
1679
|
-
export { ActivateFlowDefinitionParams, ActivateFlowDefinitionQueryParams, AuthorizeDeviceQueryParams, AuthorizeDeviceResponse, AuthorizeGetQueryParams, CreateAuthAttemptBody, CreateFlowBody, CreateFlowDefinitionBody, CreateHandoffHeader, CreateHandoffParams, CreateHandoffResponse, CreateProjectBody, CreateSchemaBody, CreateSchemaQueryParams, CreateSessionBody, CreateTeamBody, CreateTeamQueryParams, CreateUserBody, CreateUserQueryParams, DeactivateFlowDefinitionParams, DeactivateFlowDefinitionQueryParams, DeleteFlowDefinitionParams, DeleteFlowDefinitionQueryParams, EndSessionQueryParams, ExchangeHandoffBody, ExchangeHandoffHeader, ExchangeHandoffQueryParams, ExchangeHandoffResponse, GetAuthAttemptParams, GetAuthAttemptResponse, GetFlowDefinitionParams, GetFlowDefinitionQueryParams, GetFlowDefinitionResponse, GetFlowStepParams, GetFlowStepResponse, GetKeysResponse, GetMySessionResponse, GetMyUserResponse, GetOpenIDConfigurationResponse, GetProjectParams, GetProjectResponse, GetSchemaByIdParams, GetSchemaByIdQueryParams, GetSchemaByIdResponse, GetSessionParams, GetSessionQueryParams, GetSessionResponse, GetTeamParams, GetTeamQueryParams, GetTeamResponse, GetTokenResponse, GetUserByIDParams, GetUserByIDQueryParams, GetUserByIDResponse, GetUserInfoResponse, IntrospectResponse, IssueChallengeBody, IssueChallengeParams, ListFlowDefinitionsQueryParams, ListFlowDefinitionsResponse, ListSessionsQueryParams, ListSessionsResponse, ListUsersQueryParams, ListUsersResponse, ListUsersResponseItem, RevokeSessionParams, RevokeSessionQueryParams, SetUserPasswordBody, SetUserPasswordParams, SetUserPasswordQueryParams, SubmitFlowEventBody, SubmitFlowEventParams, SubmitFlowStepBody, SubmitFlowStepHeader, SubmitFlowStepParams, SubmitFlowStepResponse, UpdateFlowDefinitionBody, UpdateFlowDefinitionParams, UpdateFlowDefinitionQueryParams, UpdateFlowDefinitionResponse, VerifyChallengeProofBody, VerifyChallengeProofHeader, VerifyChallengeProofParams, VerifyChallengeProofResponse, activateFlowDefinitionQueryProjectIdRegExp, createAuthAttemptBodyProjectIdRegExp, createAuthAttemptBodySessionIdOneRegExp, createFlowBodyDryRunDefault, createFlowBodyFlowDefinitionNameRegExp, createFlowBodyProjectIdRegExp, createFlowBodySchemaVersionRegExp, createFlowDefinitionBodyFlowDefinitionNameRegExp, createFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, createFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, createFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, createFlowDefinitionBodyProjectIdRegExp, createHandoffPathAttemptIdRegExp, createSchemaBodyOnePropertiesXEditableDefault, createSchemaBodyOnePropertiesXMfaDefault, createSchemaBodyOnePropertiesXSensitiveDefault, createSchemaBodyOneXAuthMethodsMagicLinkPositionMin, createSchemaBodyOneXAuthMethodsOtpPositionMin, createSchemaBodyOneXAuthMethodsPasskeyPositionMin, createSchemaBodyOneXAuthMethodsPasswordPositionMin, createSchemaBodyOneXAuthMethodsSsoPositionMin, createSchemaQueryProjectIdRegExp, createSchemaQueryTeamIdRegExp, createSessionBodyProjectIdRegExp, createTeamQueryProjectIdRegExp, createUserQueryProjectIdRegExp, createUserQueryTeamIdRegExp, deactivateFlowDefinitionQueryProjectIdRegExp, deleteFlowDefinitionQueryProjectIdRegExp, exchangeHandoffQueryProjectIdRegExp, exchangeHandoffResponseSessionFactorsItemPayloadOneUserIdRegExp, exchangeHandoffResponseSessionProjectIdRegExp, exchangeHandoffResponseSessionSessionIdRegExp, exchangeHandoffResponseSessionUserIdOneRegExp, getAuthAttemptPathAttemptIdRegExp, getAuthAttemptResponseAttemptIdRegExp, getAuthAttemptResponseChallengesItemChallengeIdRegExp, getAuthAttemptResponseCompletedFactorsItemPayloadOneUserIdRegExp, getAuthAttemptResponseProjectIdRegExp, getAuthAttemptResponseSessionIdOneRegExp, getAuthAttemptResponseUserIdOneRegExp, getFlowDefinitionQueryProjectIdRegExp, getFlowDefinitionResponseFlowDefinitionNameRegExp, getFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, getFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, getFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, getFlowStepResponseBrandingLayoutDefault, getFlowStepResponseStepActionsDefault, getFlowStepResponseStepActionsItemPrimaryDefault, getFlowStepResponseStepFieldsDefault, getFlowStepResponseStepFieldsItemRequiredDefault, getFlowStepResponseStepFieldsItemValidationMaxLengthMin, getFlowStepResponseStepFieldsItemValidationMinLengthMin, getFlowStepResponseStepGatesDefault, getFlowStepResponseStepSsoProvidersDefault, getMySessionResponseFactorsItemPayloadOneUserIdRegExp, getMySessionResponseProjectIdRegExp, getMySessionResponseSessionIdRegExp, getMySessionResponseUserIdOneRegExp, getOpenIDConfigurationResponseClaimsParameterSupportedDefault, getOpenIDConfigurationResponseRequestParameterSupportedDefault, getOpenIDConfigurationResponseRequestUriParameterSupportedDefault, getOpenIDConfigurationResponseRequireRequestUriRegistrationDefault, getProjectPathProjectIdRegExp, getSchemaByIdQueryProjectIdRegExp, getSchemaByIdQueryTeamIdRegExp, getSchemaByIdResponseOnePropertiesXEditableDefault, getSchemaByIdResponseOnePropertiesXMfaDefault, getSchemaByIdResponseOnePropertiesXSensitiveDefault, getSchemaByIdResponseOneXAuthMethodsMagicLinkPositionMin, getSchemaByIdResponseOneXAuthMethodsOtpPositionMin, getSchemaByIdResponseOneXAuthMethodsPasskeyPositionMin, getSchemaByIdResponseOneXAuthMethodsPasswordPositionMin, getSchemaByIdResponseOneXAuthMethodsSsoPositionMin, getSessionPathSessionIdRegExp, getSessionQueryProjectIdRegExp, getSessionResponseFactorsItemPayloadOneUserIdRegExp, getSessionResponseProjectIdRegExp, getSessionResponseSessionIdRegExp, getSessionResponseUserIdOneRegExp, getTeamPathTeamIdRegExp, getTeamQueryProjectIdRegExp, getUserByIDPathUserIdRegExp, getUserByIDQueryProjectIdRegExp, getUserByIDQueryTeamIdRegExp, issueChallengePathAttemptIdRegExp, listFlowDefinitionsQueryLimitDefault, listFlowDefinitionsQueryLimitMax, listFlowDefinitionsQueryProjectIdRegExp, listFlowDefinitionsResponseFlowDefinitionsItemNameRegExp, listSessionsQueryLimitDefault, listSessionsQueryLimitMax, listSessionsQueryProjectIdRegExp, listSessionsQueryUserIdRegExp, listSessionsResponseSessionsItemFactorsItemPayloadOneUserIdRegExp, listSessionsResponseSessionsItemProjectIdRegExp, listSessionsResponseSessionsItemSessionIdRegExp, listSessionsResponseSessionsItemUserIdOneRegExp, listUsersQueryLimitDefault, listUsersQueryLimitMax, listUsersQueryOffsetDefault, listUsersQueryOffsetMin, revokeSessionPathSessionIdRegExp, revokeSessionQueryProjectIdRegExp, setUserPasswordPathUserIdRegExp, setUserPasswordQueryProjectIdRegExp, submitFlowStepResponseBrandingLayoutDefault, submitFlowStepResponseStepActionsDefault, submitFlowStepResponseStepActionsItemPrimaryDefault, submitFlowStepResponseStepFieldsDefault, submitFlowStepResponseStepFieldsItemRequiredDefault, submitFlowStepResponseStepFieldsItemValidationMaxLengthMin, submitFlowStepResponseStepFieldsItemValidationMinLengthMin, submitFlowStepResponseStepGatesDefault, submitFlowStepResponseStepSsoProvidersDefault, updateFlowDefinitionBodyFlowDefinitionNameRegExp, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, updateFlowDefinitionQueryProjectIdRegExp, updateFlowDefinitionResponseFlowDefinitionNameRegExp, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, verifyChallengeProofPathAttemptIdRegExp, verifyChallengeProofPathChallengeIdRegExp, verifyChallengeProofResponseAttemptIdRegExp, verifyChallengeProofResponseChallengesItemChallengeIdRegExp, verifyChallengeProofResponseCompletedFactorsItemPayloadOneUserIdRegExp, verifyChallengeProofResponseProjectIdRegExp, verifyChallengeProofResponseSessionIdOneRegExp, verifyChallengeProofResponseUserIdOneRegExp };
|
|
1709
|
+
export { ActivateFlowDefinitionParams, ActivateFlowDefinitionQueryParams, AuthorizeDeviceQueryParams, AuthorizeDeviceResponse, AuthorizeGetQueryParams, CreateAuthAttemptBody, CreateFlowBody, CreateFlowDefinitionBody, CreateHandoffHeader, CreateHandoffParams, CreateHandoffResponse, CreateProjectBody, CreateSchemaBody, CreateSchemaQueryParams, CreateSessionBody, CreateTeamBody, CreateTeamQueryParams, CreateUserBody, CreateUserQueryParams, DeactivateFlowDefinitionParams, DeactivateFlowDefinitionQueryParams, DeleteFlowDefinitionParams, DeleteFlowDefinitionQueryParams, EndSessionQueryParams, ExchangeHandoffBody, ExchangeHandoffHeader, ExchangeHandoffQueryParams, ExchangeHandoffResponse, GetAuthAttemptParams, GetAuthAttemptResponse, GetFlowDefinitionParams, GetFlowDefinitionQueryParams, GetFlowDefinitionResponse, GetFlowStepParams, GetFlowStepResponse, GetKeysResponse, GetMySessionResponse, GetMyUserResponse, GetOpenIDConfigurationResponse, GetProjectParams, GetProjectResponse, GetSchemaByIdParams, GetSchemaByIdQueryParams, GetSchemaByIdResponse, GetSessionParams, GetSessionQueryParams, GetSessionResponse, GetTeamParams, GetTeamQueryParams, GetTeamResponse, GetTokenResponse, GetUserByIDParams, GetUserByIDQueryParams, GetUserByIDResponse, GetUserInfoResponse, IntrospectResponse, IssueChallengeBody, IssueChallengeParams, ListFlowDefinitionsQueryParams, ListFlowDefinitionsResponse, ListSchemasQueryParams, ListSchemasResponse, ListSchemasResponseItem, ListSessionsQueryParams, ListSessionsResponse, ListUsersQueryParams, ListUsersResponse, ListUsersResponseItem, RevokeSessionParams, RevokeSessionQueryParams, SetUserPasswordBody, SetUserPasswordParams, SetUserPasswordQueryParams, SubmitFlowEventBody, SubmitFlowEventParams, SubmitFlowStepBody, SubmitFlowStepHeader, SubmitFlowStepParams, SubmitFlowStepResponse, UpdateFlowDefinitionBody, UpdateFlowDefinitionParams, UpdateFlowDefinitionQueryParams, UpdateFlowDefinitionResponse, VerifyChallengeProofBody, VerifyChallengeProofHeader, VerifyChallengeProofParams, VerifyChallengeProofResponse, activateFlowDefinitionQueryProjectIdRegExp, createAuthAttemptBodyProjectIdRegExp, createAuthAttemptBodySessionIdOneRegExp, createFlowBodyDryRunDefault, createFlowBodyFlowDefinitionNameRegExp, createFlowBodyProjectIdRegExp, createFlowBodySchemaVersionRegExp, createFlowDefinitionBodyFlowDefinitionNameRegExp, createFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, createFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, createFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, createFlowDefinitionBodyProjectIdRegExp, createHandoffPathAttemptIdRegExp, createProjectBodySeedDefaultsDefault, createSchemaBodyOneObjectTypeMax, createSchemaBodyOnePropertiesXEditableDefault, createSchemaBodyOnePropertiesXMfaDefault, createSchemaBodyOnePropertiesXSensitiveDefault, createSchemaBodyOneXAuthMethodsMagicLinkPositionMin, createSchemaBodyOneXAuthMethodsOtpPositionMin, createSchemaBodyOneXAuthMethodsPasskeyPositionMin, createSchemaBodyOneXAuthMethodsPasswordPositionMin, createSchemaBodyOneXAuthMethodsSsoPositionMin, createSchemaQueryProjectIdRegExp, createSchemaQueryTeamIdRegExp, createSessionBodyProjectIdRegExp, createTeamQueryProjectIdRegExp, createUserQueryProjectIdRegExp, createUserQueryTeamIdRegExp, deactivateFlowDefinitionQueryProjectIdRegExp, deleteFlowDefinitionQueryProjectIdRegExp, exchangeHandoffQueryProjectIdRegExp, exchangeHandoffResponseSessionFactorsItemPayloadOneUserIdRegExp, exchangeHandoffResponseSessionProjectIdRegExp, exchangeHandoffResponseSessionSessionIdRegExp, exchangeHandoffResponseSessionUserIdOneRegExp, getAuthAttemptPathAttemptIdRegExp, getAuthAttemptResponseAttemptIdRegExp, getAuthAttemptResponseChallengesItemChallengeIdRegExp, getAuthAttemptResponseCompletedFactorsItemPayloadOneUserIdRegExp, getAuthAttemptResponseProjectIdRegExp, getAuthAttemptResponseSessionIdOneRegExp, getAuthAttemptResponseUserIdOneRegExp, getFlowDefinitionQueryProjectIdRegExp, getFlowDefinitionResponseFlowDefinitionNameRegExp, getFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, getFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, getFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, getFlowStepResponseBrandingLayoutDefault, getFlowStepResponseStepActionsDefault, getFlowStepResponseStepActionsItemPrimaryDefault, getFlowStepResponseStepFieldsDefault, getFlowStepResponseStepFieldsItemRequiredDefault, getFlowStepResponseStepFieldsItemValidationMaxLengthMin, getFlowStepResponseStepFieldsItemValidationMinLengthMin, getFlowStepResponseStepGatesDefault, getFlowStepResponseStepSsoProvidersDefault, getMySessionResponseFactorsItemPayloadOneUserIdRegExp, getMySessionResponseProjectIdRegExp, getMySessionResponseSessionIdRegExp, getMySessionResponseUserIdOneRegExp, getOpenIDConfigurationResponseClaimsParameterSupportedDefault, getOpenIDConfigurationResponseRequestParameterSupportedDefault, getOpenIDConfigurationResponseRequestUriParameterSupportedDefault, getOpenIDConfigurationResponseRequireRequestUriRegistrationDefault, getProjectPathProjectIdRegExp, getSchemaByIdQueryProjectIdRegExp, getSchemaByIdQueryTeamIdRegExp, getSchemaByIdResponseOneObjectTypeMax, getSchemaByIdResponseOnePropertiesXEditableDefault, getSchemaByIdResponseOnePropertiesXMfaDefault, getSchemaByIdResponseOnePropertiesXSensitiveDefault, getSchemaByIdResponseOneXAuthMethodsMagicLinkPositionMin, getSchemaByIdResponseOneXAuthMethodsOtpPositionMin, getSchemaByIdResponseOneXAuthMethodsPasskeyPositionMin, getSchemaByIdResponseOneXAuthMethodsPasswordPositionMin, getSchemaByIdResponseOneXAuthMethodsSsoPositionMin, getSessionPathSessionIdRegExp, getSessionQueryProjectIdRegExp, getSessionResponseFactorsItemPayloadOneUserIdRegExp, getSessionResponseProjectIdRegExp, getSessionResponseSessionIdRegExp, getSessionResponseUserIdOneRegExp, getTeamPathTeamIdRegExp, getTeamQueryProjectIdRegExp, getUserByIDPathUserIdRegExp, getUserByIDQueryProjectIdRegExp, getUserByIDQueryTeamIdRegExp, issueChallengePathAttemptIdRegExp, listFlowDefinitionsQueryLimitDefault, listFlowDefinitionsQueryLimitMax, listFlowDefinitionsQueryProjectIdRegExp, listFlowDefinitionsResponseFlowDefinitionsItemNameRegExp, listSchemasQueryObjectTypeMax, listSchemasQueryOffsetDefault, listSchemasQueryOffsetMin, listSchemasQueryProjectIdRegExp, listSessionsQueryLimitDefault, listSessionsQueryLimitMax, listSessionsQueryProjectIdRegExp, listSessionsQueryUserIdRegExp, listSessionsResponseSessionsItemFactorsItemPayloadOneUserIdRegExp, listSessionsResponseSessionsItemProjectIdRegExp, listSessionsResponseSessionsItemSessionIdRegExp, listSessionsResponseSessionsItemUserIdOneRegExp, listUsersQueryLimitDefault, listUsersQueryLimitMax, listUsersQueryOffsetDefault, listUsersQueryOffsetMin, revokeSessionPathSessionIdRegExp, revokeSessionQueryProjectIdRegExp, setUserPasswordPathUserIdRegExp, setUserPasswordQueryProjectIdRegExp, submitFlowStepResponseBrandingLayoutDefault, submitFlowStepResponseStepActionsDefault, submitFlowStepResponseStepActionsItemPrimaryDefault, submitFlowStepResponseStepFieldsDefault, submitFlowStepResponseStepFieldsItemRequiredDefault, submitFlowStepResponseStepFieldsItemValidationMaxLengthMin, submitFlowStepResponseStepFieldsItemValidationMinLengthMin, submitFlowStepResponseStepGatesDefault, submitFlowStepResponseStepSsoProvidersDefault, updateFlowDefinitionBodyFlowDefinitionNameRegExp, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, updateFlowDefinitionQueryProjectIdRegExp, updateFlowDefinitionResponseFlowDefinitionNameRegExp, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, verifyChallengeProofPathAttemptIdRegExp, verifyChallengeProofPathChallengeIdRegExp, verifyChallengeProofResponseAttemptIdRegExp, verifyChallengeProofResponseChallengesItemChallengeIdRegExp, verifyChallengeProofResponseCompletedFactorsItemPayloadOneUserIdRegExp, verifyChallengeProofResponseProjectIdRegExp, verifyChallengeProofResponseSessionIdOneRegExp, verifyChallengeProofResponseUserIdOneRegExp };
|
|
1680
1710
|
//# sourceMappingURL=zitadelNextGen.zod.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zitadelNextGen.zod.d.mts","names":[],"sources":["../../../src/generated/endpoints/zitadelNextGen.zod.ts"],"mappings":"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
|
|
1
|
+
{"version":3,"file":"zitadelNextGen.zod.d.mts","names":[],"sources":["../../../src/generated/endpoints/zitadelNextGen.zod.ts"],"mappings":"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"}
|
|
@@ -774,7 +774,11 @@ const CreateHandoffResponse = zod.object({
|
|
|
774
774
|
/**
|
|
775
775
|
* @summary Create project
|
|
776
776
|
*/
|
|
777
|
-
const
|
|
777
|
+
const createProjectBodySeedDefaultsDefault = true;
|
|
778
|
+
const CreateProjectBody = zod.object({
|
|
779
|
+
previewOrigins: zod.array(zod.string()).optional().describe("Origins which are allowed for previewing and testing the project.\n"),
|
|
780
|
+
seedDefaults: zod.boolean().default(true).describe("Whether the server should provision fallback default user schema and flow\nresources for the project. CLI-managed projects set this to false and\nupload their local .zitadel config files through the schema and flow APIs.\n")
|
|
781
|
+
});
|
|
778
782
|
/**
|
|
779
783
|
* Returns the current state of a project.
|
|
780
784
|
|
|
@@ -1089,6 +1093,7 @@ const CreateSchemaQueryParams = zod.strictObject({
|
|
|
1089
1093
|
project_id: zod.string().regex(createSchemaQueryProjectIdRegExp).describe("The unique identifier of the project"),
|
|
1090
1094
|
team_id: zod.string().regex(createSchemaQueryTeamIdRegExp).optional().describe("The unique identifier of the team")
|
|
1091
1095
|
});
|
|
1096
|
+
const createSchemaBodyOneObjectTypeMax = 256;
|
|
1092
1097
|
const createSchemaBodyOneXAuthMethodsPasswordPositionMin = 0;
|
|
1093
1098
|
const createSchemaBodyOneXAuthMethodsPasskeyPositionMin = 0;
|
|
1094
1099
|
const createSchemaBodyOneXAuthMethodsMagicLinkPositionMin = 0;
|
|
@@ -1098,6 +1103,7 @@ const createSchemaBodyOnePropertiesXEditableDefault = true;
|
|
|
1098
1103
|
const createSchemaBodyOnePropertiesXSensitiveDefault = false;
|
|
1099
1104
|
const createSchemaBodyOnePropertiesXMfaDefault = false;
|
|
1100
1105
|
const CreateSchemaBody = zod.union([zod.object({
|
|
1106
|
+
objectType: zod.string().max(256).optional().describe("The type of user this schema describes. This is a customer chosen name.\n"),
|
|
1101
1107
|
kind: zod.literal("user-schema").describe("Discriminator value for a user schema create request."),
|
|
1102
1108
|
metaSchema: zod.url().describe("The user Schema version used for this schema."),
|
|
1103
1109
|
"x-auth-methods": zod.object({
|
|
@@ -1134,12 +1140,33 @@ const CreateSchemaBody = zod.union([zod.object({
|
|
|
1134
1140
|
"x-sensitive": zod.boolean().default(false).describe("Whether this property contains sensitive information or not"),
|
|
1135
1141
|
"x-mfa": zod.boolean().default(false).describe("Whether this property is used for multi-factor authentication or not"),
|
|
1136
1142
|
properties: zod.record(zod.string(), zod.unknown()).optional().describe("A map of additional properties for the user definition, where the key is the property name and the value is the property schema")
|
|
1137
|
-
}).describe("This schema is missing `\"allOf\": [{\"$ref\": \"https://json-schema.org/draft/2020-12/schema\"}],`. \nThis is done because a lot of code generators cannot handle that.\n")).optional().describe("A map of additional properties for the user definition, where the
|
|
1143
|
+
}).describe("This schema is missing `\"allOf\": [{\"$ref\": \"https://json-schema.org/draft/2020-12/schema\"}],`. \nThis is done because a lot of code generators cannot handle that.\n")).optional().describe("A map of additional properties for the user definition, where the\nkey is the property name and the value is the property schema\n")
|
|
1138
1144
|
}).describe("This schema is missing `\"allOf\": [{\"$ref\": \"https://json-schema.org/draft/2020-12/schema\"}],`. \nThis is done because a lot of code generators cannot handle that.\n"), zod.object({
|
|
1139
1145
|
kind: zod.literal("schema-url").describe("Discriminator value for a user schema create request."),
|
|
1140
1146
|
url: zod.url().describe("URL to the schema definition.")
|
|
1141
1147
|
}).describe("A schema definition that references an external schema via a URL. It is \non creation, validated against its metaschema and cached in the database.\n")]);
|
|
1142
1148
|
/**
|
|
1149
|
+
* Retrieve a list of all schemas available in the system. This endpoint
|
|
1150
|
+
supports pagination and filtering based on schema attributes.
|
|
1151
|
+
|
|
1152
|
+
* @summary List all schemas
|
|
1153
|
+
*/
|
|
1154
|
+
const listSchemasQueryProjectIdRegExp = /* @__PURE__ */ new RegExp("^[a-zA-Z0-9_-]+$");
|
|
1155
|
+
const listSchemasQueryOffsetDefault = 0;
|
|
1156
|
+
const listSchemasQueryOffsetMin = 0;
|
|
1157
|
+
const listSchemasQueryObjectTypeMax = 256;
|
|
1158
|
+
const ListSchemasQueryParams = zod.strictObject({
|
|
1159
|
+
project_id: zod.string().regex(listSchemasQueryProjectIdRegExp).describe("The unique identifier of the project"),
|
|
1160
|
+
offset: zod.number().min(0).default(0).describe("Number of items to skip before returning results."),
|
|
1161
|
+
page_token: zod.string().optional().describe("Token for fetching the next page of results.\nObtain this value from `next_page_token` in the previous response.\nOmit to start from the beginning.\nIts format is opaque and may change between releases.\n"),
|
|
1162
|
+
object_type: zod.string().max(256).optional().describe("The type of object of the schema to filter by.")
|
|
1163
|
+
});
|
|
1164
|
+
const ListSchemasResponseItem = zod.object({
|
|
1165
|
+
id: zod.string().describe("The unique identifier for this schema."),
|
|
1166
|
+
createdAt: zod.iso.datetime({ offset: true })
|
|
1167
|
+
});
|
|
1168
|
+
const ListSchemasResponse = zod.array(ListSchemasResponseItem);
|
|
1169
|
+
/**
|
|
1143
1170
|
* Get a schema by its ID. This will return the default revision of the schema.
|
|
1144
1171
|
* @summary Get schema by ID
|
|
1145
1172
|
*/
|
|
@@ -1150,6 +1177,7 @@ const GetSchemaByIdQueryParams = zod.strictObject({
|
|
|
1150
1177
|
project_id: zod.string().regex(getSchemaByIdQueryProjectIdRegExp).describe("The unique identifier of the project"),
|
|
1151
1178
|
team_id: zod.string().regex(getSchemaByIdQueryTeamIdRegExp).optional().describe("The unique identifier of the team")
|
|
1152
1179
|
});
|
|
1180
|
+
const getSchemaByIdResponseOneObjectTypeMax = 256;
|
|
1153
1181
|
const getSchemaByIdResponseOneXAuthMethodsPasswordPositionMin = 0;
|
|
1154
1182
|
const getSchemaByIdResponseOneXAuthMethodsPasskeyPositionMin = 0;
|
|
1155
1183
|
const getSchemaByIdResponseOneXAuthMethodsMagicLinkPositionMin = 0;
|
|
@@ -1159,6 +1187,7 @@ const getSchemaByIdResponseOnePropertiesXEditableDefault = true;
|
|
|
1159
1187
|
const getSchemaByIdResponseOnePropertiesXSensitiveDefault = false;
|
|
1160
1188
|
const getSchemaByIdResponseOnePropertiesXMfaDefault = false;
|
|
1161
1189
|
const GetSchemaByIdResponse = zod.object({
|
|
1190
|
+
objectType: zod.string().max(256).optional().describe("The type of user this schema describes. This is a customer chosen name.\n"),
|
|
1162
1191
|
kind: zod.literal("user-schema").describe("Discriminator value for a user schema create request."),
|
|
1163
1192
|
metaSchema: zod.url().describe("The user Schema version used for this schema."),
|
|
1164
1193
|
"x-auth-methods": zod.object({
|
|
@@ -1195,7 +1224,7 @@ const GetSchemaByIdResponse = zod.object({
|
|
|
1195
1224
|
"x-sensitive": zod.boolean().default(false).describe("Whether this property contains sensitive information or not"),
|
|
1196
1225
|
"x-mfa": zod.boolean().default(false).describe("Whether this property is used for multi-factor authentication or not"),
|
|
1197
1226
|
properties: zod.record(zod.string(), zod.unknown()).optional().describe("A map of additional properties for the user definition, where the key is the property name and the value is the property schema")
|
|
1198
|
-
}).describe("This schema is missing `\"allOf\": [{\"$ref\": \"https://json-schema.org/draft/2020-12/schema\"}],`. \nThis is done because a lot of code generators cannot handle that.\n")).optional().describe("A map of additional properties for the user definition, where the
|
|
1227
|
+
}).describe("This schema is missing `\"allOf\": [{\"$ref\": \"https://json-schema.org/draft/2020-12/schema\"}],`. \nThis is done because a lot of code generators cannot handle that.\n")).optional().describe("A map of additional properties for the user definition, where the\nkey is the property name and the value is the property schema\n")
|
|
1199
1228
|
}).describe("This schema is missing `\"allOf\": [{\"$ref\": \"https://json-schema.org/draft/2020-12/schema\"}],`. \nThis is done because a lot of code generators cannot handle that.\n");
|
|
1200
1229
|
/**
|
|
1201
1230
|
* Creates a new flow definition.
|
|
@@ -1219,7 +1248,7 @@ const CreateFlowDefinitionBody = zod.object({
|
|
|
1219
1248
|
flow_definition: zod.object({
|
|
1220
1249
|
name: zod.string().regex(createFlowDefinitionBodyFlowDefinitionNameRegExp).describe("Stable identifier for this flow, used as the target of cross-flow\n`switch` and `pivot` transitions. Renaming is not supported — the\n`name` is part of the public contract another definition may\nreference. Acts as the human display label as well; no separate slug.\n"),
|
|
1221
1250
|
status: zod.enum(["active", "draft"]).describe("The lifecycle state of this flow definition. \n\nactive: The flow definition is ready to be used. The flow engine can select it for new flows.\ndraft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.\n\nAllowed transitions:\n- draft -> active: To activate the flow definition.\n- active -> draft: To remove the flow definition from active use immediately.\n"),
|
|
1222
|
-
user_schema: zod.
|
|
1251
|
+
user_schema: zod.string().describe("Server-assigned identifier of the user schema this flow operates on,\nas returned by `POST /schemas`. Opaque to the client — the shape is a\nserver implementation detail. Step `fields` reference properties\ndefined in the resolved schema; the engine resolves field types, validation, and\nimplicit outcomes from schema annotations at runtime.\n"),
|
|
1223
1252
|
purposes: zod.record(zod.string(), zod.string()).describe("Maps each purpose this definition handles to its entry-point step.\nKeys are purpose names; values must match a `name` in `steps`. A\ndefinition can serve multiple purposes (e.g. a combined login/register\nflow) by listing one entry per purpose.\n"),
|
|
1224
1253
|
audience: zod.object({
|
|
1225
1254
|
team_ids: zod.array(zod.string()).optional().describe("Restrict to specific teams (organizations). Empty means no team restriction."),
|
|
@@ -1313,7 +1342,7 @@ const GetFlowDefinitionResponse = zod.object({
|
|
|
1313
1342
|
flow_definition: zod.object({
|
|
1314
1343
|
name: zod.string().regex(getFlowDefinitionResponseFlowDefinitionNameRegExp).describe("Stable identifier for this flow, used as the target of cross-flow\n`switch` and `pivot` transitions. Renaming is not supported — the\n`name` is part of the public contract another definition may\nreference. Acts as the human display label as well; no separate slug.\n"),
|
|
1315
1344
|
status: zod.enum(["active", "draft"]).describe("The lifecycle state of this flow definition. \n\nactive: The flow definition is ready to be used. The flow engine can select it for new flows.\ndraft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.\n\nAllowed transitions:\n- draft -> active: To activate the flow definition.\n- active -> draft: To remove the flow definition from active use immediately.\n"),
|
|
1316
|
-
user_schema: zod.
|
|
1345
|
+
user_schema: zod.string().describe("Server-assigned identifier of the user schema this flow operates on,\nas returned by `POST /schemas`. Opaque to the client — the shape is a\nserver implementation detail. Step `fields` reference properties\ndefined in the resolved schema; the engine resolves field types, validation, and\nimplicit outcomes from schema annotations at runtime.\n"),
|
|
1317
1346
|
purposes: zod.record(zod.string(), zod.string()).describe("Maps each purpose this definition handles to its entry-point step.\nKeys are purpose names; values must match a `name` in `steps`. A\ndefinition can serve multiple purposes (e.g. a combined login/register\nflow) by listing one entry per purpose.\n"),
|
|
1318
1347
|
audience: zod.object({
|
|
1319
1348
|
team_ids: zod.array(zod.string()).optional().describe("Restrict to specific teams (organizations). Empty means no team restriction."),
|
|
@@ -1375,7 +1404,7 @@ const UpdateFlowDefinitionBody = zod.object({
|
|
|
1375
1404
|
flow_definition: zod.object({
|
|
1376
1405
|
name: zod.string().regex(updateFlowDefinitionBodyFlowDefinitionNameRegExp).describe("Stable identifier for this flow, used as the target of cross-flow\n`switch` and `pivot` transitions. Renaming is not supported — the\n`name` is part of the public contract another definition may\nreference. Acts as the human display label as well; no separate slug.\n"),
|
|
1377
1406
|
status: zod.enum(["active", "draft"]).describe("The lifecycle state of this flow definition. \n\nactive: The flow definition is ready to be used. The flow engine can select it for new flows.\ndraft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.\n\nAllowed transitions:\n- draft -> active: To activate the flow definition.\n- active -> draft: To remove the flow definition from active use immediately.\n"),
|
|
1378
|
-
user_schema: zod.
|
|
1407
|
+
user_schema: zod.string().describe("Server-assigned identifier of the user schema this flow operates on,\nas returned by `POST /schemas`. Opaque to the client — the shape is a\nserver implementation detail. Step `fields` reference properties\ndefined in the resolved schema; the engine resolves field types, validation, and\nimplicit outcomes from schema annotations at runtime.\n"),
|
|
1379
1408
|
purposes: zod.record(zod.string(), zod.string()).describe("Maps each purpose this definition handles to its entry-point step.\nKeys are purpose names; values must match a `name` in `steps`. A\ndefinition can serve multiple purposes (e.g. a combined login/register\nflow) by listing one entry per purpose.\n"),
|
|
1380
1409
|
audience: zod.object({
|
|
1381
1410
|
team_ids: zod.array(zod.string()).optional().describe("Restrict to specific teams (organizations). Empty means no team restriction."),
|
|
@@ -1427,7 +1456,7 @@ const UpdateFlowDefinitionResponse = zod.object({
|
|
|
1427
1456
|
flow_definition: zod.object({
|
|
1428
1457
|
name: zod.string().regex(updateFlowDefinitionResponseFlowDefinitionNameRegExp).describe("Stable identifier for this flow, used as the target of cross-flow\n`switch` and `pivot` transitions. Renaming is not supported — the\n`name` is part of the public contract another definition may\nreference. Acts as the human display label as well; no separate slug.\n"),
|
|
1429
1458
|
status: zod.enum(["active", "draft"]).describe("The lifecycle state of this flow definition. \n\nactive: The flow definition is ready to be used. The flow engine can select it for new flows.\ndraft: The engine will not select it for new flows, and existing flows must handle it gracefully if they reference this definition.\n\nAllowed transitions:\n- draft -> active: To activate the flow definition.\n- active -> draft: To remove the flow definition from active use immediately.\n"),
|
|
1430
|
-
user_schema: zod.
|
|
1459
|
+
user_schema: zod.string().describe("Server-assigned identifier of the user schema this flow operates on,\nas returned by `POST /schemas`. Opaque to the client — the shape is a\nserver implementation detail. Step `fields` reference properties\ndefined in the resolved schema; the engine resolves field types, validation, and\nimplicit outcomes from schema annotations at runtime.\n"),
|
|
1431
1460
|
purposes: zod.record(zod.string(), zod.string()).describe("Maps each purpose this definition handles to its entry-point step.\nKeys are purpose names; values must match a `name` in `steps`. A\ndefinition can serve multiple purposes (e.g. a combined login/register\nflow) by listing one entry per purpose.\n"),
|
|
1432
1461
|
audience: zod.object({
|
|
1433
1462
|
team_ids: zod.array(zod.string()).optional().describe("Restrict to specific teams (organizations). Empty means no team restriction."),
|
|
@@ -1519,6 +1548,6 @@ const GetTeamResponse = zod.object({
|
|
|
1519
1548
|
updatedAt: zod.iso.datetime({ offset: true }).describe("The time when the team was last updated.")
|
|
1520
1549
|
}).describe("The current state of a team.");
|
|
1521
1550
|
//#endregion
|
|
1522
|
-
export { ActivateFlowDefinitionParams, ActivateFlowDefinitionQueryParams, AuthorizeDeviceQueryParams, AuthorizeDeviceResponse, AuthorizeGetQueryParams, CreateAuthAttemptBody, CreateFlowBody, CreateFlowDefinitionBody, CreateHandoffHeader, CreateHandoffParams, CreateHandoffResponse, CreateProjectBody, CreateSchemaBody, CreateSchemaQueryParams, CreateSessionBody, CreateTeamBody, CreateTeamQueryParams, CreateUserBody, CreateUserQueryParams, DeactivateFlowDefinitionParams, DeactivateFlowDefinitionQueryParams, DeleteFlowDefinitionParams, DeleteFlowDefinitionQueryParams, EndSessionQueryParams, ExchangeHandoffBody, ExchangeHandoffHeader, ExchangeHandoffQueryParams, ExchangeHandoffResponse, GetAuthAttemptParams, GetAuthAttemptResponse, GetFlowDefinitionParams, GetFlowDefinitionQueryParams, GetFlowDefinitionResponse, GetFlowStepParams, GetFlowStepResponse, GetKeysResponse, GetMySessionResponse, GetMyUserResponse, GetOpenIDConfigurationResponse, GetProjectParams, GetProjectResponse, GetSchemaByIdParams, GetSchemaByIdQueryParams, GetSchemaByIdResponse, GetSessionParams, GetSessionQueryParams, GetSessionResponse, GetTeamParams, GetTeamQueryParams, GetTeamResponse, GetTokenResponse, GetUserByIDParams, GetUserByIDQueryParams, GetUserByIDResponse, GetUserInfoResponse, IntrospectResponse, IssueChallengeBody, IssueChallengeParams, ListFlowDefinitionsQueryParams, ListFlowDefinitionsResponse, ListSessionsQueryParams, ListSessionsResponse, ListUsersQueryParams, ListUsersResponse, ListUsersResponseItem, RevokeSessionParams, RevokeSessionQueryParams, SetUserPasswordBody, SetUserPasswordParams, SetUserPasswordQueryParams, SubmitFlowEventBody, SubmitFlowEventParams, SubmitFlowStepBody, SubmitFlowStepHeader, SubmitFlowStepParams, SubmitFlowStepResponse, UpdateFlowDefinitionBody, UpdateFlowDefinitionParams, UpdateFlowDefinitionQueryParams, UpdateFlowDefinitionResponse, VerifyChallengeProofBody, VerifyChallengeProofHeader, VerifyChallengeProofParams, VerifyChallengeProofResponse, activateFlowDefinitionQueryProjectIdRegExp, createAuthAttemptBodyProjectIdRegExp, createAuthAttemptBodySessionIdOneRegExp, createFlowBodyDryRunDefault, createFlowBodyFlowDefinitionNameRegExp, createFlowBodyProjectIdRegExp, createFlowBodySchemaVersionRegExp, createFlowDefinitionBodyFlowDefinitionNameRegExp, createFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, createFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, createFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, createFlowDefinitionBodyProjectIdRegExp, createHandoffPathAttemptIdRegExp, createSchemaBodyOnePropertiesXEditableDefault, createSchemaBodyOnePropertiesXMfaDefault, createSchemaBodyOnePropertiesXSensitiveDefault, createSchemaBodyOneXAuthMethodsMagicLinkPositionMin, createSchemaBodyOneXAuthMethodsOtpPositionMin, createSchemaBodyOneXAuthMethodsPasskeyPositionMin, createSchemaBodyOneXAuthMethodsPasswordPositionMin, createSchemaBodyOneXAuthMethodsSsoPositionMin, createSchemaQueryProjectIdRegExp, createSchemaQueryTeamIdRegExp, createSessionBodyProjectIdRegExp, createTeamQueryProjectIdRegExp, createUserQueryProjectIdRegExp, createUserQueryTeamIdRegExp, deactivateFlowDefinitionQueryProjectIdRegExp, deleteFlowDefinitionQueryProjectIdRegExp, exchangeHandoffQueryProjectIdRegExp, exchangeHandoffResponseSessionFactorsItemPayloadOneUserIdRegExp, exchangeHandoffResponseSessionProjectIdRegExp, exchangeHandoffResponseSessionSessionIdRegExp, exchangeHandoffResponseSessionUserIdOneRegExp, getAuthAttemptPathAttemptIdRegExp, getAuthAttemptResponseAttemptIdRegExp, getAuthAttemptResponseChallengesItemChallengeIdRegExp, getAuthAttemptResponseCompletedFactorsItemPayloadOneUserIdRegExp, getAuthAttemptResponseProjectIdRegExp, getAuthAttemptResponseSessionIdOneRegExp, getAuthAttemptResponseUserIdOneRegExp, getFlowDefinitionQueryProjectIdRegExp, getFlowDefinitionResponseFlowDefinitionNameRegExp, getFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, getFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, getFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, getFlowStepResponseBrandingLayoutDefault, getFlowStepResponseStepActionsDefault, getFlowStepResponseStepActionsItemPrimaryDefault, getFlowStepResponseStepFieldsDefault, getFlowStepResponseStepFieldsItemRequiredDefault, getFlowStepResponseStepFieldsItemValidationMaxLengthMin, getFlowStepResponseStepFieldsItemValidationMinLengthMin, getFlowStepResponseStepGatesDefault, getFlowStepResponseStepSsoProvidersDefault, getMySessionResponseFactorsItemPayloadOneUserIdRegExp, getMySessionResponseProjectIdRegExp, getMySessionResponseSessionIdRegExp, getMySessionResponseUserIdOneRegExp, getOpenIDConfigurationResponseClaimsParameterSupportedDefault, getOpenIDConfigurationResponseRequestParameterSupportedDefault, getOpenIDConfigurationResponseRequestUriParameterSupportedDefault, getOpenIDConfigurationResponseRequireRequestUriRegistrationDefault, getProjectPathProjectIdRegExp, getSchemaByIdQueryProjectIdRegExp, getSchemaByIdQueryTeamIdRegExp, getSchemaByIdResponseOnePropertiesXEditableDefault, getSchemaByIdResponseOnePropertiesXMfaDefault, getSchemaByIdResponseOnePropertiesXSensitiveDefault, getSchemaByIdResponseOneXAuthMethodsMagicLinkPositionMin, getSchemaByIdResponseOneXAuthMethodsOtpPositionMin, getSchemaByIdResponseOneXAuthMethodsPasskeyPositionMin, getSchemaByIdResponseOneXAuthMethodsPasswordPositionMin, getSchemaByIdResponseOneXAuthMethodsSsoPositionMin, getSessionPathSessionIdRegExp, getSessionQueryProjectIdRegExp, getSessionResponseFactorsItemPayloadOneUserIdRegExp, getSessionResponseProjectIdRegExp, getSessionResponseSessionIdRegExp, getSessionResponseUserIdOneRegExp, getTeamPathTeamIdRegExp, getTeamQueryProjectIdRegExp, getUserByIDPathUserIdRegExp, getUserByIDQueryProjectIdRegExp, getUserByIDQueryTeamIdRegExp, issueChallengePathAttemptIdRegExp, listFlowDefinitionsQueryLimitDefault, listFlowDefinitionsQueryLimitMax, listFlowDefinitionsQueryProjectIdRegExp, listFlowDefinitionsResponseFlowDefinitionsItemNameRegExp, listSessionsQueryLimitDefault, listSessionsQueryLimitMax, listSessionsQueryProjectIdRegExp, listSessionsQueryUserIdRegExp, listSessionsResponseSessionsItemFactorsItemPayloadOneUserIdRegExp, listSessionsResponseSessionsItemProjectIdRegExp, listSessionsResponseSessionsItemSessionIdRegExp, listSessionsResponseSessionsItemUserIdOneRegExp, listUsersQueryLimitDefault, listUsersQueryLimitMax, listUsersQueryOffsetDefault, listUsersQueryOffsetMin, revokeSessionPathSessionIdRegExp, revokeSessionQueryProjectIdRegExp, setUserPasswordPathUserIdRegExp, setUserPasswordQueryProjectIdRegExp, submitFlowStepResponseBrandingLayoutDefault, submitFlowStepResponseStepActionsDefault, submitFlowStepResponseStepActionsItemPrimaryDefault, submitFlowStepResponseStepFieldsDefault, submitFlowStepResponseStepFieldsItemRequiredDefault, submitFlowStepResponseStepFieldsItemValidationMaxLengthMin, submitFlowStepResponseStepFieldsItemValidationMinLengthMin, submitFlowStepResponseStepGatesDefault, submitFlowStepResponseStepSsoProvidersDefault, updateFlowDefinitionBodyFlowDefinitionNameRegExp, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, updateFlowDefinitionQueryProjectIdRegExp, updateFlowDefinitionResponseFlowDefinitionNameRegExp, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, verifyChallengeProofPathAttemptIdRegExp, verifyChallengeProofPathChallengeIdRegExp, verifyChallengeProofResponseAttemptIdRegExp, verifyChallengeProofResponseChallengesItemChallengeIdRegExp, verifyChallengeProofResponseCompletedFactorsItemPayloadOneUserIdRegExp, verifyChallengeProofResponseProjectIdRegExp, verifyChallengeProofResponseSessionIdOneRegExp, verifyChallengeProofResponseUserIdOneRegExp };
|
|
1551
|
+
export { ActivateFlowDefinitionParams, ActivateFlowDefinitionQueryParams, AuthorizeDeviceQueryParams, AuthorizeDeviceResponse, AuthorizeGetQueryParams, CreateAuthAttemptBody, CreateFlowBody, CreateFlowDefinitionBody, CreateHandoffHeader, CreateHandoffParams, CreateHandoffResponse, CreateProjectBody, CreateSchemaBody, CreateSchemaQueryParams, CreateSessionBody, CreateTeamBody, CreateTeamQueryParams, CreateUserBody, CreateUserQueryParams, DeactivateFlowDefinitionParams, DeactivateFlowDefinitionQueryParams, DeleteFlowDefinitionParams, DeleteFlowDefinitionQueryParams, EndSessionQueryParams, ExchangeHandoffBody, ExchangeHandoffHeader, ExchangeHandoffQueryParams, ExchangeHandoffResponse, GetAuthAttemptParams, GetAuthAttemptResponse, GetFlowDefinitionParams, GetFlowDefinitionQueryParams, GetFlowDefinitionResponse, GetFlowStepParams, GetFlowStepResponse, GetKeysResponse, GetMySessionResponse, GetMyUserResponse, GetOpenIDConfigurationResponse, GetProjectParams, GetProjectResponse, GetSchemaByIdParams, GetSchemaByIdQueryParams, GetSchemaByIdResponse, GetSessionParams, GetSessionQueryParams, GetSessionResponse, GetTeamParams, GetTeamQueryParams, GetTeamResponse, GetTokenResponse, GetUserByIDParams, GetUserByIDQueryParams, GetUserByIDResponse, GetUserInfoResponse, IntrospectResponse, IssueChallengeBody, IssueChallengeParams, ListFlowDefinitionsQueryParams, ListFlowDefinitionsResponse, ListSchemasQueryParams, ListSchemasResponse, ListSchemasResponseItem, ListSessionsQueryParams, ListSessionsResponse, ListUsersQueryParams, ListUsersResponse, ListUsersResponseItem, RevokeSessionParams, RevokeSessionQueryParams, SetUserPasswordBody, SetUserPasswordParams, SetUserPasswordQueryParams, SubmitFlowEventBody, SubmitFlowEventParams, SubmitFlowStepBody, SubmitFlowStepHeader, SubmitFlowStepParams, SubmitFlowStepResponse, UpdateFlowDefinitionBody, UpdateFlowDefinitionParams, UpdateFlowDefinitionQueryParams, UpdateFlowDefinitionResponse, VerifyChallengeProofBody, VerifyChallengeProofHeader, VerifyChallengeProofParams, VerifyChallengeProofResponse, activateFlowDefinitionQueryProjectIdRegExp, createAuthAttemptBodyProjectIdRegExp, createAuthAttemptBodySessionIdOneRegExp, createFlowBodyDryRunDefault, createFlowBodyFlowDefinitionNameRegExp, createFlowBodyProjectIdRegExp, createFlowBodySchemaVersionRegExp, createFlowDefinitionBodyFlowDefinitionNameRegExp, createFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, createFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, createFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, createFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, createFlowDefinitionBodyProjectIdRegExp, createHandoffPathAttemptIdRegExp, createProjectBodySeedDefaultsDefault, createSchemaBodyOneObjectTypeMax, createSchemaBodyOnePropertiesXEditableDefault, createSchemaBodyOnePropertiesXMfaDefault, createSchemaBodyOnePropertiesXSensitiveDefault, createSchemaBodyOneXAuthMethodsMagicLinkPositionMin, createSchemaBodyOneXAuthMethodsOtpPositionMin, createSchemaBodyOneXAuthMethodsPasskeyPositionMin, createSchemaBodyOneXAuthMethodsPasswordPositionMin, createSchemaBodyOneXAuthMethodsSsoPositionMin, createSchemaQueryProjectIdRegExp, createSchemaQueryTeamIdRegExp, createSessionBodyProjectIdRegExp, createTeamQueryProjectIdRegExp, createUserQueryProjectIdRegExp, createUserQueryTeamIdRegExp, deactivateFlowDefinitionQueryProjectIdRegExp, deleteFlowDefinitionQueryProjectIdRegExp, exchangeHandoffQueryProjectIdRegExp, exchangeHandoffResponseSessionFactorsItemPayloadOneUserIdRegExp, exchangeHandoffResponseSessionProjectIdRegExp, exchangeHandoffResponseSessionSessionIdRegExp, exchangeHandoffResponseSessionUserIdOneRegExp, getAuthAttemptPathAttemptIdRegExp, getAuthAttemptResponseAttemptIdRegExp, getAuthAttemptResponseChallengesItemChallengeIdRegExp, getAuthAttemptResponseCompletedFactorsItemPayloadOneUserIdRegExp, getAuthAttemptResponseProjectIdRegExp, getAuthAttemptResponseSessionIdOneRegExp, getAuthAttemptResponseUserIdOneRegExp, getFlowDefinitionQueryProjectIdRegExp, getFlowDefinitionResponseFlowDefinitionNameRegExp, getFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, getFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, getFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, getFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, getFlowStepResponseBrandingLayoutDefault, getFlowStepResponseStepActionsDefault, getFlowStepResponseStepActionsItemPrimaryDefault, getFlowStepResponseStepFieldsDefault, getFlowStepResponseStepFieldsItemRequiredDefault, getFlowStepResponseStepFieldsItemValidationMaxLengthMin, getFlowStepResponseStepFieldsItemValidationMinLengthMin, getFlowStepResponseStepGatesDefault, getFlowStepResponseStepSsoProvidersDefault, getMySessionResponseFactorsItemPayloadOneUserIdRegExp, getMySessionResponseProjectIdRegExp, getMySessionResponseSessionIdRegExp, getMySessionResponseUserIdOneRegExp, getOpenIDConfigurationResponseClaimsParameterSupportedDefault, getOpenIDConfigurationResponseRequestParameterSupportedDefault, getOpenIDConfigurationResponseRequestUriParameterSupportedDefault, getOpenIDConfigurationResponseRequireRequestUriRegistrationDefault, getProjectPathProjectIdRegExp, getSchemaByIdQueryProjectIdRegExp, getSchemaByIdQueryTeamIdRegExp, getSchemaByIdResponseOneObjectTypeMax, getSchemaByIdResponseOnePropertiesXEditableDefault, getSchemaByIdResponseOnePropertiesXMfaDefault, getSchemaByIdResponseOnePropertiesXSensitiveDefault, getSchemaByIdResponseOneXAuthMethodsMagicLinkPositionMin, getSchemaByIdResponseOneXAuthMethodsOtpPositionMin, getSchemaByIdResponseOneXAuthMethodsPasskeyPositionMin, getSchemaByIdResponseOneXAuthMethodsPasswordPositionMin, getSchemaByIdResponseOneXAuthMethodsSsoPositionMin, getSessionPathSessionIdRegExp, getSessionQueryProjectIdRegExp, getSessionResponseFactorsItemPayloadOneUserIdRegExp, getSessionResponseProjectIdRegExp, getSessionResponseSessionIdRegExp, getSessionResponseUserIdOneRegExp, getTeamPathTeamIdRegExp, getTeamQueryProjectIdRegExp, getUserByIDPathUserIdRegExp, getUserByIDQueryProjectIdRegExp, getUserByIDQueryTeamIdRegExp, issueChallengePathAttemptIdRegExp, listFlowDefinitionsQueryLimitDefault, listFlowDefinitionsQueryLimitMax, listFlowDefinitionsQueryProjectIdRegExp, listFlowDefinitionsResponseFlowDefinitionsItemNameRegExp, listSchemasQueryObjectTypeMax, listSchemasQueryOffsetDefault, listSchemasQueryOffsetMin, listSchemasQueryProjectIdRegExp, listSessionsQueryLimitDefault, listSessionsQueryLimitMax, listSessionsQueryProjectIdRegExp, listSessionsQueryUserIdRegExp, listSessionsResponseSessionsItemFactorsItemPayloadOneUserIdRegExp, listSessionsResponseSessionsItemProjectIdRegExp, listSessionsResponseSessionsItemSessionIdRegExp, listSessionsResponseSessionsItemUserIdOneRegExp, listUsersQueryLimitDefault, listUsersQueryLimitMax, listUsersQueryOffsetDefault, listUsersQueryOffsetMin, revokeSessionPathSessionIdRegExp, revokeSessionQueryProjectIdRegExp, setUserPasswordPathUserIdRegExp, setUserPasswordQueryProjectIdRegExp, submitFlowStepResponseBrandingLayoutDefault, submitFlowStepResponseStepActionsDefault, submitFlowStepResponseStepActionsItemPrimaryDefault, submitFlowStepResponseStepFieldsDefault, submitFlowStepResponseStepFieldsItemRequiredDefault, submitFlowStepResponseStepFieldsItemValidationMaxLengthMin, submitFlowStepResponseStepFieldsItemValidationMinLengthMin, submitFlowStepResponseStepGatesDefault, submitFlowStepResponseStepSsoProvidersDefault, updateFlowDefinitionBodyFlowDefinitionNameRegExp, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionBodyFlowDefinitionStepsItemSsoProvidersDefault, updateFlowDefinitionQueryProjectIdRegExp, updateFlowDefinitionResponseFlowDefinitionNameRegExp, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemActionsItemPrimaryDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemFieldsDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemGatesDefault, updateFlowDefinitionResponseFlowDefinitionStepsItemSsoProvidersDefault, verifyChallengeProofPathAttemptIdRegExp, verifyChallengeProofPathChallengeIdRegExp, verifyChallengeProofResponseAttemptIdRegExp, verifyChallengeProofResponseChallengesItemChallengeIdRegExp, verifyChallengeProofResponseCompletedFactorsItemPayloadOneUserIdRegExp, verifyChallengeProofResponseProjectIdRegExp, verifyChallengeProofResponseSessionIdOneRegExp, verifyChallengeProofResponseUserIdOneRegExp };
|
|
1523
1552
|
|
|
1524
1553
|
//# sourceMappingURL=zitadelNextGen.zod.mjs.map
|