@inkeep/agents-core 0.48.1 → 0.48.2
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-validation-schemas.d.ts +17 -17
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/runtime/conversations.d.ts +7 -7
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +445 -445
- package/dist/db/runtime/runtime-schema.d.ts +296 -296
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +56 -56
- package/package.json +1 -1
|
@@ -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
|
/**
|
|
@@ -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;
|
|
@@ -7810,8 +7810,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
7810
7810
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
7811
7811
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7812
7812
|
type: z.ZodEnum<{
|
|
7813
|
-
tag: "tag";
|
|
7814
7813
|
commit: "commit";
|
|
7814
|
+
tag: "tag";
|
|
7815
7815
|
branch: "branch";
|
|
7816
7816
|
}>;
|
|
7817
7817
|
name: z.ZodString;
|
|
@@ -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;
|
|
@@ -9377,8 +9377,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
9377
9377
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
9378
9378
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9379
9379
|
type: z.ZodEnum<{
|
|
9380
|
-
tag: "tag";
|
|
9381
9380
|
commit: "commit";
|
|
9381
|
+
tag: "tag";
|
|
9382
9382
|
branch: "branch";
|
|
9383
9383
|
}>;
|
|
9384
9384
|
name: z.ZodString;
|
|
@@ -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;
|
|
@@ -10915,8 +10915,8 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
10915
10915
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
10916
10916
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
10917
10917
|
type: z.ZodEnum<{
|
|
10918
|
-
tag: "tag";
|
|
10919
10918
|
commit: "commit";
|
|
10919
|
+
tag: "tag";
|
|
10920
10920
|
branch: "branch";
|
|
10921
10921
|
}>;
|
|
10922
10922
|
name: z.ZodString;
|
|
@@ -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";
|
|
@@ -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";
|
|
@@ -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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.48.
|
|
3
|
+
"version": "0.48.2",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|