@aldb2b/common 1.0.5 → 1.0.6

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.
@@ -3261,6 +3261,16 @@
3261
3261
  "signature": "0c36fbea9249d39d38ad6705ce96cbc9434f1e4769788a873e836cf3577c852b",
3262
3262
  "affectsGlobalScope": false
3263
3263
  },
3264
+ "../src/types/download-presigned-url.interface.ts": {
3265
+ "version": "625e0c821064cef4ad46db44d1e64020cc242d5845539ed0297bd764497c49bb",
3266
+ "signature": "faf0a8dbab776c560b8caf050bcdb729107127038483ecf413dfb74c1fb5af7b",
3267
+ "affectsGlobalScope": false
3268
+ },
3269
+ "../src/types/upload-presigned-url.interface.ts": {
3270
+ "version": "233f6a32a7d1fcdedebdad0729b636bf3778620e14ff99d6f3aedcefae3dc8f2",
3271
+ "signature": "2a8b5961488053fbc2a1d65e7ad51713742e672eb245fbfcd56e2cdaeac2e80c",
3272
+ "affectsGlobalScope": false
3273
+ },
3264
3274
  "../src/utils/create-default-directories.ts": {
3265
3275
  "version": "7d1a651a9236eaeab047279fd180358440ff0d28ef338fb289bff0ccc3edbb85",
3266
3276
  "signature": "5ed0a70747aafee6c622077e7755d30cdf0b7e6da2089afcbeead36be12f3330",
@@ -8925,9 +8935,11 @@
8925
8935
  "../src/interceptors/response.interceptor.ts",
8926
8936
  "../src/interceptors/serialize.interceptor.ts",
8927
8937
  "../src/middlewares/app.middleware.ts",
8938
+ "../src/types/download-presigned-url.interface.ts",
8928
8939
  "../src/types/header-user.interface.ts",
8929
8940
  "../src/types/read-result.interface.ts",
8930
8941
  "../src/types/update-input-data.interface.ts",
8942
+ "../src/types/upload-presigned-url.interface.ts",
8931
8943
  "../src/types/user-role.enum.ts",
8932
8944
  "../src/utils/create-default-directories.ts",
8933
8945
  "../src/utils/equal-array-object.ts",
@@ -0,0 +1,4 @@
1
+ export interface DownloadPresignedURL {
2
+ file: string;
3
+ downloadURL: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=download-presigned-url.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"download-presigned-url.interface.js","sourceRoot":"","sources":["../../src/types/download-presigned-url.interface.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ export interface UploadPresignedURL {
2
+ file: string;
3
+ uploadURL: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=upload-presigned-url.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"upload-presigned-url.interface.js","sourceRoot":"","sources":["../../src/types/upload-presigned-url.interface.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aldb2b/common",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",