( marketplace: string | undefined, )
| 73 | * PII-tagged _PROTO_* BQ columns. |
| 74 | */ |
| 75 | export function isOfficialMarketplaceName( |
| 76 | marketplace: string | undefined, |
| 77 | ): boolean { |
| 78 | return ( |
| 79 | marketplace !== undefined && |
| 80 | ALLOWED_OFFICIAL_MARKETPLACE_NAMES.has(marketplace.toLowerCase()) |
| 81 | ) |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Map from installable plugin scope to editable setting source. |
no test coverage detected