@opendatalabs/personal-server-ts 0.0.1-canary.a9babfc → 0.0.1-canary.b033bdb
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 +1 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/lite.d.ts +2 -0
- package/dist/lite.d.ts.map +1 -0
- package/dist/lite.js +2 -0
- package/dist/lite.js.map +1 -0
- package/dist/node.d.ts +4 -0
- package/dist/node.d.ts.map +1 -0
- package/dist/node.js +3 -0
- package/dist/node.js.map +1 -0
- package/package.json +12 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export type { ServerConfig } from "@opendatalabs/personal-server-ts-core/schemas";
|
|
3
|
-
export { createServer, type CreateServerOptions, type ServerContext, } from "@opendatalabs/personal-server-ts-server";
|
|
1
|
+
export * from "./node.js";
|
|
4
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { createServer, } from "@opendatalabs/personal-server-ts-server";
|
|
1
|
+
export * from "./node.js";
|
|
3
2
|
//# 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,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
|
package/dist/lite.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lite.d.ts","sourceRoot":"","sources":["../src/lite.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC"}
|
package/dist/lite.js
ADDED
package/dist/lite.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lite.js","sourceRoot":"","sources":["../src/lite.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC"}
|
package/dist/node.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
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-server";
|
|
2
|
+
export type { ServerConfig } from "@opendatalabs/personal-server-ts-core/schemas";
|
|
3
|
+
export { createServer, startPersonalServer, type CreateServerOptions, type ServerContext, type StartPersonalServerNodeOptions, } from "@opendatalabs/personal-server-ts-server";
|
|
4
|
+
//# sourceMappingURL=node.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../src/node.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,yCAAyC,CAAC;AACjD,YAAY,EAAE,YAAY,EAAE,MAAM,+CAA+C,CAAC;AAClF,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,KAAK,mBAAmB,EACxB,KAAK,aAAa,EAClB,KAAK,8BAA8B,GACpC,MAAM,yCAAyC,CAAC"}
|
package/dist/node.js
ADDED
|
@@ -0,0 +1,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-server";
|
|
2
|
+
export { createServer, startPersonalServer, } from "@opendatalabs/personal-server-ts-server";
|
|
3
|
+
//# sourceMappingURL=node.js.map
|
package/dist/node.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"node.js","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,UAAU,EACV,eAAe,GAEhB,MAAM,yCAAyC,CAAC;AAEjD,OAAO,EACL,YAAY,EACZ,mBAAmB,GAIpB,MAAM,yCAAyC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendatalabs/personal-server-ts",
|
|
3
|
-
"version": "0.0.1-canary.
|
|
3
|
+
"version": "0.0.1-canary.b033bdb",
|
|
4
4
|
"description": "Facade package for integrating the Vana Personal Server",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -19,6 +19,14 @@
|
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./dist/index.d.ts",
|
|
21
21
|
"import": "./dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./node": {
|
|
24
|
+
"types": "./dist/node.d.ts",
|
|
25
|
+
"import": "./dist/node.js"
|
|
26
|
+
},
|
|
27
|
+
"./lite": {
|
|
28
|
+
"types": "./dist/lite.d.ts",
|
|
29
|
+
"import": "./dist/lite.js"
|
|
22
30
|
}
|
|
23
31
|
},
|
|
24
32
|
"publishConfig": {
|
|
@@ -31,7 +39,8 @@
|
|
|
31
39
|
"build": "tsc --build"
|
|
32
40
|
},
|
|
33
41
|
"dependencies": {
|
|
34
|
-
"@opendatalabs/personal-server-ts-core": "0.0.1-canary.
|
|
35
|
-
"@opendatalabs/personal-server-ts-
|
|
42
|
+
"@opendatalabs/personal-server-ts-core": "0.0.1-canary.b033bdb",
|
|
43
|
+
"@opendatalabs/personal-server-ts-lite": "0.0.1-canary.b033bdb",
|
|
44
|
+
"@opendatalabs/personal-server-ts-server": "0.0.1-canary.b033bdb"
|
|
36
45
|
}
|
|
37
46
|
}
|