@rxap/plugin-gpt 20.1.4-dev.3 → 20.2.0-dev.2

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
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [20.2.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/plugin-gpt@20.2.0-dev.1...@rxap/plugin-gpt@20.2.0-dev.2) (2026-01-13)
7
+
8
+ **Note:** Version bump only for package @rxap/plugin-gpt
9
+
10
+ # [20.2.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/plugin-gpt@20.2.0-dev.0...@rxap/plugin-gpt@20.2.0-dev.1) (2026-01-12)
11
+
12
+ ### Bug Fixes
13
+
14
+ - update package groups ([ba8753f](https://gitlab.com/rxap/packages/commit/ba8753f5f34680adc282d84c557fc43385bfa987))
15
+
16
+ # [20.2.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-gpt@20.1.4-dev.3...@rxap/plugin-gpt@20.2.0-dev.0) (2026-01-12)
17
+
18
+ ### Features
19
+
20
+ - **schema:** enhance generator schema documentation with descriptions and examples ([0ae4939](https://gitlab.com/rxap/packages/commit/0ae4939d77e3e313ace4a77d8f5dd86c3c918d29))
21
+
6
22
  ## [20.1.4-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-gpt@20.1.4-dev.2...@rxap/plugin-gpt@20.1.4-dev.3) (2025-09-18)
7
23
 
8
24
  **Note:** Version bump only for package @rxap/plugin-gpt
package/README.md CHANGED
@@ -33,13 +33,13 @@ nx g @rxap/plugin-gpt:documentation
33
33
 
34
34
  Option | Type | Default | Description
35
35
  --- | --- | --- | ---
36
- projects | array | | A list of projects where the documentation should be generated
37
- project | string | |
38
- offline | boolean | | If true, the openai api is not used
39
- filter | string | | A filter to select the files to be processed
40
- openaiApiKey | string | | The openai api key
41
- openaiOrgId | string | | The openai organization id
42
- openaiProjectId | string | | The openai project id
36
+ projects | array | | The list of projects to generate documentation for.
37
+ project | string | | The name of a single project to generate documentation for.
38
+ offline | boolean | | Whether to skip using the OpenAI API and operate in offline mode.
39
+ filter | string | | A glob pattern filter to select specific files for documentation generation.
40
+ openaiApiKey | string | | The API key for accessing OpenAI services.
41
+ openaiOrgId | string | | The organization ID for OpenAI API requests.
42
+ openaiProjectId | string | | The project ID for OpenAI API requests.
43
43
 
44
44
  ## init
45
45
  > Initialize the package in the workspace
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
- "version": "20.1.4-dev.3",
2
+ "version": "20.2.0-dev.2",
3
3
  "name": "@rxap/plugin-gpt",
4
4
  "description": "This package provides a generator to add JSDoc documentation to TypeScript code using the OpenAI API. It can process functions and methods, and composes a context for the AI to generate accurate documentation. The generator also includes utilities for cleaning up JSDoc comments and managing OpenAI API interactions.\n",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "dependencies": {
7
7
  "@nx/devkit": "20.5.0",
8
- "@rxap/ts-morph": "^1.6.0-dev.2",
9
- "@rxap/workspace-ts-morph": "^19.1.13-dev.3",
10
- "@rxap/workspace-utilities": "^19.8.1-dev.2",
8
+ "@rxap/ts-morph": "^1.6.0-dev.3",
9
+ "@rxap/workspace-ts-morph": "^19.1.13-dev.4",
10
+ "@rxap/workspace-utilities": "^19.8.1-dev.3",
11
11
  "gpt-3-encoder": "^1.1.4",
12
12
  "openai": "^4.52.0",
13
13
  "ts-morph": "18.0.0",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "schematics": "./generators.json",
46
46
  "type": "commonjs",
47
- "gitHead": "ef20bc50270ad0727a111d54e48cb279ff3ed5cf",
47
+ "gitHead": "69d6ee61a20632f52b77de621089334a34f45e03",
48
48
  "types": "./src/index.d.ts",
49
49
  "main": "./src/index.js"
50
50
  }
@@ -7,33 +7,37 @@
7
7
  "projects": {
8
8
  "alias": "project",
9
9
  "type": "array",
10
- "description": "A list of projects where the documentation should be generated",
10
+ "description": "The list of projects to generate documentation for.",
11
11
  "items": {
12
12
  "type": "string"
13
- }
13
+ },
14
+ "examples": [["my-app", "my-lib"]]
14
15
  },
15
16
  "project": {
16
- "type": "string"
17
+ "type": "string",
18
+ "description": "The name of a single project to generate documentation for.",
19
+ "examples": ["my-app"]
17
20
  },
18
21
  "offline": {
19
22
  "type": "boolean",
20
- "description": "If true, the openai api is not used"
23
+ "description": "Whether to skip using the OpenAI API and operate in offline mode."
21
24
  },
22
25
  "filter": {
23
26
  "type": "string",
24
- "description": "A filter to select the files to be processed"
27
+ "description": "A glob pattern filter to select specific files for documentation generation.",
28
+ "examples": ["src/**/*.ts"]
25
29
  },
26
30
  "openaiApiKey": {
27
31
  "type": "string",
28
- "description": "The openai api key"
32
+ "description": "The API key for accessing OpenAI services."
29
33
  },
30
34
  "openaiOrgId": {
31
35
  "type": "string",
32
- "description": "The openai organization id"
36
+ "description": "The organization ID for OpenAI API requests."
33
37
  },
34
38
  "openaiProjectId": {
35
39
  "type": "string",
36
- "description": "The openai project id"
40
+ "description": "The project ID for OpenAI API requests."
37
41
  }
38
42
  }
39
43
  }