@smartergpt/lexrunner 1.4.0 → 1.4.1
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/CHANGELOG.md +18 -0
- package/README.md +28 -23
- package/dist/{audit-5ZUBPZZX.js → audit-SKMMC2U4.js} +1 -1
- package/dist/{autopilot-JXO4MZ6H.js → autopilot-EBZ44LYS.js} +1 -1
- package/dist/{chunk-WSJEPY7T.js → chunk-4R52WTFO.js} +1 -1
- package/dist/{chunk-R4DWK6FE.js → chunk-6PZDSWCG.js} +13 -10
- package/dist/{chunk-WFN4JTZI.js → chunk-LQSRQ6Z3.js} +5 -5
- package/dist/cli.cjs +131 -127
- package/dist/cli.d.ts +4 -4
- package/dist/cli.js +121 -120
- package/dist/{constraints-V4VWCWR5.js → constraints-2ZK5FJFA.js} +1 -1
- package/dist/sdk/index.d.ts +6 -6
- package/package.json +3 -2
package/dist/sdk/index.d.ts
CHANGED
|
@@ -62,8 +62,8 @@ type GateStatus = z.infer<typeof GateStatus>;
|
|
|
62
62
|
* Merge status
|
|
63
63
|
*/
|
|
64
64
|
declare const MergeStatus: z.ZodEnum<{
|
|
65
|
-
success: "success";
|
|
66
65
|
error: "error";
|
|
66
|
+
success: "success";
|
|
67
67
|
conflict: "conflict";
|
|
68
68
|
}>;
|
|
69
69
|
type MergeStatus = z.infer<typeof MergeStatus>;
|
|
@@ -71,8 +71,8 @@ type MergeStatus = z.infer<typeof MergeStatus>;
|
|
|
71
71
|
* Audit profile
|
|
72
72
|
*/
|
|
73
73
|
declare const AuditProfile: z.ZodEnum<{
|
|
74
|
-
debug: "debug";
|
|
75
74
|
basic: "basic";
|
|
75
|
+
debug: "debug";
|
|
76
76
|
standard: "standard";
|
|
77
77
|
compliance: "compliance";
|
|
78
78
|
}>;
|
|
@@ -167,8 +167,8 @@ type MergeDryRunStartedPayload = z.infer<typeof MergeDryRunStartedPayload>;
|
|
|
167
167
|
declare const MergeDryRunFinishedPayload: z.ZodObject<{
|
|
168
168
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
169
169
|
status: z.ZodEnum<{
|
|
170
|
-
success: "success";
|
|
171
170
|
error: "error";
|
|
171
|
+
success: "success";
|
|
172
172
|
conflict: "conflict";
|
|
173
173
|
}>;
|
|
174
174
|
conflicts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -188,8 +188,8 @@ type MergeConflictDetectedPayload = z.infer<typeof MergeConflictDetectedPayload>
|
|
|
188
188
|
declare const MergeFinishedPayload: z.ZodObject<{
|
|
189
189
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
190
190
|
status: z.ZodEnum<{
|
|
191
|
-
success: "success";
|
|
192
191
|
error: "error";
|
|
192
|
+
success: "success";
|
|
193
193
|
conflict: "conflict";
|
|
194
194
|
}>;
|
|
195
195
|
commit: z.ZodOptional<z.ZodString>;
|
|
@@ -595,8 +595,8 @@ declare const MergeDryRunFinishedEvent: z.ZodObject<{
|
|
|
595
595
|
payload: z.ZodObject<{
|
|
596
596
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
597
597
|
status: z.ZodEnum<{
|
|
598
|
-
success: "success";
|
|
599
598
|
error: "error";
|
|
599
|
+
success: "success";
|
|
600
600
|
conflict: "conflict";
|
|
601
601
|
}>;
|
|
602
602
|
conflicts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -718,8 +718,8 @@ declare const MergeFinishedEvent: z.ZodObject<{
|
|
|
718
718
|
payload: z.ZodObject<{
|
|
719
719
|
item: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
720
720
|
status: z.ZodEnum<{
|
|
721
|
-
success: "success";
|
|
722
721
|
error: "error";
|
|
722
|
+
success: "success";
|
|
723
723
|
conflict: "conflict";
|
|
724
724
|
}>;
|
|
725
725
|
commit: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartergpt/lexrunner",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=24"
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"LICENSE.md"
|
|
29
29
|
],
|
|
30
30
|
"bin": {
|
|
31
|
+
"lexrunner": "dist/cli.js",
|
|
31
32
|
"lex-pr": "dist/cli.js",
|
|
32
33
|
"lexrunner-mcp": "mcp-server.mjs"
|
|
33
34
|
},
|
|
@@ -77,7 +78,7 @@
|
|
|
77
78
|
}
|
|
78
79
|
},
|
|
79
80
|
"scripts": {
|
|
80
|
-
"postinstall": "node -e \"console.log('\\n📦 lexrunner installed! Run \\\"npx
|
|
81
|
+
"postinstall": "node -e \"console.log('\\n📦 lexrunner installed! Run \\\"npx lexrunner init\\\" to set up your workspace. The \\\"lex-pr\\\" compatibility alias remains supported.\\n')\"",
|
|
81
82
|
"dev": "tsx watch src/cli.ts",
|
|
82
83
|
"cli": "tsx src/cli.ts",
|
|
83
84
|
"cli:built": "node dist/cli.js",
|