@hostlink/light 3.1.1 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ export declare const createFolder: (location: string) => Promise<any>;
2
+ export declare const deleteFolder: (location: string) => Promise<any>;
3
+ export declare const renameFolder: (location: string, newName: string) => Promise<any>;
4
+ export declare const renameFile: (location: string, newName: string) => Promise<any>;
5
+ export declare const writeFile: (location: string, content: string) => Promise<any>;
6
+ export declare const uploadFile: (location: string, file: File) => Promise<any>;
7
+ export declare const deleteFile: (location: string) => Promise<any>;
8
+ export declare const move: (from: string, to: string) => Promise<any>;
9
+ export declare const exists: (location: string) => Promise<any>;
10
+ export declare const list: (location: string) => Promise<any>;
11
+ export declare const read: (location: string) => Promise<any>;
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.d.ts CHANGED
@@ -25,9 +25,12 @@ export type { RoleFields } from './role';
25
25
  export { setApiClient, getApiClient, getApiClientOptional } from './apiClient';
26
26
  export interface GraphQLQuery {
27
27
  [key: string]: boolean | GraphQLQuery | {
28
- __args: Record<string, any>;
28
+ __args?: Record<string, any>;
29
29
  __aliasFor?: string;
30
30
  __variables?: Record<string, string>;
31
31
  __name?: string;
32
+ __on?: Array<GraphQLQuery>;
33
+ __typeName?: string;
34
+ [key: string]: any;
32
35
  };
33
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/light",
3
- "version": "3.1.1",
3
+ "version": "3.2.2",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"