@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pod-os/core",
3
- "version": "0.2.1-991c3d7.0",
3
+ "version": "0.2.1-a678fc2.0",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./types/index.d.ts",
@@ -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
- private readonly status;
5
+ readonly status: HttpStatus;
6
6
  constructor(url: string, status: HttpStatus);
7
7
  toString(): string;
8
8
  blob(): Blob | null;
@@ -1,6 +1,6 @@
1
1
  export declare class HttpStatus {
2
- private code;
3
- private text?;
2
+ readonly code: number;
3
+ readonly text?: string | undefined;
4
4
  constructor(code: number, text?: string | undefined);
5
5
  toString(): string;
6
6
  }
@@ -1,3 +1,4 @@
1
1
  export * from "./SolidFile";
2
2
  export * from "./BinaryFile";
3
3
  export * from "./BrokenFile";
4
+ export * from "./HttpStatus";