@effect-agent/testing 0.1.0-beta.20 → 0.1.0-beta.22
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 +1 -383
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
- package/src/fixtures/travel-planner/phase3.ts +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-agent/testing",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.22",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@effect-agent/capabilities": "0.1.0-beta.
|
|
12
|
-
"@effect-agent/core": "0.1.0-beta.
|
|
13
|
-
"@effect-agent/engine": "0.1.0-beta.
|
|
14
|
-
"@effect-agent/platform-node": "0.1.0-beta.
|
|
15
|
-
"@effect-agent/sandbox": "0.1.0-beta.
|
|
16
|
-
"@effect-agent/session": "0.1.0-beta.
|
|
17
|
-
"@effect-agent/storage-memory": "0.1.0-beta.
|
|
18
|
-
"@effect-agent/storage-sqlite": "0.1.0-beta.
|
|
11
|
+
"@effect-agent/capabilities": "0.1.0-beta.22",
|
|
12
|
+
"@effect-agent/core": "0.1.0-beta.22",
|
|
13
|
+
"@effect-agent/engine": "0.1.0-beta.22",
|
|
14
|
+
"@effect-agent/platform-node": "0.1.0-beta.22",
|
|
15
|
+
"@effect-agent/sandbox": "0.1.0-beta.22",
|
|
16
|
+
"@effect-agent/session": "0.1.0-beta.22",
|
|
17
|
+
"@effect-agent/storage-memory": "0.1.0-beta.22",
|
|
18
|
+
"@effect-agent/storage-sqlite": "0.1.0-beta.22",
|
|
19
19
|
"effect": "4.0.0-rc.110"
|
|
20
20
|
},
|
|
21
21
|
"description": "Scripted models, deterministic fixtures, and adapter conformance kits for testing Effect Agent applications.",
|
|
@@ -115,9 +115,8 @@ export const phase3TravelPlannerBatches = [
|
|
|
115
115
|
] as const;
|
|
116
116
|
|
|
117
117
|
/** Portable current-version fixture; it contains no passenger identity or credentials. */
|
|
118
|
-
export const phase3TravelPlannerEncodedFixture
|
|
119
|
-
phase3TravelPlannerBatches
|
|
120
|
-
);
|
|
118
|
+
export const phase3TravelPlannerEncodedFixture: ReadonlyArray<typeof CanonicalBatch.Encoded> =
|
|
119
|
+
Schema.encodeSync(Schema.Array(CanonicalBatch))(phase3TravelPlannerBatches);
|
|
121
120
|
|
|
122
121
|
export class TravelPlannerProjectionError extends Schema.TaggedError<TravelPlannerProjectionError>()(
|
|
123
122
|
"TravelPlannerProjectionError",
|