(id: string)
| 114 | // names routinely contain '/', so every doc id is URI-encoded (mirrors |
| 115 | // `cosmosId` in ClusterCosmos). Partition keys (executionId) are exempt. |
| 116 | const cosmosId = (id: string) => encodeURIComponent(id) |
| 117 | const execId = "exec" as const |
| 118 | const activityKey = (name: string, attempt: number) => cosmosId(`activity::${name}::${attempt}`) |
| 119 | const deferredKey = (name: string) => cosmosId(`deferred::${name}`) |
no outgoing calls
no test coverage detected
searching dependent graphs…