@alpic-ai/api 1.113.2 → 1.114.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/index.d.mts +6 -0
- package/dist/index.mjs +2 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -856,6 +856,8 @@ declare const contract: {
|
|
|
856
856
|
durationMs: z.ZodNumber;
|
|
857
857
|
results: z.ZodArray<z.ZodObject<{
|
|
858
858
|
checkId: z.ZodString;
|
|
859
|
+
checkName: z.ZodString;
|
|
860
|
+
description: z.ZodString;
|
|
859
861
|
status: z.ZodEnum<{
|
|
860
862
|
pending: "pending";
|
|
861
863
|
pass: "pass";
|
|
@@ -997,6 +999,8 @@ declare const checkDetailSchema: z.ZodObject<{
|
|
|
997
999
|
type CheckDetail = z.infer<typeof checkDetailSchema>;
|
|
998
1000
|
declare const checkResultSchema: z.ZodObject<{
|
|
999
1001
|
checkId: z.ZodString;
|
|
1002
|
+
checkName: z.ZodString;
|
|
1003
|
+
description: z.ZodString;
|
|
1000
1004
|
status: z.ZodEnum<{
|
|
1001
1005
|
pending: "pending";
|
|
1002
1006
|
pass: "pass";
|
|
@@ -1044,6 +1048,8 @@ declare const auditReportSchema: z.ZodObject<{
|
|
|
1044
1048
|
durationMs: z.ZodNumber;
|
|
1045
1049
|
results: z.ZodArray<z.ZodObject<{
|
|
1046
1050
|
checkId: z.ZodString;
|
|
1051
|
+
checkName: z.ZodString;
|
|
1052
|
+
description: z.ZodString;
|
|
1047
1053
|
status: z.ZodEnum<{
|
|
1048
1054
|
pending: "pending";
|
|
1049
1055
|
pass: "pass";
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.114.0",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
26
26
|
"@types/ms": "^2.1.0",
|
|
27
27
|
"shx": "^0.4.0",
|
|
28
|
-
"tsdown": "^0.21.
|
|
28
|
+
"tsdown": "^0.21.8",
|
|
29
29
|
"typescript": "^6.0.2",
|
|
30
30
|
"vitest": "^4.1.4"
|
|
31
31
|
},
|