clanka 0.2.68 → 0.2.69
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/AgentExecutor.d.ts +42 -42
- package/package.json +12 -12
package/dist/AgentExecutor.d.ts
CHANGED
|
@@ -119,40 +119,40 @@ export declare const makeLocal: <Toolkit extends Toolkit.Any = never>(options: {
|
|
|
119
119
|
readonly text: string;
|
|
120
120
|
readonly completed: boolean;
|
|
121
121
|
};
|
|
122
|
-
readonly Rebuild: Schema.Struct<{
|
|
123
|
-
readonly id: Schema.Number;
|
|
124
|
-
readonly text: Schema.String;
|
|
125
|
-
readonly completed: Schema.Boolean;
|
|
126
|
-
}>;
|
|
127
|
-
readonly Iso: {
|
|
128
|
-
readonly id: number;
|
|
129
|
-
readonly text: string;
|
|
130
|
-
readonly completed: boolean;
|
|
131
|
-
};
|
|
132
|
-
readonly ast: import("effect/SchemaAST").Objects;
|
|
133
|
-
readonly "~type.parameters": readonly [];
|
|
134
122
|
readonly Type: {
|
|
135
123
|
readonly id: number;
|
|
136
124
|
readonly text: string;
|
|
137
125
|
readonly completed: boolean;
|
|
138
126
|
};
|
|
139
|
-
readonly Encoded: {
|
|
140
|
-
readonly id:
|
|
141
|
-
readonly text:
|
|
142
|
-
readonly completed:
|
|
143
|
-
}
|
|
127
|
+
readonly Encoded: Schema.Struct.ReadonlySide<{
|
|
128
|
+
readonly id: Schema.Number;
|
|
129
|
+
readonly text: Schema.String;
|
|
130
|
+
readonly completed: Schema.Boolean;
|
|
131
|
+
}, "Encoded">;
|
|
144
132
|
readonly DecodingServices: never;
|
|
145
133
|
readonly EncodingServices: never;
|
|
146
|
-
readonly "~type.make.in": {
|
|
147
|
-
readonly id:
|
|
148
|
-
readonly text:
|
|
149
|
-
readonly completed:
|
|
150
|
-
}
|
|
151
|
-
readonly "~type.make": {
|
|
152
|
-
readonly id:
|
|
153
|
-
readonly text:
|
|
154
|
-
readonly completed:
|
|
155
|
-
}
|
|
134
|
+
readonly "~type.make.in": Schema.Struct.ReadonlyMakeIn<{
|
|
135
|
+
readonly id: Schema.Number;
|
|
136
|
+
readonly text: Schema.String;
|
|
137
|
+
readonly completed: Schema.Boolean;
|
|
138
|
+
}>;
|
|
139
|
+
readonly "~type.make": Schema.Struct.ReadonlyMakeIn<{
|
|
140
|
+
readonly id: Schema.Number;
|
|
141
|
+
readonly text: Schema.String;
|
|
142
|
+
readonly completed: Schema.Boolean;
|
|
143
|
+
}>;
|
|
144
|
+
readonly Iso: Schema.Struct.ReadonlySide<{
|
|
145
|
+
readonly id: Schema.Number;
|
|
146
|
+
readonly text: Schema.String;
|
|
147
|
+
readonly completed: Schema.Boolean;
|
|
148
|
+
}, "Iso">;
|
|
149
|
+
readonly Rebuild: Schema.Struct<{
|
|
150
|
+
readonly id: Schema.Number;
|
|
151
|
+
readonly text: Schema.String;
|
|
152
|
+
readonly completed: Schema.Boolean;
|
|
153
|
+
}>;
|
|
154
|
+
readonly ast: import("effect/SchemaAST").Objects;
|
|
155
|
+
readonly "~type.parameters": readonly [];
|
|
156
156
|
readonly "~type.constructor.default": "no-default";
|
|
157
157
|
readonly "~type.mutability": "readonly";
|
|
158
158
|
readonly "~type.optionality": "required";
|
|
@@ -194,29 +194,29 @@ export declare const makeLocal: <Toolkit extends Toolkit.Any = never>(options: {
|
|
|
194
194
|
readonly text: Schema.String;
|
|
195
195
|
readonly completed: Schema.Boolean;
|
|
196
196
|
}>;
|
|
197
|
-
make(input: {
|
|
198
|
-
readonly id:
|
|
199
|
-
readonly text:
|
|
200
|
-
readonly completed:
|
|
201
|
-
}
|
|
197
|
+
make(input: Schema.Struct.ReadonlyMakeIn<{
|
|
198
|
+
readonly id: Schema.Number;
|
|
199
|
+
readonly text: Schema.String;
|
|
200
|
+
readonly completed: Schema.Boolean;
|
|
201
|
+
}>, options?: Schema.MakeOptions): {
|
|
202
202
|
readonly id: number;
|
|
203
203
|
readonly text: string;
|
|
204
204
|
readonly completed: boolean;
|
|
205
205
|
};
|
|
206
|
-
makeOption(input: {
|
|
207
|
-
readonly id:
|
|
208
|
-
readonly text:
|
|
209
|
-
readonly completed:
|
|
210
|
-
}
|
|
206
|
+
makeOption(input: Schema.Struct.ReadonlyMakeIn<{
|
|
207
|
+
readonly id: Schema.Number;
|
|
208
|
+
readonly text: Schema.String;
|
|
209
|
+
readonly completed: Schema.Boolean;
|
|
210
|
+
}>, options?: Schema.MakeOptions): Option.Option<{
|
|
211
211
|
readonly id: number;
|
|
212
212
|
readonly text: string;
|
|
213
213
|
readonly completed: boolean;
|
|
214
214
|
}>;
|
|
215
|
-
makeEffect(input: {
|
|
216
|
-
readonly id:
|
|
217
|
-
readonly text:
|
|
218
|
-
readonly completed:
|
|
219
|
-
}
|
|
215
|
+
makeEffect(input: Schema.Struct.ReadonlyMakeIn<{
|
|
216
|
+
readonly id: Schema.Number;
|
|
217
|
+
readonly text: Schema.String;
|
|
218
|
+
readonly completed: Schema.Boolean;
|
|
219
|
+
}>, options?: Schema.MakeOptions): Effect.Effect<{
|
|
220
220
|
readonly id: number;
|
|
221
221
|
readonly text: string;
|
|
222
222
|
readonly completed: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clanka",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.69",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -44,25 +44,25 @@
|
|
|
44
44
|
"@sqliteai/sqlite-vector-win32-x86_64": "0.9.95"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@effect/ai-openai": ">=4.0.0-beta.
|
|
48
|
-
"@effect/ai-openai-compat": ">=4.0.0-beta.
|
|
49
|
-
"@effect/platform-node": ">=4.0.0-beta.
|
|
50
|
-
"@effect/sql-sqlite-node": ">=4.0.0-beta.
|
|
51
|
-
"effect": ">=4.0.0-beta.
|
|
47
|
+
"@effect/ai-openai": ">=4.0.0-beta.94 <4.0.1",
|
|
48
|
+
"@effect/ai-openai-compat": ">=4.0.0-beta.94 <4.0.1",
|
|
49
|
+
"@effect/platform-node": ">=4.0.0-beta.94 <4.0.1",
|
|
50
|
+
"@effect/sql-sqlite-node": ">=4.0.0-beta.94 <4.0.1",
|
|
51
|
+
"effect": ">=4.0.0-beta.94 <4.0.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@changesets/changelog-github": "^0.7.0",
|
|
55
55
|
"@changesets/cli": "^2.31.0",
|
|
56
|
-
"@effect/ai-openai": "4.0.0-beta.
|
|
57
|
-
"@effect/ai-openai-compat": "4.0.0-beta.
|
|
56
|
+
"@effect/ai-openai": "4.0.0-beta.94",
|
|
57
|
+
"@effect/ai-openai-compat": "4.0.0-beta.94",
|
|
58
58
|
"@effect/language-service": "^0.85.1",
|
|
59
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
60
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.
|
|
61
|
-
"@effect/vitest": "4.0.0-beta.
|
|
59
|
+
"@effect/platform-node": "4.0.0-beta.94",
|
|
60
|
+
"@effect/sql-sqlite-node": "4.0.0-beta.94",
|
|
61
|
+
"@effect/vitest": "4.0.0-beta.94",
|
|
62
62
|
"@types/node": "^25.7.0",
|
|
63
63
|
"@types/turndown": "^5.0.6",
|
|
64
64
|
"@typescript/native-preview": "7.0.0-dev.20260512.1",
|
|
65
|
-
"effect": "4.0.0-beta.
|
|
65
|
+
"effect": "4.0.0-beta.94",
|
|
66
66
|
"husky": "^9.1.7",
|
|
67
67
|
"lint-staged": "^17.0.4",
|
|
68
68
|
"oxlint": "^1.64.0",
|