@proxima-nexus/openapi 2.3.3 → 2.5.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,20 @@ 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.5.0] - 2026-08-12
9
+
10
+ ### Added
11
+
12
+ - **Extendable event-series end date**
13
+ - `UpdateEventSeriesDto`: added optional `seriesEndDate` (YYYY-MM-DD). May only be moved later; extending appends the new upcoming event instances up to the new end without disturbing existing ones. Moving it earlier is rejected.
14
+
15
+ ## [2.4.0] - 2026-05-23
16
+
17
+ ### Added
18
+
19
+ - **Editable event-series instance times and timezone**
20
+ - `UpdateEventSeriesDto`: added optional `instanceStartTime`, `instanceEndTime`, and `timezone` properties. Changing any of these triggers regeneration of upcoming event instances on the server side.
21
+
8
22
  ## [2.3.2] - 2026-03-19
9
23
 
10
24
  ### Added
package/openapi.json CHANGED
@@ -3685,6 +3685,26 @@
3685
3685
  "type": "object",
3686
3686
  "description": "ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.",
3687
3687
  "example": "eur"
3688
+ },
3689
+ "instanceStartTime": {
3690
+ "type": "string",
3691
+ "description": "Start time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates upcoming instances.",
3692
+ "example": "10:00"
3693
+ },
3694
+ "instanceEndTime": {
3695
+ "type": "string",
3696
+ "description": "End time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates upcoming instances.",
3697
+ "example": "11:00"
3698
+ },
3699
+ "timezone": {
3700
+ "type": "string",
3701
+ "description": "IANA timezone for interpreting times and generating instances. Changing this regenerates upcoming instances.",
3702
+ "example": "America/New_York"
3703
+ },
3704
+ "seriesEndDate": {
3705
+ "type": "string",
3706
+ "description": "New end date for the series (YYYY-MM-DD). May only be moved later; extending appends new upcoming instances up to the new end without disturbing existing ones. Moving it earlier is rejected.",
3707
+ "example": "2027-06-30"
3688
3708
  }
3689
3709
  }
3690
3710
  },
package/openapi.yaml CHANGED
@@ -2530,6 +2530,28 @@ components:
2530
2530
  type: object
2531
2531
  description: ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.
2532
2532
  example: eur
2533
+ instanceStartTime:
2534
+ type: string
2535
+ description: >-
2536
+ Start time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates
2537
+ upcoming instances.
2538
+ example: '10:00'
2539
+ instanceEndTime:
2540
+ type: string
2541
+ description: >-
2542
+ End time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates
2543
+ upcoming instances.
2544
+ example: '11:00'
2545
+ timezone:
2546
+ type: string
2547
+ description: IANA timezone for interpreting times and generating instances. Changing this regenerates upcoming instances.
2548
+ example: America/New_York
2549
+ seriesEndDate:
2550
+ type: string
2551
+ description: >-
2552
+ New end date for the series (YYYY-MM-DD). May only be moved later; extending appends new upcoming instances
2553
+ up to the new end without disturbing existing ones. Moving it earlier is rejected.
2554
+ example: '2027-06-30'
2533
2555
  GetEventSeriesDto:
2534
2556
  type: object
2535
2557
  properties:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxima-nexus/openapi",
3
- "version": "2.3.3",
3
+ "version": "2.5.0",
4
4
  "description": "OpenAPI specification for Proxima Nexus",
5
5
  "main": "openapi.json",
6
6
  "types": "openapi.json",