Merge branch 'release/1.2.4' into production
This commit is contained in:
commit
ae9ebdc562
19
docs.json
19
docs.json
|
@ -1,18 +1,29 @@
|
||||||
{
|
{
|
||||||
"content": [
|
"content": [
|
||||||
"README.md",
|
|
||||||
{
|
{
|
||||||
"title": "LoopBack DataSource API",
|
"title": "LoopBack DataSource API",
|
||||||
"depth": 2
|
"depth": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Model and types",
|
"title": "Model builder",
|
||||||
"depth": 3
|
"depth": 3
|
||||||
},
|
},
|
||||||
|
|
||||||
"lib/model-builder.js",
|
"lib/model-builder.js",
|
||||||
|
{
|
||||||
|
"title": "Types",
|
||||||
|
"depth": 3
|
||||||
|
},
|
||||||
"lib/types.js",
|
"lib/types.js",
|
||||||
|
{
|
||||||
|
"title": "GeoPoint",
|
||||||
|
"depth": 3
|
||||||
|
},
|
||||||
"lib/geo.js",
|
"lib/geo.js",
|
||||||
|
{
|
||||||
|
"title": "Model",
|
||||||
|
"depth": 3
|
||||||
|
},
|
||||||
"lib/model.js",
|
"lib/model.js",
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -35,9 +46,7 @@
|
||||||
"title": "Base class for SQL connectors",
|
"title": "Base class for SQL connectors",
|
||||||
"depth": 3
|
"depth": 3
|
||||||
},
|
},
|
||||||
"lib/sql.js",
|
"lib/sql.js"
|
||||||
"docs/definition-language.md",
|
|
||||||
"docs/datasource-connector.md"
|
|
||||||
],
|
],
|
||||||
"codeSectionDepth": 4,
|
"codeSectionDepth": 4,
|
||||||
"assets": {
|
"assets": {
|
||||||
|
|
|
@ -1657,3 +1657,17 @@ function defineReadonlyProp(obj, key, value) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Carry over a few properties/methods from the ModelBuilder as some tests use them
|
||||||
|
DataSource.Text = ModelBuilder.Text;
|
||||||
|
DataSource.JSON = ModelBuilder.JSON;
|
||||||
|
DataSource.Any = ModelBuilder.Any;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @deprecated Use ModelBuilder.registerType instead
|
||||||
|
* @param type
|
||||||
|
*/
|
||||||
|
DataSource.registerType = function(type) {
|
||||||
|
ModelBuilder.registerType(type);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "loopback-datasource-juggler",
|
"name": "loopback-datasource-juggler",
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"description": "LoopBack DataSoure Juggler",
|
"description": "LoopBack DataSoure Juggler",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"StrongLoop",
|
"StrongLoop",
|
||||||
|
|
Loading…
Reference in New Issue