Skip to content

Commit b2e51a5

Browse files
author
FusionAuth Automation
committed
sync from monorepo f925969b3a30
1 parent 9a6a31f commit b2e51a5

1 file changed

Lines changed: 76 additions & 1 deletion

File tree

openapi.yaml

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,8 @@ components:
417417
"$ref": "#/components/schemas/MultiFactorSMSTemplate"
418418
trustPolicy:
419419
"$ref": "#/components/schemas/ApplicationMultiFactorTrustPolicy"
420+
voice:
421+
"$ref": "#/components/schemas/MultiFactorVoiceTemplate"
420422
ApplicationMultiFactorTrustPolicy:
421423
description: ''
422424
type: string
@@ -956,6 +958,10 @@ components:
956958
"$ref": "#/components/schemas/ZonedDateTime"
957959
lastUpdateInstant:
958960
"$ref": "#/components/schemas/ZonedDateTime"
961+
messageTypes:
962+
type: array
963+
uniqueItems: true
964+
items: {}
959965
name:
960966
type: string
961967
transport:
@@ -2991,6 +2997,10 @@ components:
29912997
"$ref": "#/components/schemas/ZonedDateTime"
29922998
lastUpdateInstant:
29932999
"$ref": "#/components/schemas/ZonedDateTime"
3000+
messageTypes:
3001+
type: array
3002+
uniqueItems: true
3003+
items: {}
29943004
name:
29953005
type: string
29963006
transport:
@@ -4155,6 +4165,10 @@ components:
41554165
"$ref": "#/components/schemas/ZonedDateTime"
41564166
lastUpdateInstant:
41574167
"$ref": "#/components/schemas/ZonedDateTime"
4168+
messageTypes:
4169+
type: array
4170+
uniqueItems: true
4171+
items: {}
41584172
name:
41594173
type: string
41604174
transport:
@@ -4915,6 +4929,7 @@ components:
49154929
type: string
49164930
enum:
49174931
- SMS
4932+
- Voice
49184933
MessengerRequest:
49194934
description: ''
49204935
type: object
@@ -4932,7 +4947,7 @@ components:
49324947
items:
49334948
"$ref": "#/components/schemas/BaseMessengerConfiguration"
49344949
MessengerTransport:
4935-
description: ''
4950+
description: "@deprecated since 1.65.0, use {@code MessageType} instead"
49364951
type: object
49374952
properties: {}
49384953
MessengerType:
@@ -5031,6 +5046,23 @@ components:
50315046
templateId:
50325047
type: string
50335048
format: uuid
5049+
MultiFactorVoiceMethod:
5050+
type: object
5051+
properties:
5052+
messengerId:
5053+
type: string
5054+
format: uuid
5055+
templateId:
5056+
type: string
5057+
format: uuid
5058+
enabled:
5059+
type: boolean
5060+
MultiFactorVoiceTemplate:
5061+
type: object
5062+
properties:
5063+
templateId:
5064+
type: string
5065+
format: uuid
50345066
NintendoApplicationConfiguration:
50355067
description: ''
50365068
type: object
@@ -5717,6 +5749,8 @@ components:
57175749
"$ref": "#/components/schemas/Errors"
57185750
message:
57195751
"$ref": "#/components/schemas/SMSMessage"
5752+
previewMessage:
5753+
"$ref": "#/components/schemas/Message"
57205754
PreviewRequest:
57215755
description: ''
57225756
type: object
@@ -7339,6 +7373,8 @@ components:
73397373
"$ref": "#/components/schemas/MultiFactorLoginPolicy"
73407374
sms:
73417375
"$ref": "#/components/schemas/MultiFactorSMSMethod"
7376+
voice:
7377+
"$ref": "#/components/schemas/MultiFactorVoiceMethod"
73427378
TenantOAuth2Configuration:
73437379
type: object
73447380
properties:
@@ -7779,6 +7815,10 @@ components:
77797815
"$ref": "#/components/schemas/ZonedDateTime"
77807816
lastUpdateInstant:
77817817
"$ref": "#/components/schemas/ZonedDateTime"
7818+
messageTypes:
7819+
type: array
7820+
uniqueItems: true
7821+
items: {}
77827822
name:
77837823
type: string
77847824
transport:
@@ -8024,6 +8064,8 @@ components:
80248064
format: uuid
80258065
email:
80268066
type: string
8067+
messageType:
8068+
"$ref": "#/components/schemas/MessageType"
80278069
method:
80288070
type: string
80298071
methodId:
@@ -9386,6 +9428,39 @@ components:
93869428
properties:
93879429
version:
93889430
type: string
9431+
VoiceMessage:
9432+
description: ''
9433+
type: object
9434+
properties:
9435+
locale:
9436+
"$ref": "#/components/schemas/Locale"
9437+
message:
9438+
type: string
9439+
phoneNumber:
9440+
type: string
9441+
VoiceMessageTemplate:
9442+
description: ''
9443+
type: object
9444+
properties:
9445+
defaultTemplate:
9446+
type: string
9447+
localizedTemplates:
9448+
"$ref": "#/components/schemas/LocalizedStrings"
9449+
data:
9450+
type: object
9451+
additionalProperties:
9452+
type: object
9453+
id:
9454+
type: string
9455+
format: uuid
9456+
insertInstant:
9457+
"$ref": "#/components/schemas/ZonedDateTime"
9458+
lastUpdateInstant:
9459+
"$ref": "#/components/schemas/ZonedDateTime"
9460+
name:
9461+
type: string
9462+
type:
9463+
"$ref": "#/components/schemas/MessageType"
93899464
WebAuthnAssertResponse:
93909465
description: API response for completing WebAuthn assertion
93919466
type: object

0 commit comments

Comments
 (0)