@augment-vir/node 30.3.0 → 30.4.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.
@@ -16,14 +16,19 @@ export type ShellOutput = {
16
16
  exitCode: number | undefined;
17
17
  exitSignal: NodeJS.Signals | undefined;
18
18
  };
19
- declare const ShellStdoutEvent_base: (new (eventInitDict: import("typed-event-target").TypedCustomEventInit<string | Buffer>) => import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stdout">) & Pick<{
20
- new (type: string, eventInitDict?: EventInit | undefined): Event;
19
+ declare const ShellStdoutEvent_base: (new (eventInitDict: {
20
+ bubbles?: boolean;
21
+ cancelable?: boolean;
22
+ composed?: boolean;
23
+ detail: string | Buffer;
24
+ }) => import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stdout">) & Pick<{
25
+ new (type: string, eventInitDict?: EventInit): Event;
21
26
  prototype: Event;
22
27
  readonly NONE: 0;
23
28
  readonly CAPTURING_PHASE: 1;
24
29
  readonly AT_TARGET: 2;
25
30
  readonly BUBBLING_PHASE: 3;
26
- }, "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE" | "prototype"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stdout">, "type">;
31
+ }, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stdout">, "type">;
27
32
  /**
28
33
  * An event that indicates that the shell command just wrote to stdout.
29
34
  *
@@ -33,14 +38,19 @@ declare const ShellStdoutEvent_base: (new (eventInitDict: import("typed-event-ta
33
38
  */
34
39
  export declare class ShellStdoutEvent extends ShellStdoutEvent_base {
35
40
  }
36
- declare const ShellStderrEvent_base: (new (eventInitDict: import("typed-event-target").TypedCustomEventInit<string | Buffer>) => import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stderr">) & Pick<{
37
- new (type: string, eventInitDict?: EventInit | undefined): Event;
41
+ declare const ShellStderrEvent_base: (new (eventInitDict: {
42
+ bubbles?: boolean;
43
+ cancelable?: boolean;
44
+ composed?: boolean;
45
+ detail: string | Buffer;
46
+ }) => import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stderr">) & Pick<{
47
+ new (type: string, eventInitDict?: EventInit): Event;
38
48
  prototype: Event;
39
49
  readonly NONE: 0;
40
50
  readonly CAPTURING_PHASE: 1;
41
51
  readonly AT_TARGET: 2;
42
52
  readonly BUBBLING_PHASE: 3;
43
- }, "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE" | "prototype"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stderr">, "type">;
53
+ }, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<string | Buffer, "shell-stderr">, "type">;
44
54
  /**
45
55
  * An event that indicates that the shell command just wrote to stderr.
46
56
  *
@@ -50,20 +60,25 @@ declare const ShellStderrEvent_base: (new (eventInitDict: import("typed-event-ta
50
60
  */
51
61
  export declare class ShellStderrEvent extends ShellStderrEvent_base {
52
62
  }
