Skip to content

Commit

Permalink
fix: remove customizations property from CommonInputModel class (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmatatjahu authored Feb 25, 2021
1 parent 5762bd0 commit 7e91c49
Show file tree
Hide file tree
Showing 12 changed files with 2 additions and 25 deletions.
6 changes: 2 additions & 4 deletions src/models/CommonInputModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { CommonModel } from './CommonModel';
* This class is the wrapper for simplified models and the rest of the context needed for further generate typed models.
*/
export class CommonInputModel {
models: {[key: string]: CommonModel} = {};
// TODO: Remove it and update tests
customizations: Object = {};
originalInput: any = {};
models: {[key: string]: CommonModel} = {};
originalInput: any = {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
]
}
}
},
"customizations":{

},
"originalInput":{
"_json":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
}
}
},
"customizations": {},
"originalInput": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@
]
}
},
"customizations": {},
"originalInput": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,6 @@
"type"
]
}
},
"customizations":{

},
"originalInput":{
"$schema":"http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
}
}
},
"customizations": {},
"originalInput": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@
}
}
},
"customizations": {},
"originalInput": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@
}
}
},
"customizations": {},
"originalInput": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@
]
}
}
},
"customizations":{

},
"originalInput":{
"$schema":"http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
}
}
},
"customizations": {},
"originalInput": {
"definitions": {
"test": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@
}
}
}
},
"customizations":{

},
"originalInput":{
"definitions":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,5 @@
]
}
}
},
"customizations":{

}
}

0 comments on commit 7e91c49

Please sign in to comment.