@proxima-nexus/openapi 2.2.0 → 2.3.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 CHANGED
@@ -5,6 +5,18 @@ All notable changes to the Proxima Nexus OpenAPI specification are documented in
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.3.0] - 2026-03-04
9
+
10
+ ### Added
11
+
12
+ - **Group event series**
13
+ - `GET /group/{groupId}/event-series`: list event series associated with a group, returned as `EventSeriesEntityConnectionDto` objects (including connection `type`, `state`, and `seriesId`).
14
+ - **Event series batch lookup**
15
+ - `POST /event-series/batch`: fetch multiple event series in a single call using `GetEventSeriesDto.seriesIds`.
16
+ - **Schemas**
17
+ - `EventSeriesEntityConnectionDto`: describes a user/group connection to an event series (timestamps, connection `type`/`state`, and `seriesId`).
18
+ - `GetEventSeriesDto`: request body for batch series lookup by IDs.
19
+
8
20
  ## [2.2.0] - 2026-03-02
9
21
 
10
22
  ### Added
package/openapi.json CHANGED
@@ -1867,6 +1867,45 @@
1867
1867
  ]
1868
1868
  }
1869
1869
  },
1870
+ "/group/{groupId}/event-series": {
1871
+ "get": {
1872
+ "operationId": "GroupController_getEventSeries",
1873
+ "summary": "Get event series of a group",
1874
+ "parameters": [
1875
+ {
1876
+ "name": "groupId",
1877
+ "required": true,
1878
+ "in": "path",
1879
+ "schema": {
1880
+ "type": "string"
1881
+ }
1882
+ }
1883
+ ],
1884
+ "responses": {
1885
+ "200": {
1886
+ "description": "Event series returned",
1887
+ "content": {
1888
+ "application/json": {
1889
+ "schema": {
1890
+ "type": "array",
1891
+ "items": {
1892
+ "$ref": "#/components/schemas/EventSeriesEntityConnectionDto"
1893
+ }
1894
+ }
1895
+ }
1896
+ }
1897
+ }
1898
+ },
1899
+ "tags": [
1900
+ "group"
1901
+ ],
1902
+ "security": [
1903
+ {
1904
+ "api_key": []
1905
+ }
1906
+ ]
1907
+ }
1908
+ },
1870
1909
  "/group/batch": {
1871
1910
  "post": {
1872
1911
  "operationId": "GroupController_getBatch",
@@ -2113,6 +2152,46 @@
2113
2152
  ]
2114
2153
  }
2115
2154
  },
2155
+ "/event-series/batch": {
2156
+ "post": {
2157
+ "operationId": "EventSeriesController_getBatch",
2158
+ "summary": "Get a batch of event series by IDs",
2159
+ "parameters": [],
2160
+ "requestBody": {
2161
+ "required": true,
2162
+ "content": {
2163
+ "application/json": {
2164
+ "schema": {
2165
+ "$ref": "#/components/schemas/GetEventSeriesDto"
2166
+ }
2167
+ }
2168
+ }
2169
+ },
2170
+ "responses": {
2171
+ "200": {
2172
+ "description": "Event series returned",
2173
+ "content": {
2174
+ "application/json": {
2175
+ "schema": {
2176
+ "type": "array",
2177
+ "items": {
2178
+ "$ref": "#/components/schemas/EventSeriesDto"
2179
+ }
2180
+ }
2181
+ }
2182
+ }
2183
+ }
2184
+ },
2185
+ "tags": [
2186
+ "event-series"
2187
+ ],
2188
+ "security": [
2189
+ {
2190
+ "api_key": []
2191
+ }
2192
+ ]
2193
+ }
2194
+ },
2116
2195
  "/event-series/{seriesId}/events": {
2117
2196
  "get": {
2118
2197
  "operationId": "EventSeriesController_getInstances",
@@ -3162,6 +3241,54 @@
3162
3241
  "type"
3163
3242
  ]
3164
3243
  },
3244
+ "EventSeriesEntityConnectionDto": {
3245
+ "type": "object",
3246
+ "properties": {
3247
+ "createdAt": {
3248
+ "type": "string",
3249
+ "description": "Date/time the connection was created (ISO string)",
3250
+ "example": "2024-05-01T12:34:56.789Z"
3251
+ },
3252
+ "updatedAt": {
3253
+ "type": "string",
3254
+ "description": "Date/time the connection was last updated (ISO string)",
3255
+ "example": "2024-05-02T12:34:56.789Z"
3256
+ },
3257
+ "type": {
3258
+ "type": "string",
3259
+ "description": "Connection type",
3260
+ "enum": [
3261
+ "attendee",
3262
+ "admin",
3263
+ "owner",
3264
+ "member",
3265
+ "friend",
3266
+ "blocked",
3267
+ "none"
3268
+ ]
3269
+ },
3270
+ "state": {
3271
+ "type": "string",
3272
+ "description": "Connection state",
3273
+ "enum": [
3274
+ "incoming_request",
3275
+ "outgoing_request",
3276
+ "active",
3277
+ "requested",
3278
+ "invited"
3279
+ ]
3280
+ },
3281
+ "seriesId": {
3282
+ "type": "string",
3283
+ "description": "Event series ID",
3284
+ "example": "series-123"
3285
+ }
3286
+ },
3287
+ "required": [
3288
+ "type",
3289
+ "seriesId"
3290
+ ]
3291
+ },
3165
3292
  "GetGroupsDto": {
3166
3293
  "type": "object",
3167
3294
  "properties": {
@@ -3448,6 +3575,25 @@
3448
3575
  "example": 50
3449
3576
  }
3450
3577
  }
