feat: add rest and graphql

This commit is contained in:
Torsten Dittmann
2023-09-19 11:24:33 +02:00
parent ef1191c4b8
commit b5a6fa779f
2 changed files with 6 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ export enum Platform {
ClientApple = 'client-apple',
ClientAndroidKotlin = 'client-android-kotlin',
ClientAndroidJava = 'client-android-java',
ClientGraphql = 'client-graphql',
ClientRest = 'client-rest',
ServerDart = 'server-dart',
ServerDeno = 'server-deno',
ServerDotNet = 'server-dotnet',
@@ -36,6 +38,8 @@ export const platformMap: Record<Language, string> = {
[Platform.ClientWeb]: 'Web',
[Platform.ClientAndroidKotlin]: 'Android (Kotlin)',
[Platform.ClientAndroidJava]: 'Android (Java)',
[Platform.ClientGraphql]: 'GraphQL',
[Platform.ClientRest]: 'REST',
[Platform.ServerDart]: 'Dart',
[Platform.ServerDeno]: 'Deno',
[Platform.ServerDotNet]: '.NET',