Skip to content

Commit

Permalink
raise orval to 7.3 and node to 22.11 (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-lmu authored Nov 26, 2024
1 parent 13a536d commit 283354e
Show file tree
Hide file tree
Showing 8 changed files with 384 additions and 410 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.10
22.11
2 changes: 1 addition & 1 deletion build/integration/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pipeline {
steps {
catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') {
script {
sh 'npm run download:openapi https://dev.demo.ivyteam.io'
sh 'npm run download:openapi https://neo.ivyteam.io'
sh 'npm run codegen:openapi'
sh 'npm run type'
sh 'npm run lint:ci'
Expand Down
2 changes: 1 addition & 1 deletion extension/src/engine/api/generated/openapi-default.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Generated by orval v6.31.0 🍺
* Generated by orval v7.3.0 🍺
* Do not edit manually.
* Axon Ivy
*/
Expand Down
5 changes: 4 additions & 1 deletion extension/src/engine/api/generated/openapi-dev.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Generated by orval v6.31.0 🍺
* Generated by orval v7.3.0 🍺
* Do not edit manually.
* Axon Ivy
*/
Expand Down Expand Up @@ -154,6 +154,7 @@ export interface ProjectIdentifier {

export interface ProjectBean {
artifactId: string;
defaultNamespace: string;
groupId: string;
id: ProjectIdentifier;
isDeletable: boolean;
Expand Down Expand Up @@ -199,6 +200,8 @@ export interface DataClassIdentifier {

export interface DataClassBean {
dataClassIdentifier: DataClassIdentifier;
isBusinessCaseData: boolean;
isEntityClass: boolean;
name: string;
path: string;
simpleName: string;
Expand Down
2 changes: 1 addition & 1 deletion orval.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'orval';

const hooks = { afterAllFilesWrite: 'prettier --write' };
const filters = { tags: ['web-ide'] };
const filters = { tags: ['web-ide'], schemas: [/.*/] };

export default defineConfig({
openapiDev: {
Expand Down
Loading

0 comments on commit 283354e

Please sign in to comment.