Skip to content

Commit 2296293

Browse files
docs(archiving): Update openAPI
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
1 parent c5ebc18 commit 2296293

2 files changed

Lines changed: 108 additions & 0 deletions

File tree

openapi.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12474,6 +12474,44 @@
1247412474
}
1247512475
}
1247612476
},
12477+
"403": {
12478+
"description": "No permissions",
12479+
"content": {
12480+
"application/json": {
12481+
"schema": {
12482+
"type": "object",
12483+
"required": [
12484+
"ocs"
12485+
],
12486+
"properties": {
12487+
"ocs": {
12488+
"type": "object",
12489+
"required": [
12490+
"meta",
12491+
"data"
12492+
],
12493+
"properties": {
12494+
"meta": {
12495+
"$ref": "#/components/schemas/OCSMeta"
12496+
},
12497+
"data": {
12498+
"type": "object",
12499+
"required": [
12500+
"message"
12501+
],
12502+
"properties": {
12503+
"message": {
12504+
"type": "string"
12505+
}
12506+
}
12507+
}
12508+
}
12509+
}
12510+
}
12511+
}
12512+
}
12513+
}
12514+
},
1247712515
"500": {
1247812516
"description": "",
1247912517
"content": {
@@ -12648,6 +12686,44 @@
1264812686
}
1264912687
}
1265012688
},
12689+
"403": {
12690+
"description": "No permissions",
12691+
"content": {
12692+
"application/json": {
12693+
"schema": {
12694+
"type": "object",
12695+
"required": [
12696+
"ocs"
12697+
],
12698+
"properties": {
12699+
"ocs": {
12700+
"type": "object",
12701+
"required": [
12702+
"meta",
12703+
"data"
12704+
],
12705+
"properties": {
12706+
"meta": {
12707+
"$ref": "#/components/schemas/OCSMeta"
12708+
},
12709+
"data": {
12710+
"type": "object",
12711+
"required": [
12712+
"message"
12713+
],
12714+
"properties": {
12715+
"message": {
12716+
"type": "string"
12717+
}
12718+
}
12719+
}
12720+
}
12721+
}
12722+
}
12723+
}
12724+
}
12725+
}
12726+
},
1265112727
"500": {
1265212728
"description": "",
1265312729
"content": {

src/types/openapi/openapi.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7026,6 +7026,22 @@ export interface operations {
70267026
};
70277027
};
70287028
};
7029+
/** @description No permissions */
7030+
readonly 403: {
7031+
headers: {
7032+
readonly [name: string]: unknown;
7033+
};
7034+
content: {
7035+
readonly "application/json": {
7036+
readonly ocs: {
7037+
readonly meta: components["schemas"]["OCSMeta"];
7038+
readonly data: {
7039+
readonly message: string;
7040+
};
7041+
};
7042+
};
7043+
};
7044+
};
70297045
/** @description Context not found or not available */
70307046
readonly 404: {
70317047
headers: {
@@ -7102,6 +7118,22 @@ export interface operations {
71027118
};
71037119
};
71047120
};
7121+
/** @description No permissions */
7122+
readonly 403: {
7123+
headers: {
7124+
readonly [name: string]: unknown;
7125+
};
7126+
content: {
7127+
readonly "application/json": {
7128+
readonly ocs: {
7129+
readonly meta: components["schemas"]["OCSMeta"];
7130+
readonly data: {
7131+
readonly message: string;
7132+
};
7133+
};
7134+
};
7135+
};
7136+
};
71057137
/** @description Context not found or not available */
71067138
readonly 404: {
71077139
headers: {

0 commit comments

Comments
 (0)