anpord 0.1.13 → 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.
Files changed (65) hide show
  1. package/dist/api-context.cjs +18 -0
  2. package/dist/api-context.d.cts +8 -0
  3. package/dist/api-context.d.mts +8 -0
  4. package/dist/api-context.mjs +17 -0
  5. package/dist/api-mocks-B3qngoqS.cjs +68 -0
  6. package/dist/api-mocks-BfKw_hXc.mjs +33 -0
  7. package/dist/api-mocks-Bz3G00ve.d.cts +101 -0
  8. package/dist/api-mocks-Bz3G00ve.d.mts +101 -0
  9. package/dist/api-runtime.cjs +4 -0
  10. package/dist/api-runtime.d.cts +13 -0
  11. package/dist/api-runtime.d.mts +13 -0
  12. package/dist/api-runtime.mjs +2 -0
  13. package/dist/api.cjs +5 -0
  14. package/dist/api.d.cts +4 -0
  15. package/dist/api.d.mts +4 -0
  16. package/dist/api.mjs +2 -0
  17. package/dist/bin.cjs +8 -8
  18. package/dist/bin.mjs +6 -6
  19. package/dist/cli-runtime.cjs +1 -1
  20. package/dist/cli-runtime.mjs +1 -1
  21. package/dist/{client-BgRs8JvW.d.mts → client-C8tBcLYs.d.mts} +17 -17
  22. package/dist/{client-BirFO3jz.d.cts → client-CMkx-LKC.d.cts} +16 -16
  23. package/dist/{client-C-P2I00z.cjs → client-CfYNoI3L.cjs} +4 -91
  24. package/dist/{client-BfdjFtlV.mjs → client-YWKJd3f-.mjs} +3 -90
  25. package/dist/{compiler-uwb1pkdK.cjs → compiler-4FKsNxZ-.cjs} +89 -33
  26. package/dist/{compiler-D96wI7UP.mjs → compiler-Dsltkkj5.mjs} +77 -21
  27. package/dist/config.cjs +1 -1
  28. package/dist/config.d.cts +1 -1
  29. package/dist/config.d.mts +1 -1
  30. package/dist/config.mjs +1 -1
  31. package/dist/define-NZvmQuIv.d.cts +34 -0
  32. package/dist/define-NZvmQuIv.d.mts +34 -0
  33. package/dist/{eval-judges-DPPUftbh.d.cts → eval-judges-JiC8cUCE.d.cts} +1 -1
  34. package/dist/{eval-judges-DPPUftbh.d.mts → eval-judges-JiC8cUCE.d.mts} +1 -1
  35. package/dist/{eval-validations-BRdoZrTQ.mjs → eval-validations-Bmagd2y7.mjs} +2 -2
  36. package/dist/{eval-validations-_MlnQ_uv.cjs → eval-validations-CqMUt5ra.cjs} +7 -1
  37. package/dist/eval.cjs +1 -1
  38. package/dist/eval.d.cts +42 -21
  39. package/dist/eval.d.mts +42 -21
  40. package/dist/eval.mjs +1 -1
  41. package/dist/{evals-B6aT3xgH.d.cts → evals-B2UuSop0.d.cts} +136 -136
  42. package/dist/{evals-B6aT3xgH.d.mts → evals-B2UuSop0.d.mts} +136 -136
  43. package/dist/{types-Codjaq-o.d.mts → evals-api-CfAA3cew.d.mts} +12 -112
  44. package/dist/{types-ISsteq95.d.cts → evals-api-Clbj_nEN.d.cts} +11 -111
  45. package/dist/{evals-Dcc_x6jW.mjs → evals-api-DDv4gXU1.mjs} +95 -4
  46. package/dist/{evals-DouMsrsM.cjs → evals-api-kOuyIqvB.cjs} +103 -72
  47. package/dist/index.cjs +2 -2
  48. package/dist/index.d.cts +6 -6
  49. package/dist/index.d.mts +7 -7
  50. package/dist/index.mjs +2 -2
  51. package/dist/mcp-runtime.cjs +1 -1
  52. package/dist/mcp-runtime.mjs +1 -1
  53. package/dist/runtime-C0_JPkef.mjs +269 -0
  54. package/dist/runtime-YVJP5P2r.cjs +292 -0
  55. package/dist/source.d.cts +1 -1
  56. package/dist/source.d.mts +1 -1
  57. package/dist/types-BHokRQpg.d.mts +112 -0
  58. package/dist/types-UKEi5CCa.d.cts +112 -0
  59. package/dist/validator-runtime.cjs +6 -1
  60. package/dist/validator-runtime.d.cts +1 -1
  61. package/dist/validator-runtime.d.mts +1 -1
  62. package/dist/validator-runtime.mjs +6 -1
  63. package/dist/validators.d.cts +1 -1
  64. package/dist/validators.d.mts +1 -1
  65. package/package.json +21 -1
@@ -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,4 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_runtime = require("./runtime-YVJP5P2r.cjs");
3
+ exports.runApiServers = require_runtime.runApiServers;
4
+ exports.withApi = require_runtime.withApi;
@@ -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 };
@@ -0,0 +1,2 @@
1
+ import { n as withApi, t as runApiServers } from "./runtime-C0_JPkef.mjs";
2
+ export { runApiServers, withApi };
package/dist/api.cjs ADDED
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_runtime = require("./runtime-YVJP5P2r.cjs");
3
+ exports.api = require_runtime.api;
4
+ exports.endpoint = require_runtime.endpoint;
5
+ exports.withApi = require_runtime.withApi;
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
@@ -0,0 +1,2 @@
1
+ import { i as endpoint, n as withApi, r as api } from "./runtime-C0_JPkef.mjs";
2
+ export { api, endpoint, withApi };
package/dist/bin.cjs CHANGED
@@ -1,16 +1,16 @@
1
1
  #!/usr/bin/env node
