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.
Files changed (103) hide show
  1. package/README.md +163 -0
  2. package/docs/AddIntentBody.md +10 -0
  3. package/docs/AnswersApi.md +160 -0
  4. package/docs/CategoriesApi.md +58 -0
  5. package/docs/CategoryBody.md +8 -0
  6. package/docs/CurateBody.md +9 -0
  7. package/docs/CuratedDataApi.md +59 -0
  8. package/docs/DelAnswerBody.md +6 -0
  9. package/docs/DelQuestionBody.md +7 -0
  10. package/docs/DelUserDataBody.md +7 -0
  11. package/docs/EditAnswerBody.md +7 -0
  12. package/docs/ExploreFilesBody.md +6 -0
  13. package/docs/ExploreUploadBody.md +6 -0
  14. package/docs/FdelBody.md +7 -0
  15. package/docs/FindAnswerIdBody.md +6 -0
  16. package/docs/FlagBody.md +7 -0
  17. package/docs/GodocumentBody.md +9 -0
  18. package/docs/GomaistroBody.md +7 -0
  19. package/docs/GomaistrotokensBody.md +7 -0
  20. package/docs/GooverBody.md +9 -0
  21. package/docs/GoperfBody.md +7 -0
  22. package/docs/GosemanticBody.md +9 -0
  23. package/docs/GotokensBody.md +7 -0
  24. package/docs/GovernanceApi.md +410 -0
  25. package/docs/IntentsApi.md +364 -0
  26. package/docs/LoadUserResponseBody.md +7 -0
  27. package/docs/MAIstroApi.md +265 -0
  28. package/docs/MaistroFilesBody.md +8 -0
  29. package/docs/MaistroOCRBody.md +6 -0
  30. package/docs/MergeBody.md +7 -0
  31. package/docs/QuestionsApi.md +58 -0
  32. package/docs/RenBody.md +7 -0
  33. package/docs/UnmergeBody.md +6 -0
  34. package/git_push.sh +52 -0
  35. package/mocha.opts +1 -0
  36. package/package.json +55 -0
  37. package/src/ApiClient.js +585 -0
  38. package/src/api/AnswersApi.js +179 -0
  39. package/src/api/CategoriesApi.js +85 -0
  40. package/src/api/CuratedDataApi.js +82 -0
  41. package/src/api/GovernanceApi.js +408 -0
  42. package/src/api/IntentsApi.js +367 -0
  43. package/src/api/MAIstroApi.js +262 -0
  44. package/src/api/QuestionsApi.js +85 -0
  45. package/src/index.js +279 -0
  46. package/src/model/AddIntentBody.js +91 -0
  47. package/src/model/CategoryBody.js +71 -0
  48. package/src/model/CurateBody.js +75 -0
  49. package/src/model/DelAnswerBody.js +55 -0
  50. package/src/model/DelQuestionBody.js +64 -0
  51. package/src/model/DelUserDataBody.js +62 -0
  52. package/src/model/EditAnswerBody.js +64 -0
  53. package/src/model/ExploreFilesBody.js +55 -0
  54. package/src/model/ExploreUploadBody.js +53 -0
  55. package/src/model/FdelBody.js +62 -0
  56. package/src/model/FindAnswerIdBody.js +55 -0
  57. package/src/model/FlagBody.js +61 -0
  58. package/src/model/GodocumentBody.js +76 -0
  59. package/src/model/GomaistroBody.js +62 -0
  60. package/src/model/GomaistrotokensBody.js +62 -0
  61. package/src/model/GooverBody.js +76 -0
  62. package/src/model/GoperfBody.js +62 -0
  63. package/src/model/GosemanticBody.js +76 -0
  64. package/src/model/GotokensBody.js +62 -0
  65. package/src/model/LoadUserResponseBody.js +64 -0
  66. package/src/model/MaistroFilesBody.js +69 -0
  67. package/src/model/MaistroOCRBody.js +53 -0
  68. package/src/model/MergeBody.js +64 -0
  69. package/src/model/RenBody.js +62 -0
  70. package/src/model/UnmergeBody.js +53 -0
  71. package/test/api/AnswersApi.spec.js +95 -0
  72. package/test/api/CategoriesApi.spec.js +59 -0
  73. package/test/api/CuratedDataApi.spec.js +60 -0
  74. package/test/api/GovernanceApi.spec.js +185 -0
  75. package/test/api/IntentsApi.spec.js +167 -0
  76. package/test/api/MAIstroApi.spec.js +134 -0
  77. package/test/api/QuestionsApi.spec.js +59 -0
  78. package/test/assert-equals.js +81 -0
  79. package/test/model/AddIntentBody.spec.js +76 -0
  80. package/test/model/CategoryBody.spec.js +64 -0
  81. package/test/model/CurateBody.spec.js +70 -0
  82. package/test/model/DelAnswerBody.spec.js +52 -0
  83. package/test/model/DelQuestionBody.spec.js +58 -0
  84. package/test/model/DelUserDataBody.spec.js +58 -0
  85. package/test/model/EditAnswerBody.spec.js +58 -0
  86. package/test/model/ExploreFilesBody.spec.js +52 -0
  87. package/test/model/ExploreUploadBody.spec.js +52 -0
  88. package/test/model/FdelBody.spec.js +58 -0
  89. package/test/model/FindAnswerIdBody.spec.js +52 -0
  90. package/test/model/FlagBody.spec.js +58 -0
  91. package/test/model/GodocumentBody.spec.js +70 -0
  92. package/test/model/GomaistroBody.spec.js +58 -0
  93. package/test/model/GomaistrotokensBody.spec.js +58 -0
  94. package/test/model/GooverBody.spec.js +70 -0
  95. package/test/model/GoperfBody.spec.js +58 -0
  96. package/test/model/GosemanticBody.spec.js +70 -0
  97. package/test/model/GotokensBody.spec.js +58 -0
  98. package/test/model/LoadUserResponseBody.spec.js +58 -0
  99. package/test/model/MaistroFilesBody.spec.js +64 -0
  100. package/test/model/MaistroOCRBody.spec.js +52 -0
  101. package/test/model/MergeBody.spec.js +58 -0
  102. package/test/model/RenBody.spec.js +58 -0
  103. package/test/model/UnmergeBody.spec.js +52 -0
