Skip to content

Commit 5caf995

Browse files
committed
chore: update OpenAPI schemas with signingOrder field
Auto-generated update of OpenAPI schemas to include the signingOrder field in NewSigner and Signer types. Signed-off-by: Vitor Mattos <[email protected]>
1 parent af5b9bf commit 5caf995

4 files changed

Lines changed: 28 additions & 0 deletions

File tree

openapi-full.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,11 @@
513513
"type": "string"
514514
}
515515
}
516+
},
517+
"signingOrder": {
518+
"type": "integer",
519+
"format": "int64",
520+
"minimum": 0
516521
}
517522
}
518523
},
@@ -912,6 +917,11 @@
912917
"format": "int64",
913918
"minimum": 0
914919
},
920+
"signingOrder": {
921+
"type": "integer",
922+
"format": "int64",
923+
"minimum": 0
924+
},
915925
"identifyMethods": {
916926
"type": "array",
917927
"items": {

openapi.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,11 @@
443443
"type": "string"
444444
}
445445
}
446+
},
447+
"signingOrder": {
448+
"type": "integer",
449+
"format": "int64",
450+
"minimum": 0
446451
}
447452
}
448453
},
@@ -762,6 +767,11 @@
762767
"format": "int64",
763768
"minimum": 0
764769
},
770+
"signingOrder": {
771+
"type": "integer",
772+
"format": "int64",
773+
"minimum": 0
774+
},
765775
"identifyMethods": {
766776
"type": "array",
767777
"items": {

src/types/openapi/openapi-full.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1603,6 +1603,8 @@ export type components = {
16031603
email?: string;
16041604
account?: string;
16051605
};
1606+
/** Format: int64 */
1607+
signingOrder?: number;
16061608
};
16071609
NextcloudFile: {
16081610
message: string;
@@ -1713,6 +1715,8 @@ export type components = {
17131715
me: boolean;
17141716
/** Format: int64 */
17151717
signRequestId: number;
1718+
/** Format: int64 */
1719+
signingOrder?: number;
17161720
identifyMethods?: components["schemas"]["IdentifyMethod"][];
17171721
visibleElements?: components["schemas"]["VisibleElement"][];
17181722
signatureMethods?: components["schemas"]["SignatureMethods"];

src/types/openapi/openapi.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,6 +1147,8 @@ export type components = {
11471147
email?: string;
11481148
account?: string;
11491149
};
1150+
/** Format: int64 */
1151+
signingOrder?: number;
11501152
};
11511153
NextcloudFile: {
11521154
message: string;
@@ -1235,6 +1237,8 @@ export type components = {
12351237
me: boolean;
12361238
/** Format: int64 */
12371239
signRequestId: number;
1240+
/** Format: int64 */
1241+
signingOrder?: number;
12381242
identifyMethods?: components["schemas"]["IdentifyMethod"][];
12391243
visibleElements?: components["schemas"]["VisibleElement"][];
12401244
signatureMethods?: components["schemas"]["SignatureMethods"];

0 commit comments

Comments
 (0)