@rvoh/psychic 2.1.0 → 2.2.1-alpha.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/dist/cjs/src/bin/helpers/OpenApiSpecDiff.js +341 -0
- package/dist/cjs/src/bin/index.js +7 -0
- package/dist/cjs/src/cli/index.js +26 -1
- package/dist/cjs/src/controller/index.js +1 -1
- package/dist/cjs/src/devtools/helpers/launchDevServer.js +1 -1
- package/dist/cjs/src/error/psychic-app/init-missing-package-manager.js +1 -1
- package/dist/cjs/src/generate/helpers/generateResourceControllerSpecContent.js +85 -11
- package/dist/cjs/src/generate/helpers/syncOpenapiTypescript/installOpenapiTypescript.js +1 -1
- package/dist/cjs/src/openapi-renderer/SerializerOpenapiRenderer.js +1 -0
- package/dist/cjs/src/openapi-renderer/app.js +1 -1
- package/dist/esm/src/bin/helpers/OpenApiSpecDiff.js +341 -0
- package/dist/esm/src/bin/index.js +7 -0
- package/dist/esm/src/cli/index.js +26 -1
- package/dist/esm/src/controller/index.js +1 -1
- package/dist/esm/src/devtools/helpers/launchDevServer.js +1 -1
- package/dist/esm/src/error/psychic-app/init-missing-package-manager.js +1 -1
- package/dist/esm/src/generate/helpers/generateResourceControllerSpecContent.js +85 -11
- package/dist/esm/src/generate/helpers/syncOpenapiTypescript/installOpenapiTypescript.js +1 -1
- package/dist/esm/src/openapi-renderer/SerializerOpenapiRenderer.js +1 -0
- package/dist/esm/src/openapi-renderer/app.js +1 -1
- package/dist/types/src/bin/helpers/OpenApiSpecDiff.d.ts +138 -0
- package/dist/types/src/bin/index.d.ts +2 -0
- package/dist/types/src/controller/index.d.ts +1 -1
- package/dist/types/src/psychic-app/index.d.ts +28 -0
- package/package.json +16 -13
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { DefaultPsychicOpenapiOptions } from '../../psychic-app/index.js';
|
|
2
|
+
/**
|
|
3
|
+
* Interface to hold the result of a comparison
|
|
4
|
+
* between the current local OpenAPI specification and the head branch
|
|
5
|
+
* for a given OpenAPI file
|
|
6
|
+
*/
|
|
7
|
+
export interface ComparisonResult {
|
|
8
|
+
file: string;
|
|
9
|
+
hasChanges: boolean;
|
|
10
|
+
breaking: string[];
|
|
11
|
+
changelog: string[];
|
|
12
|
+
error?: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Interface to hold the configuration for oasdiff
|
|
16
|
+
*/
|
|
17
|
+
export interface OasDiffConfig {
|
|
18
|
+
command: string;
|
|
19
|
+
baseArgs: string[];
|
|
20
|
+
headBranch: string;
|
|
21
|
+
}
|
|
22
|
+
export type PsychicOpenapiConfig = DefaultPsychicOpenapiOptions;
|
|
23
|
+
/**
|
|
24
|
+
* Class-based OpenAPI specification diff tool
|
|
25
|
+
*
|
|
26
|
+
* Compares current OpenAPI specs against the head branch using oasdiff
|
|
27
|
+
*
|
|
28
|
+
* Example usages:
|
|
29
|
+
*
|
|
30
|
+
* Instance-based usage
|
|
31
|
+
* const diffTool = new OpenApiSpecDiff()
|
|
32
|
+
* diffTool.compare(openapiConfigs)
|
|
33
|
+
*
|
|
34
|
+
* Factory method usage
|
|
35
|
+
* const diffTool = OpenApiSpecDiff.create()
|
|
36
|
+
* diffTool.compare(openapiConfigs)
|
|
37
|
+
*
|
|
38
|
+
* Static method usage (backward compatibility)
|
|
39
|
+
* OpenApiSpecDiff.compare(openapiConfigs)
|
|
40
|
+
*/
|
|
41
|
+
export declare class OpenApiSpecDiff {
|
|
42
|
+
/**
|
|
43
|
+
* The configuration for the oasdiff command
|
|
44
|
+
*/
|
|
45
|
+
private oasdiffConfig?;
|
|
46
|
+
/**
|
|
47
|
+
* Compares a list of OpenAPI specifications between the current branch and the head branch.
|
|
48
|
+
*
|
|
49
|
+
* Uses `oasdiff` under the hood to detect breaking and non-breaking changes for each file,
|
|
50
|
+
* helping you review and validate API updates with confidence before merging.
|
|
51
|
+
*
|
|
52
|
+
* This tool only runs for configurations where `checkDiffs` is enabled.
|
|
53
|
+
*
|
|
54
|
+
* @param openapiConfigs - An array of tuples containing the OpenAPI file name and its configuration.
|
|
55
|
+
* @example
|
|
56
|
+
* ```ts
|
|
57
|
+
* const openapiConfigs: [string, PsychicOpenapiConfig][] = [
|
|
58
|
+
* ['openapi', { outputFilepath: 'openapi.json' }],
|
|
59
|
+
* ]
|
|
60
|
+
* OpenApiSpecDiff.compare(openapiConfigs)
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
compare(openapiConfigs: [string, PsychicOpenapiConfig][]): void;
|
|
64
|
+
/**
|
|
65
|
+
* Checks if oasdiff is installed locally
|
|
66
|
+
*/
|
|
67
|
+
private hasOasDiffInstalled;
|
|
68
|
+
/**
|
|
69
|
+
* Fetch the head branch of a remote using git remote show origin
|
|
70
|
+
* default to main if not set
|
|
71
|
+
*/
|
|
72
|
+
private getHeadBranch;
|
|
73
|
+
/**
|
|
74
|
+
* Validates that oasdiff is installed and builds the oasdiff config
|
|
75
|
+
*/
|
|
76
|
+
private getOasDiffConfig;
|
|
77
|
+
/**
|
|
78
|
+
* Runs oasdiff command and returns the output
|
|
79
|
+
*/
|
|
80
|
+
private runOasDiffCommand;
|
|
81
|
+
/**
|
|
82
|
+
* Compares two OpenAPI files using oasdiff
|
|
83
|
+
*/
|
|
84
|
+
private compareSpecs;
|
|
85
|
+
/**
|
|
86
|
+
* Creates a temporary file path for the head branch content
|
|
87
|
+
*/
|
|
88
|
+
private createTempFilePath;
|
|
89
|
+
/**
|
|
90
|
+
* Retrieves head branch content for a file
|
|
91
|
+
*/
|
|
92
|
+
private getHeadBranchContent;
|
|
93
|
+
/**
|
|
94
|
+
* Compares a single OpenAPI file against head branch
|
|
95
|
+
*/
|
|
96
|
+
private compareConfig;
|
|
97
|
+
/**
|
|
98
|
+
* Process and display the comparison results
|
|
99
|
+
*/
|
|
100
|
+
private processResults;
|
|
101
|
+
/**
|
|
102
|
+
* Log error for a comparison result
|
|
103
|
+
*/
|
|
104
|
+
private logError;
|
|
105
|
+
/**
|
|
106
|
+
* Log changes for a comparison result
|
|
107
|
+
*/
|
|
108
|
+
private logChanges;
|
|
109
|
+
/**
|
|
110
|
+
* Log breaking changes for a comparison result
|
|
111
|
+
*/
|
|
112
|
+
private logBreakingChanges;
|
|
113
|
+
/**
|
|
114
|
+
* Log changelog for a comparison result
|
|
115
|
+
*/
|
|
116
|
+
private logChangelog;
|
|
117
|
+
/**
|
|
118
|
+
* Log no changes for a comparison result
|
|
119
|
+
*/
|
|
120
|
+
private logNoChanges;
|
|
121
|
+
/**
|
|
122
|
+
* Log final summary and handle exit conditions
|
|
123
|
+
*/
|
|
124
|
+
private logSummary;
|
|
125
|
+
/**
|
|
126
|
+
* Static factory method for convenience
|
|
127
|
+
*/
|
|
128
|
+
static create(): OpenApiSpecDiff;
|
|
129
|
+
/**
|
|
130
|
+
* Static method to maintain compatibility with functional approach
|
|
131
|
+
*/
|
|
132
|
+
static compare(openapiConfigs: [string, PsychicOpenapiConfig][]): void;
|
|
133
|
+
}
|
|
134
|
+
export declare class BreakingChangesDetectedInOpenApiSpecError extends Error {
|
|
135
|
+
private readonly oasdiffConfig;
|
|
136
|
+
constructor(oasdiffConfig: OasDiffConfig);
|
|
137
|
+
get message(): string;
|
|
138
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { BreakingChangesDetectedInOpenApiSpecError } from './helpers/OpenApiSpecDiff.js';
|
|
1
2
|
export default class PsychicBin {
|
|
2
3
|
static generateController(controllerName: string, actions: string[]): Promise<void>;
|
|
3
4
|
static generateResource(route: string, fullyQualifiedModelName: string, columnsWithTypes: string[], options: {
|
|
@@ -14,6 +15,7 @@ export default class PsychicBin {
|
|
|
14
15
|
}): Promise<void>;
|
|
15
16
|
static postSync(): Promise<void>;
|
|
16
17
|
static syncTypes(): Promise<void>;
|
|
18
|
+
static openapiDiff(): void;
|
|
17
19
|
static syncOpenapiTypescriptFiles(): Promise<void>;
|
|
18
20
|
static syncOpenapiJson(): Promise<void>;
|
|
19
21
|
static syncRoutes(): Promise<void>;
|
|
@@ -491,6 +491,34 @@ interface PsychicOpenapiBaseOptions {
|
|
|
491
491
|
* ```
|
|
492
492
|
*/
|
|
493
493
|
validate?: OpenapiValidateOption;
|
|
494
|
+
/**
|
|
495
|
+
* Enables automatic comparison of OpenAPI specifications between the current
|
|
496
|
+
* working branch and the main/master/head branch.
|
|
497
|
+
*
|
|
498
|
+
* When set to `true`, Psychic will perform a diff check between the OpenAPI spec
|
|
499
|
+
* in the current branch and the one in the main/master/head branch. This is done using the
|
|
500
|
+
* `OpenApiSpecDiff` tool, which analyzes structural and semantic differences
|
|
501
|
+
* between the two specs.
|
|
502
|
+
*
|
|
503
|
+
* This feature is useful for catching unintended changes to your API contract
|
|
504
|
+
* before they are merged, especially breaking changes that could affect downstream
|
|
505
|
+
* consumers or integrations.
|
|
506
|
+
*
|
|
507
|
+
* Typical use cases include CI/CD validation, pull request checks, or local
|
|
508
|
+
* development sanity checks.
|
|
509
|
+
*
|
|
510
|
+
* Example usage:
|
|
511
|
+
* ```ts
|
|
512
|
+
* psy.set('openapi', {
|
|
513
|
+
* ...
|
|
514
|
+
* checkDiffs: true,
|
|
515
|
+
* ...
|
|
516
|
+
* });
|
|
517
|
+
* ```
|
|
518
|
+
*
|
|
519
|
+
|
|
520
|
+
*/
|
|
521
|
+
checkDiffs?: boolean;
|
|
494
522
|
}
|
|
495
523
|
interface PsychicOpenapiInfo {
|
|
496
524
|
version: string;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@rvoh/psychic",
|
|
4
4
|
"description": "Typescript web framework",
|
|
5
|
-
"version": "2.1.
|
|
5
|
+
"version": "2.2.1-alpha.1",
|
|
6
6
|
"author": "RVOHealth",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -48,28 +48,29 @@
|
|
|
48
48
|
"dist/**/*"
|
|
49
49
|
],
|
|
50
50
|
"scripts": {
|
|
51
|
-
"client": "
|
|
52
|
-
"client:fspec": "VITE_PSYCHIC_ENV=test BROWSER=none
|
|
53
|
-
"psy": "NODE_ENV=${NODE_ENV:-test}
|
|
51
|
+
"client": "cd client && pnpm start",
|
|
52
|
+
"client:fspec": "cd client && VITE_PSYCHIC_ENV=test BROWSER=none pnpm start",
|
|
53
|
+
"psy": "NODE_ENV=${NODE_ENV:-test} pnpm psyts",
|
|
54
54
|
"psyjs": "node ./dist/test-app/src/cli/index.js",
|
|
55
55
|
"psyts": "NODE_ENV=${NODE_ENV:-test} tsx ./test-app/src/cli/index.ts",
|
|
56
56
|
"gpsy": "tsx ./global-cli/main.ts",
|
|
57
57
|
"build": "echo \"building cjs...\" && rm -rf dist && npx tsc -p ./tsconfig.cjs.build.json && echo \"building esm...\" && npx tsc -p ./tsconfig.esm.build.json",
|
|
58
58
|
"build:test-app": "rm -rf dist && echo \"building test app to esm...\" && npx tsc -p ./tsconfig.esm.build.test-app.json && echo \"building test app to cjs...\" && npx tsc -p ./tsconfig.cjs.build.test-app.json",
|
|
59
|
-
"types:esm:trace": "rm -rf dist && npx tsc -p ./tsconfig.esm.build.json --generateTrace ./typetrace --diagnostics &&
|
|
59
|
+
"types:esm:trace": "rm -rf dist && npx tsc -p ./tsconfig.esm.build.json --generateTrace ./typetrace --diagnostics && pnpm analyze-trace ./typetrace --skipMillis 100 --forceMillis 300",
|
|
60
60
|
"dev": "nodemon --quiet --no-stdin",
|
|
61
61
|
"console": "tsx ./test-app/src/conf/repl.ts",
|
|
62
62
|
"uspec": "vitest --config ./spec/unit/vite.config.ts",
|
|
63
63
|
"fspec": "vitest run --config=./spec/features/vite.config.ts",
|
|
64
|
-
"format": "
|
|
65
|
-
"lint": "
|
|
66
|
-
"prepack": "
|
|
64
|
+
"format": "pnpm prettier . --write",
|
|
65
|
+
"lint": "pnpm eslint --no-warn-ignored \"src/**/*.ts\" \"spec/**/*.ts\" \"test-app/**/*.ts\" && pnpm prettier . --check",
|
|
66
|
+
"prepack": "pnpm build"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/cookie-parser": "^1.4.8",
|
|
70
70
|
"@types/cors": "^2.8.17",
|
|
71
71
|
"ajv": "^8.17.1",
|
|
72
72
|
"ajv-formats": "^3.0.1",
|
|
73
|
+
"body-parser": "^2.2.1",
|
|
73
74
|
"commander": "^12.1.0",
|
|
74
75
|
"cookie-parser": "^1.4.7",
|
|
75
76
|
"cors": "^2.8.5",
|
|
@@ -85,11 +86,12 @@
|
|
|
85
86
|
"openapi-typescript": "^7.8.0"
|
|
86
87
|
},
|
|
87
88
|
"devDependencies": {
|
|
88
|
-
"@eslint/js": "^9.
|
|
89
|
+
"@eslint/js": "^9.39.1",
|
|
89
90
|
"@jest-mock/express": "^3.0.0",
|
|
90
91
|
"@rvoh/dream": "^2.0.3",
|
|
91
92
|
"@rvoh/dream-spec-helpers": "^2.0.0",
|
|
92
93
|
"@rvoh/psychic-spec-helpers": "^2.0.0",
|
|
94
|
+
"@types/body-parser": "^1.19.6",
|
|
93
95
|
"@types/express": "^5.0.6",
|
|
94
96
|
"@types/express-session": "^1.18.2",
|
|
95
97
|
"@types/node": "^22.17.1",
|
|
@@ -97,13 +99,14 @@
|
|
|
97
99
|
"@types/passport-local": "^1",
|
|
98
100
|
"@types/pg": "^8.11.8",
|
|
99
101
|
"@types/supertest": "^6.0.3",
|
|
102
|
+
"@typescript-eslint/parser": "^8.48.1",
|
|
100
103
|
"@typescript/analyze-trace": "^0.10.1",
|
|
101
|
-
"eslint": "^9.
|
|
104
|
+
"eslint": "^9.39.1",
|
|
102
105
|
"express": "^5.2.1",
|
|
103
106
|
"express-session": "^1.18.2",
|
|
104
107
|
"jsdom": "^26.1.0",
|
|
105
108
|
"kysely": "^0.28.5",
|
|
106
|
-
"kysely-codegen": "~0.
|
|
109
|
+
"kysely-codegen": "~0.19.0",
|
|
107
110
|
"luxon-jest-matchers": "^0.1.14",
|
|
108
111
|
"nodemon": "^3.1.11",
|
|
109
112
|
"openapi-typescript": "^7.8.0",
|
|
@@ -117,9 +120,9 @@
|
|
|
117
120
|
"tsx": "^4.19.3",
|
|
118
121
|
"typedoc": "^0.26.6",
|
|
119
122
|
"typescript": "^5.5.4",
|
|
120
|
-
"typescript-eslint": "
|
|
123
|
+
"typescript-eslint": "^8.48.1",
|
|
121
124
|
"vitest": "^4.0.9",
|
|
122
125
|
"winston": "^3.14.2"
|
|
123
126
|
},
|
|
124
|
-
"packageManager": "
|
|
127
|
+
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
|
|
125
128
|
}
|