Updating documentation

This commit is contained in:
Documentation Updater 2025-04-07 14:04:42 +00:00
parent e1bc6c18d2
commit 4db5e34305
1 changed files with 13 additions and 10 deletions

View File

@ -440,13 +440,13 @@ paths:
content: content:
application/json: application/json:
schema: schema:
$ref: '#/components/schemas/MismatchedDevices' $ref: '#/components/schemas/MismatchedDevicesResponse'
"410": "410":
description: Mismatched registration ids in 'devices to notify' list description: Mismatched registration ids in 'devices to notify' list
content: content:
application/json: application/json:
schema: schema:
$ref: '#/components/schemas/StaleDevices' $ref: '#/components/schemas/StaleDevicesResponse'
"413": "413":
description: One or more device messages was too large description: One or more device messages was too large
"422": "422":
@ -505,14 +505,14 @@ paths:
content: content:
application/json: application/json:
schema: schema:
$ref: '#/components/schemas/MismatchedDevices' $ref: '#/components/schemas/MismatchedDevicesResponse'
"410": "410":
description: The registration IDs provided for some devices do not match description: The registration IDs provided for some devices do not match
those stored on the server. those stored on the server.
content: content:
application/json: application/json:
schema: schema:
$ref: '#/components/schemas/StaleDevices' $ref: '#/components/schemas/StaleDevicesResponse'
"413": "413":
description: One or more device messages was too large description: One or more device messages was too large
security: security:
@ -2439,13 +2439,13 @@ paths:
content: content:
application/json: application/json:
schema: schema:
$ref: '#/components/schemas/MismatchedDevices' $ref: '#/components/schemas/MismatchedDevicesResponse'
"410": "410":
description: Mismatched registration ids supplied for some recipient devices description: Mismatched registration ids supplied for some recipient devices
content: content:
application/json: application/json:
schema: schema:
$ref: '#/components/schemas/StaleDevices' $ref: '#/components/schemas/StaleDevicesResponse'
"428": "428":
description: The sender should complete a challenge before proceeding description: The sender should complete a challenge before proceeding
security: security:
@ -4045,10 +4045,11 @@ components:
backup: backup:
$ref: '#/components/schemas/BackupEntitlement' $ref: '#/components/schemas/BackupEntitlement'
description: entitlements for this account and their current expirations description: entitlements for this account and their current expirations
MismatchedDevices: MismatchedDevicesResponse:
type: object type: object
properties: properties:
missingDevices: missingDevices:
uniqueItems: true
type: array type: array
description: Devices present on the account but absent in the request description: Devices present on the account but absent in the request
items: items:
@ -4056,16 +4057,18 @@ components:
description: Devices present on the account but absent in the request description: Devices present on the account but absent in the request
format: byte format: byte
extraDevices: extraDevices:
uniqueItems: true
type: array type: array
description: Devices absent on the request but present in the account description: Devices absent on the request but present in the account
items: items:
type: string type: string
description: Devices absent on the request but present in the account description: Devices absent on the request but present in the account
format: byte format: byte
StaleDevices: StaleDevicesResponse:
type: object type: object
properties: properties:
staleDevices: staleDevices:
uniqueItems: true
type: array type: array
description: Devices that are no longer active description: Devices that are no longer active
items: items:
@ -5289,7 +5292,7 @@ components:
description: A service identifier is a tuple of a UUID and identity type description: A service identifier is a tuple of a UUID and identity type
that identifies an account and identity within the Signal service. that identifies an account and identity within the Signal service.
devices: devices:
$ref: '#/components/schemas/MismatchedDevices' $ref: '#/components/schemas/MismatchedDevicesResponse'
AccountStaleDevices: AccountStaleDevices:
type: object type: object
properties: properties:
@ -5298,7 +5301,7 @@ components:
description: A service identifier is a tuple of a UUID and identity type description: A service identifier is a tuple of a UUID and identity type
that identifies an account and identity within the Signal service. that identifies an account and identity within the Signal service.
devices: devices:
$ref: '#/components/schemas/StaleDevices' $ref: '#/components/schemas/StaleDevicesResponse'
CombinedUnidentifiedSenderAccessKeys: CombinedUnidentifiedSenderAccessKeys:
type: object type: object
properties: properties: