mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
chore: update openapi
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
5a5f4d2623
commit
1089829160
4 changed files with 30 additions and 8 deletions
|
|
@ -5508,6 +5508,15 @@
|
|||
"default": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "method",
|
||||
"in": "query",
|
||||
"description": "filter by method (email, account, sms, signal, telegram, whatsapp, xmpp)",
|
||||
"schema": {
|
||||
"type": "string",
|
||||
"default": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "page",
|
||||
"in": "query",
|
||||
|
|
@ -7330,7 +7339,7 @@
|
|||
"signMethod": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign"
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp"
|
||||
},
|
||||
"identify": {
|
||||
"type": "string",
|
||||
|
|
@ -7490,7 +7499,7 @@
|
|||
"signMethod": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign"
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp"
|
||||
},
|
||||
"identify": {
|
||||
"type": "string",
|
||||
|
|
|
|||
13
openapi.json
13
openapi.json
|
|
@ -5361,6 +5361,15 @@
|
|||
"default": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "method",
|
||||
"in": "query",
|
||||
"description": "filter by method (email, account, sms, signal, telegram, whatsapp, xmpp)",
|
||||
"schema": {
|
||||
"type": "string",
|
||||
"default": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "page",
|
||||
"in": "query",
|
||||
|
|
@ -7183,7 +7192,7 @@
|
|||
"signMethod": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign"
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp"
|
||||
},
|
||||
"identify": {
|
||||
"type": "string",
|
||||
|
|
@ -7343,7 +7352,7 @@
|
|||
"signMethod": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign"
|
||||
"description": "Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp"
|
||||
},
|
||||
"identify": {
|
||||
"type": "string",
|
||||
|
|
|
|||
|
|
@ -3397,6 +3397,8 @@ export interface operations {
|
|||
query?: {
|
||||
/** @description search params */
|
||||
search?: string;
|
||||
/** @description filter by method (email, account, sms, signal, telegram, whatsapp, xmpp) */
|
||||
method?: string;
|
||||
/** @description the number of page to return. Default: 1 */
|
||||
page?: number;
|
||||
/** @description Total of elements to return. Default: 25 */
|
||||
|
|
@ -4125,7 +4127,7 @@ export interface operations {
|
|||
* @enum {string|null}
|
||||
*/
|
||||
identifyMethod?: "account" | "email" | null;
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign */
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp */
|
||||
signMethod?: string | null;
|
||||
/** @description Identify value, i.e. the signer email, account or phone number */
|
||||
identify?: string | null;
|
||||
|
|
@ -4189,7 +4191,7 @@ export interface operations {
|
|||
* @enum {string|null}
|
||||
*/
|
||||
identifyMethod?: "account" | "email" | null;
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign */
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp */
|
||||
signMethod?: string | null;
|
||||
/** @description Identify value, i.e. the signer email, account or phone number */
|
||||
identify?: string | null;
|
||||
|
|
|
|||
|
|
@ -3073,6 +3073,8 @@ export interface operations {
|
|||
query?: {
|
||||
/** @description search params */
|
||||
search?: string;
|
||||
/** @description filter by method (email, account, sms, signal, telegram, whatsapp, xmpp) */
|
||||
method?: string;
|
||||
/** @description the number of page to return. Default: 1 */
|
||||
page?: number;
|
||||
/** @description Total of elements to return. Default: 25 */
|
||||
|
|
@ -3801,7 +3803,7 @@ export interface operations {
|
|||
* @enum {string|null}
|
||||
*/
|
||||
identifyMethod?: "account" | "email" | null;
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign */
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp */
|
||||
signMethod?: string | null;
|
||||
/** @description Identify value, i.e. the signer email, account or phone number */
|
||||
identify?: string | null;
|
||||
|
|
@ -3865,7 +3867,7 @@ export interface operations {
|
|||
* @enum {string|null}
|
||||
*/
|
||||
identifyMethod?: "account" | "email" | null;
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign */
|
||||
/** @description Method used to sign the document, i.e. emailToken, account, clickToSign, sms, signal, telegram, whatsapp, xmpp */
|
||||
signMethod?: string | null;
|
||||
/** @description Identify value, i.e. the signer email, account or phone number */
|
||||
identify?: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue