@webiny/api-file-manager-s3 5.40.6 → 5.41.0-beta.1

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.
@@ -1,5 +1,5 @@
1
1
  import { createAssetDelivery as createBaseAssetDelivery } from "@webiny/api-file-manager";
2
- export declare type AssetDeliveryParams = Parameters<typeof createBaseAssetDelivery>[0] & {
2
+ export type AssetDeliveryParams = Parameters<typeof createBaseAssetDelivery>[0] & {
3
3
  imageResizeWidths?: number[];
4
4
  /**
5
5
  * BE CAREFUL!
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { S3 } from "@webiny/aws-sdk/client-s3";
3
4
  import { Asset, AssetContentsReader } from "@webiny/api-file-manager";
4
5
  export declare class S3ContentsReader implements AssetContentsReader {
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { AssetContentsReader } from "@webiny/api-file-manager";
3
4
  interface ContentsCallable {
4
5
  (): Promise<Buffer> | Buffer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-file-manager-s3",
3
- "version": "5.40.6",
3
+ "version": "5.41.0-beta.1",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,17 +10,17 @@
10
10
  "author": "Webiny Ltd",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "@webiny/api": "5.40.6",
14
- "@webiny/api-file-manager": "5.40.6",
15
- "@webiny/api-security": "5.40.6",
16
- "@webiny/aws-sdk": "5.40.6",
17
- "@webiny/error": "5.40.6",
18
- "@webiny/handler": "5.40.6",
19
- "@webiny/handler-graphql": "5.40.6",
20
- "@webiny/plugins": "5.40.6",
21
- "@webiny/tasks": "5.40.6",
22
- "@webiny/utils": "5.40.6",
23
- "@webiny/validation": "5.40.6",
13
+ "@webiny/api": "5.41.0-beta.1",
14
+ "@webiny/api-file-manager": "5.41.0-beta.1",
15
+ "@webiny/api-security": "5.41.0-beta.1",
16
+ "@webiny/aws-sdk": "5.41.0-beta.1",
17
+ "@webiny/error": "5.41.0-beta.1",
18
+ "@webiny/handler": "5.41.0-beta.1",
19
+ "@webiny/handler-graphql": "5.41.0-beta.1",
20
+ "@webiny/plugins": "5.41.0-beta.1",
21
+ "@webiny/tasks": "5.41.0-beta.1",
22
+ "@webiny/utils": "5.41.0-beta.1",
23
+ "@webiny/validation": "5.41.0-beta.1",
24
24
  "form-data": "4.0.0",
25
25
  "mime": "3.0.0",
26
26
  "node-fetch": "2.7.0",
@@ -34,10 +34,10 @@
34
34
  "@babel/cli": "7.24.1",
35
35
  "@babel/core": "7.24.3",
36
36
  "@types/node-fetch": "2.6.2",
37
- "@webiny/cli": "5.40.6",
38
- "@webiny/project-utils": "5.40.6",
37
+ "@webiny/cli": "5.41.0-beta.1",
38
+ "@webiny/project-utils": "5.41.0-beta.1",
39
39
  "rimraf": "5.0.5",
40
- "typescript": "4.7.4"
40
+ "typescript": "4.9.5"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public",
@@ -47,5 +47,5 @@
47
47
  "build": "yarn webiny run build",
48
48
  "watch": "yarn webiny run watch"
49
49
  },
50
- "gitHead": "f9da84b373e62f9f269599c4301e5e4418a98d51"
50
+ "gitHead": "2035c6fdbac9f52545b5024a381bc568c66ca899"
51
51
  }
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { Response } from "node-fetch";
3
4
  import { PresignedPost } from "@webiny/aws-sdk/client-s3";
4
5
  declare const _default: (buffer: Buffer, preSignedPostPayload: PresignedPost) => Promise<Response>;