2
- const require_client = require("./client-C-P2I00z.cjs");
3
- const require_evals = require("./evals-DouMsrsM.cjs");
2
+ const require_client = require("./client-CfYNoI3L.cjs");
3
+ const require_evals_api = require("./evals-api-kOuyIqvB.cjs");
4
4
  const require_errors = require("./errors-BX1wry8K.cjs");
5
5
  const require_config = require("./config.cjs");
6
- const require_compiler = require("./compiler-uwb1pkdK.cjs");
7
- let _effect_cli = require("@effect/cli");
6
+ const require_compiler = require("./compiler-4FKsNxZ-.cjs");
7
+ let effect = require("effect");
8
8
  let _effect_platform = require("@effect/platform");
9
+ let _effect_cli = require("@effect/cli");
9
10
  let _effect_platform_node = require("@effect/platform-node");
10
- let effect = require("effect");
11
11
  let yaml = require("yaml");
12
12
  //#region package.json
13
- var version$1 = "0.1.13";
13
+ var version$1 = "0.1.16";
14
14
  //#endregion
15
15
  //#region ../template/src/extract.ts
16
16
  /** Reads escapes too, so text the renderer leaves literal is never reported as
@@ -531,7 +531,7 @@ const importEval = _effect_cli.Command.make("import", {
531
531
  const EvalOutcome = effect.Schema.Struct({
532
532
  file: effect.Schema.String,
533
533
  problems: effect.Schema.Array(effect.Schema.String),
534
- run: effect.Schema.NullOr(require_evals.EvalRun),
534
+ run: effect.Schema.NullOr(require_evals_api.EvalRun),
535
535
  runId: effect.Schema.NullOr(effect.Schema.String)
536
536
  });
537
537
  effect.Schema.Struct({
@@ -657,7 +657,7 @@ const evalTrigger = effect.Effect.gen(function* () {
657
657
  const runId = yield* effect.Config.string("GITHUB_RUN_ID");
658
658
  const attempt = yield* effect.Config.string("GITHUB_RUN_ATTEMPT").pipe(effect.Config.withDefault("1"));
659
659
  const server = yield* effect.Config.string("GITHUB_SERVER_URL").pipe(effect.Config.withDefault("https://github.com"));
660
- return yield* effect.Schema.decodeUnknown(require_evals.EvalTrigger)({
660
+ return yield* effect.Schema.decodeUnknown(require_evals_api.EvalTrigger)({
661
661
  source: "ci",
662
662
  url: `${server}/${repository}/actions/runs/${runId}/attempts/${attempt}`
663
663
  });
package/dist/bin.mjs CHANGED
@@ -1,16 +1,16 @@
1
1
  #!/usr/bin/env node
2
- import { a as ChannelName, o as PromptId, s as VersionNumber, t as AnpordApi } from "./client-BfdjFtlV.mjs";
3
- import { C as EvalTrigger, s as EvalRun } from "./evals-Dcc_x6jW.mjs";
2
+ import { a as ChannelName, o as PromptId, s as VersionNumber, t as AnpordApi } from "./client-YWKJd3f-.mjs";
3
+ import { f as EvalTrigger, i as EvalRun } from "./evals-api-DDv4gXU1.mjs";
4
4
  import { i as tokenMatcher, r as asAnpordError } from "./errors-B0YknR5V.mjs";
5
5
  import { ClientLayer, webUrlConfig } from "./config.mjs";
6
- import { n as compileEvalEffect } from "./compiler-D96wI7UP.mjs";
7
- import { Args, Command, Options } from "@effect/cli";
6
+ import { n as compileEvalEffect } from "./compiler-Dsltkkj5.mjs";
7
+ import { Cause, Clock, Config, Console, Data, Duration, Effect, Layer, Option, ParseResult, Redacted, Ref, Schema } from "effect";
8
8
  import { FetchHttpClient, FileSystem, HttpClient, HttpClientError, HttpClientRequest } from "@effect/platform";
9
+ import { Args, Command, Options } from "@effect/cli";
9
10
  import { NodeContext, NodeRuntime } from "@effect/platform-node";
10
- import { Cause, Clock, Config, Console, Data, Duration, Effect, Layer, Option, ParseResult, Redacted, Ref, Schema } from "effect";
11
11
  import { parseDocument } from "yaml";
12
12
  //#region package.json
13
- var version$1 = "0.1.13";
13
+ var version$1 = "0.1.16";
14
14
  //#endregion
15
15
  //#region ../template/src/extract.ts
16
16
  /** Reads escapes too, so text the renderer leaves literal is never reported as
@@ -1,8 +1,8 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
2
  const require_define = require("./define-CHx2lRp5.cjs");
3
3
  let effect = require("effect");
4
- let node_path = require("node:path");
5
4
  let node_fs_promises = require("node:fs/promises");
5
+ let node_path = require("node:path");
6
6
  //#region src/mock-cli/runtime.ts
7
7
  const JOURNAL = ".anpord/cli-calls.jsonl";
8
8
  const errorOf = (cause) => cause instanceof Error ? cause : new Error(String(cause));
@@ -1,7 +1,7 @@
1
1
  import { r as optionName } from "./define-CLhfETBd.mjs";
2
2
  import { Effect } from "effect";
3
- import { dirname } from "node:path";
4
3
  import { appendFile, mkdir } from "node:fs/promises";
4
+ import { dirname } from "node:path";
5
5
  //#region src/mock-cli/runtime.ts
6
6
  const JOURNAL = ".anpord/cli-calls.jsonl";
7
7
  const errorOf = (cause) => cause instanceof Error ? cause : new Error(String(cause));