@inceptionbg/main 1.0.24 → 1.0.25
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/index.d.ts +8 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -130,12 +130,16 @@ interface IFileSignData {
|
|
|
130
130
|
notificationPhoneNumber?: string;
|
|
131
131
|
}
|
|
132
132
|
interface IFile {
|
|
133
|
-
uuid
|
|
134
|
-
|
|
133
|
+
uuid: string;
|
|
134
|
+
contentType?: string;
|
|
135
|
+
digest?: string;
|
|
136
|
+
digestAlgorithm?: string;
|
|
137
|
+
fileUuid?: string;
|
|
138
|
+
lengthInBytes: number;
|
|
139
|
+
md5?: string;
|
|
140
|
+
originalFileName: string;
|
|
135
141
|
downloadUrl?: string;
|
|
136
|
-
lengthInBytes?: number;
|
|
137
142
|
uploadedAt?: string;
|
|
138
|
-
fileUuid?: string;
|
|
139
143
|
storage?: {
|
|
140
144
|
url?: string;
|
|
141
145
|
};
|