Bump eslint & lint plugin

This commit is contained in:
Andras Schmelczer 2024-12-15 16:34:24 +00:00
parent 2083675c07
commit 4dedadeb87
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
13 changed files with 1059 additions and 920 deletions

View file

@ -56,7 +56,7 @@ export class SyncServer {
contentBytes: Uint8Array;
createdDate: Date;
}): Promise<components["schemas"]["DocumentVersion"]> {
let response = await this.client.POST("/vaults/{vault_id}/documents", {
const response = await this.client.POST("/vaults/{vault_id}/documents", {
params: {
path: {
vault_id: SyncServer.VAULT_ID,
@ -97,7 +97,7 @@ export class SyncServer {
contentBytes: Uint8Array;
createdDate: Date;
}): Promise<components["schemas"]["DocumentVersion"]> {
let response = await this.client.PUT(
const response = await this.client.PUT(
"/vaults/{vault_id}/documents/{document_id}",
{
params: {