Skip to content

Commit

Permalink
Removes unused Scheme export
Browse files Browse the repository at this point in the history
  • Loading branch information
philals committed Aug 28, 2017
1 parent de160df commit 7341bb3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/entities/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var Entity = require('./entity')
* ACCOUNTING API SHARED SCHEMAS
*/

var AddressDetailsSchema = Entity.SchemaObject({
module.exports.AddressSchema = Entity.SchemaObject({
AddressLine1: { type: String, toObject: 'always' },
AddressLine2: { type: String, toObject: 'always' },
AddressLine3: { type: String, toObject: 'always' },
Expand All @@ -17,8 +17,6 @@ var AddressDetailsSchema = Entity.SchemaObject({
AddressType: { type: String, toObject: 'always' }
})

module.exports.AddressSchema = AddressDetailsSchema;

module.exports.PhoneSchema = Entity.SchemaObject({
PhoneNumber: { type: String, toObject: 'always' },
PhoneAreaCode: { type: String, toObject: 'always' },
Expand Down

0 comments on commit 7341bb3

Please sign in to comment.