(
resp: { diagnostics?: { clientSideRequestStatistics?: { totalResponsePayloadLengthInBytes?: number } } }
)
| 131 | const isPreconditionFailed = (u: unknown) => isCosmosStatus(u, 412) |
| 132 | |
| 133 | const respBytes = ( |
| 134 | resp: { diagnostics?: { clientSideRequestStatistics?: { totalResponsePayloadLengthInBytes?: number } } } |
| 135 | ) => resp.diagnostics?.clientSideRequestStatistics?.totalResponsePayloadLengthInBytes ?? 0 |
| 136 | |
| 137 | const annotateItem = (resp: { |
| 138 | readonly requestCharge?: number |
no outgoing calls
no test coverage detected
searching dependent graphs…