@webiny/api-file-manager-ddb 5.37.2 → 5.37.3-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.
- package/index.js +3 -1
- package/operations/AliasesStorageOperations.js +3 -1
- package/operations/FilesStorageOperations.js +3 -1
- package/operations/SettingsStorageOperations.js +3 -1
- package/operations/SystemStorageOperations.js +3 -1
- package/package.json +8 -8
- package/plugins/SettingsAttributePlugin.js +3 -1
- package/plugins/SystemAttributePlugin.js +3 -1
- package/plugins/index.js +3 -1
package/index.js
CHANGED
|
@@ -52,4 +52,6 @@ const createFileManagerStorageOperations = ({
|
|
|
52
52
|
})
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
-
exports.createFileManagerStorageOperations = createFileManagerStorageOperations;
|
|
55
|
+
exports.createFileManagerStorageOperations = createFileManagerStorageOperations;
|
|
56
|
+
|
|
57
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -32,4 +32,6 @@ class FilesStorageOperations {
|
|
|
32
32
|
throw new Error("api-file-manager-ddb does not implement the Files storage operations.");
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
exports.FilesStorageOperations = FilesStorageOperations;
|
|
35
|
+
exports.FilesStorageOperations = FilesStorageOperations;
|
|
36
|
+
|
|
37
|
+
//# sourceMappingURL=FilesStorageOperations.js.map
|
|
@@ -80,4 +80,6 @@ class SystemStorageOperations {
|
|
|
80
80
|
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, original), data);
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
|
-
exports.SystemStorageOperations = SystemStorageOperations;
|
|
83
|
+
exports.SystemStorageOperations = SystemStorageOperations;
|
|
84
|
+
|
|
85
|
+
//# sourceMappingURL=SystemStorageOperations.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-file-manager-ddb",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.3-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"@webiny/api-file-manager",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/runtime": "7.22.6",
|
|
24
|
-
"@webiny/api-file-manager": "5.37.
|
|
25
|
-
"@webiny/db-dynamodb": "5.37.
|
|
26
|
-
"@webiny/error": "5.37.
|
|
27
|
-
"@webiny/plugins": "5.37.
|
|
28
|
-
"@webiny/project-utils": "5.37.
|
|
24
|
+
"@webiny/api-file-manager": "5.37.3-beta.1",
|
|
25
|
+
"@webiny/db-dynamodb": "5.37.3-beta.1",
|
|
26
|
+
"@webiny/error": "5.37.3-beta.1",
|
|
27
|
+
"@webiny/plugins": "5.37.3-beta.1",
|
|
28
|
+
"@webiny/project-utils": "5.37.3-beta.1",
|
|
29
29
|
"aws-sdk": "2.1310.0",
|
|
30
30
|
"dynamodb-toolbox": "0.3.5"
|
|
31
31
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@babel/plugin-transform-runtime": "7.22.7",
|
|
37
37
|
"@babel/preset-env": "7.22.7",
|
|
38
38
|
"@babel/preset-typescript": "7.22.5",
|
|
39
|
-
"@webiny/cli": "5.37.
|
|
39
|
+
"@webiny/cli": "5.37.3-beta.1",
|
|
40
40
|
"jest": "29.5.0",
|
|
41
41
|
"jest-dynalite": "3.6.1",
|
|
42
42
|
"jsonpack": "1.1.5",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
]
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "59d377132f34c76cb198cd0f0eee211a56ca25b7"
|
|
67
67
|
}
|
|
@@ -14,4 +14,6 @@ class SettingsAttributePlugin extends _AttributePlugin.AttributePlugin {
|
|
|
14
14
|
}));
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
exports.SettingsAttributePlugin = SettingsAttributePlugin;
|
|
17
|
+
exports.SettingsAttributePlugin = SettingsAttributePlugin;
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=SettingsAttributePlugin.js.map
|