@inkeep/agents-core 0.31.3 → 0.31.5
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/{auth-detection-Dk5iYAy9.d.cts → auth-detection-CGqhPDnj.d.cts} +4 -1
- package/dist/{auth-detection-Dk5iYAy9.d.ts → auth-detection-CGqhPDnj.d.ts} +4 -1
- package/dist/{chunk-AGEFXY7F.js → chunk-OP3KPT4T.js} +5 -1
- package/dist/client-exports.cjs +5 -1
- package/dist/client-exports.d.cts +7 -7
- package/dist/client-exports.d.ts +7 -7
- package/dist/client-exports.js +1 -1
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +5 -1
- package/dist/index.d.cts +323 -323
- package/dist/index.d.ts +323 -323
- package/dist/index.js +2 -2
- package/dist/{schema-DgEdaA4i.d.cts → schema-BWDgXp-e.d.ts} +1 -1
- package/dist/{schema-DfnCgRwo.d.ts → schema-uPzoiY7F.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/{utility-eADYCyd-.d.cts → utility-fD4C61M4.d.cts} +266 -266
- package/dist/{utility-eADYCyd-.d.ts → utility-fD4C61M4.d.ts} +266 -266
|
@@ -189,6 +189,8 @@ declare const OPERATORS: {
|
|
|
189
189
|
readonly NOT_LIKE: "nlike";
|
|
190
190
|
readonly EXISTS: "exists";
|
|
191
191
|
readonly NOT_EXISTS: "nexists";
|
|
192
|
+
readonly IN: "in";
|
|
193
|
+
readonly NOT_IN: "nin";
|
|
192
194
|
readonly AND: "AND";
|
|
193
195
|
readonly OR: "OR";
|
|
194
196
|
};
|
|
@@ -257,6 +259,7 @@ declare const DATA_SOURCES: {
|
|
|
257
259
|
/** Aggregate Operators */
|
|
258
260
|
declare const AGGREGATE_OPERATORS: {
|
|
259
261
|
readonly COUNT: "count";
|
|
262
|
+
readonly COUNT_DISTINCT: "count_distinct";
|
|
260
263
|
readonly SUM: "sum";
|
|
261
264
|
readonly AVG: "avg";
|
|
262
265
|
readonly MIN: "min";
|
|
@@ -271,7 +274,7 @@ declare const QUERY_DEFAULTS: {
|
|
|
271
274
|
readonly DISABLED: false;
|
|
272
275
|
readonly HAVING: readonly [];
|
|
273
276
|
readonly LEGEND: "";
|
|
274
|
-
readonly LIMIT_UNLIMITED:
|
|
277
|
+
readonly LIMIT_UNLIMITED: 10000;
|
|
275
278
|
readonly EMPTY_GROUP_BY: readonly [];
|
|
276
279
|
};
|
|
277
280
|
|
|
@@ -189,6 +189,8 @@ declare const OPERATORS: {
|
|
|
189
189
|
readonly NOT_LIKE: "nlike";
|
|
190
190
|
readonly EXISTS: "exists";
|
|
191
191
|
readonly NOT_EXISTS: "nexists";
|
|
192
|
+
readonly IN: "in";
|
|
193
|
+
readonly NOT_IN: "nin";
|
|
192
194
|
readonly AND: "AND";
|
|
193
195
|
readonly OR: "OR";
|
|
194
196
|
};
|
|
@@ -257,6 +259,7 @@ declare const DATA_SOURCES: {
|
|
|
257
259
|
/** Aggregate Operators */
|
|
258
260
|
declare const AGGREGATE_OPERATORS: {
|
|
259
261
|
readonly COUNT: "count";
|
|
262
|
+
readonly COUNT_DISTINCT: "count_distinct";
|
|
260
263
|
readonly SUM: "sum";
|
|
261
264
|
readonly AVG: "avg";
|
|
262
265
|
readonly MIN: "min";
|
|
@@ -271,7 +274,7 @@ declare const QUERY_DEFAULTS: {
|
|
|
271
274
|
readonly DISABLED: false;
|
|
272
275
|
readonly HAVING: readonly [];
|
|
273
276
|
readonly LEGEND: "";
|
|
274
|
-
readonly LIMIT_UNLIMITED:
|
|
277
|
+
readonly LIMIT_UNLIMITED: 10000;
|
|
275
278
|
readonly EMPTY_GROUP_BY: readonly [];
|
|
276
279
|
};
|
|
277
280
|
|
|
@@ -198,6 +198,9 @@ var OPERATORS = {
|
|
|
198
198
|
// Existence operators
|
|
199
199
|
EXISTS: "exists",
|
|
200
200
|
NOT_EXISTS: "nexists",
|
|
201
|
+
// Set operators
|
|
202
|
+
IN: "in",
|
|
203
|
+
NOT_IN: "nin",
|
|
201
204
|
// Logical operators
|
|
202
205
|
AND: "AND",
|
|
203
206
|
OR: "OR"
|
|
@@ -261,6 +264,7 @@ var DATA_SOURCES = {
|
|
|
261
264
|
};
|
|
262
265
|
var AGGREGATE_OPERATORS = {
|
|
263
266
|
COUNT: "count",
|
|
267
|
+
COUNT_DISTINCT: "count_distinct",
|
|
264
268
|
SUM: "sum",
|
|
265
269
|
AVG: "avg",
|
|
266
270
|
MIN: "min",
|
|
@@ -274,7 +278,7 @@ var QUERY_DEFAULTS = {
|
|
|
274
278
|
DISABLED: false,
|
|
275
279
|
HAVING: [],
|
|
276
280
|
LEGEND: "",
|
|
277
|
-
LIMIT_UNLIMITED:
|
|
281
|
+
LIMIT_UNLIMITED: 1e4,
|
|
278
282
|
EMPTY_GROUP_BY: []
|
|
279
283
|
};
|
|
280
284
|
function discoverScopes(resourceMetadata, metadata) {
|
package/dist/client-exports.cjs
CHANGED
|
@@ -2085,6 +2085,9 @@ var OPERATORS = {
|
|
|
2085
2085
|
// Existence operators
|
|
2086
2086
|
EXISTS: "exists",
|
|
2087
2087
|
NOT_EXISTS: "nexists",
|
|
2088
|
+
// Set operators
|
|
2089
|
+
IN: "in",
|
|
2090
|
+
NOT_IN: "nin",
|
|
2088
2091
|
// Logical operators
|
|
2089
2092
|
AND: "AND",
|
|
2090
2093
|
OR: "OR"
|
|
@@ -2148,6 +2151,7 @@ var DATA_SOURCES = {
|
|
|
2148
2151
|
};
|
|
2149
2152
|
var AGGREGATE_OPERATORS = {
|
|
2150
2153
|
COUNT: "count",
|
|
2154
|
+
COUNT_DISTINCT: "count_distinct",
|
|
2151
2155
|
SUM: "sum",
|
|
2152
2156
|
AVG: "avg",
|
|
2153
2157
|
MIN: "min",
|
|
@@ -2161,7 +2165,7 @@ var QUERY_DEFAULTS = {
|
|
|
2161
2165
|
DISABLED: false,
|
|
2162
2166
|
HAVING: [],
|
|
2163
2167
|
LEGEND: "",
|
|
2164
|
-
LIMIT_UNLIMITED:
|
|
2168
|
+
LIMIT_UNLIMITED: 1e4,
|
|
2165
2169
|
EMPTY_GROUP_BY: []
|
|
2166
2170
|
};
|
|
2167
2171
|
function discoverScopes(resourceMetadata, metadata) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { i as ACTIVITY_NAMES, g as ACTIVITY_STATUS, f as ACTIVITY_TYPES, h as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, e as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE, d as detectAuthenticationRequired } from './auth-detection-
|
|
1
|
+
export { i as ACTIVITY_NAMES, g as ACTIVITY_STATUS, f as ACTIVITY_TYPES, h as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, e as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE, d as detectAuthenticationRequired } from './auth-detection-CGqhPDnj.cjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-
|
|
4
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-fD4C61M4.cjs';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-fD4C61M4.cjs';
|
|
5
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.cjs';
|
|
6
6
|
import 'pino';
|
|
7
7
|
import 'drizzle-zod';
|
|
@@ -134,8 +134,8 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
|
134
134
|
}, z.core.$strip>>>;
|
|
135
135
|
}, z.core.$strip>;
|
|
136
136
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
137
|
-
id: z.ZodString;
|
|
138
137
|
name: z.ZodString;
|
|
138
|
+
id: z.ZodString;
|
|
139
139
|
description: z.ZodString;
|
|
140
140
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
141
141
|
}, {
|
|
@@ -170,12 +170,11 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
170
170
|
description: z.ZodOptional<z.ZodString>;
|
|
171
171
|
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
172
172
|
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
173
|
-
id: z.ZodString;
|
|
174
173
|
name: z.ZodString;
|
|
175
|
-
|
|
176
|
-
prompt: z.ZodString;
|
|
174
|
+
id: z.ZodString;
|
|
177
175
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
178
176
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
177
|
+
description: z.ZodString;
|
|
179
178
|
models: z.ZodOptional<z.ZodObject<{
|
|
180
179
|
base: z.ZodOptional<z.ZodObject<{
|
|
181
180
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -199,6 +198,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
199
198
|
}, {
|
|
200
199
|
stepCountIs?: number | undefined;
|
|
201
200
|
}>>>>;
|
|
201
|
+
prompt: z.ZodString;
|
|
202
202
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
203
203
|
type: z.ZodLiteral<"internal">;
|
|
204
204
|
canUse: z.ZodArray<z.ZodObject<{
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { i as ACTIVITY_NAMES, g as ACTIVITY_STATUS, f as ACTIVITY_TYPES, h as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, e as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE, d as detectAuthenticationRequired } from './auth-detection-
|
|
1
|
+
export { i as ACTIVITY_NAMES, g as ACTIVITY_STATUS, f as ACTIVITY_TYPES, h as AGENT_IDS, p as AGGREGATE_OPERATORS, A as AI_OPERATIONS, j as AI_TOOL_TYPES, o as DATA_SOURCES, k as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, m as ORDER_DIRECTIONS, P as PANEL_TYPES, q as QUERY_DEFAULTS, l as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, n as QUERY_TYPES, R as REDUCE_OPERATIONS, e as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE, d as detectAuthenticationRequired } from './auth-detection-CGqhPDnj.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-
|
|
4
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-fD4C61M4.js';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-fD4C61M4.js';
|
|
5
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.js';
|
|
6
6
|
import 'pino';
|
|
7
7
|
import 'drizzle-zod';
|
|
@@ -134,8 +134,8 @@ declare const DataComponentApiInsertSchema: z.ZodObject<{
|
|
|
134
134
|
}, z.core.$strip>>>;
|
|
135
135
|
}, z.core.$strip>;
|
|
136
136
|
declare const ArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
137
|
-
id: z.ZodString;
|
|
138
137
|
name: z.ZodString;
|
|
138
|
+
id: z.ZodString;
|
|
139
139
|
description: z.ZodString;
|
|
140
140
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
141
141
|
}, {
|
|
@@ -170,12 +170,11 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
170
170
|
description: z.ZodOptional<z.ZodString>;
|
|
171
171
|
defaultSubAgentId: z.ZodOptional<z.ZodString>;
|
|
172
172
|
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
173
|
-
id: z.ZodString;
|
|
174
173
|
name: z.ZodString;
|
|
175
|
-
|
|
176
|
-
prompt: z.ZodString;
|
|
174
|
+
id: z.ZodString;
|
|
177
175
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
178
176
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
177
|
+
description: z.ZodString;
|
|
179
178
|
models: z.ZodOptional<z.ZodObject<{
|
|
180
179
|
base: z.ZodOptional<z.ZodObject<{
|
|
181
180
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -199,6 +198,7 @@ declare const FullAgentDefinitionSchema: z.ZodObject<{
|
|
|
199
198
|
}, {
|
|
200
199
|
stepCountIs?: number | undefined;
|
|
201
200
|
}>>>>;
|
|
201
|
+
prompt: z.ZodString;
|
|
202
202
|
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
203
203
|
type: z.ZodLiteral<"internal">;
|
|
204
204
|
canUse: z.ZodArray<z.ZodObject<{
|
package/dist/client-exports.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE, detectAuthenticationRequired } from './chunk-
|
|
1
|
+
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE, detectAuthenticationRequired } from './chunk-OP3KPT4T.js';
|
|
2
2
|
import { ModelSettingsSchema, FullAgentAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-37BY2EHU.js';
|
|
3
3
|
export { AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettingsSchema, StopWhenSchema, SubAgentStopWhenSchema, validatePropsAsJsonSchema } from './chunk-37BY2EHU.js';
|
|
4
4
|
import { CredentialStoreType } from './chunk-YFHT5M2R.js';
|
package/dist/db/schema.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../utility-
|
|
4
|
-
export { G as agentRelations, J as agentToolRelationsRelations, a as agents, y as apiKeys, I as apiKeysRelations, j as artifactComponents, O as artifactComponentsRelations, b as contextCache, E as contextCacheRelations, c as contextConfigs, D as contextConfigsRelations, v as conversations, M as conversationsRelations, z as credentialReferences, K as credentialReferencesRelations, h as dataComponents, Q as dataComponentsRelations, f as externalAgents, H as externalAgentsRelations, m as functionTools, V as functionToolsRelations, n as functions, T as functionsRelations, x as ledgerArtifacts, S as ledgerArtifactsRelations, w as messages, N as messagesRelations, p as projects, B as projectsRelations, k as subAgentArtifactComponents, P as subAgentArtifactComponentsRelations, i as subAgentDataComponents, R as subAgentDataComponentsRelations, q as subAgentExternalAgentRelations, X as subAgentExternalAgentRelationsRelations, u as subAgentFunctionToolRelations, W as subAgentFunctionToolRelationsRelations, e as subAgentRelations, U as subAgentRelationsRelations, r as subAgentTeamAgentRelations, Y as subAgentTeamAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, F as subAgentsRelations, g as taskRelations, C as taskRelationsRelations, t as tasks, A as tasksRelations, l as tools, L as toolsRelations } from '../schema-
|
|
3
|
+
import '../utility-fD4C61M4.cjs';
|
|
4
|
+
export { G as agentRelations, J as agentToolRelationsRelations, a as agents, y as apiKeys, I as apiKeysRelations, j as artifactComponents, O as artifactComponentsRelations, b as contextCache, E as contextCacheRelations, c as contextConfigs, D as contextConfigsRelations, v as conversations, M as conversationsRelations, z as credentialReferences, K as credentialReferencesRelations, h as dataComponents, Q as dataComponentsRelations, f as externalAgents, H as externalAgentsRelations, m as functionTools, V as functionToolsRelations, n as functions, T as functionsRelations, x as ledgerArtifacts, S as ledgerArtifactsRelations, w as messages, N as messagesRelations, p as projects, B as projectsRelations, k as subAgentArtifactComponents, P as subAgentArtifactComponentsRelations, i as subAgentDataComponents, R as subAgentDataComponentsRelations, q as subAgentExternalAgentRelations, X as subAgentExternalAgentRelationsRelations, u as subAgentFunctionToolRelations, W as subAgentFunctionToolRelationsRelations, e as subAgentRelations, U as subAgentRelationsRelations, r as subAgentTeamAgentRelations, Y as subAgentTeamAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, F as subAgentsRelations, g as taskRelations, C as taskRelationsRelations, t as tasks, A as tasksRelations, l as tools, L as toolsRelations } from '../schema-uPzoiY7F.cjs';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/db/schema.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../utility-
|
|
4
|
-
export { G as agentRelations, J as agentToolRelationsRelations, a as agents, y as apiKeys, I as apiKeysRelations, j as artifactComponents, O as artifactComponentsRelations, b as contextCache, E as contextCacheRelations, c as contextConfigs, D as contextConfigsRelations, v as conversations, M as conversationsRelations, z as credentialReferences, K as credentialReferencesRelations, h as dataComponents, Q as dataComponentsRelations, f as externalAgents, H as externalAgentsRelations, m as functionTools, V as functionToolsRelations, n as functions, T as functionsRelations, x as ledgerArtifacts, S as ledgerArtifactsRelations, w as messages, N as messagesRelations, p as projects, B as projectsRelations, k as subAgentArtifactComponents, P as subAgentArtifactComponentsRelations, i as subAgentDataComponents, R as subAgentDataComponentsRelations, q as subAgentExternalAgentRelations, X as subAgentExternalAgentRelationsRelations, u as subAgentFunctionToolRelations, W as subAgentFunctionToolRelationsRelations, e as subAgentRelations, U as subAgentRelationsRelations, r as subAgentTeamAgentRelations, Y as subAgentTeamAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, F as subAgentsRelations, g as taskRelations, C as taskRelationsRelations, t as tasks, A as tasksRelations, l as tools, L as toolsRelations } from '../schema-
|
|
3
|
+
import '../utility-fD4C61M4.js';
|
|
4
|
+
export { G as agentRelations, J as agentToolRelationsRelations, a as agents, y as apiKeys, I as apiKeysRelations, j as artifactComponents, O as artifactComponentsRelations, b as contextCache, E as contextCacheRelations, c as contextConfigs, D as contextConfigsRelations, v as conversations, M as conversationsRelations, z as credentialReferences, K as credentialReferencesRelations, h as dataComponents, Q as dataComponentsRelations, f as externalAgents, H as externalAgentsRelations, m as functionTools, V as functionToolsRelations, n as functions, T as functionsRelations, x as ledgerArtifacts, S as ledgerArtifactsRelations, w as messages, N as messagesRelations, p as projects, B as projectsRelations, k as subAgentArtifactComponents, P as subAgentArtifactComponentsRelations, i as subAgentDataComponents, R as subAgentDataComponentsRelations, q as subAgentExternalAgentRelations, X as subAgentExternalAgentRelationsRelations, u as subAgentFunctionToolRelations, W as subAgentFunctionToolRelationsRelations, e as subAgentRelations, U as subAgentRelationsRelations, r as subAgentTeamAgentRelations, Y as subAgentTeamAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, F as subAgentsRelations, g as taskRelations, C as taskRelationsRelations, t as tasks, A as tasksRelations, l as tools, L as toolsRelations } from '../schema-BWDgXp-e.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/index.cjs
CHANGED
|
@@ -213130,6 +213130,9 @@ var OPERATORS = {
|
|
|
213130
213130
|
// Existence operators
|
|
213131
213131
|
EXISTS: "exists",
|
|
213132
213132
|
NOT_EXISTS: "nexists",
|
|
213133
|
+
// Set operators
|
|
213134
|
+
IN: "in",
|
|
213135
|
+
NOT_IN: "nin",
|
|
213133
213136
|
// Logical operators
|
|
213134
213137
|
AND: "AND",
|
|
213135
213138
|
OR: "OR"
|
|
@@ -213193,6 +213196,7 @@ var DATA_SOURCES = {
|
|
|
213193
213196
|
};
|
|
213194
213197
|
var AGGREGATE_OPERATORS = {
|
|
213195
213198
|
COUNT: "count",
|
|
213199
|
+
COUNT_DISTINCT: "count_distinct",
|
|
213196
213200
|
SUM: "sum",
|
|
213197
213201
|
AVG: "avg",
|
|
213198
213202
|
MIN: "min",
|
|
@@ -213206,7 +213210,7 @@ var QUERY_DEFAULTS = {
|
|
|
213206
213210
|
DISABLED: false,
|
|
213207
213211
|
HAVING: [],
|
|
213208
213212
|
LEGEND: "",
|
|
213209
|
-
LIMIT_UNLIMITED:
|
|
213213
|
+
LIMIT_UNLIMITED: 1e4,
|
|
213210
213214
|
EMPTY_GROUP_BY: []
|
|
213211
213215
|
};
|
|
213212
213216
|
var PinoLogger = class {
|