@@ -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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The EditAnswerBody model module.
20
+ * @module model/EditAnswerBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class EditAnswerBody {
24
+ /**
25
+ * Constructs a new <code>EditAnswerBody</code>.
26
+ * @alias module:model/EditAnswerBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>EditAnswerBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/EditAnswerBody} obj Optional instance to populate.
37
+ * @return {module:model/EditAnswerBody} The populated <code>EditAnswerBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new EditAnswerBody();
42
+ if (data.hasOwnProperty('timestamp'))
43
+ obj.timestamp = ApiClient.convertToType(data['timestamp'], 'String');
44
+ if (data.hasOwnProperty('a'))
45
+ obj.a = ApiClient.convertToType(data['a'], 'String');
46
+ }
47
+ return obj;
48
+ }
49
+ }
50
+
51
+ /**
52
+ * The timestamp of the answer
53
+ * @member {String} timestamp
54
+ * @default ''
55
+ */
56
+ EditAnswerBody.prototype.timestamp = '';
57
+
58
+ /**
59
+ * The edited answer
60
+ * @member {String} a
61
+ * @default ''
62
+ */
63
+ EditAnswerBody.prototype.a = '';
64
+
@@ -0,0 +1,55 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The ExploreFilesBody model module.
20
+ * @module model/ExploreFilesBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class ExploreFilesBody {
24
+ /**
25
+ * Constructs a new <code>ExploreFilesBody</code>.
26
+ * @alias module:model/ExploreFilesBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>ExploreFilesBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/ExploreFilesBody} obj Optional instance to populate.
37
+ * @return {module:model/ExploreFilesBody} The populated <code>ExploreFilesBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new ExploreFilesBody();
42
+ if (data.hasOwnProperty('file'))
43
+ obj.file = ApiClient.convertToType(data['file'], 'String');
44
+ }
45
+ return obj;
46
+ }
47
+ }
48
+
49
+ /**
50
+ * Optional exact filename to check for
51
+ * @member {String} file
52
+ * @default ''
53
+ */
54
+ ExploreFilesBody.prototype.file = '';
55
+
@@ -0,0 +1,53 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The ExploreUploadBody model module.
20
+ * @module model/ExploreUploadBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class ExploreUploadBody {
24
+ /**
25
+ * Constructs a new <code>ExploreUploadBody</code>.
26
+ * @alias module:model/ExploreUploadBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>ExploreUploadBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/ExploreUploadBody} obj Optional instance to populate.
37
+ * @return {module:model/ExploreUploadBody} The populated <code>ExploreUploadBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new ExploreUploadBody();
42
+ if (data.hasOwnProperty('file'))
43
+ obj.file = ApiClient.convertToType(data['file'], 'Blob');
44
+ }
45
+ return obj;
46
+ }
47
+ }
48
+
49
+ /**
50
+ * @member {Blob} file
51
+ */
52
+ ExploreUploadBody.prototype.file = undefined;
53
+
@@ -0,0 +1,62 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The FdelBody model module.
20
+ * @module model/FdelBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class FdelBody {
24
+ /**
25
+ * Constructs a new <code>FdelBody</code>.
26
+ * @alias module:model/FdelBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>FdelBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/FdelBody} obj Optional instance to populate.
37
+ * @return {module:model/FdelBody} The populated <code>FdelBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new FdelBody();
42
+ if (data.hasOwnProperty('name'))
43
+ obj.name = ApiClient.convertToType(data['name'], 'String');
44
+ if (data.hasOwnProperty('names'))
45
+ obj.names = ApiClient.convertToType(data['names'], ['String']);
46
+ }
47
+ return obj;
48
+ }
49
+ }
50
+
51
+ /**
52
+ * Single filename to delete
53
+ * @member {String} name
54
+ */
55
+ FdelBody.prototype.name = undefined;
56
+
57
+ /**
58
+ * Array of filenames to delete (max 100)
59
+ * @member {Array.<String>} names
60
+ */
61
+ FdelBody.prototype.names = undefined;
62
+
@@ -0,0 +1,55 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The FindAnswerIdBody model module.
20
+ * @module model/FindAnswerIdBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class FindAnswerIdBody {
24
+ /**
25
+ * Constructs a new <code>FindAnswerIdBody</code>.
26
+ * @alias module:model/FindAnswerIdBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>FindAnswerIdBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/FindAnswerIdBody} obj Optional instance to populate.
37
+ * @return {module:model/FindAnswerIdBody} The populated <code>FindAnswerIdBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new FindAnswerIdBody();
42
+ if (data.hasOwnProperty('answer'))
43
+ obj.answer = ApiClient.convertToType(data['answer'], 'String');
44
+ }
45
+ return obj;
46
+ }
47
+ }
48
+
49
+ /**
50
+ * The text of the answer
51
+ * @member {String} answer
52
+ * @default ''
53
+ */
54
+ FindAnswerIdBody.prototype.answer = '';
55
+
@@ -0,0 +1,61 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The FlagBody model module.
20
+ * @module model/FlagBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class FlagBody {
24
+ /**
25
+ * Constructs a new <code>FlagBody</code>.
26
+ * @alias module:model/FlagBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>FlagBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/FlagBody} obj Optional instance to populate.
37
+ * @return {module:model/FlagBody} The populated <code>FlagBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new FlagBody();
42
+ if (data.hasOwnProperty('rows'))
43
+ obj.rows = ApiClient.convertToType(data['rows'], ['String']);
44
+ if (data.hasOwnProperty('flag'))
45
+ obj.flag = ApiClient.convertToType(data['flag'], 'Number');
46
+ }
47
+ return obj;
48
+ }
49
+ }
50
+
51
+ /**
52
+ * @member {Array.<String>} rows
53
+ */
54
+ FlagBody.prototype.rows = undefined;
55
+
56
+ /**
57
+ * Set the flag. 1 is flagged, 0 is not flagged.
58
+ * @member {Number} flag
59
+ */
60
+ FlagBody.prototype.flag = undefined;
61
+
@@ -0,0 +1,76 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The GodocumentBody model module.
20
+ * @module model/GodocumentBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class GodocumentBody {
24
+ /**
25
+ * Constructs a new <code>GodocumentBody</code>.
26
+ * @alias module:model/GodocumentBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>GodocumentBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/GodocumentBody} obj Optional instance to populate.
37
+ * @return {module:model/GodocumentBody} The populated <code>GodocumentBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new GodocumentBody();
42
+ if (data.hasOwnProperty('startDate'))
43
+ obj.startDate = ApiClient.convertToType(data['startDate'], 'String');
44
+ if (data.hasOwnProperty('endDate'))
45
+ obj.endDate = ApiClient.convertToType(data['endDate'], 'String');
46
+ if (data.hasOwnProperty('intent'))
47
+ obj.intent = ApiClient.convertToType(data['intent'], 'String');
48
+ if (data.hasOwnProperty('category'))
49
+ obj.category = ApiClient.convertToType(data['category'], 'String');
50
+ }
51
+ return obj;
52
+ }
53
+ }
54
+
55
+ /**
56
+ * UTC date
57
+ * @member {String} startDate
58
+ */
59
+ GodocumentBody.prototype.startDate = undefined;
60
+
61
+ /**
62
+ * UTC date
63
+ * @member {String} endDate
64
+ */
65
+ GodocumentBody.prototype.endDate = undefined;
66
+
67
+ /**
68
+ * @member {String} intent
69
+ */
70
+ GodocumentBody.prototype.intent = undefined;
71
+
72
+ /**
73
+ * @member {String} category
74
+ */
75
+ GodocumentBody.prototype.category = undefined;
76
+
@@ -0,0 +1,62 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The GomaistroBody model module.
20
+ * @module model/GomaistroBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class GomaistroBody {
24
+ /**
25
+ * Constructs a new <code>GomaistroBody</code>.
26
+ * @alias module:model/GomaistroBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>GomaistroBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/GomaistroBody} obj Optional instance to populate.
37
+ * @return {module:model/GomaistroBody} The populated <code>GomaistroBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new GomaistroBody();
42
+ if (data.hasOwnProperty('startDate'))
43
+ obj.startDate = ApiClient.convertToType(data['startDate'], 'String');
44
+ if (data.hasOwnProperty('endDate'))
45
+ obj.endDate = ApiClient.convertToType(data['endDate'], 'String');
46
+ }
47
+ return obj;
48
+ }
49
+ }
50
+
51
+ /**
52
+ * UTC date
53
+ * @member {String} startDate
54
+ */
55
+ GomaistroBody.prototype.startDate = undefined;
56
+
57
+ /**
58
+ * UTC date
59
+ * @member {String} endDate
60
+ */
61
+ GomaistroBody.prototype.endDate = undefined;
62
+
@@ -0,0 +1,62 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The GomaistrotokensBody model module.
20
+ * @module model/GomaistrotokensBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class GomaistrotokensBody {
24
+ /**
25
+ * Constructs a new <code>GomaistrotokensBody</code>.
26
+ * @alias module:model/GomaistrotokensBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>GomaistrotokensBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/GomaistrotokensBody} obj Optional instance to populate.
37
+ * @return {module:model/GomaistrotokensBody} The populated <code>GomaistrotokensBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new GomaistrotokensBody();
42
+ if (data.hasOwnProperty('startDate'))
43
+ obj.startDate = ApiClient.convertToType(data['startDate'], 'String');
44
+ if (data.hasOwnProperty('endDate'))
45
+ obj.endDate = ApiClient.convertToType(data['endDate'], 'String');
46
+ }
47
+ return obj;
48
+ }
49
+ }
50
+
51
+ /**
52
+ * UTC date
53
+ * @member {String} startDate
54
+ */
55
+ GomaistrotokensBody.prototype.startDate = undefined;
56
+
57
+ /**
58
+ * UTC date
59
+ * @member {String} endDate
60
+ */
61
+ GomaistrotokensBody.prototype.endDate = undefined;
62
+
@@ -0,0 +1,76 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The GooverBody model module.
20
+ * @module model/GooverBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class GooverBody {
24
+ /**
25
+ * Constructs a new <code>GooverBody</code>.
26
+ * @alias module:model/GooverBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>GooverBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/GooverBody} obj Optional instance to populate.
37
+ * @return {module:model/GooverBody} The populated <code>GooverBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new GooverBody();
42
+ if (data.hasOwnProperty('startDate'))
43
+ obj.startDate = ApiClient.convertToType(data['startDate'], 'String');
44
+ if (data.hasOwnProperty('endDate'))
45
+ obj.endDate = ApiClient.convertToType(data['endDate'], 'String');
46
+ if (data.hasOwnProperty('intent'))
47
+ obj.intent = ApiClient.convertToType(data['intent'], 'String');
48
+ if (data.hasOwnProperty('category'))
49
+ obj.category = ApiClient.convertToType(data['category'], 'String');
50
+ }
51
+ return obj;
52
+ }
53
+ }
54
+
55
+ /**
56
+ * UTC date
57
+ * @member {String} startDate
58
+ */
59
+ GooverBody.prototype.startDate = undefined;
60
+
61
+ /**
62
+ * UTC date
63
+ * @member {String} endDate
64
+ */
65
+ GooverBody.prototype.endDate = undefined;
66
+
67
+ /**
68
+ * @member {String} intent
69
+ */
70
+ GooverBody.prototype.intent = undefined;
71
+
72
+ /**
73
+ * @member {String} category
74
+ */
75
+ GooverBody.prototype.category = undefined;
76
+
@@ -0,0 +1,62 @@
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
+ import ApiClient from '../ApiClient';
17
+
18
+ /**
19
+ * The GoperfBody model module.
20
+ * @module model/GoperfBody
21
+ * @version 1.0.0
22
+ */
23
+ export default class GoperfBody {
24
+ /**
25
+ * Constructs a new <code>GoperfBody</code>.
26
+ * @alias module:model/GoperfBody
27
+ * @class
28
+ */
29
+ constructor() {
30
+ }
31
+
32
+ /**
33
+ * Constructs a <code>GoperfBody</code> from a plain JavaScript object, optionally creating a new instance.
34
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
35
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
36
+ * @param {module:model/GoperfBody} obj Optional instance to populate.
37
+ * @return {module:model/GoperfBody} The populated <code>GoperfBody</code> instance.
38
+ */
39
+ static constructFromObject(data, obj) {
40
+ if (data) {
41
+ obj = obj || new GoperfBody();
42
+ if (data.hasOwnProperty('startDate'))
43
+ obj.startDate = ApiClient.convertToType(data['startDate'], 'String');
44
+ if (data.hasOwnProperty('endDate'))
45
+ obj.endDate = ApiClient.convertToType(data['endDate'], 'String');
46
+ }
47
+ return obj;
48
+ }
49
+ }
50
+
51
+ /**
52
+ * UTC date
53
+ * @member {String} startDate
54
+ */
55
+ GoperfBody.prototype.startDate = undefined;
56
+
57
+ /**
58
+ * UTC date
59
+ * @member {String} endDate
60
+ */
61
+ GoperfBody.prototype.endDate = undefined;
62
+