@vidavidorra/bunyan-pretty-stream 3.0.18 → 3.0.20
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/src/options.d.ts +15 -15
- package/package.json +2 -2
package/dist/src/options.d.ts
CHANGED
@@ -15,11 +15,11 @@ declare const schema: z.ZodObject<{
|
|
15
15
|
pid: boolean;
|
16
16
|
extras: boolean;
|
17
17
|
}, {
|
18
|
-
source?: boolean | undefined;
|
19
|
-
name?: boolean | undefined;
|
20
18
|
time?: boolean | undefined;
|
19
|
+
name?: boolean | undefined;
|
21
20
|
hostname?: boolean | undefined;
|
22
21
|
pid?: boolean | undefined;
|
22
|
+
source?: boolean | undefined;
|
23
23
|
extras?: boolean | undefined;
|
24
24
|
}>>;
|
25
25
|
extras: z.ZodDefault<z.ZodObject<{
|
@@ -34,22 +34,22 @@ declare const schema: z.ZodObject<{
|
|
34
34
|
value: number;
|
35
35
|
}, {
|
36
36
|
key?: number | undefined;
|
37
|
-
total?: number | undefined;
|
38
37
|
value?: number | undefined;
|
38
|
+
total?: number | undefined;
|
39
39
|
}>>;
|
40
40
|
}, "strict", z.ZodTypeAny, {
|
41
|
-
key?: string | undefined;
|
42
41
|
maxLength: {
|
43
42
|
key: number;
|
44
43
|
total: number;
|
45
44
|
value: number;
|
46
45
|
};
|
46
|
+
key?: string | undefined;
|
47
47
|
}, {
|
48
48
|
key?: string | undefined;
|
49
49
|
maxLength?: {
|
50
50
|
key?: number | undefined;
|
51
|
-
total?: number | undefined;
|
52
51
|
value?: number | undefined;
|
52
|
+
total?: number | undefined;
|
53
53
|
} | undefined;
|
54
54
|
}>>;
|
55
55
|
indent: z.ZodDefault<z.ZodObject<{
|
@@ -86,8 +86,8 @@ declare const schema: z.ZodObject<{
|
|
86
86
|
local: boolean;
|
87
87
|
}, {
|
88
88
|
type?: "long" | "short" | "format" | undefined;
|
89
|
-
format?: string | undefined;
|
90
89
|
local?: boolean | undefined;
|
90
|
+
format?: string | undefined;
|
91
91
|
}>>;
|
92
92
|
}, "strict", z.ZodTypeAny, {
|
93
93
|
show: {
|
@@ -104,12 +104,12 @@ declare const schema: z.ZodObject<{
|
|
104
104
|
local: boolean;
|
105
105
|
};
|
106
106
|
extras: {
|
107
|
-
key?: string | undefined;
|
108
107
|
maxLength: {
|
109
108
|
key: number;
|
110
109
|
total: number;
|
111
110
|
value: number;
|
112
111
|
};
|
112
|
+
key?: string | undefined;
|
113
113
|
};
|
114
114
|
indent: {
|
115
115
|
details: number;
|
@@ -119,24 +119,19 @@ declare const schema: z.ZodObject<{
|
|
119
119
|
newLineCharacter: "\r" | "\n" | "\r\n";
|
120
120
|
}, {
|
121
121
|
show?: {
|
122
|
-
source?: boolean | undefined;
|
123
|
-
name?: boolean | undefined;
|
124
122
|
time?: boolean | undefined;
|
123
|
+
name?: boolean | undefined;
|
125
124
|
hostname?: boolean | undefined;
|
126
125
|
pid?: boolean | undefined;
|
126
|
+
source?: boolean | undefined;
|
127
127
|
extras?: boolean | undefined;
|
128
128
|
} | undefined;
|
129
|
-
time?: {
|
130
|
-
type?: "long" | "short" | "format" | undefined;
|
131
|
-
format?: string | undefined;
|
132
|
-
local?: boolean | undefined;
|
133
|
-
} | undefined;
|
134
129
|
extras?: {
|
135
130
|
key?: string | undefined;
|
136
131
|
maxLength?: {
|
137
132
|
key?: number | undefined;
|
138
|
-
total?: number | undefined;
|
139
133
|
value?: number | undefined;
|
134
|
+
total?: number | undefined;
|
140
135
|
} | undefined;
|
141
136
|
} | undefined;
|
142
137
|
indent?: {
|
@@ -145,6 +140,11 @@ declare const schema: z.ZodObject<{
|
|
145
140
|
} | undefined;
|
146
141
|
basePath?: string | undefined;
|
147
142
|
newLineCharacter?: "\r" | "\n" | "\r\n" | undefined;
|
143
|
+
time?: {
|
144
|
+
type?: "long" | "short" | "format" | undefined;
|
145
|
+
local?: boolean | undefined;
|
146
|
+
format?: string | undefined;
|
147
|
+
} | undefined;
|
148
148
|
}>;
|
149
149
|
type Options = z.input<typeof schema>;
|
150
150
|
type ParsedOptions = z.infer<typeof schema>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vidavidorra/bunyan-pretty-stream",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.20",
|
4
4
|
"description": "Highly configurable Bunyan stream with pretty output.",
|
5
5
|
"main": "dist/src/index.js",
|
6
6
|
"types": "dist/src/index.d.ts",
|
@@ -90,6 +90,6 @@
|
|
90
90
|
"chalk": "4.1.2",
|
91
91
|
"json-stringify-pretty-compact": "3.0.0",
|
92
92
|
"moment": "2.29.4",
|
93
|
-
"zod": "3.21.
|
93
|
+
"zod": "3.21.2"
|
94
94
|
}
|
95
95
|
}
|