neuralseekui 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +163 -0
- package/docs/AddIntentBody.md +10 -0
- package/docs/AnswersApi.md +160 -0
- package/docs/CategoriesApi.md +58 -0
- package/docs/CategoryBody.md +8 -0
- package/docs/CurateBody.md +9 -0
- package/docs/CuratedDataApi.md +59 -0
- package/docs/DelAnswerBody.md +6 -0
- package/docs/DelQuestionBody.md +7 -0
- package/docs/DelUserDataBody.md +7 -0
- package/docs/EditAnswerBody.md +7 -0
- package/docs/ExploreFilesBody.md +6 -0
- package/docs/ExploreUploadBody.md +6 -0
- package/docs/FdelBody.md +7 -0
- package/docs/FindAnswerIdBody.md +6 -0
- package/docs/FlagBody.md +7 -0
- package/docs/GodocumentBody.md +9 -0
- package/docs/GomaistroBody.md +7 -0
- package/docs/GomaistrotokensBody.md +7 -0
- package/docs/GooverBody.md +9 -0
- package/docs/GoperfBody.md +7 -0
- package/docs/GosemanticBody.md +9 -0
- package/docs/GotokensBody.md +7 -0
- package/docs/GovernanceApi.md +410 -0
- package/docs/IntentsApi.md +364 -0
- package/docs/LoadUserResponseBody.md +7 -0
- package/docs/MAIstroApi.md +265 -0
- package/docs/MaistroFilesBody.md +8 -0
- package/docs/MaistroOCRBody.md +6 -0
- package/docs/MergeBody.md +7 -0
- package/docs/QuestionsApi.md +58 -0
- package/docs/RenBody.md +7 -0
- package/docs/UnmergeBody.md +6 -0
- package/git_push.sh +52 -0
- package/mocha.opts +1 -0
- package/package.json +55 -0
- package/src/ApiClient.js +585 -0
- package/src/api/AnswersApi.js +179 -0
- package/src/api/CategoriesApi.js +85 -0
- package/src/api/CuratedDataApi.js +82 -0
- package/src/api/GovernanceApi.js +408 -0
- package/src/api/IntentsApi.js +367 -0
- package/src/api/MAIstroApi.js +262 -0
- package/src/api/QuestionsApi.js +85 -0
- package/src/index.js +279 -0
- package/src/model/AddIntentBody.js +91 -0
- package/src/model/CategoryBody.js +71 -0
- package/src/model/CurateBody.js +75 -0
- package/src/model/DelAnswerBody.js +55 -0
- package/src/model/DelQuestionBody.js +64 -0
- package/src/model/DelUserDataBody.js +62 -0
- package/src/model/EditAnswerBody.js +64 -0
- package/src/model/ExploreFilesBody.js +55 -0
- package/src/model/ExploreUploadBody.js +53 -0
- package/src/model/FdelBody.js +62 -0
- package/src/model/FindAnswerIdBody.js +55 -0
- package/src/model/FlagBody.js +61 -0
- package/src/model/GodocumentBody.js +76 -0
- package/src/model/GomaistroBody.js +62 -0
- package/src/model/GomaistrotokensBody.js +62 -0
- package/src/model/GooverBody.js +76 -0
- package/src/model/GoperfBody.js +62 -0
- package/src/model/GosemanticBody.js +76 -0
- package/src/model/GotokensBody.js +62 -0
- package/src/model/LoadUserResponseBody.js +64 -0
- package/src/model/MaistroFilesBody.js +69 -0
- package/src/model/MaistroOCRBody.js +53 -0
- package/src/model/MergeBody.js +64 -0
- package/src/model/RenBody.js +62 -0
- package/src/model/UnmergeBody.js +53 -0
- package/test/api/AnswersApi.spec.js +95 -0
- package/test/api/CategoriesApi.spec.js +59 -0
- package/test/api/CuratedDataApi.spec.js +60 -0
- package/test/api/GovernanceApi.spec.js +185 -0
- package/test/api/IntentsApi.spec.js +167 -0
- package/test/api/MAIstroApi.spec.js +134 -0
- package/test/api/QuestionsApi.spec.js +59 -0
- package/test/assert-equals.js +81 -0
- package/test/model/AddIntentBody.spec.js +76 -0
- package/test/model/CategoryBody.spec.js +64 -0
- package/test/model/CurateBody.spec.js +70 -0
- package/test/model/DelAnswerBody.spec.js +52 -0
- package/test/model/DelQuestionBody.spec.js +58 -0
- package/test/model/DelUserDataBody.spec.js +58 -0
- package/test/model/EditAnswerBody.spec.js +58 -0
- package/test/model/ExploreFilesBody.spec.js +52 -0
- package/test/model/ExploreUploadBody.spec.js +52 -0
- package/test/model/FdelBody.spec.js +58 -0
- package/test/model/FindAnswerIdBody.spec.js +52 -0
- package/test/model/FlagBody.spec.js +58 -0
- package/test/model/GodocumentBody.spec.js +70 -0
- package/test/model/GomaistroBody.spec.js +58 -0
- package/test/model/GomaistrotokensBody.spec.js +58 -0
- package/test/model/GooverBody.spec.js +70 -0
- package/test/model/GoperfBody.spec.js +58 -0
- package/test/model/GosemanticBody.spec.js +70 -0
- package/test/model/GotokensBody.spec.js +58 -0
- package/test/model/LoadUserResponseBody.spec.js +58 -0
- package/test/model/MaistroFilesBody.spec.js +64 -0
- package/test/model/MaistroOCRBody.spec.js +52 -0
- package/test/model/MergeBody.spec.js +58 -0
- package/test/model/RenBody.spec.js +58 -0
- package/test/model/UnmergeBody.spec.js +52 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('FlagBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.FlagBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of FlagBody', function() {
|
|
39
|
+
// TODO: update the code to test FlagBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.FlagBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property rows (base name: "rows")', function() {
|
|
44
|
+
// TODO: update the code to test the property rows
|
|
45
|
+
expect(instance).to.have.property('rows');
|
|
46
|
+
// expect(instance.rows).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property flag (base name: "flag")', function() {
|
|
50
|
+
// TODO: update the code to test the property flag
|
|
51
|
+
expect(instance).to.have.property('flag');
|
|
52
|
+
// expect(instance.flag).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GodocumentBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GodocumentBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GodocumentBody', function() {
|
|
39
|
+
// TODO: update the code to test GodocumentBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GodocumentBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
56
|
+
// TODO: update the code to test the property intent
|
|
57
|
+
expect(instance).to.have.property('intent');
|
|
58
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property category (base name: "category")', function() {
|
|
62
|
+
// TODO: update the code to test the property category
|
|
63
|
+
expect(instance).to.have.property('category');
|
|
64
|
+
// expect(instance.category).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GomaistroBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GomaistroBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GomaistroBody', function() {
|
|
39
|
+
// TODO: update the code to test GomaistroBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GomaistroBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GomaistrotokensBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GomaistrotokensBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GomaistrotokensBody', function() {
|
|
39
|
+
// TODO: update the code to test GomaistrotokensBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GomaistrotokensBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GooverBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GooverBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GooverBody', function() {
|
|
39
|
+
// TODO: update the code to test GooverBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GooverBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
56
|
+
// TODO: update the code to test the property intent
|
|
57
|
+
expect(instance).to.have.property('intent');
|
|
58
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property category (base name: "category")', function() {
|
|
62
|
+
// TODO: update the code to test the property category
|
|
63
|
+
expect(instance).to.have.property('category');
|
|
64
|
+
// expect(instance.category).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GoperfBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GoperfBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GoperfBody', function() {
|
|
39
|
+
// TODO: update the code to test GoperfBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GoperfBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GosemanticBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GosemanticBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GosemanticBody', function() {
|
|
39
|
+
// TODO: update the code to test GosemanticBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GosemanticBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
56
|
+
// TODO: update the code to test the property intent
|
|
57
|
+
expect(instance).to.have.property('intent');
|
|
58
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it('should have the property category (base name: "category")', function() {
|
|
62
|
+
// TODO: update the code to test the property category
|
|
63
|
+
expect(instance).to.have.property('category');
|
|
64
|
+
// expect(instance.category).to.be(expectedValueLiteral);
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('GotokensBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.GotokensBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of GotokensBody', function() {
|
|
39
|
+
// TODO: update the code to test GotokensBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.GotokensBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property startDate (base name: "startDate")', function() {
|
|
44
|
+
// TODO: update the code to test the property startDate
|
|
45
|
+
expect(instance).to.have.property('startDate');
|
|
46
|
+
// expect(instance.startDate).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property endDate (base name: "endDate")', function() {
|
|
50
|
+
// TODO: update the code to test the property endDate
|
|
51
|
+
expect(instance).to.have.property('endDate');
|
|
52
|
+
// expect(instance.endDate).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('LoadUserResponseBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.LoadUserResponseBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of LoadUserResponseBody', function() {
|
|
39
|
+
// TODO: update the code to test LoadUserResponseBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.LoadUserResponseBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property intent (base name: "intent")', function() {
|
|
44
|
+
// TODO: update the code to test the property intent
|
|
45
|
+
expect(instance).to.have.property('intent');
|
|
46
|
+
// expect(instance.intent).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property examples (base name: "examples")', function() {
|
|
50
|
+
// TODO: update the code to test the property examples
|
|
51
|
+
expect(instance).to.have.property('examples');
|
|
52
|
+
// expect(instance.examples).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
}));
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('MaistroFilesBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.MaistroFilesBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of MaistroFilesBody', function() {
|
|
39
|
+
// TODO: update the code to test MaistroFilesBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.MaistroFilesBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property search (base name: "search")', function() {
|
|
44
|
+
// TODO: update the code to test the property search
|
|
45
|
+
expect(instance).to.have.property('search');
|
|
46
|
+
// expect(instance.search).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('should have the property page (base name: "page")', function() {
|
|
50
|
+
// TODO: update the code to test the property page
|
|
51
|
+
expect(instance).to.have.property('page');
|
|
52
|
+
// expect(instance.page).to.be(expectedValueLiteral);
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
it('should have the property limit (base name: "limit")', function() {
|
|
56
|
+
// TODO: update the code to test the property limit
|
|
57
|
+
expect(instance).to.have.property('limit');
|
|
58
|
+
// expect(instance.limit).to.be(expectedValueLiteral);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
}));
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* NeuralSeek UI
|
|
3
|
+
* NeuralSeek - The business LLM accelerator
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: support@NeuralSeek.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
*
|
|
11
|
+
* Swagger Codegen version: 3.0.78
|
|
12
|
+
*
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
(function(root, factory) {
|
|
17
|
+
if (typeof define === 'function' && define.amd) {
|
|
18
|
+
// AMD.
|
|
19
|
+
define(['expect.js', '../../src/index'], factory);
|
|
20
|
+
} else if (typeof module === 'object' && module.exports) {
|
|
21
|
+
// CommonJS-like environments that support module.exports, like Node.
|
|
22
|
+
factory(require('expect.js'), require('../../src/index'));
|
|
23
|
+
} else {
|
|
24
|
+
// Browser globals (root is window)
|
|
25
|
+
factory(root.expect, root.NeuralSeekUi);
|
|
26
|
+
}
|
|
27
|
+
}(this, function(expect, NeuralSeekUi) {
|
|
28
|
+
'use strict';
|
|
29
|
+
|
|
30
|
+
var instance;
|
|
31
|
+
|
|
32
|
+
describe('(package)', function() {
|
|
33
|
+
describe('MaistroOCRBody', function() {
|
|
34
|
+
beforeEach(function() {
|
|
35
|
+
instance = new NeuralSeekUi.MaistroOCRBody();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('should create an instance of MaistroOCRBody', function() {
|
|
39
|
+
// TODO: update the code to test MaistroOCRBody
|
|
40
|
+
expect(instance).to.be.a(NeuralSeekUi.MaistroOCRBody);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it('should have the property file (base name: "file")', function() {
|
|
44
|
+
// TODO: update the code to test the property file
|
|
45
|
+
expect(instance).to.have.property('file');
|
|
46
|
+
// expect(instance.file).to.be(expectedValueLiteral);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
}));
|