Remove deprecated API documentation and models related to logging, project management, queries, and Redis management. This includes the deletion of various markdown files and TypeScript definitions that are no longer in use, streamlining the codebase and improving maintainability.

This commit is contained in:
lborv
2025-10-25 17:54:24 +03:00
parent 66a461f12a
commit 1c54064ffe
160 changed files with 11483 additions and 5701 deletions

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.ApiTokenGeneratePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('ApiTokenGeneratePostRequest', function() {
it('should create an instance of ApiTokenGeneratePostRequest', function() {
// uncomment below and update the code to test ApiTokenGeneratePostRequest
//var instance = new LowCodeEngineApi.ApiTokenGeneratePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.ApiTokenGeneratePostRequest);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.ApiTokenGeneratePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.CommandCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('CommandCreatePostRequest', function() {
it('should create an instance of CommandCreatePostRequest', function() {
// uncomment below and update the code to test CommandCreatePostRequest
//var instance = new LowCodeEngineApi.CommandCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.CommandCreatePostRequest);
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.CommandCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.CommandUpdateIdPostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('CommandUpdateIdPostRequest', function() {
it('should create an instance of CommandUpdateIdPostRequest', function() {
// uncomment below and update the code to test CommandUpdateIdPostRequest
//var instance = new LowCodeEngineApi.CommandUpdateIdPostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.CommandUpdateIdPostRequest);
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.CommandUpdateIdPostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,107 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Database();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Database', function() {
it('should create an instance of Database', function() {
// uncomment below and update the code to test Database
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be.a(LowCodeEngineApi.Database);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property qUsername (base name: "q_username")', function() {
// uncomment below and update the code to test the property qUsername
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property cUsername (base name: "c_username")', function() {
// uncomment below and update the code to test the property cUsername
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property database (base name: "database")', function() {
// uncomment below and update the code to test the property database
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property migrations (base name: "migrations")', function() {
// uncomment below and update the code to test the property migrations
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property project (base name: "project")', function() {
// uncomment below and update the code to test the property project
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
it('should have the property node (base name: "node")', function() {
// uncomment below and update the code to test the property node
//var instance = new LowCodeEngineApi.Database();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.DatabaseCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('DatabaseCreatePostRequest', function() {
it('should create an instance of DatabaseCreatePostRequest', function() {
// uncomment below and update the code to test DatabaseCreatePostRequest
//var instance = new LowCodeEngineApi.DatabaseCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.DatabaseCreatePostRequest);
});
it('should have the property projectId (base name: "projectId")', function() {
// uncomment below and update the code to test the property projectId
//var instance = new LowCodeEngineApi.DatabaseCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,77 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.DatabaseMigrationCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('DatabaseMigrationCreatePostRequest', function() {
it('should create an instance of DatabaseMigrationCreatePostRequest', function() {
// uncomment below and update the code to test DatabaseMigrationCreatePostRequest
//var instance = new LowCodeEngineApi.DatabaseMigrationCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.DatabaseMigrationCreatePostRequest);
});
it('should have the property up (base name: "up")', function() {
// uncomment below and update the code to test the property up
//var instance = new LowCodeEngineApi.DatabaseMigrationCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property down (base name: "down")', function() {
// uncomment below and update the code to test the property down
//var instance = new LowCodeEngineApi.DatabaseMigrationCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property databaseId (base name: "databaseId")', function() {
// uncomment below and update the code to test the property databaseId
//var instance = new LowCodeEngineApi.DatabaseMigrationCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,95 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.DatabaseNode();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('DatabaseNode', function() {
it('should create an instance of DatabaseNode', function() {
// uncomment below and update the code to test DatabaseNode
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be.a(LowCodeEngineApi.DatabaseNode);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be();
});
it('should have the property host (base name: "host")', function() {
// uncomment below and update the code to test the property host
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be();
});
it('should have the property port (base name: "port")', function() {
// uncomment below and update the code to test the property port
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be();
});
it('should have the property username (base name: "username")', function() {
// uncomment below and update the code to test the property username
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be();
});
it('should have the property databases (base name: "databases")', function() {
// uncomment below and update the code to test the property databases
//var instance = new LowCodeEngineApi.DatabaseNode();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,83 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.DatabaseNodeCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('DatabaseNodeCreatePostRequest', function() {
it('should create an instance of DatabaseNodeCreatePostRequest', function() {
// uncomment below and update the code to test DatabaseNodeCreatePostRequest
//var instance = new LowCodeEngineApi.DatabaseNodeCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.DatabaseNodeCreatePostRequest);
});
it('should have the property host (base name: "host")', function() {
// uncomment below and update the code to test the property host
//var instance = new LowCodeEngineApi.DatabaseNodeCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property port (base name: "port")', function() {
// uncomment below and update the code to test the property port
//var instance = new LowCodeEngineApi.DatabaseNodeCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property username (base name: "username")', function() {
// uncomment below and update the code to test the property username
//var instance = new LowCodeEngineApi.DatabaseNodeCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instance = new LowCodeEngineApi.DatabaseNodeCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.DatabaseQueryDatabaseIdPostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('DatabaseQueryDatabaseIdPostRequest', function() {
it('should create an instance of DatabaseQueryDatabaseIdPostRequest', function() {
// uncomment below and update the code to test DatabaseQueryDatabaseIdPostRequest
//var instance = new LowCodeEngineApi.DatabaseQueryDatabaseIdPostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.DatabaseQueryDatabaseIdPostRequest);
});
it('should have the property query (base name: "query")', function() {
// uncomment below and update the code to test the property query
//var instance = new LowCodeEngineApi.DatabaseQueryDatabaseIdPostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,71 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Error();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Error', function() {
it('should create an instance of Error', function() {
// uncomment below and update the code to test Error
//var instance = new LowCodeEngineApi.Error();
//expect(instance).to.be.a(LowCodeEngineApi.Error);
});
it('should have the property error (base name: "error")', function() {
// uncomment below and update the code to test the property error
//var instance = new LowCodeEngineApi.Error();
//expect(instance).to.be();
});
it('should have the property details (base name: "details")', function() {
// uncomment below and update the code to test the property details
//var instance = new LowCodeEngineApi.Error();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,83 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Function();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Function', function() {
it('should create an instance of Function', function() {
// uncomment below and update the code to test Function
//var instance = new LowCodeEngineApi.Function();
//expect(instance).to.be.a(LowCodeEngineApi.Function);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.Function();
//expect(instance).to.be();
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instance = new LowCodeEngineApi.Function();
//expect(instance).to.be();
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.Function();
//expect(instance).to.be();
});
it('should have the property project (base name: "project")', function() {
// uncomment below and update the code to test the property project
//var instance = new LowCodeEngineApi.Function();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,71 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.FunctionsCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('FunctionsCreatePostRequest', function() {
it('should create an instance of FunctionsCreatePostRequest', function() {
// uncomment below and update the code to test FunctionsCreatePostRequest
//var instance = new LowCodeEngineApi.FunctionsCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.FunctionsCreatePostRequest);
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instance = new LowCodeEngineApi.FunctionsCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.FunctionsCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.FunctionsDeletePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('FunctionsDeletePostRequest', function() {
it('should create an instance of FunctionsDeletePostRequest', function() {
// uncomment below and update the code to test FunctionsDeletePostRequest
//var instance = new LowCodeEngineApi.FunctionsDeletePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.FunctionsDeletePostRequest);
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instance = new LowCodeEngineApi.FunctionsDeletePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,131 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Log();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Log', function() {
it('should create an instance of Log', function() {
// uncomment below and update the code to test Log
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be.a(LowCodeEngineApi.Log);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property traceId (base name: "traceId")', function() {
// uncomment below and update the code to test the property traceId
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property startTime (base name: "startTime")', function() {
// uncomment below and update the code to test the property startTime
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property endTime (base name: "endTime")', function() {
// uncomment below and update the code to test the property endTime
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property payload (base name: "payload")', function() {
// uncomment below and update the code to test the property payload
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property headers (base name: "headers")', function() {
// uncomment below and update the code to test the property headers
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property cookies (base name: "cookies")', function() {
// uncomment below and update the code to test the property cookies
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property url (base name: "url")', function() {
// uncomment below and update the code to test the property url
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property response (base name: "response")', function() {
// uncomment below and update the code to test the property response
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property content (base name: "content")', function() {
// uncomment below and update the code to test the property content
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property project (base name: "project")', function() {
// uncomment below and update the code to test the property project
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
it('should have the property query (base name: "query")', function() {
// uncomment below and update the code to test the property query
//var instance = new LowCodeEngineApi.Log();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,77 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.LogContentInner();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('LogContentInner', function() {
it('should create an instance of LogContentInner', function() {
// uncomment below and update the code to test LogContentInner
//var instance = new LowCodeEngineApi.LogContentInner();
//expect(instance).to.be.a(LowCodeEngineApi.LogContentInner);
});
it('should have the property content (base name: "content")', function() {
// uncomment below and update the code to test the property content
//var instance = new LowCodeEngineApi.LogContentInner();
//expect(instance).to.be();
});
it('should have the property type (base name: "type")', function() {
// uncomment below and update the code to test the property type
//var instance = new LowCodeEngineApi.LogContentInner();
//expect(instance).to.be();
});
it('should have the property timeStamp (base name: "timeStamp")', function() {
// uncomment below and update the code to test the property timeStamp
//var instance = new LowCodeEngineApi.LogContentInner();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,95 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('LoggerIdFindAllPostRequest', function() {
it('should create an instance of LoggerIdFindAllPostRequest', function() {
// uncomment below and update the code to test LoggerIdFindAllPostRequest
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.LoggerIdFindAllPostRequest);
});
it('should have the property traceId (base name: "traceId")', function() {
// uncomment below and update the code to test the property traceId
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be();
});
it('should have the property fromDate (base name: "fromDate")', function() {
// uncomment below and update the code to test the property fromDate
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be();
});
it('should have the property toDate (base name: "toDate")', function() {
// uncomment below and update the code to test the property toDate
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be();
});
it('should have the property url (base name: "url")', function() {
// uncomment below and update the code to test the property url
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be();
});
it('should have the property limit (base name: "limit")', function() {
// uncomment below and update the code to test the property limit
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be();
});
it('should have the property offset (base name: "offset")', function() {
// uncomment below and update the code to test the property offset
//var instance = new LowCodeEngineApi.LoggerIdFindAllPostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,83 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Migration();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Migration', function() {
it('should create an instance of Migration', function() {
// uncomment below and update the code to test Migration
//var instance = new LowCodeEngineApi.Migration();
//expect(instance).to.be.a(LowCodeEngineApi.Migration);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.Migration();
//expect(instance).to.be();
});
it('should have the property up (base name: "up")', function() {
// uncomment below and update the code to test the property up
//var instance = new LowCodeEngineApi.Migration();
//expect(instance).to.be();
});
it('should have the property down (base name: "down")', function() {
// uncomment below and update the code to test the property down
//var instance = new LowCodeEngineApi.Migration();
//expect(instance).to.be();
});
it('should have the property database (base name: "database")', function() {
// uncomment below and update the code to test the property database
//var instance = new LowCodeEngineApi.Migration();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,101 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Project();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Project', function() {
it('should create an instance of Project', function() {
// uncomment below and update the code to test Project
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be.a(LowCodeEngineApi.Project);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
it('should have the property apiTokens (base name: "apiTokens")', function() {
// uncomment below and update the code to test the property apiTokens
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
it('should have the property database (base name: "database")', function() {
// uncomment below and update the code to test the property database
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
it('should have the property queries (base name: "queries")', function() {
// uncomment below and update the code to test the property queries
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
it('should have the property functions (base name: "functions")', function() {
// uncomment below and update the code to test the property functions
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
it('should have the property settings (base name: "settings")', function() {
// uncomment below and update the code to test the property settings
//var instance = new LowCodeEngineApi.Project();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.ProjectCreatePutRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('ProjectCreatePutRequest', function() {
it('should create an instance of ProjectCreatePutRequest', function() {
// uncomment below and update the code to test ProjectCreatePutRequest
//var instance = new LowCodeEngineApi.ProjectCreatePutRequest();
//expect(instance).to.be.a(LowCodeEngineApi.ProjectCreatePutRequest);
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instance = new LowCodeEngineApi.ProjectCreatePutRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,83 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.ProjectSetting();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('ProjectSetting', function() {
it('should create an instance of ProjectSetting', function() {
// uncomment below and update the code to test ProjectSetting
//var instance = new LowCodeEngineApi.ProjectSetting();
//expect(instance).to.be.a(LowCodeEngineApi.ProjectSetting);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.ProjectSetting();
//expect(instance).to.be();
});
it('should have the property key (base name: "key")', function() {
// uncomment below and update the code to test the property key
//var instance = new LowCodeEngineApi.ProjectSetting();
//expect(instance).to.be();
});
it('should have the property value (base name: "value")', function() {
// uncomment below and update the code to test the property value
//var instance = new LowCodeEngineApi.ProjectSetting();
//expect(instance).to.be();
});
it('should have the property project (base name: "project")', function() {
// uncomment below and update the code to test the property project
//var instance = new LowCodeEngineApi.ProjectSetting();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,71 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.ProjectSettingsCreatePutRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('ProjectSettingsCreatePutRequest', function() {
it('should create an instance of ProjectSettingsCreatePutRequest', function() {
// uncomment below and update the code to test ProjectSettingsCreatePutRequest
//var instance = new LowCodeEngineApi.ProjectSettingsCreatePutRequest();
//expect(instance).to.be.a(LowCodeEngineApi.ProjectSettingsCreatePutRequest);
});
it('should have the property key (base name: "key")', function() {
// uncomment below and update the code to test the property key
//var instance = new LowCodeEngineApi.ProjectSettingsCreatePutRequest();
//expect(instance).to.be();
});
it('should have the property value (base name: "value")', function() {
// uncomment below and update the code to test the property value
//var instance = new LowCodeEngineApi.ProjectSettingsCreatePutRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,95 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Query();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Query', function() {
it('should create an instance of Query', function() {
// uncomment below and update the code to test Query
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be.a(LowCodeEngineApi.Query);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be();
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be();
});
it('should have the property isActive (base name: "isActive")', function() {
// uncomment below and update the code to test the property isActive
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be();
});
it('should have the property isCommand (base name: "isCommand")', function() {
// uncomment below and update the code to test the property isCommand
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be();
});
it('should have the property project (base name: "project")', function() {
// uncomment below and update the code to test the property project
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be();
});
it('should have the property logs (base name: "logs")', function() {
// uncomment below and update the code to test the property logs
//var instance = new LowCodeEngineApi.Query();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.QueryCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('QueryCreatePostRequest', function() {
it('should create an instance of QueryCreatePostRequest', function() {
// uncomment below and update the code to test QueryCreatePostRequest
//var instance = new LowCodeEngineApi.QueryCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.QueryCreatePostRequest);
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.QueryCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,65 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.QueryUpdateIdPostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('QueryUpdateIdPostRequest', function() {
it('should create an instance of QueryUpdateIdPostRequest', function() {
// uncomment below and update the code to test QueryUpdateIdPostRequest
//var instance = new LowCodeEngineApi.QueryUpdateIdPostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.QueryUpdateIdPostRequest);
});
it('should have the property source (base name: "source")', function() {
// uncomment below and update the code to test the property source
//var instance = new LowCodeEngineApi.QueryUpdateIdPostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,95 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.RedisNode();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('RedisNode', function() {
it('should create an instance of RedisNode', function() {
// uncomment below and update the code to test RedisNode
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be.a(LowCodeEngineApi.RedisNode);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be();
});
it('should have the property host (base name: "host")', function() {
// uncomment below and update the code to test the property host
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be();
});
it('should have the property port (base name: "port")', function() {
// uncomment below and update the code to test the property port
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be();
});
it('should have the property user (base name: "user")', function() {
// uncomment below and update the code to test the property user
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be();
});
it('should have the property projects (base name: "projects")', function() {
// uncomment below and update the code to test the property projects
//var instance = new LowCodeEngineApi.RedisNode();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,83 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.RedisNodeCreatePostRequest();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('RedisNodeCreatePostRequest', function() {
it('should create an instance of RedisNodeCreatePostRequest', function() {
// uncomment below and update the code to test RedisNodeCreatePostRequest
//var instance = new LowCodeEngineApi.RedisNodeCreatePostRequest();
//expect(instance).to.be.a(LowCodeEngineApi.RedisNodeCreatePostRequest);
});
it('should have the property host (base name: "host")', function() {
// uncomment below and update the code to test the property host
//var instance = new LowCodeEngineApi.RedisNodeCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property port (base name: "port")', function() {
// uncomment below and update the code to test the property port
//var instance = new LowCodeEngineApi.RedisNodeCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property user (base name: "user")', function() {
// uncomment below and update the code to test the property user
//var instance = new LowCodeEngineApi.RedisNodeCreatePostRequest();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instance = new LowCodeEngineApi.RedisNodeCreatePostRequest();
//expect(instance).to.be();
});
});
}));

View File

@ -0,0 +1,83 @@
/**
* Low-Code Engine API
* API documentation for the Low-Code Engine platform that provides query execution, database management, and project administration capabilities.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', process.cwd()+'/src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require(process.cwd()+'/src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.LowCodeEngineApi);
}
}(this, function(expect, LowCodeEngineApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new LowCodeEngineApi.Token();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('Token', function() {
it('should create an instance of Token', function() {
// uncomment below and update the code to test Token
//var instance = new LowCodeEngineApi.Token();
//expect(instance).to.be.a(LowCodeEngineApi.Token);
});
it('should have the property token (base name: "token")', function() {
// uncomment below and update the code to test the property token
//var instance = new LowCodeEngineApi.Token();
//expect(instance).to.be();
});
it('should have the property isActive (base name: "isActive")', function() {
// uncomment below and update the code to test the property isActive
//var instance = new LowCodeEngineApi.Token();
//expect(instance).to.be();
});
it('should have the property isAdmin (base name: "isAdmin")', function() {
// uncomment below and update the code to test the property isAdmin
//var instance = new LowCodeEngineApi.Token();
//expect(instance).to.be();
});
it('should have the property project (base name: "project")', function() {
// uncomment below and update the code to test the property project
//var instance = new LowCodeEngineApi.Token();
//expect(instance).to.be();
});
});
}));