From 797c81dfb5fd2e42e9bd20b297cb5431c4d66842 Mon Sep 17 00:00:00 2001 From: Justin Dalrymple Date: Mon, 23 Apr 2018 12:40:15 -0400 Subject: [PATCH] Incorrectly named bundles --- src/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.js b/src/index.js index 62f1747d..d2e14c3b 100644 --- a/src/index.js +++ b/src/index.js @@ -6,7 +6,7 @@ import { Bundler } from './infrastructure'; export * from './services'; // Groups -export const GroupsBundler = Bundler(Pick(APIServices, [ +export const GroupsBundle = Bundler(Pick(APIServices, [ 'Groups', 'GroupAccessRequests', 'GroupBadges', @@ -23,7 +23,7 @@ export const GroupsBundler = Bundler(Pick(APIServices, [ ])); // Users -export const UsersBundler = Bundler(Pick(APIServices, [ +export const UsersBundle = Bundler(Pick(APIServices, [ 'Users', 'UserCustomAttributes', 'UserEmails', @@ -33,7 +33,7 @@ export const UsersBundler = Bundler(Pick(APIServices, [ ])); // Projects -export const ProjectsBundler = Bundler(Pick(APIServices, [ +export const ProjectsBundle = Bundler(Pick(APIServices, [ 'Branches', 'Commits', 'DeployKeys',