@pod-os/core 0.2.1-991c3d7.0 → 0.2.1-a678fc2.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/index.js +1 -0
- package/lib/index.js +1 -0
- package/package.json +1 -1
- package/types/files/BrokenFile.d.ts +1 -1
- package/types/files/HttpStatus.d.ts +2 -2
- package/types/files/index.d.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -37894,6 +37894,7 @@ export {
|
|
|
37894
37894
|
BinaryFile,
|
|
37895
37895
|
BrokenFile,
|
|
37896
37896
|
BrowserSession,
|
|
37897
|
+
HttpStatus,
|
|
37897
37898
|
PodOS
|
|
37898
37899
|
};
|
|
37899
37900
|
/*!
|
package/lib/index.js
CHANGED
|
@@ -25104,6 +25104,7 @@ ${newlined}
|
|
|
25104
25104
|
BinaryFile: () => BinaryFile,
|
|
25105
25105
|
BrokenFile: () => BrokenFile,
|
|
25106
25106
|
BrowserSession: () => BrowserSession,
|
|
25107
|
+
HttpStatus: () => HttpStatus,
|
|
25107
25108
|
PodOS: () => PodOS
|
|
25108
25109
|
});
|
|
25109
25110
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { HttpStatus } from "./HttpStatus";
|
|
|
2
2
|
import { SolidFile } from "./SolidFile";
|
|
3
3
|
export declare class BrokenFile implements SolidFile {
|
|
4
4
|
readonly url: string;
|
|
5
|
-
|
|
5
|
+
readonly status: HttpStatus;
|
|
6
6
|
constructor(url: string, status: HttpStatus);
|
|
7
7
|
toString(): string;
|
|
8
8
|
blob(): Blob | null;
|
package/types/files/index.d.ts
CHANGED