@dbos-inc/dbos-sdk 2.10.6-preview → 2.10.15-preview
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/schemas/system_db_schema.d.ts +1 -4
- package/dist/schemas/system_db_schema.d.ts.map +1 -1
- package/dist/src/client.d.ts.map +1 -1
- package/dist/src/client.js +4 -2
- package/dist/src/client.js.map +1 -1
- package/dist/src/context.d.ts +12 -10
- package/dist/src/context.d.ts.map +1 -1
- package/dist/src/context.js.map +1 -1
- package/dist/src/dbos-executor.d.ts.map +1 -1
- package/dist/src/dbos-executor.js +2 -6
- package/dist/src/dbos-executor.js.map +1 -1
- package/dist/src/dbos-runtime/config.d.ts.map +1 -1
- package/dist/src/dbos-runtime/config.js +3 -13
- package/dist/src/dbos-runtime/config.js.map +1 -1
- package/dist/src/dbos.d.ts.map +1 -1
- package/dist/src/dbos.js +42 -60
- package/dist/src/dbos.js.map +1 -1
- package/dist/src/error.d.ts +1 -13
- package/dist/src/error.d.ts.map +1 -1
- package/dist/src/error.js +9 -94
- package/dist/src/error.js.map +1 -1
- package/dist/src/httpServer/middleware.d.ts.map +1 -1
- package/dist/src/httpServer/middleware.js +3 -4
- package/dist/src/httpServer/middleware.js.map +1 -1
- package/dist/src/httpServer/server.d.ts.map +1 -1
- package/dist/src/httpServer/server.js +1 -2
- package/dist/src/httpServer/server.js.map +1 -1
- package/dist/src/system_database.d.ts +3 -7
- package/dist/src/system_database.d.ts.map +1 -1
- package/dist/src/system_database.js +12 -35
- package/dist/src/system_database.js.map +1 -1
- package/dist/src/wfqueue.d.ts +3 -2
- package/dist/src/wfqueue.d.ts.map +1 -1
- package/dist/src/wfqueue.js.map +1 -1
- package/dist/src/workflow.d.ts.map +1 -1
- package/dist/src/workflow.js +4 -2
- package/dist/src/workflow.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/migrations/20252523000000_consolidate_inputs.js +22 -0
- package/package.json +1 -1
@@ -0,0 +1,22 @@
|
|
1
|
+
// Due to a naming issue, this migration is named "20252512000000_queue_priority" instead of "20250512000000_queue_priority".
|
2
|
+
// Please see the 20252101000000_workflow_queues_executor_id migration for more details.
|
3
|
+
|
4
|
+
/**
|
5
|
+
* @param { import("knex").Knex } knex
|
6
|
+
* @returns { Promise<void> }
|
7
|
+
*/
|
8
|
+
exports.up = function (knex) {
|
9
|
+
return knex.schema.withSchema('dbos').table('workflow_status', function (table) {
|
10
|
+
table.text('inputs').nullable();
|
11
|
+
});
|
12
|
+
};
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @param { import("knex").Knex } knex
|
16
|
+
* @returns { Promise<void> }
|
17
|
+
*/
|
18
|
+
exports.down = function (knex) {
|
19
|
+
return knex.schema.withSchema('dbos').table('workflow_status', function (table) {
|
20
|
+
table.dropColumn('inputs');
|
21
|
+
});
|
22
|
+
};
|