@cirrobio/api-client 0.9.4 → 0.10.1
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 +1 -1
- package/dist/apis/FeedApi.d.ts +148 -0
- package/dist/apis/FeedApi.js +414 -0
- package/dist/apis/MetadataApi.d.ts +14 -0
- package/dist/apis/MetadataApi.js +40 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/apis/FeedApi.d.ts +148 -0
- package/dist/esm/apis/FeedApi.js +410 -0
- package/dist/esm/apis/MetadataApi.d.ts +14 -0
- package/dist/esm/apis/MetadataApi.js +40 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/Discussion.d.ts +87 -0
- package/dist/esm/models/Discussion.js +72 -0
- package/dist/esm/models/DiscussionInput.d.ts +57 -0
- package/dist/esm/models/DiscussionInput.js +57 -0
- package/dist/esm/models/DiscussionType.d.ts +23 -0
- package/dist/esm/models/DiscussionType.js +32 -0
- package/dist/esm/models/Entity.d.ts +38 -0
- package/dist/esm/models/Entity.js +47 -0
- package/dist/esm/models/EntityType.d.ts +32 -0
- package/dist/esm/models/EntityType.js +41 -0
- package/dist/esm/models/Message.d.ts +81 -0
- package/dist/esm/models/Message.js +69 -0
- package/dist/esm/models/MessageInput.d.ts +37 -0
- package/dist/esm/models/MessageInput.js +46 -0
- package/dist/esm/models/MessageType.d.ts +23 -0
- package/dist/esm/models/MessageType.js +32 -0
- package/dist/esm/models/PaginatedResponseDiscussion.d.ts +38 -0
- package/dist/esm/models/PaginatedResponseDiscussion.js +47 -0
- package/dist/esm/models/PaginatedResponseMessage.d.ts +38 -0
- package/dist/esm/models/PaginatedResponseMessage.js +47 -0
- package/dist/esm/models/ProjectDetail.d.ts +1 -1
- package/dist/esm/models/ProjectDetail.js +2 -2
- package/dist/esm/models/SortOrder.d.ts +23 -0
- package/dist/esm/models/SortOrder.js +32 -0
- package/dist/esm/models/index.d.ts +11 -0
- package/dist/esm/models/index.js +11 -0
- package/dist/esm/runtime.js +1 -1
- package/dist/models/Discussion.d.ts +87 -0
- package/dist/models/Discussion.js +79 -0
- package/dist/models/DiscussionInput.d.ts +57 -0
- package/dist/models/DiscussionInput.js +64 -0
- package/dist/models/DiscussionType.d.ts +23 -0
- package/dist/models/DiscussionType.js +38 -0
- package/dist/models/Entity.d.ts +38 -0
- package/dist/models/Entity.js +54 -0
- package/dist/models/EntityType.d.ts +32 -0
- package/dist/models/EntityType.js +47 -0
- package/dist/models/Message.d.ts +81 -0
- package/dist/models/Message.js +76 -0
- package/dist/models/MessageInput.d.ts +37 -0
- package/dist/models/MessageInput.js +53 -0
- package/dist/models/MessageType.d.ts +23 -0
- package/dist/models/MessageType.js +38 -0
- package/dist/models/PaginatedResponseDiscussion.d.ts +38 -0
- package/dist/models/PaginatedResponseDiscussion.js +54 -0
- package/dist/models/PaginatedResponseMessage.d.ts +38 -0
- package/dist/models/PaginatedResponseMessage.js +54 -0
- package/dist/models/ProjectDetail.d.ts +1 -1
- package/dist/models/ProjectDetail.js +2 -2
- package/dist/models/SortOrder.d.ts +23 -0
- package/dist/models/SortOrder.js +38 -0
- package/dist/models/index.d.ts +11 -0
- package/dist/models/index.js +11 -0
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Cirro Data
|
|
6
|
+
* Cirro Data Platform service API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: latest
|
|
9
|
+
* Contact: support@cirro.bio
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.PaginatedResponseDiscussionToJSON = exports.PaginatedResponseDiscussionFromJSONTyped = exports.PaginatedResponseDiscussionFromJSON = exports.instanceOfPaginatedResponseDiscussion = void 0;
|
|
17
|
+
const Discussion_1 = require("./Discussion");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the PaginatedResponseDiscussion interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfPaginatedResponseDiscussion(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
isInstance = isInstance && "data" in value;
|
|
24
|
+
isInstance = isInstance && "nextToken" in value;
|
|
25
|
+
return isInstance;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfPaginatedResponseDiscussion = instanceOfPaginatedResponseDiscussion;
|
|
28
|
+
function PaginatedResponseDiscussionFromJSON(json) {
|
|
29
|
+
return PaginatedResponseDiscussionFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.PaginatedResponseDiscussionFromJSON = PaginatedResponseDiscussionFromJSON;
|
|
32
|
+
function PaginatedResponseDiscussionFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if ((json === undefined) || (json === null)) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'data': (json['data'].map(Discussion_1.DiscussionFromJSON)),
|
|
38
|
+
'nextToken': json['nextToken'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.PaginatedResponseDiscussionFromJSONTyped = PaginatedResponseDiscussionFromJSONTyped;
|
|
42
|
+
function PaginatedResponseDiscussionToJSON(value) {
|
|
43
|
+
if (value === undefined) {
|
|
44
|
+
return undefined;
|
|
45
|
+
}
|
|
46
|
+
if (value === null) {
|
|
47
|
+
return null;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'data': (value.data.map(Discussion_1.DiscussionToJSON)),
|
|
51
|
+
'nextToken': value.nextToken,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
exports.PaginatedResponseDiscussionToJSON = PaginatedResponseDiscussionToJSON;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cirro Data
|
|
3
|
+
* Cirro Data Platform service API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: latest
|
|
6
|
+
* Contact: support@cirro.bio
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Message } from './Message';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PaginatedResponseMessage
|
|
17
|
+
*/
|
|
18
|
+
export interface PaginatedResponseMessage {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<Message>}
|
|
22
|
+
* @memberof PaginatedResponseMessage
|
|
23
|
+
*/
|
|
24
|
+
data: Array<Message>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PaginatedResponseMessage
|
|
29
|
+
*/
|
|
30
|
+
nextToken: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the PaginatedResponseMessage interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfPaginatedResponseMessage(value: object): boolean;
|
|
36
|
+
export declare function PaginatedResponseMessageFromJSON(json: any): PaginatedResponseMessage;
|
|
37
|
+
export declare function PaginatedResponseMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseMessage;
|
|
38
|
+
export declare function PaginatedResponseMessageToJSON(value?: PaginatedResponseMessage | null): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Cirro Data
|
|
6
|
+
* Cirro Data Platform service API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: latest
|
|
9
|
+
* Contact: support@cirro.bio
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.PaginatedResponseMessageToJSON = exports.PaginatedResponseMessageFromJSONTyped = exports.PaginatedResponseMessageFromJSON = exports.instanceOfPaginatedResponseMessage = void 0;
|
|
17
|
+
const Message_1 = require("./Message");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the PaginatedResponseMessage interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfPaginatedResponseMessage(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
isInstance = isInstance && "data" in value;
|
|
24
|
+
isInstance = isInstance && "nextToken" in value;
|
|
25
|
+
return isInstance;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfPaginatedResponseMessage = instanceOfPaginatedResponseMessage;
|
|
28
|
+
function PaginatedResponseMessageFromJSON(json) {
|
|
29
|
+
return PaginatedResponseMessageFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.PaginatedResponseMessageFromJSON = PaginatedResponseMessageFromJSON;
|
|
32
|
+
function PaginatedResponseMessageFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if ((json === undefined) || (json === null)) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'data': (json['data'].map(Message_1.MessageFromJSON)),
|
|
38
|
+
'nextToken': json['nextToken'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.PaginatedResponseMessageFromJSONTyped = PaginatedResponseMessageFromJSONTyped;
|
|
42
|
+
function PaginatedResponseMessageToJSON(value) {
|
|
43
|
+
if (value === undefined) {
|
|
44
|
+
return undefined;
|
|
45
|
+
}
|
|
46
|
+
if (value === null) {
|
|
47
|
+
return null;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'data': (value.data.map(Message_1.MessageToJSON)),
|
|
51
|
+
'nextToken': value.nextToken,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
exports.PaginatedResponseMessageToJSON = PaginatedResponseMessageToJSON;
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectDetailToJSON = exports.ProjectDetailFromJSONTyped = exports.ProjectDetailFromJSON = exports.instanceOfProjectDetail = void 0;
|
|
17
|
-
const runtime_1 = require("../runtime");
|
|
18
17
|
const CloudAccount_1 = require("./CloudAccount");
|
|
19
18
|
const Contact_1 = require("./Contact");
|
|
20
19
|
const ProjectSettings_1 = require("./ProjectSettings");
|
|
@@ -33,6 +32,7 @@ function instanceOfProjectDetail(value) {
|
|
|
33
32
|
isInstance = isInstance && "organization" in value;
|
|
34
33
|
isInstance = isInstance && "status" in value;
|
|
35
34
|
isInstance = isInstance && "settings" in value;
|
|
35
|
+
isInstance = isInstance && "account" in value;
|
|
36
36
|
isInstance = isInstance && "statusMessage" in value;
|
|
37
37
|
isInstance = isInstance && "tags" in value;
|
|
38
38
|
isInstance = isInstance && "classificationIds" in value;
|
|
@@ -59,7 +59,7 @@ function ProjectDetailFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
59
|
'organization': json['organization'],
|
|
60
60
|
'status': (0, Status_1.StatusFromJSON)(json['status']),
|
|
61
61
|
'settings': (0, ProjectSettings_1.ProjectSettingsFromJSON)(json['settings']),
|
|
62
|
-
'account':
|
|
62
|
+
'account': (0, CloudAccount_1.CloudAccountFromJSON)(json['account']),
|
|
63
63
|
'statusMessage': json['statusMessage'],
|
|
64
64
|
'tags': (json['tags'].map(Tag_1.TagFromJSON)),
|
|
65
65
|
'classificationIds': json['classificationIds'],
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cirro Data
|
|
3
|
+
* Cirro Data Platform service API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: latest
|
|
6
|
+
* Contact: support@cirro.bio
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare enum SortOrder {
|
|
18
|
+
Ascending = "ASCENDING",
|
|
19
|
+
Descending = "DESCENDING"
|
|
20
|
+
}
|
|
21
|
+
export declare function SortOrderFromJSON(json: any): SortOrder;
|
|
22
|
+
export declare function SortOrderFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortOrder;
|
|
23
|
+
export declare function SortOrderToJSON(value?: SortOrder | null): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Cirro Data
|
|
6
|
+
* Cirro Data Platform service API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: latest
|
|
9
|
+
* Contact: support@cirro.bio
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.SortOrderToJSON = exports.SortOrderFromJSONTyped = exports.SortOrderFromJSON = exports.SortOrder = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
var SortOrder;
|
|
23
|
+
(function (SortOrder) {
|
|
24
|
+
SortOrder["Ascending"] = "ASCENDING";
|
|
25
|
+
SortOrder["Descending"] = "DESCENDING";
|
|
26
|
+
})(SortOrder = exports.SortOrder || (exports.SortOrder = {}));
|
|
27
|
+
function SortOrderFromJSON(json) {
|
|
28
|
+
return SortOrderFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
exports.SortOrderFromJSON = SortOrderFromJSON;
|
|
31
|
+
function SortOrderFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
exports.SortOrderFromJSONTyped = SortOrderFromJSONTyped;
|
|
35
|
+
function SortOrderToJSON(value) {
|
|
36
|
+
return value;
|
|
37
|
+
}
|
|
38
|
+
exports.SortOrderToJSON = SortOrderToJSON;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -38,6 +38,11 @@ export * from './DatasetCondition';
|
|
|
38
38
|
export * from './DatasetConditionField';
|
|
39
39
|
export * from './DatasetDetail';
|
|
40
40
|
export * from './DatasetViz';
|
|
41
|
+
export * from './Discussion';
|
|
42
|
+
export * from './DiscussionInput';
|
|
43
|
+
export * from './DiscussionType';
|
|
44
|
+
export * from './Entity';
|
|
45
|
+
export * from './EntityType';
|
|
41
46
|
export * from './EnvironmentType';
|
|
42
47
|
export * from './ErrorMessage';
|
|
43
48
|
export * from './Executor';
|
|
@@ -68,6 +73,9 @@ export * from './InviteUserRequest';
|
|
|
68
73
|
export * from './InviteUserResponse';
|
|
69
74
|
export * from './LogEntry';
|
|
70
75
|
export * from './LoginProvider';
|
|
76
|
+
export * from './Message';
|
|
77
|
+
export * from './MessageInput';
|
|
78
|
+
export * from './MessageType';
|
|
71
79
|
export * from './MetricRecord';
|
|
72
80
|
export * from './MoveDatasetInput';
|
|
73
81
|
export * from './MoveDatasetResponse';
|
|
@@ -76,6 +84,8 @@ export * from './NotebookInstance';
|
|
|
76
84
|
export * from './NotebookInstanceStatusResponse';
|
|
77
85
|
export * from './OpenNotebookInstanceResponse';
|
|
78
86
|
export * from './PaginatedResponseDatasetListDto';
|
|
87
|
+
export * from './PaginatedResponseDiscussion';
|
|
88
|
+
export * from './PaginatedResponseMessage';
|
|
79
89
|
export * from './PaginatedResponseSampleDto';
|
|
80
90
|
export * from './PaginatedResponseUserDto';
|
|
81
91
|
export * from './PipelineCode';
|
|
@@ -113,6 +123,7 @@ export * from './Share';
|
|
|
113
123
|
export * from './ShareDetail';
|
|
114
124
|
export * from './ShareInput';
|
|
115
125
|
export * from './ShareType';
|
|
126
|
+
export * from './SortOrder';
|
|
116
127
|
export * from './Status';
|
|
117
128
|
export * from './StopExecutionResponse';
|
|
118
129
|
export * from './SyncStatus';
|
package/dist/models/index.js
CHANGED
|
@@ -56,6 +56,11 @@ __exportStar(require("./DatasetCondition"), exports);
|
|
|
56
56
|
__exportStar(require("./DatasetConditionField"), exports);
|
|
57
57
|
__exportStar(require("./DatasetDetail"), exports);
|
|
58
58
|
__exportStar(require("./DatasetViz"), exports);
|
|
59
|
+
__exportStar(require("./Discussion"), exports);
|
|
60
|
+
__exportStar(require("./DiscussionInput"), exports);
|
|
61
|
+
__exportStar(require("./DiscussionType"), exports);
|
|
62
|
+
__exportStar(require("./Entity"), exports);
|
|
63
|
+
__exportStar(require("./EntityType"), exports);
|
|
59
64
|
__exportStar(require("./EnvironmentType"), exports);
|
|
60
65
|
__exportStar(require("./ErrorMessage"), exports);
|
|
61
66
|
__exportStar(require("./Executor"), exports);
|
|
@@ -86,6 +91,9 @@ __exportStar(require("./InviteUserRequest"), exports);
|
|
|
86
91
|
__exportStar(require("./InviteUserResponse"), exports);
|
|
87
92
|
__exportStar(require("./LogEntry"), exports);
|
|
88
93
|
__exportStar(require("./LoginProvider"), exports);
|
|
94
|
+
__exportStar(require("./Message"), exports);
|
|
95
|
+
__exportStar(require("./MessageInput"), exports);
|
|
96
|
+
__exportStar(require("./MessageType"), exports);
|
|
89
97
|
__exportStar(require("./MetricRecord"), exports);
|
|
90
98
|
__exportStar(require("./MoveDatasetInput"), exports);
|
|
91
99
|
__exportStar(require("./MoveDatasetResponse"), exports);
|
|
@@ -94,6 +102,8 @@ __exportStar(require("./NotebookInstance"), exports);
|
|
|
94
102
|
__exportStar(require("./NotebookInstanceStatusResponse"), exports);
|
|
95
103
|
__exportStar(require("./OpenNotebookInstanceResponse"), exports);
|
|
96
104
|
__exportStar(require("./PaginatedResponseDatasetListDto"), exports);
|
|
105
|
+
__exportStar(require("./PaginatedResponseDiscussion"), exports);
|
|
106
|
+
__exportStar(require("./PaginatedResponseMessage"), exports);
|
|
97
107
|
__exportStar(require("./PaginatedResponseSampleDto"), exports);
|
|
98
108
|
__exportStar(require("./PaginatedResponseUserDto"), exports);
|
|
99
109
|
__exportStar(require("./PipelineCode"), exports);
|
|
@@ -131,6 +141,7 @@ __exportStar(require("./Share"), exports);
|
|
|
131
141
|
__exportStar(require("./ShareDetail"), exports);
|
|
132
142
|
__exportStar(require("./ShareInput"), exports);
|
|
133
143
|
__exportStar(require("./ShareType"), exports);
|
|
144
|
+
__exportStar(require("./SortOrder"), exports);
|
|
134
145
|
__exportStar(require("./Status"), exports);
|
|
135
146
|
__exportStar(require("./StopExecutionResponse"), exports);
|
|
136
147
|
__exportStar(require("./SyncStatus"), exports);
|
package/dist/runtime.js
CHANGED
|
@@ -23,7 +23,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.TextApiResponse = exports.BlobApiResponse = exports.VoidApiResponse = exports.JSONApiResponse = exports.canConsumeForm = exports.mapValues = exports.querystring = exports.exists = exports.COLLECTION_FORMATS = exports.RequiredError = exports.FetchError = exports.ResponseError = exports.BaseAPI = exports.DefaultConfig = exports.Configuration = exports.BASE_PATH = void 0;
|
|
26
|
-
exports.BASE_PATH = "
|
|
26
|
+
exports.BASE_PATH = "http://localhost:8080/api".replace(/\/+$/, "");
|
|
27
27
|
class Configuration {
|
|
28
28
|
constructor(configuration = {}) {
|
|
29
29
|
this.configuration = configuration;
|