Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages_generated/instance/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ const unmarshalServer = (data: unknown): Server => {
bootType: data.boot_type,
commercialType: data.commercial_type,
creationDate: unmarshalDate(data.creation_date),
dns: data.dns,
dynamicIpRequired: data.dynamic_ip_required,
enableIpv6: data.enable_ipv6,
endOfService: data.end_of_service,
Expand Down
4 changes: 4 additions & 0 deletions packages_generated/instance/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,10 @@ export interface Server {
* True if the Instance type has reached end of service.
*/
endOfService: boolean
/**
* Public DNS of the server.
*/
dns?: string
}

export interface VolumeTemplate {
Expand Down
30 changes: 15 additions & 15 deletions packages_generated/instance/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"emitDeclarationOnly": true,
"rootDir": "src",
"outDir": "dist"
},
"exclude": [
"dist/*",
"*.config.ts",
"*.setup.ts",
"**/__tests__",
"**/__mocks__",
"src/**/*.test.tsx"
]
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"emitDeclarationOnly": true,
"rootDir": "src",
"outDir": "dist"
},
"exclude": [
"dist/*",
"*.config.ts",
"*.setup.ts",
"**/__tests__",
"**/__mocks__",
"src/**/*.test.tsx"
]
}
4 changes: 2 additions & 2 deletions packages_generated/instance/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "../../tsconfig.json",
"include": ["src/**/*.ts", "src/**/*.tsx", "*.config.ts"]
"extends": "../../tsconfig.json",
"include": ["src/**/*.ts", "src/**/*.tsx", "*.config.ts"]
}
10 changes: 5 additions & 5 deletions packages_generated/instance/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { defineConfig, mergeConfig } from 'vite'
import { defaultConfig } from '../../vite.config'

export default mergeConfig(defineConfig(defaultConfig), {
build: {
lib: {
entry: 'src/index.gen.ts',
},
},
build: {
lib: {
entry: 'src/index.gen.ts',
},
},
})
Loading