@proxima-nexus/sdk-typescript 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/LICENSE +15 -0
- package/README.md +349 -0
- package/dist/api/event-api.d.ts +420 -0
- package/dist/api/event-api.js +642 -0
- package/dist/api/group-api.d.ts +506 -0
- package/dist/api/group-api.js +775 -0
- package/dist/api/user-api.d.ts +543 -0
- package/dist/api/user-api.js +850 -0
- package/dist/base.d.ts +42 -0
- package/dist/base.js +48 -0
- package/dist/common.d.ts +31 -0
- package/dist/common.js +98 -0
- package/dist/configuration.d.ts +98 -0
- package/dist/configuration.js +48 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +44 -0
- package/dist/models/create-event-dto.d.ts +63 -0
- package/dist/models/create-event-dto.js +22 -0
- package/dist/models/create-group-dto.d.ts +51 -0
- package/dist/models/create-group-dto.js +22 -0
- package/dist/models/create-user-dto.d.ts +55 -0
- package/dist/models/create-user-dto.js +22 -0
- package/dist/models/entity-connection-dto.d.ts +30 -0
- package/dist/models/entity-connection-dto.js +22 -0
- package/dist/models/event-dto.d.ts +70 -0
- package/dist/models/event-dto.js +21 -0
- package/dist/models/event-entity-connection-dto.d.ts +34 -0
- package/dist/models/event-entity-connection-dto.js +22 -0
- package/dist/models/get-events-dto.d.ts +17 -0
- package/dist/models/get-events-dto.js +15 -0
- package/dist/models/get-groups-dto.d.ts +17 -0
- package/dist/models/get-groups-dto.js +15 -0
- package/dist/models/get-users-dto.d.ts +17 -0
- package/dist/models/get-users-dto.js +15 -0
- package/dist/models/group-dto.d.ts +58 -0
- package/dist/models/group-dto.js +21 -0
- package/dist/models/group-entity-connection-dto.d.ts +34 -0
- package/dist/models/group-entity-connection-dto.js +22 -0
- package/dist/models/index.d.ts +18 -0
- package/dist/models/index.js +34 -0
- package/dist/models/location-dto.d.ts +25 -0
- package/dist/models/location-dto.js +15 -0
- package/dist/models/mutate-user-response-dto.d.ts +17 -0
- package/dist/models/mutate-user-response-dto.js +15 -0
- package/dist/models/update-event-dto.d.ts +55 -0
- package/dist/models/update-event-dto.js +22 -0
- package/dist/models/update-group-dto.d.ts +47 -0
- package/dist/models/update-group-dto.js +22 -0
- package/dist/models/update-user-dto.d.ts +51 -0
- package/dist/models/update-user-dto.js +22 -0
- package/dist/models/user-dto.d.ts +62 -0
- package/dist/models/user-dto.js +21 -0
- package/dist/models/user-entity-connection-dto.d.ts +34 -0
- package/dist/models/user-entity-connection-dto.js +22 -0
- package/package.json +56 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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.CreateUserDtoVisibilityEnum = void 0;
|
|
17
|
+
var CreateUserDtoVisibilityEnum;
|
|
18
|
+
(function (CreateUserDtoVisibilityEnum) {
|
|
19
|
+
CreateUserDtoVisibilityEnum["public"] = "public";
|
|
20
|
+
CreateUserDtoVisibilityEnum["connections"] = "connections";
|
|
21
|
+
CreateUserDtoVisibilityEnum["hidden"] = "hidden";
|
|
22
|
+
})(CreateUserDtoVisibilityEnum || (exports.CreateUserDtoVisibilityEnum = CreateUserDtoVisibilityEnum = {}));
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface EntityConnectionDto {
|
|
13
|
+
/**
|
|
14
|
+
* Date/time the connection was created (ISO string)
|
|
15
|
+
*/
|
|
16
|
+
'createdAt'?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Date/time the connection was last updated (ISO string)
|
|
19
|
+
*/
|
|
20
|
+
'updatedAt'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Connection state
|
|
23
|
+
*/
|
|
24
|
+
'state': EntityConnectionDtoStateEnum;
|
|
25
|
+
}
|
|
26
|
+
export declare enum EntityConnectionDtoStateEnum {
|
|
27
|
+
requested = "requested",
|
|
28
|
+
active = "active",
|
|
29
|
+
rejected = "rejected"
|
|
30
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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.EntityConnectionDtoStateEnum = void 0;
|
|
17
|
+
var EntityConnectionDtoStateEnum;
|
|
18
|
+
(function (EntityConnectionDtoStateEnum) {
|
|
19
|
+
EntityConnectionDtoStateEnum["requested"] = "requested";
|
|
20
|
+
EntityConnectionDtoStateEnum["active"] = "active";
|
|
21
|
+
EntityConnectionDtoStateEnum["rejected"] = "rejected";
|
|
22
|
+
})(EntityConnectionDtoStateEnum || (exports.EntityConnectionDtoStateEnum = EntityConnectionDtoStateEnum = {}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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 { LocationDto } from './location-dto';
|
|
13
|
+
export interface EventDto {
|
|
14
|
+
/**
|
|
15
|
+
* Unique identifier for the entity
|
|
16
|
+
*/
|
|
17
|
+
'entityId'?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Tenant identifier the entity belongs to
|
|
20
|
+
*/
|
|
21
|
+
'tenantId'?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Display name of the entity
|
|
24
|
+
*/
|
|
25
|
+
'displayName'?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Visibility of the entity
|
|
28
|
+
*/
|
|
29
|
+
'visibility'?: EventDtoVisibilityEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Description of the entity
|
|
32
|
+
*/
|
|
33
|
+
'description'?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Tags associated with the entity
|
|
36
|
+
*/
|
|
37
|
+
'tags'?: Array<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Date/time the entity was created (ISO string)
|
|
40
|
+
*/
|
|
41
|
+
'createdAt'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Date/time the entity was last updated (ISO string)
|
|
44
|
+
*/
|
|
45
|
+
'updatedAt'?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Required location information
|
|
48
|
+
*/
|
|
49
|
+
'location'?: LocationDto;
|
|
50
|
+
/**
|
|
51
|
+
* Start time (ISO 8601)
|
|
52
|
+
*/
|
|
53
|
+
'startTime': string;
|
|
54
|
+
/**
|
|
55
|
+
* End time (ISO 8601)
|
|
56
|
+
*/
|
|
57
|
+
'endTime': string;
|
|
58
|
+
/**
|
|
59
|
+
* Event type
|
|
60
|
+
*/
|
|
61
|
+
'type': string;
|
|
62
|
+
/**
|
|
63
|
+
* Identifier of associated group which owns the event. Owners/admins of the group will be admins of the event.
|
|
64
|
+
*/
|
|
65
|
+
'associatedGroupId'?: string;
|
|
66
|
+
}
|
|
67
|
+
export declare enum EventDtoVisibilityEnum {
|
|
68
|
+
PUBLIC = "PUBLIC",
|
|
69
|
+
PRIVATE = "PRIVATE"
|
|
70
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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.EventDtoVisibilityEnum = void 0;
|
|
17
|
+
var EventDtoVisibilityEnum;
|
|
18
|
+
(function (EventDtoVisibilityEnum) {
|
|
19
|
+
EventDtoVisibilityEnum["PUBLIC"] = "PUBLIC";
|
|
20
|
+
EventDtoVisibilityEnum["PRIVATE"] = "PRIVATE";
|
|
21
|
+
})(EventDtoVisibilityEnum || (exports.EventDtoVisibilityEnum = EventDtoVisibilityEnum = {}));
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface EventEntityConnectionDto {
|
|
13
|
+
/**
|
|
14
|
+
* Date/time the connection was created (ISO string)
|
|
15
|
+
*/
|
|
16
|
+
'createdAt'?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Date/time the connection was last updated (ISO string)
|
|
19
|
+
*/
|
|
20
|
+
'updatedAt'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Connection state
|
|
23
|
+
*/
|
|
24
|
+
'state': EventEntityConnectionDtoStateEnum;
|
|
25
|
+
/**
|
|
26
|
+
* Event ID
|
|
27
|
+
*/
|
|
28
|
+
'eventId': string;
|
|
29
|
+
}
|
|
30
|
+
export declare enum EventEntityConnectionDtoStateEnum {
|
|
31
|
+
requested = "requested",
|
|
32
|
+
active = "active",
|
|
33
|
+
rejected = "rejected"
|
|
34
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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.EventEntityConnectionDtoStateEnum = void 0;
|
|
17
|
+
var EventEntityConnectionDtoStateEnum;
|
|
18
|
+
(function (EventEntityConnectionDtoStateEnum) {
|
|
19
|
+
EventEntityConnectionDtoStateEnum["requested"] = "requested";
|
|
20
|
+
EventEntityConnectionDtoStateEnum["active"] = "active";
|
|
21
|
+
EventEntityConnectionDtoStateEnum["rejected"] = "rejected";
|
|
22
|
+
})(EventEntityConnectionDtoStateEnum || (exports.EventEntityConnectionDtoStateEnum = EventEntityConnectionDtoStateEnum = {}));
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface GetEventsDto {
|
|
13
|
+
/**
|
|
14
|
+
* The IDs of the events
|
|
15
|
+
*/
|
|
16
|
+
'eventIds': Array<string>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface GetGroupsDto {
|
|
13
|
+
/**
|
|
14
|
+
* The IDs of the groups
|
|
15
|
+
*/
|
|
16
|
+
'groupIds': Array<string>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface GetUsersDto {
|
|
13
|
+
/**
|
|
14
|
+
* The IDs of the users
|
|
15
|
+
*/
|
|
16
|
+
'userIds': Array<string>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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 { LocationDto } from './location-dto';
|
|
13
|
+
export interface GroupDto {
|
|
14
|
+
/**
|
|
15
|
+
* Unique identifier for the entity
|
|
16
|
+
*/
|
|
17
|
+
'entityId'?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Tenant identifier the entity belongs to
|
|
20
|
+
*/
|
|
21
|
+
'tenantId'?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Display name of the entity
|
|
24
|
+
*/
|
|
25
|
+
'displayName'?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Visibility of the entity
|
|
28
|
+
*/
|
|
29
|
+
'visibility'?: GroupDtoVisibilityEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Description of the entity
|
|
32
|
+
*/
|
|
33
|
+
'description'?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Tags associated with the entity
|
|
36
|
+
*/
|
|
37
|
+
'tags'?: Array<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Date/time the entity was created (ISO string)
|
|
40
|
+
*/
|
|
41
|
+
'createdAt'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Date/time the entity was last updated (ISO string)
|
|
44
|
+
*/
|
|
45
|
+
'updatedAt'?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Required location information
|
|
48
|
+
*/
|
|
49
|
+
'location'?: LocationDto;
|
|
50
|
+
/**
|
|
51
|
+
* Group type
|
|
52
|
+
*/
|
|
53
|
+
'type': string;
|
|
54
|
+
}
|
|
55
|
+
export declare enum GroupDtoVisibilityEnum {
|
|
56
|
+
PUBLIC = "PUBLIC",
|
|
57
|
+
PRIVATE = "PRIVATE"
|
|
58
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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.GroupDtoVisibilityEnum = void 0;
|
|
17
|
+
var GroupDtoVisibilityEnum;
|
|
18
|
+
(function (GroupDtoVisibilityEnum) {
|
|
19
|
+
GroupDtoVisibilityEnum["PUBLIC"] = "PUBLIC";
|
|
20
|
+
GroupDtoVisibilityEnum["PRIVATE"] = "PRIVATE";
|
|
21
|
+
})(GroupDtoVisibilityEnum || (exports.GroupDtoVisibilityEnum = GroupDtoVisibilityEnum = {}));
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface GroupEntityConnectionDto {
|
|
13
|
+
/**
|
|
14
|
+
* Date/time the connection was created (ISO string)
|
|
15
|
+
*/
|
|
16
|
+
'createdAt'?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Date/time the connection was last updated (ISO string)
|
|
19
|
+
*/
|
|
20
|
+
'updatedAt'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Connection state
|
|
23
|
+
*/
|
|
24
|
+
'state': GroupEntityConnectionDtoStateEnum;
|
|
25
|
+
/**
|
|
26
|
+
* Group ID
|
|
27
|
+
*/
|
|
28
|
+
'groupId': string;
|
|
29
|
+
}
|
|
30
|
+
export declare enum GroupEntityConnectionDtoStateEnum {
|
|
31
|
+
requested = "requested",
|
|
32
|
+
active = "active",
|
|
33
|
+
rejected = "rejected"
|
|
34
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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.GroupEntityConnectionDtoStateEnum = void 0;
|
|
17
|
+
var GroupEntityConnectionDtoStateEnum;
|
|
18
|
+
(function (GroupEntityConnectionDtoStateEnum) {
|
|
19
|
+
GroupEntityConnectionDtoStateEnum["requested"] = "requested";
|
|
20
|
+
GroupEntityConnectionDtoStateEnum["active"] = "active";
|
|
21
|
+
GroupEntityConnectionDtoStateEnum["rejected"] = "rejected";
|
|
22
|
+
})(GroupEntityConnectionDtoStateEnum || (exports.GroupEntityConnectionDtoStateEnum = GroupEntityConnectionDtoStateEnum = {}));
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './create-event-dto';
|
|
2
|
+
export * from './create-group-dto';
|
|
3
|
+
export * from './create-user-dto';
|
|
4
|
+
export * from './entity-connection-dto';
|
|
5
|
+
export * from './event-dto';
|
|
6
|
+
export * from './event-entity-connection-dto';
|
|
7
|
+
export * from './get-events-dto';
|
|
8
|
+
export * from './get-groups-dto';
|
|
9
|
+
export * from './get-users-dto';
|
|
10
|
+
export * from './group-dto';
|
|
11
|
+
export * from './group-entity-connection-dto';
|
|
12
|
+
export * from './location-dto';
|
|
13
|
+
export * from './mutate-user-response-dto';
|
|
14
|
+
export * from './update-event-dto';
|
|
15
|
+
export * from './update-group-dto';
|
|
16
|
+
export * from './update-user-dto';
|
|
17
|
+
export * from './user-dto';
|
|
18
|
+
export * from './user-entity-connection-dto';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./create-event-dto"), exports);
|
|
18
|
+
__exportStar(require("./create-group-dto"), exports);
|
|
19
|
+
__exportStar(require("./create-user-dto"), exports);
|
|
20
|
+
__exportStar(require("./entity-connection-dto"), exports);
|
|
21
|
+
__exportStar(require("./event-dto"), exports);
|
|
22
|
+
__exportStar(require("./event-entity-connection-dto"), exports);
|
|
23
|
+
__exportStar(require("./get-events-dto"), exports);
|
|
24
|
+
__exportStar(require("./get-groups-dto"), exports);
|
|
25
|
+
__exportStar(require("./get-users-dto"), exports);
|
|
26
|
+
__exportStar(require("./group-dto"), exports);
|
|
27
|
+
__exportStar(require("./group-entity-connection-dto"), exports);
|
|
28
|
+
__exportStar(require("./location-dto"), exports);
|
|
29
|
+
__exportStar(require("./mutate-user-response-dto"), exports);
|
|
30
|
+
__exportStar(require("./update-event-dto"), exports);
|
|
31
|
+
__exportStar(require("./update-group-dto"), exports);
|
|
32
|
+
__exportStar(require("./update-user-dto"), exports);
|
|
33
|
+
__exportStar(require("./user-dto"), exports);
|
|
34
|
+
__exportStar(require("./user-entity-connection-dto"), exports);
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface LocationDto {
|
|
13
|
+
/**
|
|
14
|
+
* Latitude in decimal degrees
|
|
15
|
+
*/
|
|
16
|
+
'latitude'?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Longitude in decimal degrees
|
|
19
|
+
*/
|
|
20
|
+
'longitude'?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Human-readable location name
|
|
23
|
+
*/
|
|
24
|
+
'name'?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export interface MutateUserResponseDto {
|
|
13
|
+
/**
|
|
14
|
+
* User ID
|
|
15
|
+
*/
|
|
16
|
+
'userId': string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* proxima-nexus-data-plane-api
|
|
6
|
+
* Proxima Nexus Data Plane API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* proxima-nexus-data-plane-api
|
|
3
|
+
* Proxima Nexus Data Plane API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
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 { LocationDto } from './location-dto';
|
|
13
|
+
export interface UpdateEventDto {
|
|
14
|
+
/**
|
|
15
|
+
* User ID of the requester
|
|
16
|
+
*/
|
|
17
|
+
'requesterUserId': string;
|
|
18
|
+
/**
|
|
19
|
+
* Visibility of the entity
|
|
20
|
+
*/
|
|
21
|
+
'visibility'?: UpdateEventDtoVisibilityEnum;
|
|
22
|
+
/**
|
|
23
|
+
* Display name
|
|
24
|
+
*/
|
|
25
|
+
'displayName': string;
|
|
26
|
+
/**
|
|
27
|
+
* Optional location information
|
|
28
|
+
*/
|
|
29
|
+
'location'?: LocationDto;
|
|
30
|
+
/**
|
|
31
|
+
* Entity description
|
|
32
|
+
*/
|
|
33
|
+
'description'?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Entity tags
|
|
36
|
+
*/
|
|
37
|
+
'tags'?: Array<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Start time (ISO 8601)
|
|
40
|
+
*/
|
|
41
|
+
'startTime': string;
|
|
42
|
+
/**
|
|
43
|
+
* End time (ISO 8601)
|
|
44
|
+
*/
|
|
45
|
+
'endTime': string;
|
|
46
|
+
/**
|
|
47
|
+
* Event type
|
|
48
|
+
*/
|
|
49
|
+
'type': string;
|
|
50
|
+
}
|
|
51
|
+
export declare enum UpdateEventDtoVisibilityEnum {
|
|
52
|
+
public = "public",
|
|
53
|
+
connections = "connections",
|
|
54
|
+
hidden = "hidden"
|
|
55
|
+
}
|