@harness-engineering/core 0.26.4 → 0.28.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/analyzer-VY6DJVOU.mjs +8 -0
- package/dist/architecture/matchers.d.mts +1 -1
- package/dist/architecture/matchers.d.ts +1 -1
- package/dist/architecture/matchers.mjs +4 -1
- package/dist/chunk-7P6ASYW6.mjs +9 -0
- package/dist/chunk-BTUDWWB4.mjs +1729 -0
- package/dist/chunk-FYTJQ2ZY.mjs +1171 -0
- package/dist/chunk-IIEDD47I.mjs +125 -0
- package/dist/{chunk-JIOBXIVB.mjs → chunk-MUWJHO2S.mjs} +600 -1886
- package/dist/chunk-XKLVJIPL.mjs +261 -0
- package/dist/index.d.mts +185 -30
- package/dist/index.d.ts +185 -30
- package/dist/index.js +7500 -6731
- package/dist/index.mjs +1269 -2781
- package/dist/timeline-manager-FPYKJRHR.mjs +8 -0
- package/package.json +2 -2
- package/dist/{matchers-DSibUtbV.d.mts → matchers-OE6gO1nh.d.mts} +6 -6
- package/dist/{matchers-DSibUtbV.d.ts → matchers-OE6gO1nh.d.ts} +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harness-engineering/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Core library for Harness Engineering toolkit",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"yaml": "^2.8.3",
|
|
53
53
|
"zod": "^3.25.76",
|
|
54
54
|
"@harness-engineering/graph": "0.9.0",
|
|
55
|
-
"@harness-engineering/types": "0.
|
|
55
|
+
"@harness-engineering/types": "0.14.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/ejs": "^3.1.5",
|
|
@@ -268,7 +268,6 @@ declare const ViolationSnapshotSchema: z.ZodObject<{
|
|
|
268
268
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
269
269
|
}>, "many">;
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
|
-
timestamp: string;
|
|
272
271
|
violations: {
|
|
273
272
|
file: string;
|
|
274
273
|
id: string;
|
|
@@ -276,8 +275,8 @@ declare const ViolationSnapshotSchema: z.ZodObject<{
|
|
|
276
275
|
detail: string;
|
|
277
276
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
278
277
|
}[];
|
|
279
|
-
}, {
|
|
280
278
|
timestamp: string;
|
|
279
|
+
}, {
|
|
281
280
|
violations: {
|
|
282
281
|
file: string;
|
|
283
282
|
id: string;
|
|
@@ -285,6 +284,7 @@ declare const ViolationSnapshotSchema: z.ZodObject<{
|
|
|
285
284
|
detail: string;
|
|
286
285
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
287
286
|
}[];
|
|
287
|
+
timestamp: string;
|
|
288
288
|
}>;
|
|
289
289
|
type ViolationSnapshot = z.infer<typeof ViolationSnapshotSchema>;
|
|
290
290
|
declare const ViolationHistorySchema: z.ZodObject<{
|
|
@@ -311,7 +311,6 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
311
311
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
312
312
|
}>, "many">;
|
|
313
313
|
}, "strip", z.ZodTypeAny, {
|
|
314
|
-
timestamp: string;
|
|
315
314
|
violations: {
|
|
316
315
|
file: string;
|
|
317
316
|
id: string;
|
|
@@ -319,8 +318,8 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
319
318
|
detail: string;
|
|
320
319
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
321
320
|
}[];
|
|
322
|
-
}, {
|
|
323
321
|
timestamp: string;
|
|
322
|
+
}, {
|
|
324
323
|
violations: {
|
|
325
324
|
file: string;
|
|
326
325
|
id: string;
|
|
@@ -328,11 +327,11 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
328
327
|
detail: string;
|
|
329
328
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
330
329
|
}[];
|
|
330
|
+
timestamp: string;
|
|
331
331
|
}>, "many">;
|
|
332
332
|
}, "strip", z.ZodTypeAny, {
|
|
333
333
|
version: 1;
|
|
334
334
|
snapshots: {
|
|
335
|
-
timestamp: string;
|
|
336
335
|
violations: {
|
|
337
336
|
file: string;
|
|
338
337
|
id: string;
|
|
@@ -340,11 +339,11 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
340
339
|
detail: string;
|
|
341
340
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
342
341
|
}[];
|
|
342
|
+
timestamp: string;
|
|
343
343
|
}[];
|
|
344
344
|
}, {
|
|
345
345
|
version: 1;
|
|
346
346
|
snapshots: {
|
|
347
|
-
timestamp: string;
|
|
348
347
|
violations: {
|
|
349
348
|
file: string;
|
|
350
349
|
id: string;
|
|
@@ -352,6 +351,7 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
352
351
|
detail: string;
|
|
353
352
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
354
353
|
}[];
|
|
354
|
+
timestamp: string;
|
|
355
355
|
}[];
|
|
356
356
|
}>;
|
|
357
357
|
type ViolationHistory = z.infer<typeof ViolationHistorySchema>;
|
|
@@ -268,7 +268,6 @@ declare const ViolationSnapshotSchema: z.ZodObject<{
|
|
|
268
268
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
269
269
|
}>, "many">;
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
|
-
timestamp: string;
|
|
272
271
|
violations: {
|
|
273
272
|
file: string;
|
|
274
273
|
id: string;
|
|
@@ -276,8 +275,8 @@ declare const ViolationSnapshotSchema: z.ZodObject<{
|
|
|
276
275
|
detail: string;
|
|
277
276
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
278
277
|
}[];
|
|
279
|
-
}, {
|
|
280
278
|
timestamp: string;
|
|
279
|
+
}, {
|
|
281
280
|
violations: {
|
|
282
281
|
file: string;
|
|
283
282
|
id: string;
|
|
@@ -285,6 +284,7 @@ declare const ViolationSnapshotSchema: z.ZodObject<{
|
|
|
285
284
|
detail: string;
|
|
286
285
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
287
286
|
}[];
|
|
287
|
+
timestamp: string;
|
|
288
288
|
}>;
|
|
289
289
|
type ViolationSnapshot = z.infer<typeof ViolationSnapshotSchema>;
|
|
290
290
|
declare const ViolationHistorySchema: z.ZodObject<{
|
|
@@ -311,7 +311,6 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
311
311
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
312
312
|
}>, "many">;
|
|
313
313
|
}, "strip", z.ZodTypeAny, {
|
|
314
|
-
timestamp: string;
|
|
315
314
|
violations: {
|
|
316
315
|
file: string;
|
|
317
316
|
id: string;
|
|
@@ -319,8 +318,8 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
319
318
|
detail: string;
|
|
320
319
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
321
320
|
}[];
|
|
322
|
-
}, {
|
|
323
321
|
timestamp: string;
|
|
322
|
+
}, {
|
|
324
323
|
violations: {
|
|
325
324
|
file: string;
|
|
326
325
|
id: string;
|
|
@@ -328,11 +327,11 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
328
327
|
detail: string;
|
|
329
328
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
330
329
|
}[];
|
|
330
|
+
timestamp: string;
|
|
331
331
|
}>, "many">;
|
|
332
332
|
}, "strip", z.ZodTypeAny, {
|
|
333
333
|
version: 1;
|
|
334
334
|
snapshots: {
|
|
335
|
-
timestamp: string;
|
|
336
335
|
violations: {
|
|
337
336
|
file: string;
|
|
338
337
|
id: string;
|
|
@@ -340,11 +339,11 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
340
339
|
detail: string;
|
|
341
340
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
342
341
|
}[];
|
|
342
|
+
timestamp: string;
|
|
343
343
|
}[];
|
|
344
344
|
}, {
|
|
345
345
|
version: 1;
|
|
346
346
|
snapshots: {
|
|
347
|
-
timestamp: string;
|
|
348
347
|
violations: {
|
|
349
348
|
file: string;
|
|
350
349
|
id: string;
|
|
@@ -352,6 +351,7 @@ declare const ViolationHistorySchema: z.ZodObject<{
|
|
|
352
351
|
detail: string;
|
|
353
352
|
category?: "complexity" | "coupling" | "circular-deps" | "layer-violations" | "forbidden-imports" | "module-size" | "dependency-depth" | undefined;
|
|
354
353
|
}[];
|
|
354
|
+
timestamp: string;
|
|
355
355
|
}[];
|
|
356
356
|
}>;
|
|
357
357
|
type ViolationHistory = z.infer<typeof ViolationHistorySchema>;
|