@proxima-nexus/openapi 2.3.0 → 2.3.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/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ 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.1] - 2026-03-04
9
+
10
+ ### Changed
11
+
12
+ - **Connection types**
13
+ - Added `associated_group` to connection `type` enums across event, group, and event-series connection DTOs and related responses, so clients can distinguish when a group is linked to an event or series as an associated organizer rather than just an attendee/admin/owner.
14
+ - `GetEventsDto` and other connection-type-based filters now accept `associated_group` as a valid value.
15
+
8
16
  ## [2.3.0] - 2026-03-04
9
17
 
10
18
  ### Added
package/openapi.json CHANGED
@@ -1169,7 +1169,8 @@
1169
1169
  "enum": [
1170
1170
  "attendee",
1171
1171
  "admin",
1172
- "owner"
1172
+ "owner",
1173
+ "associated_group"
1173
1174
  ]
1174
1175
  }
1175
1176
  }
@@ -2390,6 +2391,7 @@
2390
2391
  "attendee",
2391
2392
  "admin",
2392
2393
  "owner",
2394
+ "associated_group",
2393
2395
  "member",
2394
2396
  "friend",
2395
2397
  "blocked",
@@ -2587,6 +2589,7 @@
2587
2589
  "attendee",
2588
2590
  "admin",
2589
2591
  "owner",
2592
+ "associated_group",
2590
2593
  "member",
2591
2594
  "friend",
2592
2595
  "blocked",
@@ -2654,6 +2657,7 @@
2654
2657
  "attendee",
2655
2658
  "admin",
2656
2659
  "owner",
2660
+ "associated_group",
2657
2661
  "member",
2658
2662
  "friend",
2659
2663
  "blocked",
@@ -2702,6 +2706,7 @@
2702
2706
  "attendee",
2703
2707
  "admin",
2704
2708
  "owner",
2709
+ "associated_group",
2705
2710
  "member",
2706
2711
  "friend",
2707
2712
  "blocked",
@@ -2991,7 +2996,8 @@
2991
2996
  "enum": [
2992
2997
  "attendee",
2993
2998
  "admin",
2994
- "owner"
2999
+ "owner",
3000
+ "associated_group"
2995
3001
  ]
2996
3002
  }
2997
3003
  },
@@ -3261,6 +3267,7 @@
3261
3267
  "attendee",
3262
3268
  "admin",
3263
3269
  "owner",
3270
+ "associated_group",
3264
3271
  "member",
3265
3272
  "friend",
3266
3273
  "blocked",
package/openapi.yaml CHANGED
@@ -771,6 +771,7 @@ paths:
771
771
  - attendee
772
772
  - admin
773
773
  - owner
774
+ - associated_group
774
775
  - name: X-Proxima-Nexus-Requester-User-Id
775
776
  in: header
776
777
  description: >-
@@ -1564,6 +1565,7 @@ components:
1564
1565
  - attendee
1565
1566
  - admin
1566
1567
  - owner
1568
+ - associated_group
1567
1569
  - member
1568
1570
  - friend
1569
1571
  - blocked
@@ -1708,6 +1710,7 @@ components:
1708
1710
  - attendee
1709
1711
  - admin
1710
1712
  - owner
1713
+ - associated_group
1711
1714
  - member
1712
1715
  - friend
1713
1716
  - blocked
@@ -1759,6 +1762,7 @@ components:
1759
1762
  - attendee
1760
1763
  - admin
1761
1764
  - owner
1765
+ - associated_group
1762
1766
  - member
1763
1767
  - friend
1764
1768
  - blocked
@@ -1797,6 +1801,7 @@ components:
1797
1801
  - attendee
1798
1802
  - admin
1799
1803
  - owner
1804
+ - associated_group
1800
1805
  - member
1801
1806
  - friend
1802
1807
  - blocked
@@ -2014,6 +2019,7 @@ components:
2014
2019
  - attendee
2015
2020
  - admin
2016
2021
  - owner
2022
+ - associated_group
2017
2023
  required:
2018
2024
  - type
2019
2025
  GetEventsDto:
@@ -2208,6 +2214,7 @@ components:
2208
2214
  - attendee
2209
2215
  - admin
2210
2216
  - owner
2217
+ - associated_group
2211
2218
  - member
2212
2219
  - friend
2213
2220
  - blocked
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxima-nexus/openapi",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "OpenAPI specification for Proxima Nexus",
5
5
  "main": "openapi.json",
6
6
  "types": "openapi.json",