@inkeep/agents-core 0.50.4 → 0.50.6
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/auth-schema.d.ts +83 -83
- package/dist/auth/auth-validation-schemas.d.ts +131 -131
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +5 -5
- package/dist/data-access/manage/artifactComponents.d.ts +2 -2
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/functionTools.d.ts +4 -4
- package/dist/data-access/manage/scope-helpers.d.ts +5 -5
- package/dist/data-access/manage/skills.d.ts +6 -6
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgents.d.ts +3 -3
- package/dist/data-access/manage/tools.d.ts +15 -15
- package/dist/data-access/runtime/apiKeys.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +6 -6
- package/dist/db/manage/manage-schema.d.ts +92 -92
- package/dist/db/runtime/runtime-schema.d.ts +28 -28
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +414 -414
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ContextFetchDefinition, ConversationHistoryConfig, DatasetItemExpectedOutput, DatasetItemInput, EvaluationSuiteFilterCriteria, Filter, PassCriteria, ToolMcpConfig, ToolServerCapabilities } from "../../types/utility.js";
|
|
2
2
|
import { JsonSchemaProperty } from "../../validation/json-schemas.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as drizzle_orm20 from "drizzle-orm";
|
|
4
4
|
import * as drizzle_orm_pg_core1479 from "drizzle-orm/pg-core";
|
|
5
5
|
|
|
6
6
|
//#region src/db/manage/manage-schema.d.ts
|
|
@@ -6301,118 +6301,118 @@ declare const evaluationJobConfigEvaluatorRelations: drizzle_orm_pg_core1479.PgT
|
|
|
6301
6301
|
};
|
|
6302
6302
|
dialect: "pg";
|
|
6303
6303
|
}>;
|
|
6304
|
-
declare const projectsRelations:
|
|
6305
|
-
subAgents:
|
|
6306
|
-
agents:
|
|
6307
|
-
tools:
|
|
6308
|
-
functions:
|
|
6309
|
-
contextConfigs:
|
|
6310
|
-
externalAgents:
|
|
6311
|
-
dataComponents:
|
|
6312
|
-
artifactComponents:
|
|
6313
|
-
credentialReferences:
|
|
6314
|
-
skills:
|
|
6304
|
+
declare const projectsRelations: drizzle_orm20.Relations<"projects", {
|
|
6305
|
+
subAgents: drizzle_orm20.Many<"sub_agents">;
|
|
6306
|
+
agents: drizzle_orm20.Many<"agent">;
|
|
6307
|
+
tools: drizzle_orm20.Many<"tools">;
|
|
6308
|
+
functions: drizzle_orm20.Many<"functions">;
|
|
6309
|
+
contextConfigs: drizzle_orm20.Many<"context_configs">;
|
|
6310
|
+
externalAgents: drizzle_orm20.Many<"external_agents">;
|
|
6311
|
+
dataComponents: drizzle_orm20.Many<"data_components">;
|
|
6312
|
+
artifactComponents: drizzle_orm20.Many<"artifact_components">;
|
|
6313
|
+
credentialReferences: drizzle_orm20.Many<"credential_references">;
|
|
6314
|
+
skills: drizzle_orm20.Many<"skills">;
|
|
6315
6315
|
}>;
|
|
6316
|
-
declare const contextConfigsRelations:
|
|
6317
|
-
project:
|
|
6318
|
-
agents:
|
|
6316
|
+
declare const contextConfigsRelations: drizzle_orm20.Relations<"context_configs", {
|
|
6317
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6318
|
+
agents: drizzle_orm20.Many<"agent">;
|
|
6319
6319
|
}>;
|
|
6320
|
-
declare const subAgentsRelations:
|
|
6321
|
-
project:
|
|
6322
|
-
defaultForAgents:
|
|
6323
|
-
sourceRelations:
|
|
6324
|
-
targetRelations:
|
|
6325
|
-
toolRelations:
|
|
6326
|
-
functionToolRelations:
|
|
6327
|
-
dataComponentRelations:
|
|
6328
|
-
artifactComponentRelations:
|
|
6329
|
-
skillRelations:
|
|
6320
|
+
declare const subAgentsRelations: drizzle_orm20.Relations<"sub_agents", {
|
|
6321
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6322
|
+
defaultForAgents: drizzle_orm20.Many<"agent">;
|
|
6323
|
+
sourceRelations: drizzle_orm20.Many<"sub_agent_relations">;
|
|
6324
|
+
targetRelations: drizzle_orm20.Many<"sub_agent_relations">;
|
|
6325
|
+
toolRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
|
|
6326
|
+
functionToolRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
|
|
6327
|
+
dataComponentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
|
|
6328
|
+
artifactComponentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
|
|
6329
|
+
skillRelations: drizzle_orm20.Many<"sub_agent_skills">;
|
|
6330
6330
|
}>;
|
|
6331
|
-
declare const agentRelations:
|
|
6332
|
-
project:
|
|
6333
|
-
defaultSubAgent:
|
|
6334
|
-
contextConfig:
|
|
6335
|
-
functionTools:
|
|
6336
|
-
scheduledWorkflows:
|
|
6337
|
-
scheduledTriggers:
|
|
6331
|
+
declare const agentRelations: drizzle_orm20.Relations<"agent", {
|
|
6332
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6333
|
+
defaultSubAgent: drizzle_orm20.One<"sub_agents", false>;
|
|
6334
|
+
contextConfig: drizzle_orm20.One<"context_configs", false>;
|
|
6335
|
+
functionTools: drizzle_orm20.Many<"function_tools">;
|
|
6336
|
+
scheduledWorkflows: drizzle_orm20.Many<"scheduled_workflows">;
|
|
6337
|
+
scheduledTriggers: drizzle_orm20.Many<"scheduled_triggers">;
|
|
6338
6338
|
}>;
|
|
6339
|
-
declare const scheduledTriggersRelations:
|
|
6340
|
-
agent:
|
|
6341
|
-
scheduledWorkflow:
|
|
6339
|
+
declare const scheduledTriggersRelations: drizzle_orm20.Relations<"scheduled_triggers", {
|
|
6340
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
6341
|
+
scheduledWorkflow: drizzle_orm20.One<"scheduled_workflows", false>;
|
|
6342
6342
|
}>;
|
|
6343
|
-
declare const scheduledWorkflowsRelations:
|
|
6344
|
-
agent:
|
|
6345
|
-
scheduledTrigger:
|
|
6343
|
+
declare const scheduledWorkflowsRelations: drizzle_orm20.Relations<"scheduled_workflows", {
|
|
6344
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
6345
|
+
scheduledTrigger: drizzle_orm20.One<"scheduled_triggers", true>;
|
|
6346
6346
|
}>;
|
|
6347
|
-
declare const externalAgentsRelations:
|
|
6348
|
-
project:
|
|
6349
|
-
subAgentExternalAgentRelations:
|
|
6350
|
-
credentialReference:
|
|
6347
|
+
declare const externalAgentsRelations: drizzle_orm20.Relations<"external_agents", {
|
|
6348
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6349
|
+
subAgentExternalAgentRelations: drizzle_orm20.Many<"sub_agent_external_agent_relations">;
|
|
6350
|
+
credentialReference: drizzle_orm20.One<"credential_references", false>;
|
|
6351
6351
|
}>;
|
|
6352
|
-
declare const agentToolRelationsRelations:
|
|
6353
|
-
subAgent:
|
|
6354
|
-
tool:
|
|
6352
|
+
declare const agentToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_tool_relations", {
|
|
6353
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6354
|
+
tool: drizzle_orm20.One<"tools", true>;
|
|
6355
6355
|
}>;
|
|
6356
|
-
declare const credentialReferencesRelations:
|
|
6357
|
-
project:
|
|
6358
|
-
tools:
|
|
6359
|
-
externalAgents:
|
|
6356
|
+
declare const credentialReferencesRelations: drizzle_orm20.Relations<"credential_references", {
|
|
6357
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6358
|
+
tools: drizzle_orm20.Many<"tools">;
|
|
6359
|
+
externalAgents: drizzle_orm20.Many<"external_agents">;
|
|
6360
6360
|
}>;
|
|
6361
|
-
declare const toolsRelations:
|
|
6362
|
-
project:
|
|
6363
|
-
subAgentRelations:
|
|
6364
|
-
credentialReference:
|
|
6361
|
+
declare const toolsRelations: drizzle_orm20.Relations<"tools", {
|
|
6362
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6363
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_tool_relations">;
|
|
6364
|
+
credentialReference: drizzle_orm20.One<"credential_references", false>;
|
|
6365
6365
|
}>;
|
|
6366
|
-
declare const artifactComponentsRelations:
|
|
6367
|
-
project:
|
|
6368
|
-
subAgentRelations:
|
|
6366
|
+
declare const artifactComponentsRelations: drizzle_orm20.Relations<"artifact_components", {
|
|
6367
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6368
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_artifact_components">;
|
|
6369
6369
|
}>;
|
|
6370
|
-
declare const subAgentArtifactComponentsRelations:
|
|
6371
|
-
subAgent:
|
|
6372
|
-
artifactComponent:
|
|
6370
|
+
declare const subAgentArtifactComponentsRelations: drizzle_orm20.Relations<"sub_agent_artifact_components", {
|
|
6371
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6372
|
+
artifactComponent: drizzle_orm20.One<"artifact_components", true>;
|
|
6373
6373
|
}>;
|
|
6374
|
-
declare const dataComponentsRelations:
|
|
6375
|
-
project:
|
|
6376
|
-
subAgentRelations:
|
|
6374
|
+
declare const dataComponentsRelations: drizzle_orm20.Relations<"data_components", {
|
|
6375
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6376
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_data_components">;
|
|
6377
6377
|
}>;
|
|
6378
|
-
declare const subAgentDataComponentsRelations:
|
|
6379
|
-
subAgent:
|
|
6380
|
-
dataComponent:
|
|
6378
|
+
declare const subAgentDataComponentsRelations: drizzle_orm20.Relations<"sub_agent_data_components", {
|
|
6379
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6380
|
+
dataComponent: drizzle_orm20.One<"data_components", true>;
|
|
6381
6381
|
}>;
|
|
6382
|
-
declare const skillsRelations:
|
|
6383
|
-
project:
|
|
6384
|
-
subAgentRelations:
|
|
6382
|
+
declare const skillsRelations: drizzle_orm20.Relations<"skills", {
|
|
6383
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6384
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_skills">;
|
|
6385
6385
|
}>;
|
|
6386
|
-
declare const subAgentSkillsRelations:
|
|
6387
|
-
subAgent:
|
|
6388
|
-
skill:
|
|
6386
|
+
declare const subAgentSkillsRelations: drizzle_orm20.Relations<"sub_agent_skills", {
|
|
6387
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6388
|
+
skill: drizzle_orm20.One<"skills", true>;
|
|
6389
6389
|
}>;
|
|
6390
|
-
declare const functionsRelations:
|
|
6391
|
-
functionTools:
|
|
6392
|
-
project:
|
|
6390
|
+
declare const functionsRelations: drizzle_orm20.Relations<"functions", {
|
|
6391
|
+
functionTools: drizzle_orm20.Many<"function_tools">;
|
|
6392
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6393
6393
|
}>;
|
|
6394
|
-
declare const subAgentRelationsRelations:
|
|
6395
|
-
agent:
|
|
6396
|
-
sourceSubAgent:
|
|
6397
|
-
targetSubAgent:
|
|
6394
|
+
declare const subAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_relations", {
|
|
6395
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
6396
|
+
sourceSubAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6397
|
+
targetSubAgent: drizzle_orm20.One<"sub_agents", false>;
|
|
6398
6398
|
}>;
|
|
6399
|
-
declare const functionToolsRelations:
|
|
6400
|
-
project:
|
|
6401
|
-
agent:
|
|
6402
|
-
function:
|
|
6403
|
-
subAgentRelations:
|
|
6399
|
+
declare const functionToolsRelations: drizzle_orm20.Relations<"function_tools", {
|
|
6400
|
+
project: drizzle_orm20.One<"projects", true>;
|
|
6401
|
+
agent: drizzle_orm20.One<"agent", true>;
|
|
6402
|
+
function: drizzle_orm20.One<"functions", true>;
|
|
6403
|
+
subAgentRelations: drizzle_orm20.Many<"sub_agent_function_tool_relations">;
|
|
6404
6404
|
}>;
|
|
6405
|
-
declare const subAgentFunctionToolRelationsRelations:
|
|
6406
|
-
subAgent:
|
|
6407
|
-
functionTool:
|
|
6405
|
+
declare const subAgentFunctionToolRelationsRelations: drizzle_orm20.Relations<"sub_agent_function_tool_relations", {
|
|
6406
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6407
|
+
functionTool: drizzle_orm20.One<"function_tools", true>;
|
|
6408
6408
|
}>;
|
|
6409
|
-
declare const subAgentExternalAgentRelationsRelations:
|
|
6410
|
-
subAgent:
|
|
6411
|
-
externalAgent:
|
|
6409
|
+
declare const subAgentExternalAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_external_agent_relations", {
|
|
6410
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6411
|
+
externalAgent: drizzle_orm20.One<"external_agents", true>;
|
|
6412
6412
|
}>;
|
|
6413
|
-
declare const subAgentTeamAgentRelationsRelations:
|
|
6414
|
-
subAgent:
|
|
6415
|
-
targetAgent:
|
|
6413
|
+
declare const subAgentTeamAgentRelationsRelations: drizzle_orm20.Relations<"sub_agent_team_agent_relations", {
|
|
6414
|
+
subAgent: drizzle_orm20.One<"sub_agents", true>;
|
|
6415
|
+
targetAgent: drizzle_orm20.One<"agent", true>;
|
|
6416
6416
|
}>;
|
|
6417
6417
|
/**
|
|
6418
6418
|
* Links agents to dataset run configs. Many-to-many relationship that
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Part } from "../../types/a2a.js";
|
|
2
2
|
import { ConversationMetadata, MessageContent, MessageMetadata, TaskMetadataConfig } from "../../types/utility.js";
|
|
3
3
|
import { account, deviceCode, invitation, member, organization, session, ssoProvider, user, verification } from "../../auth/auth-schema.js";
|
|
4
|
-
import * as
|
|
4
|
+
import * as drizzle_orm111 from "drizzle-orm";
|
|
5
5
|
import * as drizzle_orm_pg_core1831 from "drizzle-orm/pg-core";
|
|
6
6
|
|
|
7
7
|
//#region src/db/runtime/runtime-schema.d.ts
|
|
@@ -3827,27 +3827,27 @@ declare const evaluationResult: drizzle_orm_pg_core1831.PgTableWithColumns<{
|
|
|
3827
3827
|
};
|
|
3828
3828
|
dialect: "pg";
|
|
3829
3829
|
}>;
|
|
3830
|
-
declare const conversationsRelations:
|
|
3831
|
-
messages:
|
|
3830
|
+
declare const conversationsRelations: drizzle_orm111.Relations<"conversations", {
|
|
3831
|
+
messages: drizzle_orm111.Many<"messages">;
|
|
3832
3832
|
}>;
|
|
3833
|
-
declare const messagesRelations:
|
|
3834
|
-
conversation:
|
|
3835
|
-
task:
|
|
3836
|
-
parentMessage:
|
|
3837
|
-
childMessages:
|
|
3833
|
+
declare const messagesRelations: drizzle_orm111.Relations<"messages", {
|
|
3834
|
+
conversation: drizzle_orm111.One<"conversations", true>;
|
|
3835
|
+
task: drizzle_orm111.One<"tasks", false>;
|
|
3836
|
+
parentMessage: drizzle_orm111.One<"messages", false>;
|
|
3837
|
+
childMessages: drizzle_orm111.Many<"messages">;
|
|
3838
3838
|
}>;
|
|
3839
|
-
declare const tasksRelations:
|
|
3840
|
-
messages:
|
|
3841
|
-
ledgerArtifacts:
|
|
3842
|
-
parentRelations:
|
|
3843
|
-
childRelations:
|
|
3839
|
+
declare const tasksRelations: drizzle_orm111.Relations<"tasks", {
|
|
3840
|
+
messages: drizzle_orm111.Many<"messages">;
|
|
3841
|
+
ledgerArtifacts: drizzle_orm111.Many<"ledger_artifacts">;
|
|
3842
|
+
parentRelations: drizzle_orm111.Many<"task_relations">;
|
|
3843
|
+
childRelations: drizzle_orm111.Many<"task_relations">;
|
|
3844
3844
|
}>;
|
|
3845
|
-
declare const taskRelationsRelations:
|
|
3846
|
-
parentTask:
|
|
3847
|
-
childTask:
|
|
3845
|
+
declare const taskRelationsRelations: drizzle_orm111.Relations<"task_relations", {
|
|
3846
|
+
parentTask: drizzle_orm111.One<"tasks", true>;
|
|
3847
|
+
childTask: drizzle_orm111.One<"tasks", true>;
|
|
3848
3848
|
}>;
|
|
3849
|
-
declare const ledgerArtifactsRelations:
|
|
3850
|
-
task:
|
|
3849
|
+
declare const ledgerArtifactsRelations: drizzle_orm111.Relations<"ledger_artifacts", {
|
|
3850
|
+
task: drizzle_orm111.One<"tasks", true>;
|
|
3851
3851
|
}>;
|
|
3852
3852
|
/**
|
|
3853
3853
|
* Tracks GitHub App installations linked to tenants.
|
|
@@ -4679,19 +4679,19 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1831.PgTableWit
|
|
|
4679
4679
|
};
|
|
4680
4680
|
dialect: "pg";
|
|
4681
4681
|
}>;
|
|
4682
|
-
declare const workAppGitHubInstallationsRelations:
|
|
4683
|
-
repositories:
|
|
4682
|
+
declare const workAppGitHubInstallationsRelations: drizzle_orm111.Relations<"work_app_github_installations", {
|
|
4683
|
+
repositories: drizzle_orm111.Many<"work_app_github_repositories">;
|
|
4684
4684
|
}>;
|
|
4685
|
-
declare const workAppGitHubRepositoriesRelations:
|
|
4686
|
-
installation:
|
|
4687
|
-
projectAccess:
|
|
4688
|
-
mcpToolAccess:
|
|
4685
|
+
declare const workAppGitHubRepositoriesRelations: drizzle_orm111.Relations<"work_app_github_repositories", {
|
|
4686
|
+
installation: drizzle_orm111.One<"work_app_github_installations", true>;
|
|
4687
|
+
projectAccess: drizzle_orm111.Many<"work_app_github_project_repository_access">;
|
|
4688
|
+
mcpToolAccess: drizzle_orm111.Many<"work_app_github_mcp_tool_repository_access">;
|
|
4689
4689
|
}>;
|
|
4690
|
-
declare const workAppGitHubProjectRepositoryAccessRelations:
|
|
4691
|
-
repository:
|
|
4690
|
+
declare const workAppGitHubProjectRepositoryAccessRelations: drizzle_orm111.Relations<"work_app_github_project_repository_access", {
|
|
4691
|
+
repository: drizzle_orm111.One<"work_app_github_repositories", true>;
|
|
4692
4692
|
}>;
|
|
4693
|
-
declare const workAppGitHubMcpToolRepositoryAccessRelations:
|
|
4694
|
-
repository:
|
|
4693
|
+
declare const workAppGitHubMcpToolRepositoryAccessRelations: drizzle_orm111.Relations<"work_app_github_mcp_tool_repository_access", {
|
|
4694
|
+
repository: drizzle_orm111.One<"work_app_github_repositories", true>;
|
|
4695
4695
|
}>;
|
|
4696
4696
|
//#endregion
|
|
4697
4697
|
export { account, apiKeys, contextCache, conversations, conversationsRelations, datasetRun, datasetRunConversationRelations, deviceCode, evaluationResult, evaluationRun, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projectMetadata, runtime_schema_d_exports, scheduledTriggerInvocations, session, ssoProvider, taskRelations, taskRelationsRelations, tasks, tasksRelations, triggerInvocations, user, verification, workAppGitHubInstallations, workAppGitHubInstallationsRelations, workAppGitHubMcpToolAccessMode, workAppGitHubMcpToolRepositoryAccess, workAppGitHubMcpToolRepositoryAccessRelations, workAppGitHubProjectAccessMode, workAppGitHubProjectRepositoryAccess, workAppGitHubProjectRepositoryAccessRelations, workAppGitHubRepositories, workAppGitHubRepositoriesRelations, workAppSlackChannelAgentConfigs, workAppSlackUserMappings, workAppSlackWorkspaces };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from "@hono/zod-openapi";
|
|
2
|
-
import * as
|
|
2
|
+
import * as drizzle_zod15 from "drizzle-zod";
|
|
3
3
|
import { AnySQLiteTable } from "drizzle-orm/sqlite-core";
|
|
4
4
|
|
|
5
5
|
//#region src/validation/drizzle-schema-helpers.d.ts
|
|
6
|
-
declare function createSelectSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>):
|
|
7
|
-
declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>):
|
|
6
|
+
declare function createSelectSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod15.BuildSchema<"select", T["_"]["columns"], drizzle_zod15.BuildRefine<T["_"]["columns"], undefined>, undefined>;
|
|
7
|
+
declare function createInsertSchemaWithModifiers<T extends AnySQLiteTable>(table: T, overrides?: Partial<Record<keyof T['_']['columns'], (schema: z.ZodTypeAny) => z.ZodTypeAny>>): drizzle_zod15.BuildSchema<"insert", T["_"]["columns"], drizzle_zod15.BuildRefine<Pick<T["_"]["columns"], keyof T["$inferInsert"]>, undefined>, undefined>;
|
|
8
8
|
declare const createSelectSchema: typeof createSelectSchemaWithModifiers;
|
|
9
9
|
declare const createInsertSchema: typeof createInsertSchemaWithModifiers;
|
|
10
10
|
/**
|