mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
Bump dependencies versions
This commit is contained in:
@@ -22,6 +22,7 @@ import {
|
||||
WebhookUpdate
|
||||
} from 'app/common/Triggers';
|
||||
import {addCurrentOrgToPath, getGristConfig} from 'app/common/urlUtils';
|
||||
import { AxiosProgressEvent } from 'axios';
|
||||
import omitBy from 'lodash/omitBy';
|
||||
|
||||
|
||||
@@ -405,7 +406,7 @@ export interface UserAPI {
|
||||
importUnsavedDoc(material: UploadType, options?: {
|
||||
filename?: string,
|
||||
timezone?: string,
|
||||
onUploadProgress?: (ev: ProgressEvent) => void,
|
||||
onUploadProgress?: (ev: AxiosProgressEvent) => void,
|
||||
}): Promise<string>;
|
||||
deleteUser(userId: number, name: string): Promise<void>;
|
||||
getBaseUrl(): string; // Get the prefix for all the endpoints this object wraps.
|
||||
@@ -816,7 +817,7 @@ export class UserAPIImpl extends BaseAPI implements UserAPI {
|
||||
public async importUnsavedDoc(material: UploadType, options?: {
|
||||
filename?: string,
|
||||
timezone?: string,
|
||||
onUploadProgress?: (ev: ProgressEvent) => void,
|
||||
onUploadProgress?: (ev: AxiosProgressEvent) => void,
|
||||
}): Promise<string> {
|
||||
options = options || {};
|
||||
const formData = this.newFormData();
|
||||
|
||||
Reference in New Issue
Block a user