@opendatalabs/personal-server-ts 0.0.1-canary.ea9ffaf → 0.0.1-canary.eee90fe

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/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
- export declare function main(): void;
1
+ export { DEFAULT_ROOT_PATH, DEFAULT_CONFIG_PATH, DEFAULT_DATA_DIR, DEFAULT_SERVER_DIR, DEFAULT_VANA_DIR, expandHomePath, loadConfig, resolveRootPath, type LoadConfigOptions, } from "@opendatalabs/personal-server-ts-core/config";
2
+ export type { ServerConfig } from "@opendatalabs/personal-server-ts-core/schemas";
3
+ export { createServer, type CreateServerOptions, type ServerContext, } from "@opendatalabs/personal-server-ts-server";
2
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wBAAgB,IAAI,IAAI,IAAI,CAE3B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,UAAU,EACV,eAAe,EACf,KAAK,iBAAiB,GACvB,MAAM,8CAA8C,CAAC;AACtD,YAAY,EAAE,YAAY,EAAE,MAAM,+CAA+C,CAAC;AAClF,OAAO,EACL,YAAY,EACZ,KAAK,mBAAmB,EACxB,KAAK,aAAa,GACnB,MAAM,yCAAyC,CAAC"}
package/dist/index.js CHANGED
@@ -1,4 +1,3 @@
1
- export function main() {
2
- console.log("not yet implemented");
3
- }
1
+ export { DEFAULT_ROOT_PATH, DEFAULT_CONFIG_PATH, DEFAULT_DATA_DIR, DEFAULT_SERVER_DIR, DEFAULT_VANA_DIR, expandHomePath, loadConfig, resolveRootPath, } from "@opendatalabs/personal-server-ts-core/config";
2
+ export { createServer, } from "@opendatalabs/personal-server-ts-server";
4
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,IAAI;IAClB,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;AACrC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,UAAU,EACV,eAAe,GAEhB,MAAM,8CAA8C,CAAC;AAEtD,OAAO,EACL,YAAY,GAGb,MAAM,yCAAyC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,17 @@
1
1
  {
2
2
  "name": "@opendatalabs/personal-server-ts",
3
- "version": "0.0.1-canary.ea9ffaf",
3
+ "version": "0.0.1-canary.eee90fe",
4
+ "description": "Facade package for integrating the Vana Personal Server",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/vana-com/personal-server-ts.git",
9
+ "directory": "packages/cli"
10
+ },
11
+ "homepage": "https://github.com/vana-com/personal-server-ts#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/vana-com/personal-server-ts/issues"
14
+ },
4
15
  "type": "module",
5
16
  "main": "./dist/index.js",
6
17
  "types": "./dist/index.d.ts",
@@ -20,7 +31,7 @@
20
31
  "build": "tsc --build"
21
32
  },
22
33
  "dependencies": {
23
- "@personal-server/core": "*",
24
- "@personal-server/server": "*"
34
+ "@opendatalabs/personal-server-ts-core": "0.0.1-canary.eee90fe",
35
+ "@opendatalabs/personal-server-ts-server": "0.0.1-canary.eee90fe"
25
36
  }
26
37
  }