chore: update openapi documentation

Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
Vitor Mattos 2025-11-03 12:44:14 -03:00
parent c032a2a1a2
commit 3296c5af82
No known key found for this signature in database
GPG key ID: 6FECE2AD4809003A
4 changed files with 48 additions and 8 deletions

View file

@ -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"
}
}
]
}
}
}

View file

@ -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"
}
}
]
}
}
}

View file

@ -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[];
};
};
};

View file

@ -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[];
};
};
};