@proxima-nexus/openapi 2.3.3 → 2.4.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,13 @@ 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.4.0] - 2026-05-23
9
+
10
+ ### Added
11
+
12
+ - **Editable event-series instance times and timezone**
13
+ - `UpdateEventSeriesDto`: added optional `instanceStartTime`, `instanceEndTime`, and `timezone` properties. Changing any of these triggers regeneration of upcoming event instances on the server side.
14
+
8
15
  ## [2.3.2] - 2026-03-19
9
16
 
10
17
  ### Added
package/openapi.json CHANGED
@@ -3685,6 +3685,21 @@
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"
3688
3703
  }
3689
3704
  }
3690
3705
  },
package/openapi.yaml CHANGED
@@ -2530,6 +2530,18 @@ 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: Start time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates upcoming instances.
2536
+ example: '10:00'
2537
+ instanceEndTime:
2538
+ type: string
2539
+ description: End time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates upcoming instances.
2540
+ example: '11:00'
2541
+ timezone:
2542
+ type: string
2543
+ description: IANA timezone for interpreting times and generating instances. Changing this regenerates upcoming instances.
2544
+ example: America/New_York
2533
2545
  GetEventSeriesDto:
2534
2546
  type: object
2535
2547
  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.4.0",
4
4
  "description": "OpenAPI specification for Proxima Nexus",
5
5
  "main": "openapi.json",
6
6
  "types": "openapi.json",