Updating documentation
This commit is contained in:
parent
61ee38f3f2
commit
6ea5aa0494
|
@ -1864,16 +1864,15 @@ 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. Will be replaced with group send credentials
|
of the message. Will be replaced with group send endorsements
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/CombinedUnidentifiedSenderAccessKeys'
|
$ref: '#/components/schemas/CombinedUnidentifiedSenderAccessKeys'
|
||||||
- name: Group-Send-Credential
|
- name: Group-Send-Token
|
||||||
in: header
|
in: header
|
||||||
description: A group send credential covering all (included and excluded)
|
description: A group send endorsement token covering recipients of this message.
|
||||||
recipients of the message. Must not be combined with `Unidentified-Access-Key`
|
Must not be combined with `Unidentified-Access-Key` or set on a story message.
|
||||||
or set on a story message.
|
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/GroupSendCredentialHeader'
|
$ref: '#/components/schemas/GroupSendTokenHeader'
|
||||||
- name: User-Agent
|
- name: User-Agent
|
||||||
in: header
|
in: header
|
||||||
schema:
|
schema:
|
||||||
|
@ -1919,7 +1918,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
|
||||||
or group send credential is missing or incorrect
|
or group send endorsement token 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
|
||||||
|
@ -4157,19 +4156,22 @@ components:
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
format: byte
|
format: byte
|
||||||
GroupSendCredentialHeader:
|
GroupSendFullToken:
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
presentation:
|
|
||||||
$ref: '#/components/schemas/GroupSendCredentialPresentation'
|
|
||||||
GroupSendCredentialPresentation:
|
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
expiration:
|
||||||
|
type: string
|
||||||
|
format: date-time
|
||||||
internalContentsForJNI:
|
internalContentsForJNI:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
format: byte
|
format: byte
|
||||||
|
GroupSendTokenHeader:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
token:
|
||||||
|
$ref: '#/components/schemas/GroupSendFullToken'
|
||||||
Recipient:
|
Recipient:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Reference in New Issue