mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
chore: update openapi documentation
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
c032a2a1a2
commit
3296c5af82
4 changed files with 48 additions and 8 deletions
|
|
@ -313,7 +313,17 @@
|
|||
],
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -485,7 +495,17 @@
|
|||
],
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8588,7 +8588,17 @@
|
|||
],
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -8760,7 +8770,17 @@
|
|||
],
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -416,7 +416,7 @@ export interface operations {
|
|||
commonName: string;
|
||||
names: {
|
||||
[key: string]: {
|
||||
value: string;
|
||||
value: string | string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -488,7 +488,7 @@ export interface operations {
|
|||
commonName: string;
|
||||
names: {
|
||||
[key: string]: {
|
||||
value: string;
|
||||
value: string | string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -4700,7 +4700,7 @@ export interface operations {
|
|||
commonName: string;
|
||||
names: {
|
||||
[key: string]: {
|
||||
value: string;
|
||||
value: string | string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -4772,7 +4772,7 @@ export interface operations {
|
|||
commonName: string;
|
||||
names: {
|
||||
[key: string]: {
|
||||
value: string;
|
||||
value: string | string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue