@webiny/api-file-manager-s3 6.2.0-beta.0 → 6.3.0-beta.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.
@@ -1 +1,4 @@
1
- export declare const ApplyThreatScanningFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const ApplyThreatScanningFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const DeleteFileFromBucketFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const DeleteFileFromBucketFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const ExtractMetadataFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const ExtractMetadataFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const FlushCacheFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const FlushCacheFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const WriteFileMetadataFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const WriteFileMetadataFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-file-manager-s3",
3
- "version": "6.2.0-beta.0",
3
+ "version": "6.3.0-beta.0",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -11,18 +11,19 @@
11
11
  "author": "Webiny Ltd",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "@webiny/api": "6.2.0-beta.0",
15
- "@webiny/api-core": "6.2.0-beta.0",
16
- "@webiny/api-file-manager": "6.2.0-beta.0",
17
- "@webiny/api-websockets": "6.2.0-beta.0",
18
- "@webiny/aws-sdk": "6.2.0-beta.0",
19
- "@webiny/feature": "6.2.0-beta.0",
20
- "@webiny/handler": "6.2.0-beta.0",
21
- "@webiny/handler-aws": "6.2.0-beta.0",
22
- "@webiny/handler-graphql": "6.2.0-beta.0",
23
- "@webiny/plugins": "6.2.0-beta.0",
24
- "@webiny/utils": "6.2.0-beta.0",
25
- "@webiny/validation": "6.2.0-beta.0",
14
+ "@webiny/api": "6.3.0-beta.0",
15
+ "@webiny/api-core": "6.3.0-beta.0",
16
+ "@webiny/api-file-manager": "6.3.0-beta.0",
17
+ "@webiny/api-websockets": "6.3.0-beta.0",
18
+ "@webiny/aws-sdk": "6.3.0-beta.0",
19
+ "@webiny/feature": "6.3.0-beta.0",
20
+ "@webiny/handler": "6.3.0-beta.0",
21
+ "@webiny/handler-aws": "6.3.0-beta.0",
22
+ "@webiny/handler-graphql": "6.3.0-beta.0",
23
+ "@webiny/plugins": "6.3.0-beta.0",
24
+ "@webiny/tasks": "6.3.0-beta.0",
25
+ "@webiny/utils": "6.3.0-beta.0",
26
+ "@webiny/validation": "6.3.0-beta.0",
26
27
  "exifreader": "4.38.1",
27
28
  "mime": "4.1.0",
28
29
  "object-hash": "3.0.0",
@@ -32,14 +33,14 @@
32
33
  "sharp": "0.34.5"
33
34
  },
34
35
  "devDependencies": {
35
- "@webiny/build-tools": "6.2.0-beta.0",
36
+ "@webiny/build-tools": "6.3.0-beta.0",
36
37
  "rimraf": "6.1.3",
37
- "typescript": "5.9.3",
38
+ "typescript": "6.0.3",
38
39
  "vitest": "4.1.4"
39
40
  },
40
41
  "publishConfig": {
41
42
  "access": "public",
42
43
  "directory": "dist"
43
44
  },
44
- "gitHead": "3d3148358b6febbc857371930871743bec3b3939"
45
+ "gitHead": "94c21e58aebc9855bf1ae972423281faa0f5c135"
45
46
  }
package/types.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import type { PresignedPost } from "@webiny/aws-sdk/client-s3/index.js";
2
+ import "@webiny/tasks/features/TaskController/augmentation.js";
2
3
  export interface PresignedPostPayloadData {
3
4
  name: string;
4
5
  type: string;
package/types.js CHANGED
@@ -1,3 +1,3 @@
1
- export {};
1
+ import "@webiny/tasks/features/TaskController/augmentation.js";
2
2
 
3
3
  //# sourceMappingURL=types.js.map
package/types.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import type { PresignedPost } from \"@webiny/aws-sdk/client-s3/index.js\";\n\nexport interface PresignedPostPayloadData {\n name: string;\n type: string;\n size: number;\n id?: string;\n key?: string;\n keyPrefix?: string;\n}\n\nexport interface FileData {\n id: string;\n key: string;\n name: string;\n size: number;\n type: string;\n}\n\nexport interface PresignedPostPayloadDataResponse {\n data: PresignedPost;\n file: FileData;\n}\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import type { PresignedPost } from \"@webiny/aws-sdk/client-s3/index.js\";\nimport \"@webiny/tasks/features/TaskController/augmentation.js\";\n\nexport interface PresignedPostPayloadData {\n name: string;\n type: string;\n size: number;\n id?: string;\n key?: string;\n keyPrefix?: string;\n}\n\nexport interface FileData {\n id: string;\n key: string;\n name: string;\n size: number;\n type: string;\n}\n\nexport interface PresignedPostPayloadDataResponse {\n data: PresignedPost;\n file: FileData;\n}\n"],"mappings":"AACA,OAAO,uDAAuD","ignoreList":[]}