Update types
This commit is contained in:
parent
10bc8c7099
commit
a2066cfc1c
1 changed files with 4 additions and 5 deletions
|
|
@ -14,7 +14,9 @@ export interface paths {
|
||||||
get: {
|
get: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
header?: never;
|
header?: {
|
||||||
|
authorization?: string;
|
||||||
|
};
|
||||||
path?: never;
|
path?: never;
|
||||||
cookie?: never;
|
cookie?: never;
|
||||||
};
|
};
|
||||||
|
|
@ -239,7 +241,6 @@ export interface components {
|
||||||
contentBase64: string;
|
contentBase64: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
createdDate: string;
|
createdDate: string;
|
||||||
isBinary: boolean;
|
|
||||||
relativePath: string;
|
relativePath: string;
|
||||||
};
|
};
|
||||||
DeleteDocumentVersion: {
|
DeleteDocumentVersion: {
|
||||||
|
|
@ -252,7 +253,6 @@ export interface components {
|
||||||
createdDate: string;
|
createdDate: string;
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
documentId: string;
|
documentId: string;
|
||||||
isBinary: boolean;
|
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
relativePath: string;
|
relativePath: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
|
|
@ -266,7 +266,6 @@ export interface components {
|
||||||
createdDate: string;
|
createdDate: string;
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
documentId: string;
|
documentId: string;
|
||||||
isBinary: boolean;
|
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
relativePath: string;
|
relativePath: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
|
|
@ -297,13 +296,13 @@ export interface components {
|
||||||
vault_id: string;
|
vault_id: string;
|
||||||
};
|
};
|
||||||
PingResponse: {
|
PingResponse: {
|
||||||
|
isAuthenticated: boolean;
|
||||||
serverVersion: string;
|
serverVersion: string;
|
||||||
};
|
};
|
||||||
UpdateDocumentVersion: {
|
UpdateDocumentVersion: {
|
||||||
contentBase64: string;
|
contentBase64: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
createdDate: string;
|
createdDate: string;
|
||||||
isBinary: boolean;
|
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
parentVersionId: number;
|
parentVersionId: number;
|
||||||
relativePath: string;
|
relativePath: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue