(envelope: Envelope.Encoded, primaryKey: string | null)
| 112 | const cosmosId = (id: string) => encodeURIComponent(id) |
| 113 | const messagePartition = (shardId: string) => `message::${shardId}` |
| 114 | const messageDocId = (envelope: Envelope.Encoded, primaryKey: string | null) => |
| 115 | cosmosId(primaryKey === null ? envelopeId(envelope) : `primary::${primaryKey}`) |
| 116 | const replyPartition = (requestId: string) => `reply::${requestId}` |
| 117 | const runnerDocId = (address: string) => cosmosId(`runner::${address}`) |
| 118 | const lockDocId = (shardId: string) => cosmosId(`lock::${shardId}`) |
no test coverage detected
searching dependent graphs…