@theholocron/holocron-plugin-postman 2.2.4 → 3.0.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/dist/index.d.mts +3 -3
- package/package.json +12 -12
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AuthError, ResolveTokenInput, Tooling, ToolingDoctorReport } from "@theholocron/cli";
|
|
2
|
-
import { PostmanClient, PostmanClient as PostmanClient$1, PostmanCollection, PostmanEnvironment, PostmanPlanLimitError, PostmanSpec, PostmanUser, PostmanWorkspace, createPostmanClient, detectPlanLimit } from "@theholocron/postman-client";
|
|
2
|
+
import { PostmanClient, PostmanClient as PostmanClient$1, PostmanClientOptions, PostmanCollection, PostmanEnvironment, PostmanPlanLimitError, PostmanSpec, PostmanUser, PostmanWorkspace, createPostmanClient, detectPlanLimit } from "@theholocron/postman-client";
|
|
3
3
|
//#region src/auth.d.ts
|
|
4
|
-
declare const resolveToken: (input?:
|
|
4
|
+
declare const resolveToken: (input?: ResolveTokenInput) => string;
|
|
5
5
|
//#endregion
|
|
6
6
|
//#region src/capabilities/tooling.d.ts
|
|
7
7
|
interface PostmanToolingOptions {
|
|
@@ -118,4 +118,4 @@ declare function createPlugin(options: PostmanPluginOptions): {
|
|
|
118
118
|
*/
|
|
119
119
|
declare const AUTH_HINT: string;
|
|
120
120
|
//#endregion
|
|
121
|
-
export { AUTH_HINT, AuthError, PluginContext, type PostmanClient, PostmanPlanLimitError, PostmanPluginOptions, PostmanTooling, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createPlugin, createPostmanClient, detectPlanLimit, resolveToken, tooling, verifyToken };
|
|
121
|
+
export { AUTH_HINT, AuthError, PluginContext, type PostmanClient, type PostmanClientOptions, PostmanPlanLimitError, PostmanPluginOptions, PostmanTooling, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createPlugin, createPostmanClient, detectPlanLimit, resolveToken, tooling, verifyToken };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-postman",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
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,8 +21,8 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/postman-client": "^1.3.
|
|
25
|
-
"@theholocron/cli": "
|
|
24
|
+
"@theholocron/postman-client": "^1.3.3",
|
|
25
|
+
"@theholocron/cli": "3.0.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependenciesMeta": {
|
|
28
28
|
"@theholocron/postman-client": {
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@theholocron/eslint-config": "^7.
|
|
34
|
-
"@theholocron/postman-client": "^1.3.
|
|
35
|
-
"@theholocron/tsconfig": "^7.
|
|
36
|
-
"@theholocron/tsdown-config": "^7.
|
|
37
|
-
"@theholocron/vitest-config": "^7.
|
|
33
|
+
"@theholocron/eslint-config": "^7.5.0",
|
|
34
|
+
"@theholocron/postman-client": "^1.3.3",
|
|
35
|
+
"@theholocron/tsconfig": "^7.5.0",
|
|
36
|
+
"@theholocron/tsdown-config": "^7.5.0",
|
|
37
|
+
"@theholocron/vitest-config": "^7.5.0",
|
|
38
38
|
"@types/node": "^26",
|
|
39
39
|
"@vitest/coverage-v8": "^4.1.10",
|
|
40
40
|
"@vitest/eslint-plugin": "^1.6.23",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"eslint-plugin-n": "^18.2.2",
|
|
43
43
|
"globals": "^17.7.0",
|
|
44
44
|
"tsdown": "^0.22.13",
|
|
45
|
-
"tsx": "4.
|
|
45
|
+
"tsx": "4.23.1",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
47
47
|
"vitest": "^4.1.10",
|
|
48
|
-
"@theholocron/cli": "
|
|
48
|
+
"@theholocron/cli": "3.0.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"dist",
|
|
55
55
|
"README.md"
|
|
56
56
|
],
|
|
57
|
+
"types": "./dist/index.d.mts",
|
|
57
58
|
"scripts": {
|
|
58
59
|
"build": "tsdown",
|
|
59
60
|
"lint": "eslint .",
|
|
@@ -62,6 +63,5 @@
|
|
|
62
63
|
"test:watch": "vitest",
|
|
63
64
|
"test:coverage": "vitest run --coverage",
|
|
64
65
|
"validate": "tsx scripts/validate.mjs"
|
|
65
|
-
}
|
|
66
|
-
"types": "./dist/index.d.mts"
|
|
66
|
+
}
|
|
67
67
|
}
|