diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-03 22:18:38 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-03 22:18:38 +0900 |
| commit | c5f340afc2ecdbff9f0d2e0707f310fa88f5af12 (patch) | |
| tree | bdef0421d29b9ee737e869677166d4b3ebdadb0f /frontend/app/.server/api/schema.d.ts | |
| parent | db06c9332776b41b3fef537f9e6d76d38f0463b3 (diff) | |
| parent | 7a4171d021a709e0af1e0e13830514c67ec97702 (diff) | |
| download | phperkaigi-2025-albatross-c5f340afc2ecdbff9f0d2e0707f310fa88f5af12.tar.gz phperkaigi-2025-albatross-c5f340afc2ecdbff9f0d2e0707f310fa88f5af12.tar.zst phperkaigi-2025-albatross-c5f340afc2ecdbff9f0d2e0707f310fa88f5af12.zip | |
Merge branch 'feat/worker'
Diffstat (limited to 'frontend/app/.server/api/schema.d.ts')
| -rw-r--r-- | frontend/app/.server/api/schema.d.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/frontend/app/.server/api/schema.d.ts b/frontend/app/.server/api/schema.d.ts index 705380d..1c8cead 100644 --- a/frontend/app/.server/api/schema.d.ts +++ b/frontend/app/.server/api/schema.d.ts @@ -201,7 +201,7 @@ export interface components { /** @example 100 */ score: number | null; }; - GamePlayerMessageC2S: components["schemas"]["GamePlayerMessageC2SEntry"] | components["schemas"]["GamePlayerMessageC2SReady"] | components["schemas"]["GamePlayerMessageC2SCode"]; + GamePlayerMessageC2S: components["schemas"]["GamePlayerMessageC2SEntry"] | components["schemas"]["GamePlayerMessageC2SReady"] | components["schemas"]["GamePlayerMessageC2SCode"] | components["schemas"]["GamePlayerMessageC2SSubmit"]; GamePlayerMessageC2SEntry: { /** @constant */ type: "player:c2s:entry"; @@ -219,6 +219,15 @@ export interface components { /** @example print('Hello, world!') */ code: string; }; + GamePlayerMessageC2SSubmit: { + /** @constant */ + type: "player:c2s:submit"; + data: components["schemas"]["GamePlayerMessageC2SSubmitPayload"]; + }; + GamePlayerMessageC2SSubmitPayload: { + /** @example print('Hello, world!') */ + code: string; + }; GameWatcherMessage: components["schemas"]["GameWatcherMessageS2C"]; GameWatcherMessageS2C: components["schemas"]["GameWatcherMessageS2CStart"] | components["schemas"]["GameWatcherMessageS2CCode"] | components["schemas"]["GameWatcherMessageS2CExecResult"]; GameWatcherMessageS2CStart: { |
