Merge branch 'main' into qa-fixes-batch-3

This commit is contained in:
tglide
2023-10-13 15:54:39 +01:00
20 changed files with 214 additions and 66 deletions

View File

@@ -37,7 +37,11 @@ export enum Platform {
ServerPhp = 'server-php',
ServerPython = 'server-python',
ServerRuby = 'server-ruby',
ServerSwift = 'server-swift'
ServerSwift = 'server-swift',
ServerKotlin = 'server-kotlin',
ServerJava = 'server-java',
ServerGraphql = 'server-graphql',
ServerRest = 'server-rest',
}
export const platformMap: Record<Language | string, string> = {
@@ -56,6 +60,10 @@ export const platformMap: Record<Language | string, string> = {
[Platform.ServerPython]: 'Python',
[Platform.ServerRuby]: 'Ruby',
[Platform.ServerSwift]: 'Swift',
[Platform.ServerKotlin]: 'Kotlin',
[Platform.ServerJava]: 'Java',
[Platform.ServerGraphql]: 'GraphQL',
[Platform.ServerRest]: 'REST',
sh: 'Shell',
js: 'JavaScript',
jsx: 'React',