Updating documentation

This commit is contained in:
Documentation Updater 2023-07-19 18:50:27 +00:00
parent 652e3b1e06
commit ab6b6ab09d
1 changed files with 28 additions and 22 deletions

View File

@ -2459,9 +2459,21 @@ components:
properties: properties:
usernameHash: usernameHash:
type: array type: array
description: "The hash of the confirmed username, as supplied in the request"
items: items:
type: string type: string
description: "The hash of the confirmed username, as supplied in the request"
format: byte format: byte
usernameLinkHandle:
$ref: '#/components/schemas/UsernameLinkHandle'
UsernameLinkHandle:
required:
- usernameLinkHandle
type: object
properties:
usernameLinkHandle:
type: string
format: uuid
ConfirmUsernameHashRequest: ConfirmUsernameHashRequest:
type: object type: object
properties: properties:
@ -2475,6 +2487,20 @@ components:
items: items:
type: string type: string
format: byte format: byte
encryptedUsername:
$ref: '#/components/schemas/EncryptedUsername'
EncryptedUsername:
required:
- usernameLinkEncryptedValue
type: object
properties:
usernameLinkEncryptedValue:
maxItems: 128
minItems: 1
type: array
items:
type: string
format: byte
AccountIdentityResponse: AccountIdentityResponse:
type: object type: object
properties: properties:
@ -2518,18 +2544,6 @@ components:
uuid: uuid:
type: string type: string
format: uuid format: uuid
EncryptedUsername:
required:
- usernameLinkEncryptedValue
type: object
properties:
usernameLinkEncryptedValue:
maxItems: 128
minItems: 1
type: array
items:
type: string
format: byte
ReserveUsernameHashResponse: ReserveUsernameHashResponse:
type: object type: object
properties: properties:
@ -2659,14 +2673,6 @@ components:
maxLength: 64 maxLength: 64
minLength: 64 minLength: 64
type: string type: string
UsernameLinkHandle:
required:
- usernameLinkHandle
type: object
properties:
usernameLinkHandle:
type: string
format: uuid
MismatchedDevices: MismatchedDevices:
type: object type: object
properties: properties:
@ -3678,10 +3684,10 @@ components:
$ref: '#/components/schemas/ApnRegistrationId' $ref: '#/components/schemas/ApnRegistrationId'
gcmToken: gcmToken:
$ref: '#/components/schemas/GcmRegistrationId' $ref: '#/components/schemas/GcmRegistrationId'
everySignedKeyValid:
type: boolean
completeRequest: completeRequest:
type: boolean type: boolean
everySignedKeyValid:
type: boolean
valid: valid:
type: boolean type: boolean
UserRemoteConfig: UserRemoteConfig: