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
{ | |
"affenpinscher": [], | |
"african": [], | |
"airedale": [], | |
"akita": [], | |
"appenzeller": [], | |
"australian": [ | |
"shepherd" | |
], | |
"basenji": [], |
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
const { Integration } = require('@fusebit-int/framework'); | |
const schema = require('./schema.json'); | |
const uiSchema = require('./uiSchema.json'); | |
const integration = new Integration(); | |
const router = integration.router; | |
const salesforceConnetorName = 'salesforceConnector'; | |
const hubspotConnectorName = 'hubspot'; |
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
var request = require('request'); | |
module.exports = function(ctx, cb) { | |
var opts = { | |
url: 'http://api.fixer.io/latest', | |
json: true | |
}; | |
request.get(opts, function(err, res) { | |
if(err) { | |
console.log(err); |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> | |
<meta http-equiv="Pragma" content="no-cache"> | |
<meta http-equiv="Expires" content="0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=9" /> | |
<title>Repro test for RIA JS</title> | |
<link href="css/qunit.css" rel="stylesheet" type="text/css" /> | |
</head> |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> | |
<meta http-equiv="Pragma" content="no-cache"> | |
<meta http-equiv="Expires" content="0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=9" /> | |
<title>Repro test for RIA JS</title> | |
<link href="css/qunit.css" rel="stylesheet" type="text/css" /> | |
</head> |