Skip to content

Commit 3ade6a9

Browse files
authored
feat(environmental_footprint): add network and load balancer categories to enums (#2677)
1 parent 1331ac1 commit 3ade6a9

File tree

7 files changed

+46
-44
lines changed

7 files changed

+46
-44
lines changed

packages_generated/environmental_footprint/src/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export type ProductCategory =
1313
| 'elastic_metal'
1414
| 'instances'
1515
| 'object_storage'
16+
| 'load_balancer'
1617

1718
export type ReportType = 'unknown_report_type' | 'monthly' | 'yearly'
1819

@@ -21,6 +22,7 @@ export type ServiceCategory =
2122
| 'baremetal'
2223
| 'compute'
2324
| 'storage'
25+
| 'network'
2426

2527
export interface Impact {
2628
/**
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"extends": "./tsconfig.json",
3-
"compilerOptions": {
4-
"noEmit": false,
5-
"emitDeclarationOnly": true,
6-
"rootDir": "src",
7-
"outDir": "dist"
8-
},
9-
"exclude": [
10-
"dist/*",
11-
"*.config.ts",
12-
"*.setup.ts",
13-
"**/__tests__",
14-
"**/__mocks__",
15-
"src/**/*.test.tsx"
16-
]
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"noEmit": false,
5+
"emitDeclarationOnly": true,
6+
"rootDir": "src",
7+
"outDir": "dist"
8+
},
9+
"exclude": [
10+
"dist/*",
11+
"*.config.ts",
12+
"*.setup.ts",
13+
"**/__tests__",
14+
"**/__mocks__",
15+
"src/**/*.test.tsx"
16+
]
1717
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"extends": "../../tsconfig.json",
3-
"include": ["src/**/*.ts", "src/**/*.tsx", "*.config.ts"]
2+
"extends": "../../tsconfig.json",
3+
"include": ["src/**/*.ts", "src/**/*.tsx", "*.config.ts"]
44
}

packages_generated/environmental_footprint/vite.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { defineConfig, mergeConfig } from 'vite'
66
import { defaultConfig } from '../../vite.config'
77

88
export default mergeConfig(defineConfig(defaultConfig), {
9-
build: {
10-
lib: {
11-
entry: 'src/index.gen.ts',
12-
},
13-
},
9+
build: {
10+
lib: {
11+
entry: 'src/index.gen.ts',
12+
},
13+
},
1414
})
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"extends": "./tsconfig.json",
3-
"compilerOptions": {
4-
"noEmit": false,
5-
"emitDeclarationOnly": true,
6-
"rootDir": "src",
7-
"outDir": "dist"
8-
},
9-
"exclude": [
10-
"dist/*",
11-
"*.config.ts",
12-
"*.setup.ts",
13-
"**/__tests__",
14-
"**/__mocks__",
15-
"src/**/*.test.tsx"
16-
]
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"noEmit": false,
5+
"emitDeclarationOnly": true,
6+
"rootDir": "src",
7+
"outDir": "dist"
8+
},
9+
"exclude": [
10+
"dist/*",
11+
"*.config.ts",
12+
"*.setup.ts",
13+
"**/__tests__",
14+
"**/__mocks__",
15+
"src/**/*.test.tsx"
16+
]
1717
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"extends": "../../tsconfig.json",
3-
"include": ["src/**/*.ts", "src/**/*.tsx", "*.config.ts"]
2+
"extends": "../../tsconfig.json",
3+
"include": ["src/**/*.ts", "src/**/*.tsx", "*.config.ts"]
44
}

packages_generated/k8s/vite.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { defineConfig, mergeConfig } from 'vite'
66
import { defaultConfig } from '../../vite.config'
77

88
export default mergeConfig(defineConfig(defaultConfig), {
9-
build: {
10-
lib: {
11-
entry: 'src/index.gen.ts',
12-
},
13-
},
9+
build: {
10+
lib: {
11+
entry: 'src/index.gen.ts',
12+
},
13+
},
1414
})

0 commit comments

Comments
 (0)