@inkeep/agents-core 0.0.0-dev-20260216012253 → 0.0.0-dev-20260217033434
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 +18 -18
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/manage/subAgentRelations.d.ts +6 -6
- package/dist/data-access/runtime/conversations.d.ts +11 -11
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/runtime/runtime-schema.d.ts +10 -10
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/schemas.d.ts +87 -87
- package/package.json +2 -2
|
@@ -4989,7 +4989,7 @@ declare const TriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
4989
4989
|
}, {}, {
|
|
4990
4990
|
length: 256;
|
|
4991
4991
|
}>;
|
|
4992
|
-
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "
|
|
4992
|
+
}, "id" | "tenantId" | "projectId" | "agentId" | "createdAt" | "conversationId" | "status" | "triggerId" | "requestPayload" | "transformedPayload" | "errorMessage">, undefined>, undefined>;
|
|
4993
4993
|
declare const TriggerInvocationUpdateSchema: z.ZodObject<{
|
|
4994
4994
|
triggerId: z.ZodOptional<z.ZodString>;
|
|
4995
4995
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -5021,9 +5021,9 @@ declare const TriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentScope<{
|
|
|
5021
5021
|
}>, z.core.$strip>;
|
|
5022
5022
|
declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
5023
5023
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5024
|
+
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5024
5025
|
status: z.ZodOptional<z.ZodString>;
|
|
5025
5026
|
triggerId: z.ZodString;
|
|
5026
|
-
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5027
5027
|
requestPayload: z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>;
|
|
5028
5028
|
transformedPayload: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5029
5029
|
errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5032,9 +5032,9 @@ declare const TriggerInvocationApiInsertSchema: z.ZodObject<{
|
|
|
5032
5032
|
declare const TriggerInvocationApiUpdateSchema: z.ZodObject<{
|
|
5033
5033
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5034
5034
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5035
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5035
5036
|
status: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5036
5037
|
triggerId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5037
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5038
5038
|
requestPayload: z.ZodOptional<z.ZodOptional<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>;
|
|
5039
5039
|
transformedPayload: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
5040
5040
|
errorMessage: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -6593,7 +6593,7 @@ declare const ScheduledWorkflowInsertSchema: drizzle_zod19.BuildSchema<"insert",
|
|
|
6593
6593
|
}, {}, {
|
|
6594
6594
|
length: 256;
|
|
6595
6595
|
}>;
|
|
6596
|
-
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "status" | "
|
|
6596
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "agentId" | "createdAt" | "updatedAt" | "status" | "scheduledTriggerId" | "workflowRunId">, undefined>, undefined>;
|
|
6597
6597
|
declare const ScheduledWorkflowUpdateSchema: z.ZodObject<{
|
|
6598
6598
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6599
6599
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6629,8 +6629,8 @@ declare const ScheduledWorkflowApiInsertSchema: z.ZodObject<{
|
|
|
6629
6629
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6630
6630
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6631
6631
|
status: z.ZodOptional<z.ZodString>;
|
|
6632
|
-
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6633
6632
|
scheduledTriggerId: z.ZodString;
|
|
6633
|
+
workflowRunId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6634
6634
|
id: z.ZodOptional<z.ZodString>;
|
|
6635
6635
|
}, z.core.$strip>;
|
|
6636
6636
|
declare const ScheduledWorkflowApiUpdateSchema: z.ZodObject<{
|
|
@@ -6654,9 +6654,9 @@ type ScheduledWorkflowInsert = z.infer<typeof ScheduledWorkflowInsertSchema>;
|
|
|
6654
6654
|
type ScheduledWorkflowUpdate = z.infer<typeof ScheduledWorkflowUpdateSchema>;
|
|
6655
6655
|
declare const ScheduledTriggerInvocationStatusEnum: z.ZodEnum<{
|
|
6656
6656
|
pending: "pending";
|
|
6657
|
-
failed: "failed";
|
|
6658
6657
|
running: "running";
|
|
6659
6658
|
completed: "completed";
|
|
6659
|
+
failed: "failed";
|
|
6660
6660
|
cancelled: "cancelled";
|
|
6661
6661
|
}>;
|
|
6662
6662
|
declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
@@ -6675,9 +6675,9 @@ declare const ScheduledTriggerInvocationSelectSchema: z.ZodObject<{
|
|
|
6675
6675
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6676
6676
|
status: z.ZodEnum<{
|
|
6677
6677
|
pending: "pending";
|
|
6678
|
-
failed: "failed";
|
|
6679
6678
|
running: "running";
|
|
6680
6679
|
completed: "completed";
|
|
6680
|
+
failed: "failed";
|
|
6681
6681
|
cancelled: "cancelled";
|
|
6682
6682
|
}>;
|
|
6683
6683
|
}, {
|
|
@@ -6709,7 +6709,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6709
6709
|
tableName: "scheduled_trigger_invocations";
|
|
6710
6710
|
dataType: "string";
|
|
6711
6711
|
columnType: "PgVarchar";
|
|
6712
|
-
data: "pending" | "
|
|
6712
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6713
6713
|
driverParam: string;
|
|
6714
6714
|
notNull: true;
|
|
6715
6715
|
hasDefault: false;
|
|
@@ -6722,7 +6722,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6722
6722
|
generated: undefined;
|
|
6723
6723
|
}, {}, {
|
|
6724
6724
|
length: 50;
|
|
6725
|
-
$type: "pending" | "
|
|
6725
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6726
6726
|
}>;
|
|
6727
6727
|
scheduledFor: drizzle_orm_pg_core211.PgColumn<{
|
|
6728
6728
|
name: "scheduled_for";
|
|
@@ -6967,7 +6967,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6967
6967
|
tableName: "scheduled_trigger_invocations";
|
|
6968
6968
|
dataType: "string";
|
|
6969
6969
|
columnType: "PgVarchar";
|
|
6970
|
-
data: "pending" | "
|
|
6970
|
+
data: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6971
6971
|
driverParam: string;
|
|
6972
6972
|
notNull: true;
|
|
6973
6973
|
hasDefault: false;
|
|
@@ -6980,7 +6980,7 @@ declare const ScheduledTriggerInvocationInsertSchema: drizzle_zod19.BuildSchema<
|
|
|
6980
6980
|
generated: undefined;
|
|
6981
6981
|
}, {}, {
|
|
6982
6982
|
length: 50;
|
|
6983
|
-
$type: "pending" | "
|
|
6983
|
+
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
6984
6984
|
}>;
|
|
6985
6985
|
scheduledFor: drizzle_orm_pg_core211.PgColumn<{
|
|
6986
6986
|
name: "scheduled_for";
|
|
@@ -7236,9 +7236,9 @@ declare const ScheduledTriggerInvocationApiSelectSchema: z.ZodObject<OmitAgentSc
|
|
|
7236
7236
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7237
7237
|
status: z.ZodEnum<{
|
|
7238
7238
|
pending: "pending";
|
|
7239
|
-
failed: "failed";
|
|
7240
7239
|
running: "running";
|
|
7241
7240
|
completed: "completed";
|
|
7241
|
+
failed: "failed";
|
|
7242
7242
|
cancelled: "cancelled";
|
|
7243
7243
|
}>;
|
|
7244
7244
|
}>, z.core.$strip>;
|
|
@@ -7332,7 +7332,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7332
7332
|
dataType: "json";
|
|
7333
7333
|
columnType: "PgJsonb";
|
|
7334
7334
|
data: {
|
|
7335
|
-
type: "
|
|
7335
|
+
type: "commit" | "tag" | "branch";
|
|
7336
7336
|
name: string;
|
|
7337
7337
|
hash: string;
|
|
7338
7338
|
};
|
|
@@ -7348,7 +7348,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7348
7348
|
generated: undefined;
|
|
7349
7349
|
}, {}, {
|
|
7350
7350
|
$type: {
|
|
7351
|
-
type: "
|
|
7351
|
+
type: "commit" | "tag" | "branch";
|
|
7352
7352
|
name: string;
|
|
7353
7353
|
hash: string;
|
|
7354
7354
|
};
|
|
@@ -7546,7 +7546,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7546
7546
|
dataType: "json";
|
|
7547
7547
|
columnType: "PgJsonb";
|
|
7548
7548
|
data: {
|
|
7549
|
-
type: "
|
|
7549
|
+
type: "commit" | "tag" | "branch";
|
|
7550
7550
|
name: string;
|
|
7551
7551
|
hash: string;
|
|
7552
7552
|
};
|
|
@@ -7562,7 +7562,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
7562
7562
|
generated: undefined;
|
|
7563
7563
|
}, {}, {
|
|
7564
7564
|
$type: {
|
|
7565
|
-
type: "
|
|
7565
|
+
type: "commit" | "tag" | "branch";
|
|
7566
7566
|
name: string;
|
|
7567
7567
|
hash: string;
|
|
7568
7568
|
};
|
|
@@ -7715,8 +7715,8 @@ declare const TaskInsertSchema: z.ZodObject<{
|
|
|
7715
7715
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
7716
7716
|
ref: z.ZodObject<{
|
|
7717
7717
|
type: z.ZodEnum<{
|
|
7718
|
-
tag: "tag";
|
|
7719
7718
|
commit: "commit";
|
|
7719
|
+
tag: "tag";
|
|
7720
7720
|
branch: "branch";
|
|
7721
7721
|
}>;
|
|
7722
7722
|
name: z.ZodString;
|
|
@@ -7740,8 +7740,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
7740
7740
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7741
7741
|
ref: z.ZodOptional<z.ZodObject<{
|
|
7742
7742
|
type: z.ZodEnum<{
|
|
7743
|
-
tag: "tag";
|
|
7744
7743
|
commit: "commit";
|
|
7744
|
+
tag: "tag";
|
|
7745
7745
|
branch: "branch";
|
|
7746
7746
|
}>;
|
|
7747
7747
|
name: z.ZodString;
|
|
@@ -7756,19 +7756,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7756
7756
|
updatedAt: z.ZodString;
|
|
7757
7757
|
contextId: z.ZodString;
|
|
7758
7758
|
ref: z.ZodNullable<z.ZodType<{
|
|
7759
|
-
type: "
|
|
7759
|
+
type: "commit" | "tag" | "branch";
|
|
7760
7760
|
name: string;
|
|
7761
7761
|
hash: string;
|
|
7762
7762
|
}, {
|
|
7763
|
-
type: "
|
|
7763
|
+
type: "commit" | "tag" | "branch";
|
|
7764
7764
|
name: string;
|
|
7765
7765
|
hash: string;
|
|
7766
7766
|
}, z.core.$ZodTypeInternals<{
|
|
7767
|
-
type: "
|
|
7767
|
+
type: "commit" | "tag" | "branch";
|
|
7768
7768
|
name: string;
|
|
7769
7769
|
hash: string;
|
|
7770
7770
|
}, {
|
|
7771
|
-
type: "
|
|
7771
|
+
type: "commit" | "tag" | "branch";
|
|
7772
7772
|
name: string;
|
|
7773
7773
|
hash: string;
|
|
7774
7774
|
}>>>;
|
|
@@ -7794,8 +7794,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7794
7794
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
7795
7795
|
ref: z.ZodObject<{
|
|
7796
7796
|
type: z.ZodEnum<{
|
|
7797
|
-
tag: "tag";
|
|
7798
7797
|
commit: "commit";
|
|
7798
|
+
tag: "tag";
|
|
7799
7799
|
branch: "branch";
|
|
7800
7800
|
}>;
|
|
7801
7801
|
name: z.ZodString;
|
|
@@ -7808,19 +7808,19 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7808
7808
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7809
7809
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7810
7810
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7811
|
-
|
|
7811
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7812
7812
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7813
7813
|
type: z.ZodEnum<{
|
|
7814
|
-
tag: "tag";
|
|
7815
7814
|
commit: "commit";
|
|
7815
|
+
tag: "tag";
|
|
7816
7816
|
branch: "branch";
|
|
7817
7817
|
}>;
|
|
7818
7818
|
name: z.ZodString;
|
|
7819
7819
|
hash: z.ZodString;
|
|
7820
7820
|
}, z.core.$strip>>>;
|
|
7821
|
-
|
|
7822
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7821
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7823
7822
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7823
|
+
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7824
7824
|
}, z.core.$strip>;
|
|
7825
7825
|
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
7826
7826
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -8171,9 +8171,9 @@ declare const TaskRelationApiUpdateSchema: z.ZodObject<{
|
|
|
8171
8171
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8172
8172
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8173
8173
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
8174
|
-
relationType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8175
8174
|
parentTaskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8176
8175
|
childTaskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8176
|
+
relationType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
8177
8177
|
}, z.core.$strip>;
|
|
8178
8178
|
declare const McpTransportConfigSchema: z.ZodObject<{
|
|
8179
8179
|
type: z.ZodEnum<{
|
|
@@ -8901,7 +8901,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8901
8901
|
dataType: "json";
|
|
8902
8902
|
columnType: "PgJsonb";
|
|
8903
8903
|
data: {
|
|
8904
|
-
type: "
|
|
8904
|
+
type: "commit" | "tag" | "branch";
|
|
8905
8905
|
name: string;
|
|
8906
8906
|
hash: string;
|
|
8907
8907
|
};
|
|
@@ -8917,7 +8917,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8917
8917
|
generated: undefined;
|
|
8918
8918
|
}, {}, {
|
|
8919
8919
|
$type: {
|
|
8920
|
-
type: "
|
|
8920
|
+
type: "commit" | "tag" | "branch";
|
|
8921
8921
|
name: string;
|
|
8922
8922
|
hash: string;
|
|
8923
8923
|
};
|
|
@@ -9130,7 +9130,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
9130
9130
|
dataType: "json";
|
|
9131
9131
|
columnType: "PgJsonb";
|
|
9132
9132
|
data: {
|
|
9133
|
-
type: "
|
|
9133
|
+
type: "commit" | "tag" | "branch";
|
|
9134
9134
|
name: string;
|
|
9135
9135
|
hash: string;
|
|
9136
9136
|
};
|
|
@@ -9146,7 +9146,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
9146
9146
|
generated: undefined;
|
|
9147
9147
|
}, {}, {
|
|
9148
9148
|
$type: {
|
|
9149
|
-
type: "
|
|
9149
|
+
type: "commit" | "tag" | "branch";
|
|
9150
9150
|
name: string;
|
|
9151
9151
|
hash: string;
|
|
9152
9152
|
};
|
|
@@ -9277,8 +9277,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
|
|
|
9277
9277
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
9278
9278
|
ref: z.ZodObject<{
|
|
9279
9279
|
type: z.ZodEnum<{
|
|
9280
|
-
tag: "tag";
|
|
9281
9280
|
commit: "commit";
|
|
9281
|
+
tag: "tag";
|
|
9282
9282
|
branch: "branch";
|
|
9283
9283
|
}>;
|
|
9284
9284
|
name: z.ZodString;
|
|
@@ -9303,8 +9303,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
9303
9303
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9304
9304
|
ref: z.ZodOptional<z.ZodObject<{
|
|
9305
9305
|
type: z.ZodEnum<{
|
|
9306
|
-
tag: "tag";
|
|
9307
9306
|
commit: "commit";
|
|
9307
|
+
tag: "tag";
|
|
9308
9308
|
branch: "branch";
|
|
9309
9309
|
}>;
|
|
9310
9310
|
name: z.ZodString;
|
|
@@ -9321,19 +9321,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9321
9321
|
agentId: z.ZodNullable<z.ZodString>;
|
|
9322
9322
|
activeSubAgentId: z.ZodString;
|
|
9323
9323
|
ref: z.ZodNullable<z.ZodType<{
|
|
9324
|
-
type: "
|
|
9324
|
+
type: "commit" | "tag" | "branch";
|
|
9325
9325
|
name: string;
|
|
9326
9326
|
hash: string;
|
|
9327
9327
|
}, {
|
|
9328
|
-
type: "
|
|
9328
|
+
type: "commit" | "tag" | "branch";
|
|
9329
9329
|
name: string;
|
|
9330
9330
|
hash: string;
|
|
9331
9331
|
}, z.core.$ZodTypeInternals<{
|
|
9332
|
-
type: "
|
|
9332
|
+
type: "commit" | "tag" | "branch";
|
|
9333
9333
|
name: string;
|
|
9334
9334
|
hash: string;
|
|
9335
9335
|
}, {
|
|
9336
|
-
type: "
|
|
9336
|
+
type: "commit" | "tag" | "branch";
|
|
9337
9337
|
name: string;
|
|
9338
9338
|
hash: string;
|
|
9339
9339
|
}>>>;
|
|
@@ -9359,8 +9359,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
9359
9359
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
9360
9360
|
ref: z.ZodObject<{
|
|
9361
9361
|
type: z.ZodEnum<{
|
|
9362
|
-
tag: "tag";
|
|
9363
9362
|
commit: "commit";
|
|
9363
|
+
tag: "tag";
|
|
9364
9364
|
branch: "branch";
|
|
9365
9365
|
}>;
|
|
9366
9366
|
name: z.ZodString;
|
|
@@ -9375,16 +9375,16 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
9375
9375
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9376
9376
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
9377
9377
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9378
|
-
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9379
9378
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9380
9379
|
type: z.ZodEnum<{
|
|
9381
|
-
tag: "tag";
|
|
9382
9380
|
commit: "commit";
|
|
9381
|
+
tag: "tag";
|
|
9383
9382
|
branch: "branch";
|
|
9384
9383
|
}>;
|
|
9385
9384
|
name: z.ZodString;
|
|
9386
9385
|
hash: z.ZodString;
|
|
9387
9386
|
}, z.core.$strip>>>;
|
|
9387
|
+
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9388
9388
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
9389
9389
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
9390
9390
|
}, z.core.$strip>;
|
|
@@ -10285,19 +10285,19 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
10285
10285
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10286
10286
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
10287
10287
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
10288
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10288
10289
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10289
10290
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10290
10291
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10291
10292
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10292
10293
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10293
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10294
|
-
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10295
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10296
10294
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10297
10295
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10298
10296
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10299
10297
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10298
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10300
10299
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10300
|
+
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10301
10301
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10302
10302
|
}, z.core.$strip>;
|
|
10303
10303
|
declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
@@ -10398,7 +10398,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
10398
10398
|
dataType: "json";
|
|
10399
10399
|
columnType: "PgJsonb";
|
|
10400
10400
|
data: {
|
|
10401
|
-
type: "
|
|
10401
|
+
type: "commit" | "tag" | "branch";
|
|
10402
10402
|
name: string;
|
|
10403
10403
|
hash: string;
|
|
10404
10404
|
};
|
|
@@ -10414,7 +10414,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
10414
10414
|
generated: undefined;
|
|
10415
10415
|
}, {}, {
|
|
10416
10416
|
$type: {
|
|
10417
|
-
type: "
|
|
10417
|
+
type: "commit" | "tag" | "branch";
|
|
10418
10418
|
name: string;
|
|
10419
10419
|
hash: string;
|
|
10420
10420
|
};
|
|
@@ -10648,7 +10648,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
10648
10648
|
dataType: "json";
|
|
10649
10649
|
columnType: "PgJsonb";
|
|
10650
10650
|
data: {
|
|
10651
|
-
type: "
|
|
10651
|
+
type: "commit" | "tag" | "branch";
|
|
10652
10652
|
name: string;
|
|
10653
10653
|
hash: string;
|
|
10654
10654
|
};
|
|
@@ -10664,7 +10664,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
10664
10664
|
generated: undefined;
|
|
10665
10665
|
}, {}, {
|
|
10666
10666
|
$type: {
|
|
10667
|
-
type: "
|
|
10667
|
+
type: "commit" | "tag" | "branch";
|
|
10668
10668
|
name: string;
|
|
10669
10669
|
hash: string;
|
|
10670
10670
|
};
|
|
@@ -10816,8 +10816,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
10816
10816
|
id: z.ZodString;
|
|
10817
10817
|
ref: z.ZodObject<{
|
|
10818
10818
|
type: z.ZodEnum<{
|
|
10819
|
-
tag: "tag";
|
|
10820
10819
|
commit: "commit";
|
|
10820
|
+
tag: "tag";
|
|
10821
10821
|
branch: "branch";
|
|
10822
10822
|
}>;
|
|
10823
10823
|
name: z.ZodString;
|
|
@@ -10842,8 +10842,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
10842
10842
|
id: z.ZodOptional<z.ZodString>;
|
|
10843
10843
|
ref: z.ZodOptional<z.ZodObject<{
|
|
10844
10844
|
type: z.ZodEnum<{
|
|
10845
|
-
tag: "tag";
|
|
10846
10845
|
commit: "commit";
|
|
10846
|
+
tag: "tag";
|
|
10847
10847
|
branch: "branch";
|
|
10848
10848
|
}>;
|
|
10849
10849
|
name: z.ZodString;
|
|
@@ -10860,19 +10860,19 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10860
10860
|
contextConfigId: z.ZodString;
|
|
10861
10861
|
contextVariableKey: z.ZodString;
|
|
10862
10862
|
ref: z.ZodNullable<z.ZodType<{
|
|
10863
|
-
type: "
|
|
10863
|
+
type: "commit" | "tag" | "branch";
|
|
10864
10864
|
name: string;
|
|
10865
10865
|
hash: string;
|
|
10866
10866
|
}, {
|
|
10867
|
-
type: "
|
|
10867
|
+
type: "commit" | "tag" | "branch";
|
|
10868
10868
|
name: string;
|
|
10869
10869
|
hash: string;
|
|
10870
10870
|
}, z.core.$ZodTypeInternals<{
|
|
10871
|
-
type: "
|
|
10871
|
+
type: "commit" | "tag" | "branch";
|
|
10872
10872
|
name: string;
|
|
10873
10873
|
hash: string;
|
|
10874
10874
|
}, {
|
|
10875
|
-
type: "
|
|
10875
|
+
type: "commit" | "tag" | "branch";
|
|
10876
10876
|
name: string;
|
|
10877
10877
|
hash: string;
|
|
10878
10878
|
}>>>;
|
|
@@ -10899,8 +10899,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
10899
10899
|
id: z.ZodString;
|
|
10900
10900
|
ref: z.ZodObject<{
|
|
10901
10901
|
type: z.ZodEnum<{
|
|
10902
|
-
tag: "tag";
|
|
10903
10902
|
commit: "commit";
|
|
10903
|
+
tag: "tag";
|
|
10904
10904
|
branch: "branch";
|
|
10905
10905
|
}>;
|
|
10906
10906
|
name: z.ZodString;
|
|
@@ -10913,17 +10913,17 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
10913
10913
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10914
10914
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10915
10915
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10916
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10917
|
+
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10916
10918
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
10917
10919
|
type: z.ZodEnum<{
|
|
10918
|
-
tag: "tag";
|
|
10919
10920
|
commit: "commit";
|
|
10921
|
+
tag: "tag";
|
|
10920
10922
|
branch: "branch";
|
|
10921
10923
|
}>;
|
|
10922
10924
|
name: z.ZodString;
|
|
10923
10925
|
hash: z.ZodString;
|
|
10924
10926
|
}, z.core.$strip>>>;
|
|
10925
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10926
|
-
contextVariableKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10927
10927
|
requestHash: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
10928
10928
|
fetchedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
10929
10929
|
fetchSource: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -15722,8 +15722,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
15722
15722
|
}>>>>>>;
|
|
15723
15723
|
}, z.core.$strip>;
|
|
15724
15724
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
15725
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15726
15725
|
id: z.ZodOptional<z.ZodString>;
|
|
15726
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15727
15727
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15728
15728
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15729
15729
|
prompt: string;
|
|
@@ -15771,8 +15771,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
15771
15771
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
15772
15772
|
datasetRunId: z.ZodString;
|
|
15773
15773
|
items: z.ZodArray<z.ZodObject<{
|
|
15774
|
-
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15775
15774
|
id: z.ZodOptional<z.ZodString>;
|
|
15775
|
+
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
15776
15776
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
15777
15777
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15778
15778
|
prompt: string;
|
|
@@ -19874,9 +19874,9 @@ declare const CredentialReferenceApiSelectSchema: z.ZodObject<{
|
|
|
19874
19874
|
updatedAt: z.ZodString;
|
|
19875
19875
|
toolId: z.ZodNullable<z.ZodString>;
|
|
19876
19876
|
userId: z.ZodNullable<z.ZodString>;
|
|
19877
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
19877
19878
|
credentialStoreId: z.ZodString;
|
|
19878
19879
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
19879
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
19880
19880
|
type: z.ZodEnum<{
|
|
19881
19881
|
readonly memory: "memory";
|
|
19882
19882
|
readonly keychain: "keychain";
|
|
@@ -20465,9 +20465,9 @@ declare const CredentialReferenceApiInsertSchema: z.ZodObject<{
|
|
|
20465
20465
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20466
20466
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20467
20467
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20468
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20468
20469
|
credentialStoreId: z.ZodString;
|
|
20469
20470
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20470
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20471
20471
|
type: z.ZodEnum<{
|
|
20472
20472
|
readonly memory: "memory";
|
|
20473
20473
|
readonly keychain: "keychain";
|
|
@@ -20481,9 +20481,9 @@ declare const CredentialReferenceApiUpdateSchema: z.ZodObject<{
|
|
|
20481
20481
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
20482
20482
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20483
20483
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20484
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20484
20485
|
credentialStoreId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
20485
20486
|
retrievalParams: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>>;
|
|
20486
|
-
createdBy: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
20487
20487
|
type: z.ZodOptional<z.ZodEnum<{
|
|
20488
20488
|
readonly memory: "memory";
|
|
20489
20489
|
readonly keychain: "keychain";
|
|
@@ -20648,9 +20648,9 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
20648
20648
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
20649
20649
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20650
20650
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20651
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20651
20652
|
credentialStoreId: z.ZodString;
|
|
20652
20653
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
20653
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20654
20654
|
type: z.ZodEnum<{
|
|
20655
20655
|
readonly memory: "memory";
|
|
20656
20656
|
readonly keychain: "keychain";
|
|
@@ -21986,9 +21986,9 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
21986
21986
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
21987
21987
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21988
21988
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21989
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21989
21990
|
credentialStoreId: z.ZodString;
|
|
21990
21991
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
21991
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21992
21992
|
type: z.ZodEnum<{
|
|
21993
21993
|
readonly memory: "memory";
|
|
21994
21994
|
readonly keychain: "keychain";
|
|
@@ -24666,7 +24666,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
24666
24666
|
}, {}, {
|
|
24667
24667
|
length: 256;
|
|
24668
24668
|
}>;
|
|
24669
|
-
}, "
|
|
24669
|
+
}, "id" | "name" | "description" | "tenantId" | "projectId" | "type" | "createdAt" | "updatedAt" | "metadata" | "contextId" | "visibility" | "taskId" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
24670
24670
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
24671
24671
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24672
24672
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24731,16 +24731,16 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
24731
24731
|
id: z.ZodString;
|
|
24732
24732
|
}>, z.core.$strip>;
|
|
24733
24733
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
24734
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24735
24734
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24736
24735
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24737
24736
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24737
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24738
24738
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24739
24739
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
24740
24740
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24741
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24742
24741
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24743
24742
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24743
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24744
24744
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
24745
24745
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
24746
24746
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -25664,9 +25664,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
25664
25664
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
25665
25665
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25666
25666
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25667
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25667
25668
|
credentialStoreId: z.ZodString;
|
|
25668
25669
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25669
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25670
25670
|
type: z.ZodEnum<{
|
|
25671
25671
|
readonly memory: "memory";
|
|
25672
25672
|
readonly keychain: "keychain";
|
|
@@ -26763,9 +26763,9 @@ declare const FullProjectSelectSchema: z.ZodObject<{
|
|
|
26763
26763
|
updatedAt: z.ZodString;
|
|
26764
26764
|
toolId: z.ZodNullable<z.ZodString>;
|
|
26765
26765
|
userId: z.ZodNullable<z.ZodString>;
|
|
26766
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
26766
26767
|
credentialStoreId: z.ZodString;
|
|
26767
26768
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
26768
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
26769
26769
|
type: z.ZodEnum<{
|
|
26770
26770
|
readonly memory: "memory";
|
|
26771
26771
|
readonly keychain: "keychain";
|
|
@@ -27559,9 +27559,9 @@ declare const FullProjectSelectSchemaWithRelationIds: z.ZodObject<{
|
|
|
27559
27559
|
updatedAt: z.ZodString;
|
|
27560
27560
|
toolId: z.ZodNullable<z.ZodString>;
|
|
27561
27561
|
userId: z.ZodNullable<z.ZodString>;
|
|
27562
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
27562
27563
|
credentialStoreId: z.ZodString;
|
|
27563
27564
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
27564
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
27565
27565
|
type: z.ZodEnum<{
|
|
27566
27566
|
readonly memory: "memory";
|
|
27567
27567
|
readonly keychain: "keychain";
|
|
@@ -28664,9 +28664,9 @@ declare const CredentialReferenceResponse: z.ZodObject<{
|
|
|
28664
28664
|
updatedAt: z.ZodString;
|
|
28665
28665
|
toolId: z.ZodNullable<z.ZodString>;
|
|
28666
28666
|
userId: z.ZodNullable<z.ZodString>;
|
|
28667
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
28667
28668
|
credentialStoreId: z.ZodString;
|
|
28668
28669
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
28669
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
28670
28670
|
type: z.ZodEnum<{
|
|
28671
28671
|
readonly memory: "memory";
|
|
28672
28672
|
readonly keychain: "keychain";
|
|
@@ -29819,9 +29819,9 @@ declare const CredentialReferenceListResponse: z.ZodObject<{
|
|
|
29819
29819
|
updatedAt: z.ZodString;
|
|
29820
29820
|
toolId: z.ZodNullable<z.ZodString>;
|
|
29821
29821
|
userId: z.ZodNullable<z.ZodString>;
|
|
29822
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
29822
29823
|
credentialStoreId: z.ZodString;
|
|
29823
29824
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
29824
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
29825
29825
|
type: z.ZodEnum<{
|
|
29826
29826
|
readonly memory: "memory";
|
|
29827
29827
|
readonly keychain: "keychain";
|
|
@@ -30890,8 +30890,8 @@ declare const ScheduledTriggerWithRunInfoSchema: z.ZodObject<{
|
|
|
30890
30890
|
timeoutSeconds: z.ZodNumber;
|
|
30891
30891
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
30892
30892
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
30893
|
-
failed: "failed";
|
|
30894
30893
|
completed: "completed";
|
|
30894
|
+
failed: "failed";
|
|
30895
30895
|
}>>;
|
|
30896
30896
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
30897
30897
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -30963,8 +30963,8 @@ declare const ScheduledTriggerWithRunInfoListResponse: z.ZodObject<{
|
|
|
30963
30963
|
timeoutSeconds: z.ZodNumber;
|
|
30964
30964
|
lastRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
30965
30965
|
lastRunStatus: z.ZodNullable<z.ZodEnum<{
|
|
30966
|
-
failed: "failed";
|
|
30967
30966
|
completed: "completed";
|
|
30967
|
+
failed: "failed";
|
|
30968
30968
|
}>>;
|
|
30969
30969
|
lastRunConversationIds: z.ZodArray<z.ZodString>;
|
|
30970
30970
|
nextRunAt: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -30993,9 +30993,9 @@ declare const ScheduledTriggerInvocationResponse: z.ZodObject<{
|
|
|
30993
30993
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
30994
30994
|
status: z.ZodEnum<{
|
|
30995
30995
|
pending: "pending";
|
|
30996
|
-
failed: "failed";
|
|
30997
30996
|
running: "running";
|
|
30998
30997
|
completed: "completed";
|
|
30998
|
+
failed: "failed";
|
|
30999
30999
|
cancelled: "cancelled";
|
|
31000
31000
|
}>;
|
|
31001
31001
|
}>, z.core.$strip>;
|
|
@@ -31017,9 +31017,9 @@ declare const ScheduledTriggerInvocationListResponse: z.ZodObject<{
|
|
|
31017
31017
|
resolvedPayload: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31018
31018
|
status: z.ZodEnum<{
|
|
31019
31019
|
pending: "pending";
|
|
31020
|
-
failed: "failed";
|
|
31021
31020
|
running: "running";
|
|
31022
31021
|
completed: "completed";
|
|
31022
|
+
failed: "failed";
|
|
31023
31023
|
cancelled: "cancelled";
|
|
31024
31024
|
}>;
|
|
31025
31025
|
}>, z.core.$strip>>;
|
|
@@ -31510,9 +31510,9 @@ declare const FullProjectDefinitionResponse: z.ZodObject<{
|
|
|
31510
31510
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
31511
31511
|
toolId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31512
31512
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31513
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31513
31514
|
credentialStoreId: z.ZodString;
|
|
31514
31515
|
retrievalParams: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
31515
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31516
31516
|
type: z.ZodEnum<{
|
|
31517
31517
|
readonly memory: "memory";
|
|
31518
31518
|
readonly keychain: "keychain";
|
|
@@ -31961,9 +31961,9 @@ declare const FullProjectSelectResponse: z.ZodObject<{
|
|
|
31961
31961
|
updatedAt: z.ZodString;
|
|
31962
31962
|
toolId: z.ZodNullable<z.ZodString>;
|
|
31963
31963
|
userId: z.ZodNullable<z.ZodString>;
|
|
31964
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
31964
31965
|
credentialStoreId: z.ZodString;
|
|
31965
31966
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
31966
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
31967
31967
|
type: z.ZodEnum<{
|
|
31968
31968
|
readonly memory: "memory";
|
|
31969
31969
|
readonly keychain: "keychain";
|
|
@@ -32759,9 +32759,9 @@ declare const FullProjectSelectWithRelationIdsResponse: z.ZodObject<{
|
|
|
32759
32759
|
updatedAt: z.ZodString;
|
|
32760
32760
|
toolId: z.ZodNullable<z.ZodString>;
|
|
32761
32761
|
userId: z.ZodNullable<z.ZodString>;
|
|
32762
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
32762
32763
|
credentialStoreId: z.ZodString;
|
|
32763
32764
|
retrievalParams: z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
32764
|
-
createdBy: z.ZodNullable<z.ZodString>;
|
|
32765
32765
|
type: z.ZodEnum<{
|
|
32766
32766
|
readonly memory: "memory";
|
|
32767
32767
|
readonly keychain: "keychain";
|
|
@@ -34656,8 +34656,8 @@ declare const WorkAppGitHubInstallationStatusSchema: z.ZodEnum<{
|
|
|
34656
34656
|
disconnected: "disconnected";
|
|
34657
34657
|
}>;
|
|
34658
34658
|
declare const WorkAppGitHubAccountTypeSchema: z.ZodEnum<{
|
|
34659
|
-
User: "User";
|
|
34660
34659
|
Organization: "Organization";
|
|
34660
|
+
User: "User";
|
|
34661
34661
|
}>;
|
|
34662
34662
|
declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
34663
34663
|
createdAt: drizzle_orm_pg_core211.PgColumn<{
|
|
@@ -34752,7 +34752,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34752
34752
|
tableName: "work_app_github_installations";
|
|
34753
34753
|
dataType: "string";
|
|
34754
34754
|
columnType: "PgVarchar";
|
|
34755
|
-
data: "
|
|
34755
|
+
data: "Organization" | "User";
|
|
34756
34756
|
driverParam: string;
|
|
34757
34757
|
notNull: true;
|
|
34758
34758
|
hasDefault: false;
|
|
@@ -34765,7 +34765,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34765
34765
|
generated: undefined;
|
|
34766
34766
|
}, {}, {
|
|
34767
34767
|
length: 20;
|
|
34768
|
-
$type: "
|
|
34768
|
+
$type: "Organization" | "User";
|
|
34769
34769
|
}>;
|
|
34770
34770
|
status: drizzle_orm_pg_core211.PgColumn<{
|
|
34771
34771
|
name: "status";
|
|
@@ -34918,7 +34918,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34918
34918
|
tableName: "work_app_github_installations";
|
|
34919
34919
|
dataType: "string";
|
|
34920
34920
|
columnType: "PgVarchar";
|
|
34921
|
-
data: "
|
|
34921
|
+
data: "Organization" | "User";
|
|
34922
34922
|
driverParam: string;
|
|
34923
34923
|
notNull: true;
|
|
34924
34924
|
hasDefault: false;
|
|
@@ -34931,7 +34931,7 @@ declare const WorkAppGitHubInstallationSelectSchema: drizzle_zod19.BuildSchema<"
|
|
|
34931
34931
|
generated: undefined;
|
|
34932
34932
|
}, {}, {
|
|
34933
34933
|
length: 20;
|
|
34934
|
-
$type: "
|
|
34934
|
+
$type: "Organization" | "User";
|
|
34935
34935
|
}>;
|
|
34936
34936
|
status: drizzle_orm_pg_core211.PgColumn<{
|
|
34937
34937
|
name: "status";
|
|
@@ -34999,8 +34999,8 @@ declare const WorkAppGitHubInstallationInsertSchema: z.ZodObject<{
|
|
|
34999
34999
|
installationId: z.ZodString;
|
|
35000
35000
|
accountLogin: z.ZodString;
|
|
35001
35001
|
accountType: z.ZodEnum<{
|
|
35002
|
-
User: "User";
|
|
35003
35002
|
Organization: "Organization";
|
|
35003
|
+
User: "User";
|
|
35004
35004
|
}>;
|
|
35005
35005
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35006
35006
|
pending: "pending";
|
|
@@ -35030,8 +35030,8 @@ declare const WorkAppGitHubInstallationApiInsertSchema: z.ZodObject<OmitGenerate
|
|
|
35030
35030
|
installationId: z.ZodString;
|
|
35031
35031
|
accountLogin: z.ZodString;
|
|
35032
35032
|
accountType: z.ZodEnum<{
|
|
35033
|
-
User: "User";
|
|
35034
35033
|
Organization: "Organization";
|
|
35034
|
+
User: "User";
|
|
35035
35035
|
}>;
|
|
35036
35036
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
35037
35037
|
pending: "pending";
|