@placeos/ts-client 4.2.2 → 4.2.3
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.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/repositories/repository.d.ts +2 -0
- package/package.json +1 -1
- package/src/repositories/repository.ts +3 -0
package/dist/index.es.js
CHANGED
|
@@ -3575,12 +3575,14 @@ class Fo extends B {
|
|
|
3575
3575
|
username;
|
|
3576
3576
|
/** Password to connect to repository with */
|
|
3577
3577
|
password;
|
|
3578
|
+
/** Root path of the repository to serve at the `folder_name` path */
|
|
3579
|
+
root_path;
|
|
3578
3580
|
/** Repository type */
|
|
3579
3581
|
get type() {
|
|
3580
3582
|
return this.repo_type;
|
|
3581
3583
|
}
|
|
3582
3584
|
constructor(e = {}) {
|
|
3583
|
-
super(e), this.folder_name = e.folder_name || "", this.description = e.description || "", this.uri = e.uri || "", this.branch = e.branch || "", this.commit_hash = e.commit_hash || "", this.repo_type = e.repo_type || Ir.Driver, this.username = e.username || "", this.password = e.password || "";
|
|
3585
|
+
super(e), this.folder_name = e.folder_name || "", this.description = e.description || "", this.uri = e.uri || "", this.branch = e.branch || "", this.commit_hash = e.commit_hash || "", this.repo_type = e.repo_type || Ir.Driver, this.username = e.username || "", this.password = e.password || "", this.root_path = e.root_path || "";
|
|
3584
3586
|
}
|
|
3585
3587
|
}
|
|
3586
3588
|
const V = "repositories";
|