@dotenvx/dotenvx-ops 0.17.0 → 0.17.1

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 CHANGED
@@ -2,7 +2,13 @@
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.17.0...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.17.1...main)
6
+
7
+ ## [0.17.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.17.0...v0.17.1) (2025-10-01)
8
+
9
+ ### Changed
10
+
11
+ * API sync output is `files` not `envFiles`
6
12
 
7
13
  ## [0.17.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.16.1...v0.17.0) (2025-10-01)
8
14
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.17.0",
2
+ "version": "0.17.1",
3
3
  "name": "@dotenvx/dotenvx-ops",
4
4
  "description": "Dotenvx Ops",
5
5
  "author": "@motdotla",
@@ -26,12 +26,12 @@ async function sync () {
26
26
  const {
27
27
  dotenvxProjectId,
28
28
  projectUsernameName,
29
- envFiles
29
+ files
30
30
  } = await new Sync(options.hostname).run()
31
- logger.debug(`envFiles: ${JSON.stringify(envFiles)}`)
31
+ logger.debug(`files: ${JSON.stringify(files)}`)
32
32
 
33
- // write envFiles
34
- for (const file of envFiles) {
33
+ // write output files
34
+ for (const file of files) {
35
35
  const { filepath, src, sha } = file
36
36
 
37
37
  let needsWrite = true
@@ -48,7 +48,7 @@ class Sync {
48
48
  id: data.id,
49
49
  dotenvxProjectId: data.dotenvx_project_id,
50
50
  projectUsernameName: data.project_username_name,
51
- envFiles: data.env_files
51
+ files: data.files
52
52
  }
53
53
  }
54
54