@webiny/api-file-manager 5.43.2-beta.0 → 6.0.0-alpha.0

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.
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
5
5
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
6
6
 
7
- The API for Webiny Admin's ([@webiny/admin](../app-admin)) File Manager.
7
+ The API for Webiny Admin's ([@webiny/app-admin](../app-admin)) File Manager.
8
8
 
9
9
  ## Install
10
10
  ```
@@ -3,4 +3,4 @@ import { AssetDeliveryConfigModifierPlugin } from "./index";
3
3
  export interface AssetDeliveryParams {
4
4
  documentClient: DynamoDBDocument;
5
5
  }
6
- export declare const setupAssetDelivery: (params: AssetDeliveryParams) => (AssetDeliveryConfigModifierPlugin | import("@webiny/handler").ModifyFastifyPlugin)[];
6
+ export declare const setupAssetDelivery: (params: AssetDeliveryParams) => (import("@webiny/handler").ModifyFastifyPlugin | AssetDeliveryConfigModifierPlugin)[];
@@ -7,5 +7,5 @@ export declare const emptyResolver: () => {};
7
7
  interface ResolveCallable {
8
8
  (): Promise<any>;
9
9
  }
10
- export declare const resolve: (fn: ResolveCallable) => Promise<Response<any> | ErrorResponse>;
10
+ export declare const resolve: (fn: ResolveCallable) => Promise<ErrorResponse | Response<any>>;
11
11
  export {};
package/index.d.ts CHANGED
@@ -7,4 +7,4 @@ export * from "./plugins";
7
7
  export * from "./delivery";
8
8
  export declare const createFileManagerContext: ({ storageOperations }: Pick<FileManagerConfig, "storageOperations">) => ContextPlugin<FileManagerContext>;
9
9
  export declare const createFileManagerGraphQL: () => (import("@webiny/handler-graphql").GraphQLSchemaPlugin<FileManagerContext> | ContextPlugin<FileManagerContext>)[];
10
- export declare const createAssetDelivery: (config: AssetDeliveryParams) => (import("./delivery").AssetDeliveryConfigModifierPlugin | import("@webiny/handler").ModifyFastifyPlugin)[];
10
+ export declare const createAssetDelivery: (config: AssetDeliveryParams) => (import("@webiny/handler").ModifyFastifyPlugin | import("./delivery").AssetDeliveryConfigModifierPlugin)[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-file-manager",
3
- "version": "5.43.2-beta.0",
3
+ "version": "6.0.0-alpha.0",
4
4
  "main": "index.js",
5
5
  "keywords": [
6
6
  "fm:base"
@@ -18,27 +18,27 @@
18
18
  ],
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "@webiny/api": "5.43.2-beta.0",
22
- "@webiny/api-headless-cms": "5.43.2-beta.0",
23
- "@webiny/api-security": "5.43.2-beta.0",
24
- "@webiny/api-tenancy": "5.43.2-beta.0",
25
- "@webiny/aws-sdk": "5.43.2-beta.0",
26
- "@webiny/error": "5.43.2-beta.0",
27
- "@webiny/handler": "5.43.2-beta.0",
28
- "@webiny/handler-aws": "5.43.2-beta.0",
29
- "@webiny/handler-graphql": "5.43.2-beta.0",
30
- "@webiny/plugins": "5.43.2-beta.0",
31
- "@webiny/project-utils": "5.43.2-beta.0",
32
- "@webiny/pubsub": "5.43.2-beta.0",
33
- "@webiny/tasks": "5.43.2-beta.0",
21
+ "@webiny/api": "6.0.0-alpha.0",
22
+ "@webiny/api-headless-cms": "6.0.0-alpha.0",
23
+ "@webiny/api-security": "6.0.0-alpha.0",
24
+ "@webiny/api-tenancy": "6.0.0-alpha.0",
25
+ "@webiny/aws-sdk": "6.0.0-alpha.0",
26
+ "@webiny/error": "6.0.0-alpha.0",
27
+ "@webiny/handler": "6.0.0-alpha.0",
28
+ "@webiny/handler-aws": "6.0.0-alpha.0",
29
+ "@webiny/handler-graphql": "6.0.0-alpha.0",
30
+ "@webiny/plugins": "6.0.0-alpha.0",
31
+ "@webiny/project-utils": "6.0.0-alpha.0",
32
+ "@webiny/pubsub": "6.0.0-alpha.0",
33
+ "@webiny/tasks": "6.0.0-alpha.0",
34
34
  "cache-control-parser": "2.0.6",
35
35
  "lodash": "4.17.21",
36
36
  "object-hash": "3.0.0",
37
37
  "zod": "3.23.8"
38
38
  },
39
39
  "devDependencies": {
40
- "@webiny/api-i18n": "5.43.2-beta.0",
41
- "@webiny/utils": "5.43.2-beta.0",
40
+ "@webiny/api-i18n": "6.0.0-alpha.0",
41
+ "@webiny/utils": "6.0.0-alpha.0",
42
42
  "jest": "29.7.0",
43
43
  "rimraf": "6.0.1",
44
44
  "typescript": "5.3.3"
@@ -61,5 +61,5 @@
61
61
  ]
62
62
  }
63
63
  },
64
- "gitHead": "ec6176f001f6350221d992981e110a0351addbaf"
64
+ "gitHead": "a5b28fed7a242d8f56712197a8ea83aa6d2ed101"
65
65
  }