Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9a7be85
build(deps): bump storybook from 8.3.5 to 8.4.4
iOvergaard Nov 15, 2024
cf58f77
reenable public folder (with msw file) for storybook
iOvergaard Nov 15, 2024
640dfb9
build(deps-dev): bump vite from 5.4.6 to 5.4.11
iOvergaard Nov 15, 2024
eb7494b
build(deps-dev): bump babel and rollup
iOvergaard Nov 15, 2024
fe28c7c
build(deps-dev): bump typedoc from 0.26.5 to 0.26.11
iOvergaard Nov 15, 2024
2fa7b70
build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3
iOvergaard Nov 15, 2024
464b7fa
build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps
iOvergaard Nov 15, 2024
816778b
build(deps-dev): bump all @types packages
iOvergaard Nov 15, 2024
e953e38
build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0
iOvergaard Nov 15, 2024
0e403e8
build(deps): bump marked from 14.1.0 to 15.0.0
iOvergaard Nov 15, 2024
048aef0
build(deps): bump monaco-editor from 0.50.0 to 0.52.0
iOvergaard Nov 15, 2024
7ee8a5a
build(deps): bump dumpurify from 3.1.6 to 3.2.0
iOvergaard Nov 15, 2024
8b039e8
build(deps): make changes based on the dompurify upgrade where types …
iOvergaard Nov 15, 2024
f58befc
build(deps): bump diff from 5.2.0 to 7.0.0
iOvergaard Nov 15, 2024
0f1df87
build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12
iOvergaard Nov 15, 2024
664eed5
build(deps): bump lit from 3.2.0 to 3.2.1
iOvergaard Nov 15, 2024
ae12323
build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency)
iOvergaard Nov 15, 2024
e992927
build(deps-dev): bump storybook dependencies
iOvergaard Nov 15, 2024
bc52fd1
build(deps-dev): bump @web/dev-server deps
iOvergaard Nov 15, 2024
9240442
build(deps-dev): bump typescript from 5.5.3 to 5.6.3
iOvergaard Nov 15, 2024
c558ec0
build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the …
iOvergaard Nov 15, 2024
516cdad
build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11
iOvergaard Nov 15, 2024
9da0bae
build(deps): bump all deps to latest and use backoffice global types …
iOvergaard Nov 15, 2024
4c11822
chore: change import path
iOvergaard Nov 15, 2024
c1e0149
build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibil…
iOvergaard Nov 15, 2024
5c88e63
feat: replace outdated 'webworker-loader' with manual paths to monaco…
iOvergaard Nov 15, 2024
6511c62
Merge branch 'v15/dev' into v15/feature/npm-november-2024
iOvergaard Nov 19, 2024
647fce9
Merge branch 'v15/dev' into v15/feature/npm-november-2024
iOvergaard Nov 22, 2024
e0c63d9
Merge branch 'v15/dev' into v15/feature/npm-november-2024
iOvergaard Nov 25, 2024
b4ce970
build(deps-dev): bump storybook from 8.4.4 to 8.4.5
iOvergaard Nov 25, 2024
aa9d3b6
build(deps): bump tiptap from 2.9.1 to 2.10.2
iOvergaard Nov 25, 2024
b970ed5
build(deps): bump dompurify from 3.2.0 to 3.2.1
iOvergaard Nov 25, 2024
d91990c
build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25
iOvergaard Nov 25, 2024
abe79e1
build(deps): bump static icons
iOvergaard Nov 25, 2024
d2a6cdc
build(deps): bump marked from 15.0.0 to 15.0.2
iOvergaard Nov 25, 2024
f9fc574
build(deps-dev): bump eslint + deps
iOvergaard Nov 25, 2024
1d0271a
build(deps-dev): bump vite + rollup dependencies
iOvergaard Nov 25, 2024
6c2b9f7
build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0
iOvergaard Nov 25, 2024
9c03853
build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1
iOvergaard Nov 25, 2024
1174b81
build(deps-dev): bump @types/mocha
iOvergaard Nov 25, 2024
2b74c7a
build(deps): bump typescript from 5.6.3 to 5.7.2
iOvergaard Nov 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 13 additions & 9 deletions src/Umbraco.Web.UI.Client/devops/openapi-ts/openapi-ts.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
import { defineConfig } from '@hey-api/openapi-ts';

export default defineConfig({
client: 'fetch',
input: 'https://raw.githubusercontent.com/umbraco/Umbraco-CMS/v15/dev/src/Umbraco.Cms.Api.Management/OpenApi.json',
client: 'legacy/fetch',
debug: true,
input: '../Umbraco.Cms.Api.Management/OpenApi.json',
output: {
path: 'src/external/backend-api/src',
format: 'prettier',
lint: 'eslint',
},
schemas: false,
services: {
asClass: true,
},
types: {
enums: 'typescript',
},
plugins: [
{
name: '@hey-api/typescript',
enums: 'typescript'
},
{
name: '@hey-api/sdk',
asClass: true
}
]
});
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
import { defineConfig } from '@hey-api/openapi-ts';

import defaultConfig from './openapi-ts.config';

export default defineConfig({
client: 'fetch',
debug: true,
...defaultConfig,
input: 'http://localhost:11000/umbraco/swagger/management/swagger.json',
output: {
path: 'src/external/backend-api/src',
format: 'prettier',
lint: 'eslint',
},
schemas: false,
services: {
asClass: true,
},
types: {
enums: 'typescript',
},
});

This file was deleted.

Loading