Skip to content

Commit

Permalink
fix(cspell): avoid cspell integration checks complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
p-fernandez committed Nov 29, 2022
1 parent dbf5102 commit 37deda0
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { BurstSmsProvider } from '@novu/burst-sms';

export class BurstSmsHandler extends BaseSmsHandler {
constructor() {
super('burstsms', ChannelTypeEnum.SMS);
super('burst-sms', ChannelTypeEnum.SMS);
}
buildProvider(credentials: ICredentials) {
const config: {
Expand Down
2 changes: 1 addition & 1 deletion libs/shared/src/consts/providers/channels/sms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ export const smsProviders: IProviderConfig[] = [
channel: ChannelTypeEnum.SMS,
credentials: burstSmsConfig,
docReference: 'https://developer.transmitsms.com/',
logoFileName: { light: 'burstsms.svg', dark: 'burstsms.svg' },
logoFileName: { light: 'burst-sms.svg', dark: 'burst-sms.svg' },
},
];
2 changes: 1 addition & 1 deletion libs/shared/src/consts/providers/provider.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export enum SmsProviderIdEnum {
Gupshup = 'gupshup',
Firetext = 'firetext',
Infobip = 'infobip',
BurstSms = 'burstsms',
BurstSms = 'burst-sms',
}

export enum ChatProviderIdEnum {
Expand Down
2 changes: 1 addition & 1 deletion providers/burst-sms/src/lib/burst-sms.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import axios, { AxiosInstance } from 'axios';
import qs from 'qs';

export class BurstSmsProvider implements ISmsProvider {
id = 'burstsms';
id = 'burst-sms';
channelType = ChannelTypeEnum.SMS as ChannelTypeEnum.SMS;
private axiosInstance: AxiosInstance;

Expand Down

0 comments on commit 37deda0

Please sign in to comment.