3578
+ },
3579
+ "GetEventSeriesDto": {
3580
+ "type": "object",
3581
+ "properties": {
3582
+ "seriesIds": {
3583
+ "description": "The IDs of the event series",
3584
+ "example": [
3585
+ "series-123",
3586
+ "series-456"
3587
+ ],
3588
+ "type": "array",
3589
+ "items": {
3590
+ "type": "string"
3591
+ }
3592
+ }
3593
+ },
3594
+ "required": [
3595
+ "seriesIds"
3596
+ ]
3451
3597
  }
3452
3598
  }
3453
3599
  }
package/openapi.yaml CHANGED
@@ -1216,6 +1216,29 @@ paths:
1216
1216
  - group
1217
1217
  security:
1218
1218
  - api_key: []
1219
+ /group/{groupId}/event-series:
1220
+ get:
1221
+ operationId: GroupController_getEventSeries
1222
+ summary: Get event series of a group
1223
+ parameters:
1224
+ - name: groupId
1225
+ required: true
1226
+ in: path
1227
+ schema:
1228
+ type: string
1229
+ responses:
1230
+ '200':
1231
+ description: Event series returned
1232
+ content:
1233
+ application/json:
1234
+ schema:
1235
+ type: array
1236
+ items:
1237
+ $ref: '#/components/schemas/EventSeriesEntityConnectionDto'
1238
+ tags:
1239
+ - group
1240
+ security:
1241
+ - api_key: []
1219
1242
  /group/batch:
1220
1243
  post:
1221
1244
  operationId: GroupController_getBatch
@@ -1372,6 +1395,30 @@ paths:
1372
1395
  - event-series
1373
1396
  security:
1374
1397
  - api_key: []
1398
+ /event-series/batch:
1399
+ post:
1400
+ operationId: EventSeriesController_getBatch
1401
+ summary: Get a batch of event series by IDs
1402
+ parameters: []
1403
+ requestBody:
1404
+ required: true
1405
+ content:
1406
+ application/json:
1407
+ schema:
1408
+ $ref: '#/components/schemas/GetEventSeriesDto'
1409
+ responses:
1410
+ '200':
1411
+ description: Event series returned
1412
+ content:
1413
+ application/json:
1414
+ schema:
1415
+ type: array
1416
+ items:
1417
+ $ref: '#/components/schemas/EventSeriesDto'
1418
+ tags:
1419
+ - event-series
1420
+ security:
1421
+ - api_key: []
1375
1422
  /event-series/{seriesId}/events:
1376
1423
  get:
1377
1424
  operationId: EventSeriesController_getInstances
@@ -2143,6 +2190,44 @@ components:
2143
2190
  - owner
2144
2191
  required:
2145
2192
  - type
2193
+ EventSeriesEntityConnectionDto:
2194
+ type: object
2195
+ properties:
2196
+ createdAt:
2197
+ type: string
2198
+ description: Date/time the connection was created (ISO string)
2199
+ example: '2024-05-01T12:34:56.789Z'
2200
+ updatedAt:
2201
+ type: string
2202
+ description: Date/time the connection was last updated (ISO string)
2203
+ example: '2024-05-02T12:34:56.789Z'
2204
+ type:
2205
+ type: string
2206
+ description: Connection type
2207
+ enum:
2208
+ - attendee
2209
+ - admin
2210
+ - owner
2211
+ - member
2212
+ - friend
2213
+ - blocked
2214
+ - none
2215
+ state:
2216
+ type: string
2217
+ description: Connection state
2218
+ enum:
2219
+ - incoming_request
2220
+ - outgoing_request
2221
+ - active
2222
+ - requested
2223
+ - invited
2224
+ seriesId:
2225
+ type: string
2226
+ description: Event series ID
2227
+ example: series-123
2228
+ required:
2229
+ - type
2230
+ - seriesId
2146
2231
  GetGroupsDto:
2147
2232
  type: object
2148
2233
  properties:
@@ -2357,3 +2442,16 @@ components:
2357
2442
  type: number
2358
2443
  description: Maximum number of attendees per event instance (null = unlimited)
2359
2444
  example: 50
2445
+ GetEventSeriesDto:
2446
+ type: object
2447
+ properties:
2448
+ seriesIds:
2449
+ description: The IDs of the event series
2450
+ example:
2451
+ - series-123
2452
+ - series-456
2453
+ type: array
2454
+ items:
2455
+ type: string
2456
+ required:
2457
+ - seriesIds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxima-nexus/openapi",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "OpenAPI specification for Proxima Nexus",
5
5
  "main": "openapi.json",
6
6
  "types": "openapi.json",