-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📦 NEW: Expose bulk-mail-cli API Functions to developers
- Loading branch information
1 parent
8cba808
commit 998686b
Showing
5 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
export {} | ||
import checkConnection from './cli/utils/checkConnection' | ||
import doesFileExist from './cli/utils/doesFileExist' | ||
import isFileType from './cli/utils/isFileType' | ||
import isForLoop from './cli/utils/isForLoop' | ||
import stringProcessor from './cli/utils/stringProcessor' | ||
import createTransport from './cli/utils/createTransport' | ||
import checkJsonConfiguration from './cli/commands/file/checkJsonConfiguration' | ||
|
||
import BmcConfigurationFile, { | ||
BmcAttachment, | ||
BmcConfigurations, | ||
BmcMailSettings, | ||
BmcNonUserData, | ||
BmcCredentials, | ||
} from './typings/configurationFileInterface' | ||
|
||
export { | ||
checkConnection, | ||
doesFileExist, | ||
isFileType, | ||
isForLoop, | ||
stringProcessor, | ||
BmcConfigurationFile, | ||
BmcAttachment, | ||
BmcConfigurations, | ||
BmcMailSettings, | ||
BmcNonUserData, | ||
BmcCredentials, | ||
createTransport, | ||
checkJsonConfiguration, | ||
} |