Skip to content

Commit 6a4d8c1

Browse files
committed
chore: update documentation
Signed-off-by: Vitor Mattos <[email protected]>
1 parent ffb7a87 commit 6a4d8c1

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

openapi-full.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,11 +553,13 @@
553553
"message",
554554
"name",
555555
"id",
556+
"nodeId",
556557
"uuid",
557558
"status",
558559
"statusText",
559560
"nodeType",
560561
"created_at",
562+
"filesCount",
561563
"files"
562564
],
563565
"properties": {
@@ -571,6 +573,10 @@
571573
"type": "integer",
572574
"format": "int64"
573575
},
576+
"nodeId": {
577+
"type": "integer",
578+
"format": "int64"
579+
},
574580
"uuid": {
575581
"type": "string"
576582
},
@@ -591,19 +597,24 @@
591597
"created_at": {
592598
"type": "string"
593599
},
600+
"filesCount": {
601+
"type": "integer",
602+
"format": "int64",
603+
"minimum": 0
604+
},
594605
"files": {
595606
"type": "array",
596607
"items": {
597608
"type": "object",
598609
"required": [
599-
"id",
610+
"nodeId",
600611
"uuid",
601612
"name",
602613
"status",
603614
"statusText"
604615
],
605616
"properties": {
606-
"id": {
617+
"nodeId": {
607618
"type": "integer",
608619
"format": "int64"
609620
},

openapi.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,13 @@
483483
"message",
484484
"name",
485485
"id",
486+
"nodeId",
486487
"uuid",
487488
"status",
488489
"statusText",
489490
"nodeType",
490491
"created_at",
492+
"filesCount",
491493
"files"
492494
],
493495
"properties": {
@@ -501,6 +503,10 @@
501503
"type": "integer",
502504
"format": "int64"
503505
},
506+
"nodeId": {
507+
"type": "integer",
508+
"format": "int64"
509+
},
504510
"uuid": {
505511
"type": "string"
506512
},
@@ -521,19 +527,24 @@
521527
"created_at": {
522528
"type": "string"
523529
},
530+
"filesCount": {
531+
"type": "integer",
532+
"format": "int64",
533+
"minimum": 0
534+
},
524535
"files": {
525536
"type": "array",
526537
"items": {
527538
"type": "object",
528539
"required": [
529-
"id",
540+
"nodeId",
530541
"uuid",
531542
"name",
532543
"status",
533544
"statusText"
534545
],
535546
"properties": {
536-
"id": {
547+
"nodeId": {
537548
"type": "integer",
538549
"format": "int64"
539550
},

src/types/openapi/openapi-full.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,16 +1639,20 @@ export type components = {
16391639
name: string;
16401640
/** Format: int64 */
16411641
id: number;
1642+
/** Format: int64 */
1643+
nodeId: number;
16421644
uuid: string;
16431645
/** Format: int64 */
16441646
status: number;
16451647
statusText: string;
16461648
/** @enum {string} */
16471649
nodeType: "file" | "envelope";
16481650
created_at: string;
1651+
/** Format: int64 */
1652+
filesCount: number;
16491653
files: {
16501654
/** Format: int64 */
1651-
id: number;
1655+
nodeId: number;
16521656
uuid: string;
16531657
name: string;
16541658
/** Format: int64 */

src/types/openapi/openapi.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,16 +1183,20 @@ export type components = {
11831183
name: string;
11841184
/** Format: int64 */
11851185
id: number;
1186+
/** Format: int64 */
1187+
nodeId: number;
11861188
uuid: string;
11871189
/** Format: int64 */
11881190
status: number;
11891191
statusText: string;
11901192
/** @enum {string} */
11911193
nodeType: "file" | "envelope";
11921194
created_at: string;
1195+
/** Format: int64 */
1196+
filesCount: number;
11931197
files: {
11941198
/** Format: int64 */
1195-
id: number;
1199+
nodeId: number;
11961200
uuid: string;
11971201
name: string;
11981202
/** Format: int64 */

0 commit comments

Comments
 (0)