53
- declare const ShellDoneEvent_base: (new (eventInitDict: import("typed-event-target").TypedCustomEventInit<{
54
- exitCode: number | undefined;
55
- exitSignal: NodeJS.Signals | undefined;
56
- }>) => import("typed-event-target").TypedCustomEvent<{
63
+ declare const ShellDoneEvent_base: (new (eventInitDict: {
64
+ bubbles?: boolean;
65
+ cancelable?: boolean;
66
+ composed?: boolean;
67
+ detail: {
68
+ exitCode: number | undefined;
69
+ exitSignal: NodeJS.Signals | undefined;
70
+ };
71
+ }) => import("typed-event-target").TypedCustomEvent<{
57
72
  exitCode: number | undefined;
58
73
  exitSignal: NodeJS.Signals | undefined;
59
74
  }, "shell-done">) & Pick<{
60
- new (type: string, eventInitDict?: EventInit | undefined): Event;
75
+ new (type: string, eventInitDict?: EventInit): Event;
61
76
  prototype: Event;
62
77
  readonly NONE: 0;
63
78
  readonly CAPTURING_PHASE: 1;
64
79
  readonly AT_TARGET: 2;
65
80
  readonly BUBBLING_PHASE: 3;
66
- }, "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE" | "prototype"> & Pick<import("typed-event-target").TypedCustomEvent<{
81
+ }, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<{
67
82
  exitCode: number | undefined;
68
83
  exitSignal: NodeJS.Signals | undefined;
69
84
  }, "shell-done">, "type">;
@@ -78,14 +93,19 @@ declare const ShellDoneEvent_base: (new (eventInitDict: import("typed-event-targ
78
93
  */
79
94
  export declare class ShellDoneEvent extends ShellDoneEvent_base {
80
95
  }
81
- declare const ShellErrorEvent_base: (new (eventInitDict: import("typed-event-target").TypedCustomEventInit<Error>) => import("typed-event-target").TypedCustomEvent<Error, "shell-error">) & Pick<{
82
- new (type: string, eventInitDict?: EventInit | undefined): Event;
96
+ declare const ShellErrorEvent_base: (new (eventInitDict: {
97
+ bubbles?: boolean;
98
+ cancelable?: boolean;
99
+ composed?: boolean;
100
+ detail: Error;
101
+ }) => import("typed-event-target").TypedCustomEvent<Error, "shell-error">) & Pick<{
102
+ new (type: string, eventInitDict?: EventInit): Event;
83
103
  prototype: Event;
84
104
  readonly NONE: 0;
85
105
  readonly CAPTURING_PHASE: 1;
86
106
  readonly AT_TARGET: 2;
87
107
  readonly BUBBLING_PHASE: 3;
88
- }, "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE" | "prototype"> & Pick<import("typed-event-target").TypedCustomEvent<Error, "shell-error">, "type">;
108
+ }, "prototype" | "NONE" | "CAPTURING_PHASE" | "AT_TARGET" | "BUBBLING_PHASE"> & Pick<import("typed-event-target").TypedCustomEvent<Error, "shell-error">, "type">;
89
109
  /**
90
110
  * An event that indicates that the shell command errored.
91
111
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/node",
3
- "version": "30.3.0",
3
+ "version": "30.4.0",
4
4
  "description": "A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.",
5
5
  "keywords": [
6
6
  "augment",
@@ -37,27 +37,27 @@
37
37
  "test:update": "npm test"
38
38
  },
39
39
  "dependencies": {
40
- "@augment-vir/assert": "^30.3.0",
41
- "@augment-vir/common": "^30.3.0",
40
+ "@augment-vir/assert": "^30.4.0",
41
+ "@augment-vir/common": "^30.4.0",
42
42
  "@date-vir/duration": "^6.0.1",
43
43
  "ansi-styles": "^6.2.1",
44
44
  "terminate": "^2.8.0",
45
45
  "type-fest": "^4.26.1",
46
- "typed-event-target": "^3.4.0"
46
+ "typed-event-target": "^4.0.2"
47
47
  },
48
48
  "devDependencies": {
49
- "@augment-vir/test": "^30.3.0",
50
- "@prisma/client": "^5.20.0",
51
- "@types/node": "^22.7.4",
52
- "@web/dev-server-esbuild": "^1.0.2",
49
+ "@augment-vir/test": "^30.4.0",
50
+ "@prisma/client": "^5.22.0",
51
+ "@types/node": "^22.9.0",
52
+ "@web/dev-server-esbuild": "^1.0.3",
53
53
  "@web/test-runner": "^0.19.0",
54
54
  "@web/test-runner-commands": "^0.9.0",
55
55
  "@web/test-runner-playwright": "^0.11.0",
56
56
  "@web/test-runner-visual-regression": "^0.10.0",
57
57
  "c8": "^10.1.2",
58
- "concurrently": "^9.0.1",
59
- "istanbul-smart-text-reporter": "^1.1.4",
60
- "prisma": "^5.20.0"
58
+ "concurrently": "^9.1.0",
59
+ "istanbul-smart-text-reporter": "^1.1.5",
60
+ "prisma": "^5.22.0"
61
61
  },
62
62
  "engines": {
63
63
  "node": ">=22"