Skip to content

Commit c85b626

Browse files
wied03andrewpailyleschemmerling
authored
Merge feature/admin-app-reskin (#104)
* add verificationIds to combo API * add skipUserRequirement to other repos * add verificationIds to combo API (#84) * Merge wied03/ENG-2192/pre-verify-form-api (#86) * form step type added to clients * domain object updates * updated form step type * better comments on enum * add verificationIds to combo API (#87) * /api/identity/verify/start pre-verify field rename * camelCase API --------- Co-authored-by: Andy Pai <8798244+andrewpai@users.noreply.github.com> Co-authored-by: Lyle Schemmerling <lshem16@gmail.com>
1 parent 35d2397 commit c85b626

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

openapi.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2281,6 +2281,13 @@ components:
22812281
- Test
22822282
- UserIdentityVerified
22832283
- UserIdentityUpdate
2284+
ExistingUserStrategy:
2285+
description: Represent the various statesexpectations of a user in the context
2286+
of starting verification
2287+
type: string
2288+
enum:
2289+
- mustExist
2290+
- mustNotExist
22842291
ExpandableRequest:
22852292
description: An expandable API request.
22862293
type: object
@@ -2802,6 +2809,16 @@ components:
28022809
items:
28032810
type: string
28042811
format: uuid
2812+
type:
2813+
"$ref": "#/components/schemas/FormStepType"
2814+
FormStepType:
2815+
description: Denotes the type of form step. This is used to configure different
2816+
behavior on form steps in the registration flow.
2817+
type: string
2818+
enum:
2819+
- collectData
2820+
- verifyEmail
2821+
- verifyPhoneNumber
28052822
FormType:
28062823
description: ''
28072824
type: string
@@ -6025,6 +6042,10 @@ components:
60256042
type: boolean
60266043
user:
60276044
"$ref": "#/components/schemas/User"
6045+
verificationIds:
6046+
type: array
6047+
items:
6048+
type: string
60286049
eventInfo:
60296050
"$ref": "#/components/schemas/EventInfo"
60306051
RegistrationResponse:
@@ -6048,6 +6069,10 @@ components:
60486069
"$ref": "#/components/schemas/ZonedDateTime"
60496070
user:
60506071
"$ref": "#/components/schemas/User"
6072+
verificationIds:
6073+
type: array
6074+
items:
6075+
"$ref": "#/components/schemas/VerificationId"
60516076
RegistrationType:
60526077
type: string
60536078
enum:
@@ -9123,6 +9148,8 @@ components:
91239148
applicationId:
91249149
type: string
91259150
format: uuid
9151+
existingUserStrategy:
9152+
"$ref": "#/components/schemas/ExistingUserStrategy"
91269153
loginId:
91279154
type: string
91289155
loginIdType:

0 commit comments

Comments
 (0)