@abyss-project/storage 1.0.7 → 1.0.8

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.
@@ -17,6 +17,7 @@ export interface IDuplicateApplicationFileAdminBody {
17
17
  bucket?: string;
18
18
  thumbnail?: ThumbnailPreSignUrlApplicationFileBody;
19
19
  publicAccessPassword?: string;
20
+ regeneratePublicAccessId?: boolean;
20
21
  }
21
22
  export interface IDuplicateMultipleApplicationFileAdminBody {
22
23
  applicationFile: {
@@ -27,6 +28,7 @@ export interface IDuplicateMultipleApplicationFileAdminBody {
27
28
  bucket?: string;
28
29
  thumbnail?: ThumbnailPreSignUrlApplicationFileBody;
29
30
  publicAccessPassword?: string;
31
+ regeneratePublicAccessId?: boolean;
30
32
  }[];
31
33
  }
32
34
  export interface IGetApplicationFileAdminParams {
@@ -41,6 +41,7 @@ export interface IDuplicateApplicationFileBody {
41
41
  thumbnail?: ThumbnailPreSignUrlApplicationFileBody;
42
42
  customPublicAccessId?: string | null;
43
43
  publicAccessPassword?: string;
44
+ regeneratePublicAccessId?: boolean;
44
45
  }
45
46
  export interface IDuplicateMultipleApplicationFileParams {
46
47
  applicationId: string;
@@ -54,6 +55,7 @@ export interface IDuplicateMultipleApplicationFileBody {
54
55
  thumbnail?: ThumbnailPreSignUrlApplicationFileBody;
55
56
  customPublicAccessId?: string | null;
56
57
  publicAccessPassword?: string;
58
+ regeneratePublicAccessId?: boolean;
57
59
  }[];
58
60
  }
59
61
  export interface IGetApplicationFileParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/storage",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Core package to interact with Abyss-Storage",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",