This file has been truncated, but you can view the full file.
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <Profile xmlns="http://soap.sforce.com/2006/04/metadata"> | |
| <applicationVisibilities> | |
| <application>Cloud_Tech_Support</application> | |
| <default>false</default> | |
| <visible>false</visible> | |
| </applicationVisibilities> | |
| <applicationVisibilities> | |
| <application>LiveChat</application> | |
| <default>false</default> |
This file contains hidden or 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
| #!/bin/bash | |
| if [ $# -eq 0 ] | |
| then | |
| echo "No arguments supplied, please supply the project directory, the source directory within the project directory and optionally 'yes' to preserve the original metadata." | |
| exit 1 | |
| fi | |
| if [ -z "$2" ] | |
| then |
This file contains hidden or 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
| import { flags, SfdxCommand } from '@salesforce/command'; | |
| import { Messages, SfdxError } from '@salesforce/core'; | |
| import { AnyJson } from '@salesforce/ts-types'; | |
| import { Twilio } from 'twilio'; | |
| import TwilioConfig from '../../../lib/twilioconfig'; | |
| // Initialize Messages with the current plugin directory | |
| Messages.importMessagesDirectory(__dirname); | |
| // Load the specific messages for this file. Messages from @salesforce/command, @salesforce/core, |
This file contains hidden or 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
| import { ConfigFile } from "@salesforce/core"; | |
| export default class TwilioConfig extends ConfigFile<ConfigFile.Options> { | |
| public static getFileName(): string { | |
| return 'twilioconfig.json'; | |
| } | |
| } |
OlderNewer