@elizaos/plugin-sql 2.0.3-beta.3 → 2.0.3-beta.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { MessageExample } from "@elizaos/core";
|
|
1
|
+
import type { CharacterSettings, MessageExample } from "@elizaos/core";
|
|
2
2
|
/**
|
|
3
3
|
* Represents a table for storing agent data.
|
|
4
4
|
*
|
|
@@ -288,12 +288,7 @@ export declare const agentTable: import("drizzle-orm/pg-core").PgTableWithColumn
|
|
|
288
288
|
tableName: "agents";
|
|
289
289
|
dataType: "json";
|
|
290
290
|
columnType: "PgJsonb";
|
|
291
|
-
data:
|
|
292
|
-
[key: string]: string | number | boolean | Record<string, unknown> | undefined;
|
|
293
|
-
secrets?: {
|
|
294
|
-
[key: string]: string | boolean | number;
|
|
295
|
-
};
|
|
296
|
-
};
|
|
291
|
+
data: CharacterSettings;
|
|
297
292
|
driverParam: unknown;
|
|
298
293
|
notNull: true;
|
|
299
294
|
hasDefault: true;
|
|
@@ -305,12 +300,7 @@ export declare const agentTable: import("drizzle-orm/pg-core").PgTableWithColumn
|
|
|
305
300
|
identity: undefined;
|
|
306
301
|
generated: undefined;
|
|
307
302
|
}, {}, {
|
|
308
|
-
$type:
|
|
309
|
-
[key: string]: string | number | boolean | Record<string, unknown> | undefined;
|
|
310
|
-
secrets?: {
|
|
311
|
-
[key: string]: string | boolean | number;
|
|
312
|
-
};
|
|
313
|
-
};
|
|
303
|
+
$type: CharacterSettings;
|
|
314
304
|
}>;
|
|
315
305
|
style: import("drizzle-orm/pg-core").PgColumn<{
|
|
316
306
|
name: "style";
|