Updating documentation
This commit is contained in:
parent
4e26676290
commit
c81cbe9550
|
@ -555,6 +555,26 @@ paths:
|
||||||
$ref: '#/components/schemas/AttachmentDescriptorV3'
|
$ref: '#/components/schemas/AttachmentDescriptorV3'
|
||||||
security:
|
security:
|
||||||
- authenticatedAccount: []
|
- authenticatedAccount: []
|
||||||
|
/v1/call-link/auth:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- CallLink
|
||||||
|
summary: Generate credentials for calling frontend
|
||||||
|
description: |
|
||||||
|
These credentials enable clients to prove to calling frontend that they were a Signal user within the last day.
|
||||||
|
For client privacy, timestamps are truncated to 1 day granularity and the token does not include or derive from an ACI.
|
||||||
|
operationId: getAuth_1
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: '`JSON` with generated credentials.'
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/ExternalServiceCredentials'
|
||||||
|
"401":
|
||||||
|
description: Account authentication check failed.
|
||||||
|
security:
|
||||||
|
- authenticatedAccount: []
|
||||||
/v1/certificate/group/{startRedemptionTime}/{endRedemptionTime}:
|
/v1/certificate/group/{startRedemptionTime}/{endRedemptionTime}:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
|
@ -1258,7 +1278,7 @@ paths:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- Payments
|
- Payments
|
||||||
operationId: getAuth_1
|
operationId: getAuth_2
|
||||||
responses:
|
responses:
|
||||||
default:
|
default:
|
||||||
description: default response
|
description: default response
|
||||||
|
@ -1580,7 +1600,7 @@ paths:
|
||||||
description: |
|
description: |
|
||||||
Generate SVR service credentials. Generated credentials have an expiration time of 30 days
|
Generate SVR service credentials. Generated credentials have an expiration time of 30 days
|
||||||
(however, the TTL is fully controlled by the server side and may change even for already generated credentials).
|
(however, the TTL is fully controlled by the server side and may change even for already generated credentials).
|
||||||
operationId: getAuth_2
|
operationId: getAuth_3
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: '`JSON` with generated credentials.'
|
description: '`JSON` with generated credentials.'
|
||||||
|
@ -1596,7 +1616,7 @@ paths:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- Secure Storage
|
- Secure Storage
|
||||||
operationId: getAuth_3
|
operationId: getAuth_4
|
||||||
responses:
|
responses:
|
||||||
default:
|
default:
|
||||||
description: default response
|
description: default response
|
||||||
|
@ -1614,7 +1634,7 @@ paths:
|
||||||
description: |
|
description: |
|
||||||
Generate SVR2 service credentials. Generated credentials have an expiration time of 30 days
|
Generate SVR2 service credentials. Generated credentials have an expiration time of 30 days
|
||||||
(however, the TTL is fully controlled by the server side and may change even for already generated credentials).
|
(however, the TTL is fully controlled by the server side and may change even for already generated credentials).
|
||||||
operationId: getAuth_4
|
operationId: getAuth_5
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: '`JSON` with generated credentials.'
|
description: '`JSON` with generated credentials.'
|
||||||
|
@ -2859,11 +2879,11 @@ components:
|
||||||
properties:
|
properties:
|
||||||
open:
|
open:
|
||||||
type: boolean
|
type: boolean
|
||||||
userAgent:
|
|
||||||
type: string
|
|
||||||
createdTimestamp:
|
createdTimestamp:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
|
userAgent:
|
||||||
|
type: string
|
||||||
WebSocketSessionContext:
|
WebSocketSessionContext:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Reference in New Issue