diff --git a/fern/definition/cloud/__package__.yml b/fern/definition/cloud/__package__.yml index 404841478..f313f24bd 100644 --- a/fern/definition/cloud/__package__.yml +++ b/fern/definition/cloud/__package__.yml @@ -37,6 +37,8 @@ types: main: string cdn: string job: string + # TODO: This is the legacy name, but changing this MIGHT break CLI 1.0 + # clients. Need to check this. opengb: optional BootstrapOrigins: diff --git a/lib/bolt/core/src/context/service.rs b/lib/bolt/core/src/context/service.rs index a38d9395e..d15e7f0b6 100644 --- a/lib/bolt/core/src/context/service.rs +++ b/lib/bolt/core/src/context/service.rs @@ -902,7 +902,7 @@ impl ServiceContextData { let opengb_output = terraform::output::read_opengb(&project_ctx).await; env.insert( - "CLOUDFLARE_OPENGB_DISPATCHER_NAMESPACE".into(), + "CLOUDFLARE_BACKEND_DISPATCHER_NAMESPACE".into(), opengb_output.dispatcher_namespace_name.to_string(), ); } diff --git a/sdks/full/typescript/archive.tgz b/sdks/full/typescript/archive.tgz index 8f6cf90d3..43c45d8b0 100644 --- a/sdks/full/typescript/archive.tgz +++ b/sdks/full/typescript/archive.tgz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4740d4dc89c1d31e6d0a9d95e026d2e7a0bf35faf88c5ba62b8f233f92a3e71f -size 548002 +oid sha256:9518374f3b5d31f86880a9f9f876185529bbc35244a6202d376440e73a2c545e +size 548036 diff --git a/sdks/runtime/typescript/archive.tgz b/sdks/runtime/typescript/archive.tgz index 0aa4dd1e5..eecbc2232 100644 --- a/sdks/runtime/typescript/archive.tgz +++ b/sdks/runtime/typescript/archive.tgz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71df0de9d886c2dbb05f7d122c649bb862a6c1acecd3e370c2f632a6b9f5991b -size 282612 +oid sha256:29ca47b023e50719b7e442254a584eca680071a7a9f35794014906db863c5029 +size 282581 diff --git a/svc/api/games/src/main.rs b/svc/api/games/src/main.rs index 26c0bd45b..55bb3af13 100644 --- a/svc/api/games/src/main.rs +++ b/svc/api/games/src/main.rs @@ -1,5 +1,5 @@ use api_helper::start; fn main() { - start(api_servers::route::handle); + start(api_games::route::handle); }