@pdfvector/instance-contract 0.0.22 → 0.0.23

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.
@@ -9,6 +9,7 @@ const reservedKeys = new Set([
9
9
  "PDFVECTOR_RELEASES_S3_BUCKET",
10
10
  "PDFVECTOR_RELEASES_DYNAMODB_TABLE",
11
11
  "PDFVECTOR_INSTANCE_SERVER_DOMAIN",
12
+ "PDFVECTOR_INSTANCE_SERVER_DATA_DIR",
12
13
  ]);
13
14
  export const setEnvironment = oc
14
15
  .route({
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @pdfvector/instance-contract
2
2
 
3
+ ## 0.0.23
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#130](https://github.com/phuctm97/pdfvector/pull/130) [`41110b1`](https://github.com/phuctm97/pdfvector/commit/41110b1a1c078183c1014fbf45828c3da40d7971) Thanks [@phuctm97](https://github.com/phuctm97)! - Store the instance server SQLite database in `PDFVECTOR_INSTANCE_SERVER_DATA_DIR` when set, while keeping migrations and control files in the working directory. Fresh Docker and non-Docker installs now create a dedicated data directory for the instance server, and admin environment updates reserve the new data-dir variable.
9
+
3
10
  ## 0.0.22
4
11
  ### Patch Changes
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfvector/instance-contract",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "type": "module",
5
5
  "description": "API contract definitions for PDFVector instance server",
6
6
  "license": "MIT",