@smartergpt/lexrunner 1.3.0 → 1.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.
- package/CHANGELOG.md +30 -0
- package/README.md +3 -2
- package/dist/cli.cjs +3450 -2017
- package/dist/cli.d.ts +16 -7
- package/dist/cli.js +2136 -1015
- package/dist/frames/index.cjs +328 -129
- package/dist/sdk/index.d.ts +6 -6
- package/package.json +8 -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
|
-
error: "error";
|
|
66
65
|
success: "success";
|
|
66
|
+
error: "error";
|
|
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
|
-
basic: "basic";
|
|
75
74
|
debug: "debug";
|
|
75
|
+
basic: "basic";
|
|
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
|
-
error: "error";
|
|
171
170
|
success: "success";
|
|
171
|
+
error: "error";
|
|
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
|
-
error: "error";
|
|
192
191
|
success: "success";
|
|
192
|
+
error: "error";
|
|
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
|
-
error: "error";
|
|
599
598
|
success: "success";
|
|
599
|
+
error: "error";
|
|
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
|
-
error: "error";
|
|
722
721
|
success: "success";
|
|
722
|
+
error: "error";
|
|
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.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=24"
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
"validate:manifests": "tsx scripts/validate-manifests.ts",
|
|
94
94
|
"validate:build-artifacts": "tsx scripts/validate-build-artifacts.ts",
|
|
95
95
|
"validate:package": "tsx scripts/validate-package-boundary.ts",
|
|
96
|
+
"check:install-scripts": "node scripts/check-install-script-policy.mjs",
|
|
96
97
|
"test:package": "node scripts/smoke-packed-package.mjs",
|
|
97
98
|
"docs:check": "node scripts/check-doc-links.mjs",
|
|
98
99
|
"docs:surface": "node scripts/render-doc-surfaces.mjs",
|
|
@@ -129,7 +130,7 @@
|
|
|
129
130
|
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
130
131
|
"@octokit/auth-token": "^6.0.0",
|
|
131
132
|
"@octokit/rest": "^22.0.0",
|
|
132
|
-
"@smartergpt/lex": "^
|
|
133
|
+
"@smartergpt/lex": "^4.0.0",
|
|
133
134
|
"@types/babel__traverse": "^7.28.0",
|
|
134
135
|
"ajv": "^8.20.0",
|
|
135
136
|
"better-sqlite3-multiple-ciphers": "^12.6.2",
|
|
@@ -166,5 +167,10 @@
|
|
|
166
167
|
"*.{json,md,yaml,yml}": [
|
|
167
168
|
"prettier --check"
|
|
168
169
|
]
|
|
170
|
+
},
|
|
171
|
+
"allowScripts": {
|
|
172
|
+
"better-sqlite3-multiple-ciphers@12.11.1": true,
|
|
173
|
+
"esbuild@0.28.1": true,
|
|
174
|
+
"@smartergpt/lex": false
|
|
169
175
|
}
|
|
170
176
|
}
|