@agoric/internal 0.3.3-dev-0e3d0e8.0.0e3d0e8 → 0.3.3-dev-04fc8aa.0.04fc8aa

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/internal",
3
- "version": "0.3.3-dev-0e3d0e8.0.0e3d0e8",
3
+ "version": "0.3.3-dev-04fc8aa.0.04fc8aa",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  "lint:types": "yarn run -T tsc"
25
25
  },
26
26
  "dependencies": {
27
- "@agoric/base-zone": "0.1.1-dev-0e3d0e8.0.0e3d0e8",
27
+ "@agoric/base-zone": "0.1.1-dev-04fc8aa.0.04fc8aa",
28
28
  "@endo/cache-map": "^1.1.0",
29
29
  "@endo/common": "^1.2.13",
30
30
  "@endo/compartment-mapper": "^1.6.3",
@@ -42,7 +42,7 @@
42
42
  "jessie.js": "^0.3.4"
43
43
  },
44
44
  "devDependencies": {
45
- "@agoric/cosmic-proto": "0.4.1-dev-0e3d0e8.0.0e3d0e8",
45
+ "@agoric/cosmic-proto": "0.4.1-dev-04fc8aa.0.04fc8aa",
46
46
  "@endo/exo": "^1.5.12",
47
47
  "@endo/init": "^1.1.12",
48
48
  "@endo/ses-ava": "^1.3.2",
@@ -70,5 +70,5 @@
70
70
  "typeCoverage": {
71
71
  "atLeast": 92.84
72
72
  },
73
- "gitHead": "0e3d0e89e4b8e0545256d2da41d9efb26d90b7cd"
73
+ "gitHead": "04fc8aa0a4063c811832a712b58cac79404e4c4f"
74
74
  }
@@ -7,7 +7,7 @@ export function makeFsStreamWriter(filePath: string | undefined | null): Promise
7
7
  export type StreamLike = ReadStream | WriteStream | Socket;
8
8
  export type EventName = "drain" | "ready";
9
9
  export type FsStreamWriter = NonNullable<Awaited<ReturnType<typeof makeFsStreamWriter>>>;
10
- import type { ReadStream } from 'fs';
11
- import type { WriteStream } from 'fs';
12
- import type { Socket } from 'net';
10
+ import type { ReadStream } from 'node:fs';
11
+ import type { WriteStream } from 'node:fs';
12
+ import type { Socket } from 'node:net';
13
13
  //# sourceMappingURL=fs-stream.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fs-stream.d.ts","sourceRoot":"","sources":["fs-stream.js"],"names":[],"mappings":"AAiBO,sCAHI,UAAU,GACR,OAAO,CAAC,IAAI,CAAC,CAgCtB;AA8GG,6CADK,MAAM,GAAG,SAAS,GAAG,IAAI;;;;eAsEpC;yBAxNa,UAAU,GAAG,WAAW,GAAG,MAAM;wBACjC,OAAO,GAAG,OAAO;6BAgJjB,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAAC;gCAtJ5C,IAAI;iCACH,IAAI;4BACT,KAAK"}
1
+ {"version":3,"file":"fs-stream.d.ts","sourceRoot":"","sources":["fs-stream.js"],"names":[],"mappings":"AAgBO,sCAHI,UAAU,GACR,OAAO,CAAC,IAAI,CAAC,CAgCtB;AA8GG,6CADK,MAAM,GAAG,SAAS,GAAG,IAAI;;;;eAsEpC;yBAxNa,UAAU,GAAG,WAAW,GAAG,MAAM;wBACjC,OAAO,GAAG,OAAO;6BAgJjB,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAAC;gCArJ/B,SAAS;iCAAT,SAAS;4BAC1B,UAAU"}
@@ -3,9 +3,8 @@ import process from 'node:process';
3
3
  import { promisify } from 'node:util';
4
4
 
5
5
  /**
6
- * @import {ReadStream} from 'fs';
7
- * @import {WriteStream} from 'fs';
8
- * @import {Socket} from 'net';
6
+ * @import {ReadStream, WriteStream} from 'node:fs';
7
+ * @import {Socket} from 'node:net';
9
8
  */
10
9
 
11
10
  /** @typedef {ReadStream | WriteStream | Socket} StreamLike */