@dotenvx/dotenvx-vlt 0.49.2 → 0.50.0
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/CHANGELOG.md +11 -1
- package/package.json +1 -1
- package/src/db/session.js +1 -1
- package/src/lib/api/getAccount.js +1 -1
- package/src/lib/api/getSynchronization.js +1 -1
- package/src/lib/api/postArmorDown.js +1 -1
- package/src/lib/api/postArmorMove.js +1 -1
- package/src/lib/api/postArmorPull.js +1 -1
- package/src/lib/api/postArmorPush.js +1 -1
- package/src/lib/api/postArmorUp.js +1 -1
- package/src/lib/api/postBackup.js +1 -1
- package/src/lib/api/postGet.js +1 -1
- package/src/lib/api/postKeypair.js +1 -1
- package/src/lib/api/postObserve.js +1 -1
- package/src/lib/api/postRotate.js +1 -1
- package/src/lib/api/postRotateConnect.js +1 -1
- package/src/lib/api/postSet.js +1 -1
- package/src/lib/api/postSync.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,14 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
[Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.50.0...main)
|
|
6
|
+
|
|
7
|
+
## [0.50.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.49.2...v0.50.0) (2026-05-25)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Move to `vlt.dotenvx.com` url ([#99](https://github.com/dotenvx/dotenvx-ops/pull/99))
|
|
6
12
|
|
|
7
13
|
## [0.49.2](https://github.com/dotenvx/dotenvx-ops/compare/v0.49.1...v0.49.2) (2026-05-25)
|
|
8
14
|
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
9
17
|
* Install vlt when installing ops ([#97](https://github.com/dotenvx/dotenvx-ops/pull/97))
|
|
10
18
|
|
|
11
19
|
## [0.49.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.49.0...v0.49.1) (2026-05-25)
|
|
12
20
|
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
13
23
|
* Patch release mechanism ([#96](https://github.com/dotenvx/dotenvx-ops/pull/96))
|
|
14
24
|
|
|
15
25
|
## [0.49.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.48.3...v0.49.0) (2026-05-25)
|
package/package.json
CHANGED
package/src/db/session.js
CHANGED
|
@@ -3,7 +3,7 @@ const buildApiError = require('../../lib/helpers/buildApiError')
|
|
|
3
3
|
|
|
4
4
|
class GetSynchronization {
|
|
5
5
|
constructor (hostname, token, synchronizationId) {
|
|
6
|
-
this.hostname = hostname || 'https://
|
|
6
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
7
7
|
this.token = token
|
|
8
8
|
this.synchronizationId = synchronizationId
|
|
9
9
|
}
|
|
@@ -5,7 +5,7 @@ const normalizeToken = require('../../lib/helpers/normalizeToken')
|
|
|
5
5
|
|
|
6
6
|
class PostArmorDown {
|
|
7
7
|
constructor (hostname, token, devicePublicKey, publicKey, team) {
|
|
8
|
-
this.hostname = hostname || 'https://
|
|
8
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
9
9
|
this.token = token
|
|
10
10
|
this.devicePublicKey = devicePublicKey
|
|
11
11
|
this.publicKey = publicKey
|
|
@@ -5,7 +5,7 @@ const normalizeToken = require('../../lib/helpers/normalizeToken')
|
|
|
5
5
|
|
|
6
6
|
class PostArmorMove {
|
|
7
7
|
constructor (hostname, token, devicePublicKey, publicKey, team) {
|
|
8
|
-
this.hostname = hostname || 'https://
|
|
8
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
9
9
|
this.token = token
|
|
10
10
|
this.devicePublicKey = devicePublicKey
|
|
11
11
|
this.publicKey = publicKey
|
|
@@ -5,7 +5,7 @@ const normalizeToken = require('../../lib/helpers/normalizeToken')
|
|
|
5
5
|
|
|
6
6
|
class PostArmorPull {
|
|
7
7
|
constructor (hostname, token, devicePublicKey, publicKey, team) {
|
|
8
|
-
this.hostname = hostname || 'https://
|
|
8
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
9
9
|
this.token = token
|
|
10
10
|
this.devicePublicKey = devicePublicKey
|
|
11
11
|
this.publicKey = publicKey
|
|
@@ -5,7 +5,7 @@ const normalizeToken = require('../../lib/helpers/normalizeToken')
|
|
|
5
5
|
|
|
6
6
|
class PostArmorPush {
|
|
7
7
|
constructor (hostname, token, devicePublicKey, privateKey, team) {
|
|
8
|
-
this.hostname = hostname || 'https://
|
|
8
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
9
9
|
this.token = token
|
|
10
10
|
this.devicePublicKey = devicePublicKey
|
|
11
11
|
this.privateKey = privateKey
|
|
@@ -5,7 +5,7 @@ const normalizeToken = require('../../lib/helpers/normalizeToken')
|
|
|
5
5
|
|
|
6
6
|
class PostArmorUp {
|
|
7
7
|
constructor (hostname, token, devicePublicKey, publicKey, privateKey, team) {
|
|
8
|
-
this.hostname = hostname || 'https://
|
|
8
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
9
9
|
this.token = token
|
|
10
10
|
this.devicePublicKey = devicePublicKey
|
|
11
11
|
this.publicKey = publicKey
|
|
@@ -4,7 +4,7 @@ const packageJson = require('../../lib/helpers/packageJson')
|
|
|
4
4
|
|
|
5
5
|
class PostBackup {
|
|
6
6
|
constructor (hostname, token, devicePublicKey, encoded, dotenvxProjectId = null, org = null, pwd = null, gitUrl = null, gitBranch = null, systemUuid = null, osPlatform = null, osArch = null) {
|
|
7
|
-
this.hostname = hostname || 'https://
|
|
7
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
8
8
|
this.token = token
|
|
9
9
|
this.devicePublicKey = devicePublicKey
|
|
10
10
|
this.encoded = encoded
|
package/src/lib/api/postGet.js
CHANGED
|
@@ -3,7 +3,7 @@ const buildApiError = require('../../lib/helpers/buildApiError')
|
|
|
3
3
|
|
|
4
4
|
class PostGet {
|
|
5
5
|
constructor (hostname, token, uri) {
|
|
6
|
-
this.hostname = hostname || 'https://
|
|
6
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
7
7
|
this.token = token
|
|
8
8
|
this.uri = uri
|
|
9
9
|
}
|
|
@@ -5,7 +5,7 @@ const normalizeToken = require('../../lib/helpers/normalizeToken')
|
|
|
5
5
|
|
|
6
6
|
class PostKeypair {
|
|
7
7
|
constructor (hostname, token, devicePublicKey, publicKey, team, metadata) {
|
|
8
|
-
this.hostname = hostname || 'https://
|
|
8
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
9
9
|
this.token = token
|
|
10
10
|
this.devicePublicKey = devicePublicKey
|
|
11
11
|
this.publicKey = publicKey
|
|
@@ -4,7 +4,7 @@ const packageJson = require('../../lib/helpers/packageJson')
|
|
|
4
4
|
|
|
5
5
|
class PostObserve {
|
|
6
6
|
constructor (hostname, token, encoded, pwd = null, gitUrl = null, gitBranch = null, systemUuid = null, osPlatform = null, osArch = null, dotenvxProjectId = null) {
|
|
7
|
-
this.hostname = hostname || 'https://
|
|
7
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
8
8
|
this.token = token
|
|
9
9
|
this.encoded = encoded
|
|
10
10
|
this.pwd = pwd
|
|
@@ -3,7 +3,7 @@ const buildApiError = require('../../lib/helpers/buildApiError')
|
|
|
3
3
|
|
|
4
4
|
class PostRotate {
|
|
5
5
|
constructor (hostname, token, uri) {
|
|
6
|
-
this.hostname = hostname || 'https://
|
|
6
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
7
7
|
this.token = token
|
|
8
8
|
|
|
9
9
|
this.uri = uri
|
|
@@ -3,7 +3,7 @@ const buildApiError = require('../../lib/helpers/buildApiError')
|
|
|
3
3
|
|
|
4
4
|
class PostRotateConnect {
|
|
5
5
|
constructor (hostname, token, org, slug, username, password, email = null, playwrightStorageStateStringified) {
|
|
6
|
-
this.hostname = hostname || 'https://
|
|
6
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
7
7
|
this.token = token
|
|
8
8
|
|
|
9
9
|
this.org = org
|
package/src/lib/api/postSet.js
CHANGED
|
@@ -3,7 +3,7 @@ const buildApiError = require('../../lib/helpers/buildApiError')
|
|
|
3
3
|
|
|
4
4
|
class PostSet {
|
|
5
5
|
constructor (hostname, token, devicePublicKey, uri, value) {
|
|
6
|
-
this.hostname = hostname || 'https://
|
|
6
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
7
7
|
this.token = token
|
|
8
8
|
this.devicePublicKey = devicePublicKey
|
|
9
9
|
this.uri = uri
|
package/src/lib/api/postSync.js
CHANGED
|
@@ -4,7 +4,7 @@ const packageJson = require('../../lib/helpers/packageJson')
|
|
|
4
4
|
|
|
5
5
|
class PostSync {
|
|
6
6
|
constructor (hostname, token, devicePublicKey, encoded, dotenvxProjectId, pwd = null, gitUrl = null, gitBranch = null, systemUuid = null, osPlatform = null, osArch = null, force = false) {
|
|
7
|
-
this.hostname = hostname || 'https://
|
|
7
|
+
this.hostname = hostname || 'https://vlt.dotenvx.com'
|
|
8
8
|
this.token = token
|
|
9
9
|
this.devicePublicKey = devicePublicKey
|
|
10
10
|
this.encoded = encoded
|