chore: update
ci-api / test (push) Successful in 33m26s
ci-web / test (push) Successful in 15m10s

This commit is contained in:
Xor290
2026-08-05 18:20:57 +02:00
parent 373d592320
commit fbda118856
8 changed files with 1636 additions and 1513 deletions
+8
View File
@@ -75,6 +75,10 @@ export interface CreateDemoParams {
storageDriver: StorageDriver
s3Bucket?: string
s3Endpoint?: string
tomtomApiKey?: string
tomtomApiKey1?: string
tomtomApiKey2?: string
tomtomApiKey3?: string
lbBot1Username?: string
lbBot1Token?: string
lbBot2Username?: string
@@ -177,6 +181,10 @@ export const api = {
...(params.storageDriver === 's3'
? { s3_bucket: params.s3Bucket, s3_endpoint: params.s3Endpoint }
: {}),
...(params.tomtomApiKey ? { tomtom_api_key: params.tomtomApiKey } : {}),
...(params.tomtomApiKey1 ? { tomtom_api_key_1: params.tomtomApiKey1 } : {}),
...(params.tomtomApiKey2 ? { tomtom_api_key_2: params.tomtomApiKey2 } : {}),
...(params.tomtomApiKey3 ? { tomtom_api_key_3: params.tomtomApiKey3 } : {}),
...(params.lbBot1Username ? { lb_bot1_username: params.lbBot1Username, lb_bot1_token: params.lbBot1Token } : {}),
...(params.lbBot2Username ? { lb_bot2_username: params.lbBot2Username, lb_bot2_token: params.lbBot2Token } : {}),
...(params.lbStrategy ? { lb_strategy: params.lbStrategy } : {}),