Skip to content

Commit ed27dc3

Browse files
docs: regenerate OpenAPI documentation
Update OpenAPI spec and TypeScript types to reflect changes in LibresignNextcloudFile response type with status, statusText, and created_at fields. Signed-off-by: Vitor Mattos <[email protected]>
1 parent 12e08cc commit ed27dc3

4 files changed

Lines changed: 24 additions & 20 deletions

File tree

openapi-full.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -527,9 +527,9 @@
527527
"message",
528528
"name",
529529
"id",
530-
"etag",
531-
"path",
532-
"type"
530+
"status",
531+
"statusText",
532+
"created_at"
533533
],
534534
"properties": {
535535
"message": {
@@ -542,13 +542,14 @@
542542
"type": "integer",
543543
"format": "int64"
544544
},
545-
"etag": {
546-
"type": "string"
545+
"status": {
546+
"type": "integer",
547+
"format": "int64"
547548
},
548-
"path": {
549+
"statusText": {
549550
"type": "string"
550551
},
551-
"type": {
552+
"created_at": {
552553
"type": "string"
553554
}
554555
}

openapi.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -457,9 +457,9 @@
457457
"message",
458458
"name",
459459
"id",
460-
"etag",
461-
"path",
462-
"type"
460+
"status",
461+
"statusText",
462+
"created_at"
463463
],
464464
"properties": {
465465
"message": {
@@ -472,13 +472,14 @@
472472
"type": "integer",
473473
"format": "int64"
474474
},
475-
"etag": {
476-
"type": "string"
475+
"status": {
476+
"type": "integer",
477+
"format": "int64"
477478
},
478-
"path": {
479+
"statusText": {
479480
"type": "string"
480481
},
481-
"type": {
482+
"created_at": {
482483
"type": "string"
483484
}
484485
}

src/types/openapi/openapi-full.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1611,9 +1611,10 @@ export type components = {
16111611
name: string;
16121612
/** Format: int64 */
16131613
id: number;
1614-
etag: string;
1615-
path: string;
1616-
type: string;
1614+
/** Format: int64 */
1615+
status: number;
1616+
statusText: string;
1617+
created_at: string;
16171618
};
16181619
Notify: {
16191620
date: string;

src/types/openapi/openapi.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,9 +1155,10 @@ export type components = {
11551155
name: string;
11561156
/** Format: int64 */
11571157
id: number;
1158-
etag: string;
1159-
path: string;
1160-
type: string;
1158+
/** Format: int64 */
1159+
status: number;
1160+
statusText: string;
1161+
created_at: string;
11611162
};
11621163
Notify: {
11631164
date: string;

0 commit comments

Comments
 (0)