Updating documentation

This commit is contained in:
Documentation Updater 2024-01-04 21:35:13 +00:00
parent 72e1c95ebf
commit 3166b79356
1 changed files with 54 additions and 34 deletions

View File

@ -1569,15 +1569,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
/v1/messages/uuid/{uuid}: /v1/messages/uuid/{uuid}:
@ -1682,9 +1682,16 @@ paths:
- name: Unidentified-Access-Key - name: Unidentified-Access-Key
in: header in: header
description: The bitwise xor of the unidentified access keys for every recipient description: The bitwise xor of the unidentified access keys for every recipient
of the message of the message. Will be replaced with group send credentials
schema: schema:
$ref: '#/components/schemas/CombinedUnidentifiedSenderAccessKeys' $ref: '#/components/schemas/CombinedUnidentifiedSenderAccessKeys'
- name: Group-Send-Credential
in: header
description: A group send credential covering all (included and excluded)
recipients of the message. Must not be combined with `Unidentified-Access-Key`
or set on a story message.
schema:
$ref: '#/components/schemas/GroupSendCredentialHeader'
- name: User-Agent - name: User-Agent
in: header in: header
schema: schema:
@ -1730,7 +1737,7 @@ paths:
multiple times multiple times
"401": "401":
description: The message is not a story and the unauthorized access key description: The message is not a story and the unauthorized access key
is incorrect or group send credential is missing or incorrect
"404": "404":
description: The message is not a story and some of the recipient service description: The message is not a story and some of the recipient service
IDs do not correspond to registered Signal users IDs do not correspond to registered Signal users
@ -2235,15 +2242,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
- {} - {}
@ -2277,15 +2284,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
- {} - {}
@ -2318,15 +2325,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
- {} - {}
@ -2453,15 +2460,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
deprecated: true deprecated: true
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
@ -2490,15 +2497,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
- {} - {}
@ -2534,15 +2541,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
- {} - {}
@ -2581,15 +2588,15 @@ paths:
schema: schema:
type: object type: object
properties: properties:
done:
type: boolean
cancelled:
type: boolean
completedExceptionally: completedExceptionally:
type: boolean type: boolean
numberOfDependents: numberOfDependents:
type: integer type: integer
format: int32 format: int32
done:
type: boolean
cancelled:
type: boolean
security: security:
- authenticatedAccount: [] - authenticatedAccount: []
- {} - {}
@ -3866,6 +3873,19 @@ components:
items: items:
type: string type: string
format: byte format: byte
GroupSendCredentialHeader:
type: object
properties:
presentation:
$ref: '#/components/schemas/GroupSendCredentialPresentation'
GroupSendCredentialPresentation:
type: object
properties:
internalContentsForJNI:
type: array
items:
type: string
format: byte
Recipient: Recipient:
type: object type: object
properties: properties: