@heyhru/app-dms-server 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -881,6 +881,11 @@ CREATE TABLE IF NOT EXISTS approvals (
881
881
 
882
882
  CREATE INDEX IF NOT EXISTS idx_approvals_status ON approvals(status);
883
883
  CREATE INDEX IF NOT EXISTS idx_approvals_submitted_by ON approvals(submitted_by);`
884
+ },
885
+ {
886
+ name: "005_data_sources_add_ssl.sql",
887
+ sql: () => `
888
+ ALTER TABLE data_sources ADD COLUMN ssl BOOLEAN NOT NULL DEFAULT FALSE;`
884
889
  }
885
890
  ];
886
891
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.3",
6
+ "version": "0.1.4",
7
7
  "description": "DMS backend API server built on Fastify",
8
8
  "type": "module",
9
9
  "main": "./dist/index.mjs",
@@ -37,5 +37,5 @@
37
37
  "typescript": "^6.0.2",
38
38
  "vitest": "^4.1.2"
39
39
  },
40
- "gitHead": "edd168fc60d4240fe84c99504aa1c4d5f88d930b"
40
+ "gitHead": "681cba4176008441542b501d305451124fbe759a"
41
41
  }