Merge pull request #14759 from backstage/renovate/kafkajs-2.x-lockfile

Update dependency kafkajs to v2.2.3
This commit is contained in:
Fredrik Adelöw
2022-11-25 14:37:51 +01:00
committed by GitHub
3 changed files with 24 additions and 8 deletions
+16 -5
View File
@@ -25,8 +25,19 @@ export interface ClusterDetails {
export type SslConfig = ConnectionOptions | boolean;
export type SaslConfig = {
mechanism: 'plain' | 'scram-sha-256' | 'scram-sha-512';
username: string;
password: string;
};
export type SaslConfig =
| {
mechanism: 'plain';
username: string;
password: string;
}
| {
mechanism: 'scram-sha-256';
username: string;
password: string;
}
| {
mechanism: 'scram-sha-512';
username: string;
password: string;
};