@memberjunction/storage 1.8.0 → 2.0.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/dist/util.d.ts +2 -2
- package/package.json +4 -4
package/dist/util.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ import { FileStorageProviderEntity } from '@memberjunction/core-entities';
|
|
|
8
8
|
* @returns A promise that resolves to an object with the updated input and the upload URL.
|
|
9
9
|
*/
|
|
10
10
|
export declare const createUploadUrl: <TInput extends {
|
|
11
|
-
ID:
|
|
11
|
+
ID: string;
|
|
12
12
|
Name: string;
|
|
13
|
-
ProviderID:
|
|
13
|
+
ProviderID: string;
|
|
14
14
|
ContentType?: string;
|
|
15
15
|
ProviderKey?: string;
|
|
16
16
|
}>(providerEntity: FileStorageProviderEntity, input: TInput) => Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/storage",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "This library provides a set of objects that handle the interface between the server-side API and various cloud storage providers.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"@azure/identity": "^4.0.1",
|
|
26
26
|
"@azure/storage-blob": "^12.17.0",
|
|
27
27
|
"@google-cloud/storage": "^7.9.0",
|
|
28
|
-
"@memberjunction/core": "
|
|
29
|
-
"@memberjunction/core-entities": "
|
|
30
|
-
"@memberjunction/global": "
|
|
28
|
+
"@memberjunction/core": "2.0.0",
|
|
29
|
+
"@memberjunction/core-entities": "2.0.0",
|
|
30
|
+
"@memberjunction/global": "2.0.0",
|
|
31
31
|
"env-var": "^7.4.1",
|
|
32
32
|
"mime-types": "^2.1.35"
|
|
33
33
|
}
|