File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ var Entity = require('./entity')
4
4
* ACCOUNTING API SHARED SCHEMAS
5
5
*/
6
6
7
- var AddressDetailsSchema = Entity . SchemaObject ( {
7
+ module . exports . AddressSchema = Entity . SchemaObject ( {
8
8
AddressLine1 : { type : String , toObject : 'always' } ,
9
9
AddressLine2 : { type : String , toObject : 'always' } ,
10
10
AddressLine3 : { type : String , toObject : 'always' } ,
@@ -17,8 +17,6 @@ var AddressDetailsSchema = Entity.SchemaObject({
17
17
AddressType : { type : String , toObject : 'always' }
18
18
} )
19
19
20
- module . exports . AddressSchema = AddressDetailsSchema ;
21
-
22
20
module . exports . PhoneSchema = Entity . SchemaObject ( {
23
21
PhoneNumber : { type : String , toObject : 'always' } ,
24
22
PhoneAreaCode : { type : String , toObject : 'always' } ,
You can’t perform that action at this time.
0 commit comments