Hello,
i want to use temporal/sdk and temporal-bundle to handle connection for temporal cloud using jwt api key but it seems that the bundle does not support yet this configuration type, i found out that the WorkerFactory class of temporal bundle does not have yet the ServiceCredentials to handle the connection.
for something like this :
$serviceCredentials = ServiceCredentials::create()->withApiKey($temporalApiKey);
$this->workerFactory = WorkerFactory::create(
credentials: $serviceCredentials
);