[ci skip] deploy from ciiol

This commit is contained in:
werckerbot 2019-09-20 13:14:05 +00:00
parent 6c048489b1
commit 24a0ad4fce
2 changed files with 40 additions and 0 deletions

View File

@ -1800,6 +1800,12 @@
}, },
"401": { "401": {
"$ref": "#/responses/Unauthorized" "$ref": "#/responses/Unauthorized"
},
"422": {
"description": "Неверные данные для создания webhook'а",
"schema": {
"$ref": "#/definitions/InvalidOperationParameters"
}
} }
} }
}, },
@ -1835,6 +1841,12 @@
}, },
"401": { "401": {
"$ref": "#/responses/Unauthorized" "$ref": "#/responses/Unauthorized"
},
"422": {
"description": "Неверные данные для получения webhook'ов",
"schema": {
"$ref": "#/definitions/InvalidOperationParameters"
}
} }
} }
} }
@ -1875,6 +1887,12 @@
}, },
"404": { "404": {
"$ref": "#/responses/NotFound" "$ref": "#/responses/NotFound"
},
"422": {
"description": "Неверные данные для получения webhook'а",
"schema": {
"$ref": "#/definitions/InvalidOperationParameters"
}
} }
} }
}, },
@ -1910,6 +1928,12 @@
}, },
"404": { "404": {
"$ref": "#/responses/NotFound" "$ref": "#/responses/NotFound"
},
"422": {
"description": "Неверные данные для снятия webhook'а",
"schema": {
"$ref": "#/definitions/InvalidOperationParameters"
}
} }
} }
} }

View File

@ -1214,6 +1214,10 @@ paths:
$ref: '#/responses/BadRequest' $ref: '#/responses/BadRequest'
'401': '401':
$ref: '#/responses/Unauthorized' $ref: '#/responses/Unauthorized'
'422':
description: Неверные данные для создания webhook'а
schema:
$ref: '#/definitions/InvalidOperationParameters'
get: get:
description: Получить набор установленных webhook'ов. description: Получить набор установленных webhook'ов.
tags: tags:
@ -1234,6 +1238,10 @@ paths:
$ref: '#/responses/BadRequest' $ref: '#/responses/BadRequest'
'401': '401':
$ref: '#/responses/Unauthorized' $ref: '#/responses/Unauthorized'
'422':
description: Неверные данные для получения webhook'ов
schema:
$ref: '#/definitions/InvalidOperationParameters'
'/webhooks/{webhookID}': '/webhooks/{webhookID}':
get: get:
description: Получить webhook по его идентификатору. description: Получить webhook по его идентификатору.
@ -1256,6 +1264,10 @@ paths:
$ref: '#/responses/Unauthorized' $ref: '#/responses/Unauthorized'
'404': '404':
$ref: '#/responses/NotFound' $ref: '#/responses/NotFound'
'422':
description: Неверные данные для получения webhook'а
schema:
$ref: '#/definitions/InvalidOperationParameters'
delete: delete:
description: Снять указанный webhook. description: Снять указанный webhook.
tags: tags:
@ -1275,6 +1287,10 @@ paths:
$ref: '#/responses/Unauthorized' $ref: '#/responses/Unauthorized'
'404': '404':
$ref: '#/responses/NotFound' $ref: '#/responses/NotFound'
'422':
description: Неверные данные для снятия webhook'а
schema:
$ref: '#/definitions/InvalidOperationParameters'
/withdrawal-quotes: /withdrawal-quotes:
post: post:
operationId: createQuote operationId: createQuote