@theholocron/postman-client 1.6.1 → 1.6.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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -35,14 +35,14 @@ const { environments } = await postman.environments.list("workspace-id");
35
35
 
36
36
  // Create an environment
37
37
  await postman.environments.create("workspace-id", {
38
- name: "Production",
39
- values: [],
38
+ name: "Production",
39
+ values: [],
40
40
  });
41
41
 
42
42
  // Update an environment
43
43
  await postman.environments.update("environment-uid", {
44
- name: "Production",
45
- values: [],
44
+ name: "Production",
45
+ values: [],
46
46
  });
47
47
 
48
48
  // List Spec Hub specs
@@ -50,8 +50,8 @@ const { specs } = await postman.specs.list("workspace-id");
50
50
 
51
51
  // Create a spec
52
52
  await postman.specs.create("workspace-id", {
53
- name: "My API",
54
- fileContent: JSON.stringify(openApiSpec),
53
+ name: "My API",
54
+ fileContent: JSON.stringify(openApiSpec),
55
55
  });
56
56
 
57
57
  // Update a spec file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/postman-client",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "description": "A TypeScript client for the Postman API",
5
5
  "homepage": "https://github.com/theholocron/clients/tree/main/packages/postman-client#readme",
6
6
  "bugs": "https://github.com/theholocron/clients/issues",
@@ -29,18 +29,18 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@theholocron/http-client": "^1.6.1"
32
+ "@theholocron/http-client": "^1.6.3"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^26.1.2",
36
- "@theholocron/eslint-config": "^7.7.0",
37
- "@theholocron/tsconfig": "^7.7.0",
38
- "@theholocron/tsdown-config": "^7.7.0",
39
- "@theholocron/vitest-config": "^7.7.0",
36
+ "@theholocron/eslint-config": "^7.15.0",
37
+ "@theholocron/tsconfig": "^7.15.0",
38
+ "@theholocron/tsdown-config": "^7.15.0",
39
+ "@theholocron/vitest-config": "^7.15.0",
40
40
  "@vitest/coverage-v8": "^4.1.10",
41
- "@vitest/eslint-plugin": "^1.6.24",
42
- "eslint": "^10.8.0",
43
- "eslint-plugin-n": "^18.2.2",
41
+ "@vitest/eslint-plugin": "^1.6.25",
42
+ "eslint": "^10.8.1",
43
+ "eslint-plugin-n": "^18.3.0",
44
44
  "eslint-plugin-simple-import-sort": "^14.0.0",
45
45
  "globals": "^17.8.0",
46
46
  "tsdown": "^0.22.14",