@proxima-nexus/sdk-typescript 2.1.1 → 2.2.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/CHANGELOG.md +13 -0
- package/dist/api/event-api.d.ts +5 -5
- package/dist/api/event-api.js +4 -4
- package/dist/api/event-series-api.d.ts +263 -0
- package/dist/api/event-series-api.js +417 -0
- package/dist/enhanced/enhanced-event-series-api.d.ts +11 -0
- package/dist/enhanced/enhanced-event-series-api.js +25 -0
- package/dist/enhanced/index.d.ts +3 -0
- package/dist/enhanced/index.js +6 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +5 -1
- package/dist/models/create-event-series-dto.d.ts +75 -0
- package/dist/models/create-event-series-dto.js +22 -0
- package/dist/models/event-dto.d.ts +4 -0
- package/dist/models/event-series-dto.d.ts +87 -0
- package/dist/models/event-series-dto.js +21 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/update-event-dto.d.ts +4 -4
- package/dist/models/update-event-series-dto.d.ts +47 -0
- package/dist/models/update-event-series-dto.js +22 -0
- package/dist/models/update-group-dto.d.ts +1 -1
- package/dist/models/update-user-dto.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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.CreateEventSeriesDtoVisibilityEnum = void 0;
|
|
17
|
+
var CreateEventSeriesDtoVisibilityEnum;
|
|
18
|
+
(function (CreateEventSeriesDtoVisibilityEnum) {
|
|
19
|
+
CreateEventSeriesDtoVisibilityEnum["public"] = "public";
|
|
20
|
+
CreateEventSeriesDtoVisibilityEnum["connections"] = "connections";
|
|
21
|
+
CreateEventSeriesDtoVisibilityEnum["hidden"] = "hidden";
|
|
22
|
+
})(CreateEventSeriesDtoVisibilityEnum || (exports.CreateEventSeriesDtoVisibilityEnum = CreateEventSeriesDtoVisibilityEnum = {}));
|
|
@@ -72,6 +72,10 @@ export interface EventDto {
|
|
|
72
72
|
* Maximum number of attendees allowed (null = unlimited)
|
|
73
73
|
*/
|
|
74
74
|
'maxNumAttendees'?: number;
|
|
75
|
+
/**
|
|
76
|
+
* ID of the event series this instance belongs to, if any
|
|
77
|
+
*/
|
|
78
|
+
'seriesId'?: string;
|
|
75
79
|
}
|
|
76
80
|
export declare enum EventDtoVisibilityEnum {
|
|
77
81
|
PUBLIC = "PUBLIC",
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { EntityConnectionDto } from './entity-connection-dto';
|
|
13
|
+
import type { LocationDto } from './location-dto';
|
|
14
|
+
export interface EventSeriesDto {
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier for the entity
|
|
17
|
+
*/
|
|
18
|
+
'entityId'?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Display name of the entity
|
|
21
|
+
*/
|
|
22
|
+
'displayName'?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Visibility of the entity
|
|
25
|
+
*/
|
|
26
|
+
'visibility'?: EventSeriesDtoVisibilityEnum;
|
|
27
|
+
/**
|
|
28
|
+
* Description of the entity
|
|
29
|
+
*/
|
|
30
|
+
'description'?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Tags associated with the entity
|
|
33
|
+
*/
|
|
34
|
+
'tags'?: Array<string>;
|
|
35
|
+
/**
|
|
36
|
+
* Date/time the entity was created (ISO string)
|
|
37
|
+
*/
|
|
38
|
+
'createdAt'?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Date/time the entity was last updated (ISO string)
|
|
41
|
+
*/
|
|
42
|
+
'updatedAt'?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Required location information
|
|
45
|
+
*/
|
|
46
|
+
'location'?: LocationDto;
|
|
47
|
+
/**
|
|
48
|
+
* Connection to the requester
|
|
49
|
+
*/
|
|
50
|
+
'requesterConnection'?: EntityConnectionDto;
|
|
51
|
+
/**
|
|
52
|
+
* Event type
|
|
53
|
+
*/
|
|
54
|
+
'type': string;
|
|
55
|
+
/**
|
|
56
|
+
* iCal RRULE string defining the recurrence pattern
|
|
57
|
+
*/
|
|
58
|
+
'rrule': string;
|
|
59
|
+
/**
|
|
60
|
+
* Date of the first occurrence (YYYY-MM-DD, local in timezone)
|
|
61
|
+
*/
|
|
62
|
+
'startDate': string;
|
|
63
|
+
/**
|
|
64
|
+
* Start time of each instance in HH:MM format
|
|
65
|
+
*/
|
|
66
|
+
'instanceStartTime': string;
|
|
67
|
+
/**
|
|
68
|
+
* End time of each instance in HH:MM format
|
|
69
|
+
*/
|
|
70
|
+
'instanceEndTime': string;
|
|
71
|
+
/**
|
|
72
|
+
* IANA timezone for all instances
|
|
73
|
+
*/
|
|
74
|
+
'timezone': string;
|
|
75
|
+
/**
|
|
76
|
+
* Identifier of the associated group
|
|
77
|
+
*/
|
|
78
|
+
'associatedGroupId'?: string;
|
|
79
|
+
/**
|
|
80
|
+
* Maximum number of attendees per event instance
|
|
81
|
+
*/
|
|
82
|
+
'maxNumAttendees'?: number;
|
|
83
|
+
}
|
|
84
|
+
export declare enum EventSeriesDtoVisibilityEnum {
|
|
85
|
+
PUBLIC = "PUBLIC",
|
|
86
|
+
PRIVATE = "PRIVATE"
|
|
87
|
+
}
|
|
@@ -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.EventSeriesDtoVisibilityEnum = void 0;
|
|
17
|
+
var EventSeriesDtoVisibilityEnum;
|
|
18
|
+
(function (EventSeriesDtoVisibilityEnum) {
|
|
19
|
+
EventSeriesDtoVisibilityEnum["PUBLIC"] = "PUBLIC";
|
|
20
|
+
EventSeriesDtoVisibilityEnum["PRIVATE"] = "PRIVATE";
|
|
21
|
+
})(EventSeriesDtoVisibilityEnum || (exports.EventSeriesDtoVisibilityEnum = EventSeriesDtoVisibilityEnum = {}));
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from './create-event-dto';
|
|
2
|
+
export * from './create-event-series-dto';
|
|
2
3
|
export * from './create-group-dto';
|
|
3
4
|
export * from './create-user-dto';
|
|
4
5
|
export * from './entity-connection-dto';
|
|
5
6
|
export * from './event-dto';
|
|
6
7
|
export * from './event-entity-connection-dto';
|
|
8
|
+
export * from './event-series-dto';
|
|
7
9
|
export * from './get-events-dto';
|
|
8
10
|
export * from './get-groups-dto';
|
|
9
11
|
export * from './get-users-dto';
|
|
@@ -15,6 +17,7 @@ export * from './mutate-group-entity-connection-dto';
|
|
|
15
17
|
export * from './mutate-user-connection-dto';
|
|
16
18
|
export * from './mutate-user-response-dto';
|
|
17
19
|
export * from './update-event-dto';
|
|
20
|
+
export * from './update-event-series-dto';
|
|
18
21
|
export * from './update-group-dto';
|
|
19
22
|
export * from './update-user-dto';
|
|
20
23
|
export * from './user-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -15,11 +15,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./create-event-dto"), exports);
|
|
18
|
+
__exportStar(require("./create-event-series-dto"), exports);
|
|
18
19
|
__exportStar(require("./create-group-dto"), exports);
|
|
19
20
|
__exportStar(require("./create-user-dto"), exports);
|
|
20
21
|
__exportStar(require("./entity-connection-dto"), exports);
|
|
21
22
|
__exportStar(require("./event-dto"), exports);
|
|
22
23
|
__exportStar(require("./event-entity-connection-dto"), exports);
|
|
24
|
+
__exportStar(require("./event-series-dto"), exports);
|
|
23
25
|
__exportStar(require("./get-events-dto"), exports);
|
|
24
26
|
__exportStar(require("./get-groups-dto"), exports);
|
|
25
27
|
__exportStar(require("./get-users-dto"), exports);
|
|
@@ -31,6 +33,7 @@ __exportStar(require("./mutate-group-entity-connection-dto"), exports);
|
|
|
31
33
|
__exportStar(require("./mutate-user-connection-dto"), exports);
|
|
32
34
|
__exportStar(require("./mutate-user-response-dto"), exports);
|
|
33
35
|
__exportStar(require("./update-event-dto"), exports);
|
|
36
|
+
__exportStar(require("./update-event-series-dto"), exports);
|
|
34
37
|
__exportStar(require("./update-group-dto"), exports);
|
|
35
38
|
__exportStar(require("./update-user-dto"), exports);
|
|
36
39
|
__exportStar(require("./user-dto"), exports);
|
|
@@ -18,7 +18,7 @@ export interface UpdateEventDto {
|
|
|
18
18
|
/**
|
|
19
19
|
* Display name
|
|
20
20
|
*/
|
|
21
|
-
'displayName'
|
|
21
|
+
'displayName'?: string;
|
|
22
22
|
/**
|
|
23
23
|
* Optional location information
|
|
24
24
|
*/
|
|
@@ -34,15 +34,15 @@ export interface UpdateEventDto {
|
|
|
34
34
|
/**
|
|
35
35
|
* Start time (ISO 8601)
|
|
36
36
|
*/
|
|
37
|
-
'startTime'
|
|
37
|
+
'startTime'?: string;
|
|
38
38
|
/**
|
|
39
39
|
* End time (ISO 8601)
|
|
40
40
|
*/
|
|
41
|
-
'endTime'
|
|
41
|
+
'endTime'?: string;
|
|
42
42
|
/**
|
|
43
43
|
* Event type
|
|
44
44
|
*/
|
|
45
|
-
'type'
|
|
45
|
+
'type'?: string;
|
|
46
46
|
/**
|
|
47
47
|
* Maximum number of attendees allowed (null = unlimited)
|
|
48
48
|
*/
|
|
@@ -0,0 +1,47 @@
|
|
|
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 UpdateEventSeriesDto {
|
|
14
|
+
/**
|
|
15
|
+
* Visibility of the entity
|
|
16
|
+
*/
|
|
17
|
+
'visibility'?: UpdateEventSeriesDtoVisibilityEnum;
|
|
18
|
+
/**
|
|
19
|
+
* Display name
|
|
20
|
+
*/
|
|
21
|
+
'displayName'?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Optional location information
|
|
24
|
+
*/
|
|
25
|
+
'location'?: LocationDto;
|
|
26
|
+
/**
|
|
27
|
+
* Entity description
|
|
28
|
+
*/
|
|
29
|
+
'description'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Entity tags
|
|
32
|
+
*/
|
|
33
|
+
'tags'?: Array<string>;
|
|
34
|
+
/**
|
|
35
|
+
* Event type
|
|
36
|
+
*/
|
|
37
|
+
'type'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Maximum number of attendees per event instance (null = unlimited)
|
|
40
|
+
*/
|
|
41
|
+
'maxNumAttendees'?: number;
|
|
42
|
+
}
|
|
43
|
+
export declare enum UpdateEventSeriesDtoVisibilityEnum {
|
|
44
|
+
public = "public",
|
|
45
|
+
connections = "connections",
|
|
46
|
+
hidden = "hidden"
|
|
47
|
+
}
|
|
@@ -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.UpdateEventSeriesDtoVisibilityEnum = void 0;
|
|
17
|
+
var UpdateEventSeriesDtoVisibilityEnum;
|
|
18
|
+
(function (UpdateEventSeriesDtoVisibilityEnum) {
|
|
19
|
+
UpdateEventSeriesDtoVisibilityEnum["public"] = "public";
|
|
20
|
+
UpdateEventSeriesDtoVisibilityEnum["connections"] = "connections";
|
|
21
|
+
UpdateEventSeriesDtoVisibilityEnum["hidden"] = "hidden";
|
|
22
|
+
})(UpdateEventSeriesDtoVisibilityEnum || (exports.UpdateEventSeriesDtoVisibilityEnum = UpdateEventSeriesDtoVisibilityEnum = {}));
|