Update API types
This commit is contained in:
parent
ceb217cda8
commit
5448c1cf99
1 changed files with 23 additions and 5 deletions
|
|
@ -50,7 +50,9 @@ export interface paths {
|
||||||
post: {
|
post: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
header?: never;
|
header: {
|
||||||
|
"user-agent": string;
|
||||||
|
};
|
||||||
path: {
|
path: {
|
||||||
vault_id: string;
|
vault_id: string;
|
||||||
};
|
};
|
||||||
|
|
@ -102,7 +104,9 @@ export interface paths {
|
||||||
post: {
|
post: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
header?: never;
|
header: {
|
||||||
|
"user-agent": string;
|
||||||
|
};
|
||||||
path: {
|
path: {
|
||||||
vault_id: string;
|
vault_id: string;
|
||||||
};
|
};
|
||||||
|
|
@ -186,7 +190,9 @@ export interface paths {
|
||||||
put: {
|
put: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
header?: never;
|
header: {
|
||||||
|
"user-agent": string;
|
||||||
|
};
|
||||||
path: {
|
path: {
|
||||||
document_id: string;
|
document_id: string;
|
||||||
vault_id: string;
|
vault_id: string;
|
||||||
|
|
@ -225,7 +231,9 @@ export interface paths {
|
||||||
delete: {
|
delete: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
header?: never;
|
header: {
|
||||||
|
"user-agent": string;
|
||||||
|
};
|
||||||
path: {
|
path: {
|
||||||
document_id: string;
|
document_id: string;
|
||||||
vault_id: string;
|
vault_id: string;
|
||||||
|
|
@ -276,7 +284,9 @@ export interface paths {
|
||||||
put: {
|
put: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
header?: never;
|
header: {
|
||||||
|
"user-agent": string;
|
||||||
|
};
|
||||||
path: {
|
path: {
|
||||||
document_id: string;
|
document_id: string;
|
||||||
vault_id: string;
|
vault_id: string;
|
||||||
|
|
@ -506,6 +516,7 @@ export interface components {
|
||||||
/** @description Response to an update document request. */
|
/** @description Response to an update document request. */
|
||||||
DocumentUpdateResponse:
|
DocumentUpdateResponse:
|
||||||
| {
|
| {
|
||||||
|
deviceId: string;
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
documentId: string;
|
documentId: string;
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
|
|
@ -514,11 +525,13 @@ export interface components {
|
||||||
type: "FastForwardUpdate";
|
type: "FastForwardUpdate";
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
updatedDate: string;
|
updatedDate: string;
|
||||||
|
userId: string;
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
vaultUpdateId: number;
|
vaultUpdateId: number;
|
||||||
}
|
}
|
||||||
| {
|
| {
|
||||||
contentBase64: string;
|
contentBase64: string;
|
||||||
|
deviceId: string;
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
documentId: string;
|
documentId: string;
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
|
|
@ -527,27 +540,32 @@ export interface components {
|
||||||
type: "MergingUpdate";
|
type: "MergingUpdate";
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
updatedDate: string;
|
updatedDate: string;
|
||||||
|
userId: string;
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
vaultUpdateId: number;
|
vaultUpdateId: number;
|
||||||
};
|
};
|
||||||
DocumentVersion: {
|
DocumentVersion: {
|
||||||
contentBase64: string;
|
contentBase64: string;
|
||||||
|
deviceId: string;
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
documentId: string;
|
documentId: string;
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
relativePath: string;
|
relativePath: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
updatedDate: string;
|
updatedDate: string;
|
||||||
|
userId: string;
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
vaultUpdateId: number;
|
vaultUpdateId: number;
|
||||||
};
|
};
|
||||||
DocumentVersionWithoutContent: {
|
DocumentVersionWithoutContent: {
|
||||||
|
deviceId: string;
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
documentId: string;
|
documentId: string;
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
relativePath: string;
|
relativePath: string;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
updatedDate: string;
|
updatedDate: string;
|
||||||
|
userId: string;
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
vaultUpdateId: number;
|
vaultUpdateId: number;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue