Skip to content

Commit

Permalink
Merge pull request #28 from friggframework/update-modules-for-instant…
Browse files Browse the repository at this point in the history
…iation

Update modules for instantiation
  • Loading branch information
seanspeaks authored Aug 22, 2022
2 parents 4fa6581 + 3c31187 commit b052e25
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
13 changes: 13 additions & 0 deletions api-module-library/fastspring-iq/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const { Api } = require('./api');
const { Credential } = require('./models/credential');
const { Entity } = require('./models/entity');
const ModuleManager = require('./manager');
const Config = require('./defaultConfig');

module.exports = {
Api,
Credential,
Entity,
ModuleManager,
Config,
};
2 changes: 1 addition & 1 deletion api-module-library/fastspring-iq/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@friggframework/api-module-fastspring-iq",
"version": "0.8.7",
"version": "0.8.8",
"prettier": "@friggframework/prettier-config",
"description": "",
"main": "index.js",
Expand Down
4 changes: 2 additions & 2 deletions api-module-library/marketo/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { Api } = require('./api');
const { Credential } = require('./models/credential');
const { Entity } = require('./models/entity');
const { Credential } = require('./credential');
const { Entity } = require('./entity');
const ModuleManager = require('./manager');
const Config = require('./defaultConfig');

Expand Down
2 changes: 1 addition & 1 deletion api-module-library/marketo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@friggframework/api-module-marketo",
"version": "0.8.7",
"version": "0.8.8",
"prettier": "@friggframework/prettier-config",
"description": "",
"main": "index.js",
Expand Down
4 changes: 2 additions & 2 deletions api-module-library/personio/manager.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Scaffolded from
const _ = require('lodash');
const { Api } = require('./api');
const { Entity } = require('./models/Entity');
const { Credential } = require('./models/Credential');
const { Entity } = require('./models/entity');
const { Credential } = require('./models/credential');
const {
ModuleManager,
ModuleConstants,
Expand Down
2 changes: 1 addition & 1 deletion api-module-library/personio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@friggframework/api-module-personio",
"version": "0.8.7",
"version": "0.8.8",
"prettier": "@friggframework/prettier-config",
"description": "",
"main": "index.js",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b052e25

Please sign in to comment.