({
organizationId,
regionId,
}: {
organizationId?: string;
regionId: string;
})
| 17 | }; |
| 18 | |
| 19 | function buildCacheKey({ |
| 20 | organizationId, |
| 21 | regionId, |
| 22 | }: { |
| 23 | organizationId?: string; |
| 24 | regionId: string; |
| 25 | }): string { |
| 26 | return `mz-shell-command-cache|${organizationId}|${regionId}`; |
| 27 | } |
| 28 | |
| 29 | export function getCache({ |
| 30 | organizationId, |
no outgoing calls
no test coverage detected