@proxima-nexus/openapi 2.4.0 → 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 +7 -0
- package/openapi.json +5 -0
- package/openapi.yaml +12 -2
- package/package.json +1 -1
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.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
|
+
|
|
8
15
|
## [2.4.0] - 2026-05-23
|
|
9
16
|
|
|
10
17
|
### Added
|
package/openapi.json
CHANGED
|
@@ -3700,6 +3700,11 @@
|
|
|
3700
3700
|
"type": "string",
|
|
3701
3701
|
"description": "IANA timezone for interpreting times and generating instances. Changing this regenerates upcoming instances.",
|
|
3702
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"
|
|
3703
3708
|
}
|
|
3704
3709
|
}
|
|
3705
3710
|
},
|
package/openapi.yaml
CHANGED
|
@@ -2532,16 +2532,26 @@ components:
|
|
|
2532
2532
|
example: eur
|
|
2533
2533
|
instanceStartTime:
|
|
2534
2534
|
type: string
|
|
2535
|
-
description:
|
|
2535
|
+
description: >-
|
|
2536
|
+
Start time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates
|
|
2537
|
+
upcoming instances.
|
|
2536
2538
|
example: '10:00'
|
|
2537
2539
|
instanceEndTime:
|
|
2538
2540
|
type: string
|
|
2539
|
-
description:
|
|
2541
|
+
description: >-
|
|
2542
|
+
End time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates
|
|
2543
|
+
upcoming instances.
|
|
2540
2544
|
example: '11:00'
|
|
2541
2545
|
timezone:
|
|
2542
2546
|
type: string
|
|
2543
2547
|
description: IANA timezone for interpreting times and generating instances. Changing this regenerates upcoming instances.
|
|
2544
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'
|
|
2545
2555
|
GetEventSeriesDto:
|
|
2546
2556
|
type: object
|
|
2547
2557
|
properties:
|