anpord 0.1.12 → 0.1.16
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/api-context.cjs +18 -0
- package/dist/api-context.d.cts +8 -0
- package/dist/api-context.d.mts +8 -0
- package/dist/api-context.mjs +17 -0
- package/dist/api-mocks-B3qngoqS.cjs +68 -0
- package/dist/api-mocks-BfKw_hXc.mjs +33 -0
- package/dist/api-mocks-Bz3G00ve.d.cts +101 -0
- package/dist/api-mocks-Bz3G00ve.d.mts +101 -0
- package/dist/api-runtime.cjs +4 -0
- package/dist/api-runtime.d.cts +13 -0
- package/dist/api-runtime.d.mts +13 -0
- package/dist/api-runtime.mjs +2 -0
- package/dist/api.cjs +5 -0
- package/dist/api.d.cts +4 -0
- package/dist/api.d.mts +4 -0
- package/dist/api.mjs +2 -0
- package/dist/bin.cjs +210 -127
- package/dist/bin.mjs +210 -127
- package/dist/cli-runtime.cjs +3 -3
- package/dist/cli-runtime.d.cts +1 -1
- package/dist/cli-runtime.d.mts +1 -1
- package/dist/cli-runtime.mjs +3 -3
- package/dist/{client-Byoa41pX.d.mts → client-C8tBcLYs.d.mts} +1890 -226
- package/dist/{client-CFTj9ad0.d.cts → client-CMkx-LKC.d.cts} +1891 -227
- package/dist/{client-BnimnYiJ.cjs → client-CfYNoI3L.cjs} +4 -90
- package/dist/{client-D22IiHGL.mjs → client-YWKJd3f-.mjs} +3 -89
- package/dist/{compiler-BFxukiJy.cjs → compiler-4FKsNxZ-.cjs} +171 -110
- package/dist/{compiler-CBMPXIzV.mjs → compiler-Dsltkkj5.mjs} +163 -102
- package/dist/config.cjs +1 -1
- package/dist/config.d.cts +1 -1
- package/dist/config.d.mts +1 -1
- package/dist/config.mjs +1 -1
- package/dist/define-NZvmQuIv.d.cts +34 -0
- package/dist/define-NZvmQuIv.d.mts +34 -0
- package/dist/{eval-judges-DPPUftbh.d.cts → eval-judges-JiC8cUCE.d.cts} +1 -1
- package/dist/{eval-judges-DPPUftbh.d.mts → eval-judges-JiC8cUCE.d.mts} +1 -1
- package/dist/eval-validations-Bmagd2y7.mjs +113 -0
- package/dist/eval-validations-CqMUt5ra.cjs +154 -0
- package/dist/eval.cjs +1 -1
- package/dist/eval.d.cts +69 -28
- package/dist/eval.d.mts +69 -28
- package/dist/eval.mjs +1 -1
- package/dist/evals-B2UuSop0.d.cts +1364 -0
- package/dist/evals-B2UuSop0.d.mts +1364 -0
- package/dist/{types-oXWOHA-X.d.mts → evals-api-CfAA3cew.d.mts} +67 -121
- package/dist/{types-nr4-1c3W.d.cts → evals-api-Clbj_nEN.d.cts} +66 -120
- package/dist/{evals-CvOTyvCX.mjs → evals-api-DDv4gXU1.mjs} +147 -13
- package/dist/{evals-B04M0apj.cjs → evals-api-kOuyIqvB.cjs} +159 -73
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +129 -5
- package/dist/index.d.mts +130 -6
- package/dist/index.mjs +2 -2
- package/dist/mcp-runtime.cjs +1 -1
- package/dist/mcp-runtime.mjs +1 -1
- package/dist/runtime-C0_JPkef.mjs +269 -0
- package/dist/runtime-YVJP5P2r.cjs +292 -0
- package/dist/source.d.cts +1 -1
- package/dist/source.d.mts +1 -1
- package/dist/types-BHokRQpg.d.mts +112 -0
- package/dist/types-UKEi5CCa.d.cts +112 -0
- package/dist/validator-runtime.cjs +243 -0
- package/dist/validator-runtime.d.cts +9 -0
- package/dist/validator-runtime.d.mts +9 -0
- package/dist/validator-runtime.mjs +242 -0
- package/dist/validators.d.cts +1 -1
- package/dist/validators.d.mts +1 -1
- package/package.json +21 -1
- package/dist/evals-BUBzpke_.d.cts +0 -647
- package/dist/evals-BUBzpke_.d.mts +0 -647
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_api_mocks = require("./api-mocks-B3qngoqS.cjs");
|
|
3
|
+
let effect = require("effect");
|
|
4
|
+
let node_fs_promises = require("node:fs/promises");
|
|
5
|
+
//#region src/mock-api/context.ts
|
|
6
|
+
const apiContext = {
|
|
7
|
+
url: async (name) => {
|
|
8
|
+
const api = effect.Schema.decodeUnknownSync(effect.Schema.parseJson(require_api_mocks.ApiManifest))(await (0, node_fs_promises.readFile)(require_api_mocks.API_MANIFEST, "utf8")).find((entry) => entry.name === name);
|
|
9
|
+
if (api === void 0) throw new Error(`API mock not configured: ${name}`);
|
|
10
|
+
return api.url;
|
|
11
|
+
},
|
|
12
|
+
calls: async (name) => {
|
|
13
|
+
const text = await (0, node_fs_promises.readFile)(require_api_mocks.API_JOURNAL, "utf8");
|
|
14
|
+
return text.trim() === "" ? [] : text.trim().split("\n").map((line) => effect.Schema.decodeUnknownSync(effect.Schema.parseJson(require_api_mocks.ApiCall))(line)).filter((call) => name === void 0 || call.api === name);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
//#endregion
|
|
18
|
+
exports.apiContext = apiContext;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { t as ApiCall } from "./api-mocks-Bz3G00ve.cjs";
|
|
2
|
+
//#region src/mock-api/context.d.ts
|
|
3
|
+
declare const apiContext: {
|
|
4
|
+
url: (name: string) => Promise<string>;
|
|
5
|
+
calls: (name?: string) => Promise<readonly ApiCall[]>;
|
|
6
|
+
};
|
|
7
|
+
//#endregion
|
|
8
|
+
export { apiContext };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { t as ApiCall } from "./api-mocks-Bz3G00ve.mjs";
|
|
2
|
+
//#region src/mock-api/context.d.ts
|
|
3
|
+
declare const apiContext: {
|
|
4
|
+
url: (name: string) => Promise<string>;
|
|
5
|
+
calls: (name?: string) => Promise<readonly ApiCall[]>;
|
|
6
|
+
};
|
|
7
|
+
//#endregion
|
|
8
|
+
export { apiContext };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { a as ApiCall, n as API_MANIFEST, o as ApiManifest, t as API_JOURNAL } from "./api-mocks-BfKw_hXc.mjs";
|
|
2
|
+
import { Schema } from "effect";
|
|
3
|
+
import { readFile } from "node:fs/promises";
|
|
4
|
+
//#region src/mock-api/context.ts
|
|
5
|
+
const apiContext = {
|
|
6
|
+
url: async (name) => {
|
|
7
|
+
const api = Schema.decodeUnknownSync(Schema.parseJson(ApiManifest))(await readFile(API_MANIFEST, "utf8")).find((entry) => entry.name === name);
|
|
8
|
+
if (api === void 0) throw new Error(`API mock not configured: ${name}`);
|
|
9
|
+
return api.url;
|
|
10
|
+
},
|
|
11
|
+
calls: async (name) => {
|
|
12
|
+
const text = await readFile(API_JOURNAL, "utf8");
|
|
13
|
+
return text.trim() === "" ? [] : text.trim().split("\n").map((line) => Schema.decodeUnknownSync(Schema.parseJson(ApiCall))(line)).filter((call) => name === void 0 || call.api === name);
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
//#endregion
|
|
17
|
+
export { apiContext };
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
const require_eval_validations = require("./eval-validations-CqMUt5ra.cjs");
|
|
2
|
+
let effect = require("effect");
|
|
3
|
+
//#region ../schema/src/domain/api-mocks.ts
|
|
4
|
+
const API_PROGRAM = "workspace/.anpord/api/program.json";
|
|
5
|
+
const API_MANIFEST = ".anpord/api/manifest.json";
|
|
6
|
+
const API_JOURNAL = ".anpord/api/calls.jsonl";
|
|
7
|
+
const API_READY = "ANPORD_API_READY=";
|
|
8
|
+
effect.Schema.Struct({ entry: effect.Schema.Literal(".anpord/api/server.mjs") });
|
|
9
|
+
const ApiManifest = effect.Schema.Array(effect.Schema.Struct({
|
|
10
|
+
name: effect.Schema.String,
|
|
11
|
+
url: effect.Schema.String,
|
|
12
|
+
endpoints: effect.Schema.Array(effect.Schema.Struct({
|
|
13
|
+
method: effect.Schema.String,
|
|
14
|
+
path: effect.Schema.String,
|
|
15
|
+
description: effect.Schema.optional(effect.Schema.String)
|
|
16
|
+
}))
|
|
17
|
+
}));
|
|
18
|
+
var ApiCall = class extends effect.Schema.Class("ApiCall")({
|
|
19
|
+
api: effect.Schema.String,
|
|
20
|
+
index: effect.Schema.NonNegativeInt,
|
|
21
|
+
method: effect.Schema.String,
|
|
22
|
+
path: effect.Schema.String,
|
|
23
|
+
matched: effect.Schema.Boolean,
|
|
24
|
+
startedAt: effect.Schema.Number,
|
|
25
|
+
durationMs: effect.Schema.NonNegativeInt,
|
|
26
|
+
input: require_eval_validations.ValidationValue,
|
|
27
|
+
output: require_eval_validations.ValidationValue,
|
|
28
|
+
status: effect.Schema.Int,
|
|
29
|
+
error: effect.Schema.NullOr(effect.Schema.String.pipe(effect.Schema.maxLength(2e3))),
|
|
30
|
+
logs: effect.Schema.Array(require_eval_validations.ValidationValue).pipe(effect.Schema.maxItems(64))
|
|
31
|
+
}) {};
|
|
32
|
+
//#endregion
|
|
33
|
+
Object.defineProperty(exports, "API_JOURNAL", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
get: function() {
|
|
36
|
+
return API_JOURNAL;
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "API_MANIFEST", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function() {
|
|
42
|
+
return API_MANIFEST;
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
Object.defineProperty(exports, "API_PROGRAM", {
|
|
46
|
+
enumerable: true,
|
|
47
|
+
get: function() {
|
|
48
|
+
return API_PROGRAM;
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, "API_READY", {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function() {
|
|
54
|
+
return API_READY;
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
Object.defineProperty(exports, "ApiCall", {
|
|
58
|
+
enumerable: true,
|
|
59
|
+
get: function() {
|
|
60
|
+
return ApiCall;
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, "ApiManifest", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function() {
|
|
66
|
+
return ApiManifest;
|
|
67
|
+
}
|
|
68
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { r as ValidationValue } from "./eval-validations-Bmagd2y7.mjs";
|
|
2
|
+
import { Schema } from "effect";
|
|
3
|
+
//#region ../schema/src/domain/api-mocks.ts
|
|
4
|
+
const API_PROGRAM = "workspace/.anpord/api/program.json";
|
|
5
|
+
const API_MANIFEST = ".anpord/api/manifest.json";
|
|
6
|
+
const API_JOURNAL = ".anpord/api/calls.jsonl";
|
|
7
|
+
const API_READY = "ANPORD_API_READY=";
|
|
8
|
+
Schema.Struct({ entry: Schema.Literal(".anpord/api/server.mjs") });
|
|
9
|
+
const ApiManifest = Schema.Array(Schema.Struct({
|
|
10
|
+
name: Schema.String,
|
|
11
|
+
url: Schema.String,
|
|
12
|
+
endpoints: Schema.Array(Schema.Struct({
|
|
13
|
+
method: Schema.String,
|
|
14
|
+
path: Schema.String,
|
|
15
|
+
description: Schema.optional(Schema.String)
|
|
16
|
+
}))
|
|
17
|
+
}));
|
|
18
|
+
var ApiCall = class extends Schema.Class("ApiCall")({
|
|
19
|
+
api: Schema.String,
|
|
20
|
+
index: Schema.NonNegativeInt,
|
|
21
|
+
method: Schema.String,
|
|
22
|
+
path: Schema.String,
|
|
23
|
+
matched: Schema.Boolean,
|
|
24
|
+
startedAt: Schema.Number,
|
|
25
|
+
durationMs: Schema.NonNegativeInt,
|
|
26
|
+
input: ValidationValue,
|
|
27
|
+
output: ValidationValue,
|
|
28
|
+
status: Schema.Int,
|
|
29
|
+
error: Schema.NullOr(Schema.String.pipe(Schema.maxLength(2e3))),
|
|
30
|
+
logs: Schema.Array(ValidationValue).pipe(Schema.maxItems(64))
|
|
31
|
+
}) {};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { ApiCall as a, API_READY as i, API_MANIFEST as n, ApiManifest as o, API_PROGRAM as r, API_JOURNAL as t };
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Schema } from "effect";
|
|
2
|
+
//#region ../schema/src/domain/api-mocks.d.ts
|
|
3
|
+
declare const ApiCall_base: Schema.Class<ApiCall, {
|
|
4
|
+
api: typeof Schema.String;
|
|
5
|
+
index: Schema.refine<number, typeof Schema.NonNegative>;
|
|
6
|
+
method: typeof Schema.String;
|
|
7
|
+
path: typeof Schema.String;
|
|
8
|
+
matched: typeof Schema.Boolean;
|
|
9
|
+
startedAt: typeof Schema.Number;
|
|
10
|
+
durationMs: Schema.refine<number, typeof Schema.NonNegative>;
|
|
11
|
+
input: Schema.Struct<{
|
|
12
|
+
text: Schema.filter<typeof Schema.String>;
|
|
13
|
+
format: Schema.Literal<["text", "json"]>;
|
|
14
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
15
|
+
truncated: typeof Schema.Boolean;
|
|
16
|
+
}>;
|
|
17
|
+
output: Schema.Struct<{
|
|
18
|
+
text: Schema.filter<typeof Schema.String>;
|
|
19
|
+
format: Schema.Literal<["text", "json"]>;
|
|
20
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
21
|
+
truncated: typeof Schema.Boolean;
|
|
22
|
+
}>;
|
|
23
|
+
status: typeof Schema.Int;
|
|
24
|
+
error: Schema.NullOr<Schema.filter<typeof Schema.String>>;
|
|
25
|
+
logs: Schema.filter<Schema.Array$<Schema.Struct<{
|
|
26
|
+
text: Schema.filter<typeof Schema.String>;
|
|
27
|
+
format: Schema.Literal<["text", "json"]>;
|
|
28
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
29
|
+
truncated: typeof Schema.Boolean;
|
|
30
|
+
}>>>;
|
|
31
|
+
}, Schema.Struct.Encoded<{
|
|
32
|
+
api: typeof Schema.String;
|
|
33
|
+
index: Schema.refine<number, typeof Schema.NonNegative>;
|
|
34
|
+
method: typeof Schema.String;
|
|
35
|
+
path: typeof Schema.String;
|
|
36
|
+
matched: typeof Schema.Boolean;
|
|
37
|
+
startedAt: typeof Schema.Number;
|
|
38
|
+
durationMs: Schema.refine<number, typeof Schema.NonNegative>;
|
|
39
|
+
input: Schema.Struct<{
|
|
40
|
+
text: Schema.filter<typeof Schema.String>;
|
|
41
|
+
format: Schema.Literal<["text", "json"]>;
|
|
42
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
43
|
+
truncated: typeof Schema.Boolean;
|
|
44
|
+
}>;
|
|
45
|
+
output: Schema.Struct<{
|
|
46
|
+
text: Schema.filter<typeof Schema.String>;
|
|
47
|
+
format: Schema.Literal<["text", "json"]>;
|
|
48
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
49
|
+
truncated: typeof Schema.Boolean;
|
|
50
|
+
}>;
|
|
51
|
+
status: typeof Schema.Int;
|
|
52
|
+
error: Schema.NullOr<Schema.filter<typeof Schema.String>>;
|
|
53
|
+
logs: Schema.filter<Schema.Array$<Schema.Struct<{
|
|
54
|
+
text: Schema.filter<typeof Schema.String>;
|
|
55
|
+
format: Schema.Literal<["text", "json"]>;
|
|
56
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
57
|
+
truncated: typeof Schema.Boolean;
|
|
58
|
+
}>>>;
|
|
59
|
+
}>, never, {
|
|
60
|
+
readonly startedAt: number;
|
|
61
|
+
} & {
|
|
62
|
+
readonly status: number;
|
|
63
|
+
} & {
|
|
64
|
+
readonly api: string;
|
|
65
|
+
} & {
|
|
66
|
+
readonly path: string;
|
|
67
|
+
} & {
|
|
68
|
+
readonly index: number;
|
|
69
|
+
} & {
|
|
70
|
+
readonly error: string | null;
|
|
71
|
+
} & {
|
|
72
|
+
readonly durationMs: number;
|
|
73
|
+
} & {
|
|
74
|
+
readonly input: {
|
|
75
|
+
readonly truncated: boolean;
|
|
76
|
+
readonly text: string;
|
|
77
|
+
readonly format: "text" | "json";
|
|
78
|
+
readonly state: "captured" | "disabled" | "unavailable";
|
|
79
|
+
};
|
|
80
|
+
} & {
|
|
81
|
+
readonly output: {
|
|
82
|
+
readonly truncated: boolean;
|
|
83
|
+
readonly text: string;
|
|
84
|
+
readonly format: "text" | "json";
|
|
85
|
+
readonly state: "captured" | "disabled" | "unavailable";
|
|
86
|
+
};
|
|
87
|
+
} & {
|
|
88
|
+
readonly method: string;
|
|
89
|
+
} & {
|
|
90
|
+
readonly logs: readonly {
|
|
91
|
+
readonly truncated: boolean;
|
|
92
|
+
readonly text: string;
|
|
93
|
+
readonly format: "text" | "json";
|
|
94
|
+
readonly state: "captured" | "disabled" | "unavailable";
|
|
95
|
+
}[];
|
|
96
|
+
} & {
|
|
97
|
+
readonly matched: boolean;
|
|
98
|
+
}, {}, {}>;
|
|
99
|
+
declare class ApiCall extends ApiCall_base {}
|
|
100
|
+
//#endregion
|
|
101
|
+
export { ApiCall as t };
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Schema } from "effect";
|
|
2
|
+
//#region ../schema/src/domain/api-mocks.d.ts
|
|
3
|
+
declare const ApiCall_base: Schema.Class<ApiCall, {
|
|
4
|
+
api: typeof Schema.String;
|
|
5
|
+
index: Schema.refine<number, typeof Schema.NonNegative>;
|
|
6
|
+
method: typeof Schema.String;
|
|
7
|
+
path: typeof Schema.String;
|
|
8
|
+
matched: typeof Schema.Boolean;
|
|
9
|
+
startedAt: typeof Schema.Number;
|
|
10
|
+
durationMs: Schema.refine<number, typeof Schema.NonNegative>;
|
|
11
|
+
input: Schema.Struct<{
|
|
12
|
+
text: Schema.filter<typeof Schema.String>;
|
|
13
|
+
format: Schema.Literal<["text", "json"]>;
|
|
14
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
15
|
+
truncated: typeof Schema.Boolean;
|
|
16
|
+
}>;
|
|
17
|
+
output: Schema.Struct<{
|
|
18
|
+
text: Schema.filter<typeof Schema.String>;
|
|
19
|
+
format: Schema.Literal<["text", "json"]>;
|
|
20
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
21
|
+
truncated: typeof Schema.Boolean;
|
|
22
|
+
}>;
|
|
23
|
+
status: typeof Schema.Int;
|
|
24
|
+
error: Schema.NullOr<Schema.filter<typeof Schema.String>>;
|
|
25
|
+
logs: Schema.filter<Schema.Array$<Schema.Struct<{
|
|
26
|
+
text: Schema.filter<typeof Schema.String>;
|
|
27
|
+
format: Schema.Literal<["text", "json"]>;
|
|
28
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
29
|
+
truncated: typeof Schema.Boolean;
|
|
30
|
+
}>>>;
|
|
31
|
+
}, Schema.Struct.Encoded<{
|
|
32
|
+
api: typeof Schema.String;
|
|
33
|
+
index: Schema.refine<number, typeof Schema.NonNegative>;
|
|
34
|
+
method: typeof Schema.String;
|
|
35
|
+
path: typeof Schema.String;
|
|
36
|
+
matched: typeof Schema.Boolean;
|
|
37
|
+
startedAt: typeof Schema.Number;
|
|
38
|
+
durationMs: Schema.refine<number, typeof Schema.NonNegative>;
|
|
39
|
+
input: Schema.Struct<{
|
|
40
|
+
text: Schema.filter<typeof Schema.String>;
|
|
41
|
+
format: Schema.Literal<["text", "json"]>;
|
|
42
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
43
|
+
truncated: typeof Schema.Boolean;
|
|
44
|
+
}>;
|
|
45
|
+
output: Schema.Struct<{
|
|
46
|
+
text: Schema.filter<typeof Schema.String>;
|
|
47
|
+
format: Schema.Literal<["text", "json"]>;
|
|
48
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
49
|
+
truncated: typeof Schema.Boolean;
|
|
50
|
+
}>;
|
|
51
|
+
status: typeof Schema.Int;
|
|
52
|
+
error: Schema.NullOr<Schema.filter<typeof Schema.String>>;
|
|
53
|
+
logs: Schema.filter<Schema.Array$<Schema.Struct<{
|
|
54
|
+
text: Schema.filter<typeof Schema.String>;
|
|
55
|
+
format: Schema.Literal<["text", "json"]>;
|
|
56
|
+
state: Schema.Literal<["captured", "disabled", "unavailable"]>;
|
|
57
|
+
truncated: typeof Schema.Boolean;
|
|
58
|
+
}>>>;
|
|
59
|
+
}>, never, {
|
|
60
|
+
readonly startedAt: number;
|
|
61
|
+
} & {
|
|
62
|
+
readonly status: number;
|
|
63
|
+
} & {
|
|
64
|
+
readonly api: string;
|
|
65
|
+
} & {
|
|
66
|
+
readonly path: string;
|
|
67
|
+
} & {
|
|
68
|
+
readonly index: number;
|
|
69
|
+
} & {
|
|
70
|
+
readonly error: string | null;
|
|
71
|
+
} & {
|
|
72
|
+
readonly durationMs: number;
|
|
73
|
+
} & {
|
|
74
|
+
readonly input: {
|
|
75
|
+
readonly truncated: boolean;
|
|
76
|
+
readonly text: string;
|
|
77
|
+
readonly format: "text" | "json";
|
|
78
|
+
readonly state: "captured" | "disabled" | "unavailable";
|
|
79
|
+
};
|
|
80
|
+
} & {
|
|
81
|
+
readonly output: {
|
|
82
|
+
readonly truncated: boolean;
|
|
83
|
+
readonly text: string;
|
|
84
|
+
readonly format: "text" | "json";
|
|
85
|
+
readonly state: "captured" | "disabled" | "unavailable";
|
|
86
|
+
};
|
|
87
|
+
} & {
|
|
88
|
+
readonly method: string;
|
|
89
|
+
} & {
|
|
90
|
+
readonly logs: readonly {
|
|
91
|
+
readonly truncated: boolean;
|
|
92
|
+
readonly text: string;
|
|
93
|
+
readonly format: "text" | "json";
|
|
94
|
+
readonly state: "captured" | "disabled" | "unavailable";
|
|
95
|
+
}[];
|
|
96
|
+
} & {
|
|
97
|
+
readonly matched: boolean;
|
|
98
|
+
}, {}, {}>;
|
|
99
|
+
declare class ApiCall extends ApiCall_base {}
|
|
100
|
+
//#endregion
|
|
101
|
+
export { ApiCall as t };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { t as ApiCall } from "./api-mocks-Bz3G00ve.cjs";
|
|
2
|
+
import { t as ApiDefinition } from "./define-NZvmQuIv.cjs";
|
|
3
|
+
//#region src/mock-api/runtime.d.ts
|
|
4
|
+
declare const withApi: <A>({ api, run }: {
|
|
5
|
+
readonly api: ApiDefinition;
|
|
6
|
+
readonly run: (context: {
|
|
7
|
+
readonly url: string;
|
|
8
|
+
readonly calls: () => Promise<readonly ApiCall[]>;
|
|
9
|
+
}) => Promise<A>;
|
|
10
|
+
}) => Promise<A>;
|
|
11
|
+
declare const runApiServers: (definitions: readonly ApiDefinition[]) => void;
|
|
12
|
+
//#endregion
|
|
13
|
+
export { runApiServers, withApi };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { t as ApiCall } from "./api-mocks-Bz3G00ve.mjs";
|
|
2
|
+
import { t as ApiDefinition } from "./define-NZvmQuIv.mjs";
|
|
3
|
+
//#region src/mock-api/runtime.d.ts
|
|
4
|
+
declare const withApi: <A>({ api, run }: {
|
|
5
|
+
readonly api: ApiDefinition;
|
|
6
|
+
readonly run: (context: {
|
|
7
|
+
readonly url: string;
|
|
8
|
+
readonly calls: () => Promise<readonly ApiCall[]>;
|
|
9
|
+
}) => Promise<A>;
|
|
10
|
+
}) => Promise<A>;
|
|
11
|
+
declare const runApiServers: (definitions: readonly ApiDefinition[]) => void;
|
|
12
|
+
//#endregion
|
|
13
|
+
export { runApiServers, withApi };
|
package/dist/api.cjs
ADDED
package/dist/api.d.cts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { t as ApiCall } from "./api-mocks-Bz3G00ve.cjs";
|
|
2
|
+
import { a as endpoint, i as api, n as ApiHandlerContext, r as EndpointDefinition, t as ApiDefinition } from "./define-NZvmQuIv.cjs";
|
|
3
|
+
import { withApi } from "./api-runtime.cjs";
|
|
4
|
+
export { type ApiCall, type ApiDefinition, type ApiHandlerContext, type EndpointDefinition, api, endpoint, withApi };
|
package/dist/api.d.mts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { t as ApiCall } from "./api-mocks-Bz3G00ve.mjs";
|
|
2
|
+
import { a as endpoint, i as api, n as ApiHandlerContext, r as EndpointDefinition, t as ApiDefinition } from "./define-NZvmQuIv.mjs";
|
|
3
|
+
import { withApi } from "./api-runtime.mjs";
|
|
4
|
+
export { type ApiCall, type ApiDefinition, type ApiHandlerContext, type EndpointDefinition, api, endpoint, withApi };
|
package/dist/api.mjs
ADDED