You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/types/openapi/openapi.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -502,7 +502,7 @@ export type paths = {
502
502
};
503
503
/**
504
504
* Validate a file using Uuid
505
-
* @description Validate a file returning file data. When `nodeType` is `envelope`, the response includes `filesCount` and `files` as a list of envelope child files.
505
+
* @description Validate a file returning file data. The response always includes `filesCount` and `files`. For `nodeType=file`, `filesCount=1` and `files` contains the current file. For `nodeType=envelope`, `files` contains envelope child files.
506
506
*/
507
507
get: operations["file-validate-uuid"];
508
508
put?: never;
@@ -522,7 +522,7 @@ export type paths = {
522
522
};
523
523
/**
524
524
* Validate a file using FileId
525
-
* @description Validate a file returning file data. When `nodeType` is `envelope`, the response includes `filesCount` and `files` as a list of envelope child files.
525
+
* @description Validate a file returning file data. The response always includes `filesCount` and `files`. For `nodeType=file`, `filesCount=1` and `files` contains the current file. For `nodeType=envelope`, `files` contains envelope child files.
526
526
*/
527
527
get: operations["file-validate-file-id"];
528
528
put?: never;
@@ -544,7 +544,7 @@ export type paths = {
544
544
put?: never;
545
545
/**
546
546
* Validate a binary file
547
-
* @description Validate a binary file returning file data. Use field 'file' for the file upload. When `nodeType` is `envelope`, the response includes `filesCount` and `files` as a list of envelope child files.
547
+
* @description Validate a binary file returning file data. Use field 'file' for the file upload. The response always includes `filesCount` and `files`. For `nodeType=file`, `filesCount=1` and `files` contains the current file. For `nodeType=envelope`, `files` contains envelope child files.
548
548
*/
549
549
post: operations["file-validate-binary"];
550
550
delete?: never;
@@ -863,7 +863,7 @@ export type paths = {
863
863
put?: never;
864
864
/**
865
865
* Request signature
866
-
* @description Request that a file be signed by a list of signers. Each signer in the signers array can optionally include a 'signingOrder' field to control the order of signatures when ordered signing flow is enabled. When the created entity is an envelope (`nodeType` = `envelope`), the returned `data` includes `filesCount` and `files` as a list of envelope child files.
866
+
* @description Request that a file be signed by a list of signers. Each signer in the signers array can optionally include a 'signingOrder' field to control the order of signatures when ordered signing flow is enabled. The returned `data` always includes `filesCount` and `files`. For `nodeType=file`, `filesCount=1` and `files` contains the current file. For `nodeType=envelope`, `files` contains envelope child files.
0 commit comments