Compare commits

..

3 Commits

Author SHA1 Message Date
semantic-release-bot b0a9e85d65 chore(release): 0.2.0-develop.16 [skip ci]
# [0.2.0-develop.16](https://git.lumeweb.com/LumeWeb/libportal/compare/v0.2.0-develop.15...v0.2.0-develop.16) (2023-07-18)

### Features

* add portalUrl getter ([0d0b2d4](0d0b2d4799))
2023-07-18 20:21:12 +00:00
Derrick Hammer d43f43936b
Merge remote-tracking branch 'origin/develop' into develop 2023-07-18 16:19:18 -04:00
Derrick Hammer 0d0b2d4799
feat: add portalUrl getter 2023-07-18 16:19:14 -04:00
4 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,10 @@
# [0.2.0-develop.16](https://git.lumeweb.com/LumeWeb/libportal/compare/v0.2.0-develop.15...v0.2.0-develop.16) (2023-07-18)
### Features
* add portalUrl getter ([0d0b2d4](https://git.lumeweb.com/LumeWeb/libportal/commit/0d0b2d4799a277c25f39673a10e4351c1991536c))
# [0.2.0-develop.15](https://git.lumeweb.com/LumeWeb/libportal/compare/v0.2.0-develop.14...v0.2.0-develop.15) (2023-07-18)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@lumeweb/libportal",
"version": "0.2.0-develop.15",
"version": "0.2.0-develop.16",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@lumeweb/libportal",
"version": "0.2.0-develop.15",
"version": "0.2.0-develop.16",
"dependencies": {
"@lumeweb/node-library-preset": "git+https://git.lumeweb.com/LumeWeb/node-library-preset.git",
"@noble/curves": "^1.1.0",

View File

@ -1,6 +1,6 @@
{
"name": "@lumeweb/libportal",
"version": "0.2.0-develop.15",
"version": "0.2.0-develop.16",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",

View File

@ -70,6 +70,10 @@ export class Client {
return this._options.email as string;
}
get portalUrl(): string {
return this._options.portalUrl as string;
}
set email(email: string) {
this._options.email = email;
}