@theholocron/holocron-plugin-postman 2.0.0-alpha.35 → 2.0.0-alpha.36

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 +19 -15
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -5,8 +5,10 @@ Postman plugin for [Holocron](../cli). Implements the **multi-cardinality**
5
5
 
6
6
  ## Install
7
7
 
8
+ <!-- prettier-ignore -->
8
9
  ```bash
9
10
  pnpm add -D @theholocron/holocron-plugin-postman@alpha
11
+
10
12
  ```
11
13
 
12
14
  ## Why REST, not the CLI
@@ -29,24 +31,26 @@ Generate the key at <https://web.postman.co/settings/me/api-keys>.
29
31
 
30
32
  ## Config
31
33
 
34
+ <!-- prettier-ignore -->
32
35
  ```jsonc
33
36
  {
34
- "providers": {
35
- "tooling": [
36
- [
37
- "postman",
38
- {
39
- "workspaceId": "00000000-0000-0000-0000-000000000000",
40
- "specFile": "apps/api/openapi.json",
41
- "specName": "Rando API",
42
- "collectionName": "Rando API",
43
- "envFiles": ["apps/api/postman-env-staging.json"],
44
- },
45
- ],
46
- "storybook",
47
- ],
48
- },
37
+ "providers": {
38
+ "tooling": [
39
+ [
40
+ "postman",
41
+ {
42
+ "workspaceId": "00000000-0000-0000-0000-000000000000",
43
+ "specFile": "apps/api/openapi.json",
44
+ "specName": "Rando API",
45
+ "collectionName": "Rando API",
46
+ "envFiles": ["apps/api/postman-env-staging.json"],
47
+ },
48
+ ],
49
+ "storybook",
50
+ ],
51
+ },
49
52
  }
53
+
50
54
  ```
51
55
 
52
56
  - `workspaceId` (required) — Postman workspace id. Find via `holocron tooling postman workspaces`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/holocron-plugin-postman",
3
- "version": "2.0.0-alpha.35",
3
+ "version": "2.0.0-alpha.36",
4
4
  "description": "Holocron plugin for Postman. Implements the tooling capability against Postman's REST API — workspace + collection + spec + environment sync.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-postman#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",
@@ -21,7 +21,7 @@
21
21
  }
22
22
  },
23
23
  "peerDependencies": {
24
- "@theholocron/cli": "2.0.0-alpha.35"
24
+ "@theholocron/cli": "2.0.0-alpha.36"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^26",
@@ -37,7 +37,7 @@
37
37
  "tsx": "^4.22.4",
38
38
  "typescript": "^5.9.3",
39
39
  "vitest": "^4.1.10",
40
- "@theholocron/cli": "2.0.0-alpha.35"
40
+ "@theholocron/cli": "2.0.0-alpha.36"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"