Skip to content

Commit f88bc77

Browse files
Merge pull request #86 from MicroFocus/sionescu_defect_2962113_align_my_work_entities_between_octane_and_ide_plugin
defect #2962113: align my work entities between octane and ide plugin
2 parents e3520f9 + 8f67aa2 commit f88bc77

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,8 @@ $ npm test test/query.js
412412
```
413413

414414
## What's new :newspaper: <a name="whats-new"></a>
415+
* 26.1.0
416+
Standardize the structure and behavior of model items and process entities across VS Code plugins
415417
* 25.4.0
416418
* Upgraded `brace-expansion` version to fix a vulnerable dependency
417419
* 25.3.0

lib/root/octane.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,12 @@ class Octane {
9696
manualTests: string;
9797
metaphases: string;
9898
milestones: string;
99+
modelItems: string;
99100
phases: string;
100101
pipelineNodes: string;
101102
pipelineRuns: string;
102103
previousRuns: string;
104+
processes: string;
103105
programs: string;
104106
releases: string;
105107
requirementDocuments: string;
@@ -113,6 +115,8 @@ class Octane {
113115
sprints: string;
114116
stories: string;
115117
suiteRun: string;
118+
suiteRunSchedulers: string;
119+
suiteRunSchedulerRuns: string;
116120
tasks: string;
117121
taxonomyCategoryNodes: string;
118122
taxonomyItemNodes: string;
@@ -151,10 +155,12 @@ class Octane {
151155
manualTests: 'manualTests',
152156
metaphases: 'metaphases',
153157
milestones: 'milestones',
158+
modelItems: 'model_items',
154159
phases: 'phases',
155160
pipelineNodes: 'pipeline_nodes',
156161
pipelineRuns: 'pipeline_runs',
157162
previousRuns: 'previous_runs',
163+
processes: 'processes',
158164
programs: 'programs',
159165
releases: 'releases',
160166
requirementDocuments: 'requirement_documents',
@@ -168,6 +174,8 @@ class Octane {
168174
sprints: 'sprints',
169175
stories: 'stories',
170176
suiteRun: 'suite_run',
177+
suiteRunSchedulers: 'suite_run_schedulers',
178+
suiteRunSchedulerRuns: 'suite_run_scheduler_runs',
171179
tasks: 'tasks',
172180
taxonomyCategoryNodes: 'taxonomy_category_nodes',
173181
taxonomyItemNodes: 'taxonomy_item_nodes',

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microfocus/alm-octane-js-rest-sdk",
3-
"version": "25.4.0",
3+
"version": "26.1.0",
44
"description": "NodeJS wrapper for the OpenText Core Software Delivery Platform API",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -31,7 +31,7 @@
3131
"@types/http-errors": "^2.0.4",
3232
"@types/jest": "^29.5.12",
3333
"@types/mocha": "^10.0.6",
34-
"@types/node": "^22.15.3",
34+
"@types/node": "^22.19.1",
3535
"@types/pluralize": "^0.0.33",
3636
"@types/request": "^2.48.8",
3737
"@types/tough-cookie": "^4.0.5",

0 commit comments

Comments
 (0)