@proxima-nexus/openapi 2.3.2 → 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
@@ -2848,6 +2848,16 @@
2848
2848
  "type": "number",
2849
2849
  "description": "Maximum number of attendees allowed (null = unlimited)",
2850
2850
  "example": 100
2851
+ },
2852
+ "registrationFeeAmount": {
2853
+ "type": "number",
2854
+ "description": "Registration fee amount in minor units (e.g. cents). Must be set together with registrationFeeCurrency.",
2855
+ "example": 500
2856
+ },
2857
+ "registrationFeeCurrency": {
2858
+ "type": "string",
2859
+ "description": "ISO 4217 currency code, lowercase (e.g. eur). Must be set together with registrationFeeAmount.",
2860
+ "example": "eur"
2851
2861
  }
2852
2862
  },
2853
2863
  "required": [
@@ -2957,6 +2967,16 @@
2957
2967
  "type": "string",
2958
2968
  "description": "ID of the event series this instance belongs to, if any",
2959
2969
  "example": "series-weekly-standup"
2970
+ },
2971
+ "registrationFeeAmount": {
2972
+ "type": "number",
2973
+ "description": "Registration fee amount in minor units (e.g. cents)",
2974
+ "example": 500
2975
+ },
2976
+ "registrationFeeCurrency": {
2977
+ "type": "string",
2978
+ "description": "ISO 4217 currency code, lowercase (e.g. eur)",
2979
+ "example": "eur"
2960
2980
  }
2961
2981
  },
2962
2982
  "required": [
@@ -3026,6 +3046,16 @@
3026
3046
  "type": "number",
3027
3047
  "description": "Maximum number of attendees allowed (null = unlimited)",
3028
3048
  "example": 100
3049
+ },
3050
+ "registrationFeeAmount": {
3051
+ "type": "object",
3052
+ "description": "Registration fee amount in minor units (e.g. cents). Set to null to remove the fee.",
3053
+ "example": 500
3054
+ },
3055
+ "registrationFeeCurrency": {
3056
+ "type": "object",
3057
+ "description": "ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.",
3058
+ "example": "eur"
3029
3059
  }
3030
3060
  }
3031
3061
  },
@@ -3446,6 +3476,16 @@
3446
3476
  "type": "number",
3447
3477
  "description": "Maximum number of attendees per event instance (null = unlimited)",
3448
3478
  "example": 50
3479
+ },
3480
+ "registrationFeeAmount": {
3481
+ "type": "number",
3482
+ "description": "Registration fee amount in minor units (e.g. cents). Must be set together with registrationFeeCurrency.",
3483
+ "example": 500
3484
+ },
3485
+ "registrationFeeCurrency": {
3486
+ "type": "string",
3487
+ "description": "ISO 4217 currency code, lowercase (e.g. eur). Must be set together with registrationFeeAmount.",
3488
+ "example": "eur"
3449
3489
  }
3450
3490
  },
3451
3491
  "required": [
@@ -3563,6 +3603,16 @@
3563
3603
  "type": "number",
3564
3604
  "description": "Maximum number of attendees per event instance",
3565
3605
  "example": 50
3606
+ },
3607
+ "registrationFeeAmount": {
3608
+ "type": "number",
3609
+ "description": "Registration fee amount in minor units (e.g. cents)",
3610
+ "example": 500
3611
+ },
3612
+ "registrationFeeCurrency": {
3613
+ "type": "string",
3614
+ "description": "ISO 4217 currency code, lowercase (e.g. eur)",
3615
+ "example": "eur"
3566
3616
  }
3567
3617
  },
3568
3618
  "required": [
@@ -3625,6 +3675,31 @@
3625
3675
  "type": "number",
3626
3676
  "description": "Maximum number of attendees per event instance (null = unlimited)",
3627
3677
  "example": 50
3678
+ },
3679
+ "registrationFeeAmount": {
3680
+ "type": "object",
3681
+ "description": "Registration fee amount in minor units (e.g. cents). Set to null to remove the fee.",
3682
+ "example": 500
3683
+ },
3684
+ "registrationFeeCurrency": {
3685
+ "type": "object",
3686
+ "description": "ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.",
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"
3628
3703
  }
3629
3704
  }
3630
3705
  },
package/openapi.yaml CHANGED
@@ -1907,6 +1907,14 @@ components:
1907
1907
  type: number
1908
1908
  description: Maximum number of attendees allowed (null = unlimited)
1909
1909
  example: 100
1910
+ registrationFeeAmount:
1911
+ type: number
1912
+ description: Registration fee amount in minor units (e.g. cents). Must be set together with registrationFeeCurrency.
1913
+ example: 500
1914
+ registrationFeeCurrency:
1915
+ type: string
1916
+ description: ISO 4217 currency code, lowercase (e.g. eur). Must be set together with registrationFeeAmount.
1917
+ example: eur
1910
1918
  required:
1911
1919
  - displayName
1912
1920
  - visibility
@@ -1988,6 +1996,14 @@ components:
1988
1996
  type: string
1989
1997
  description: ID of the event series this instance belongs to, if any
1990
1998
  example: series-weekly-standup
1999
+ registrationFeeAmount:
2000
+ type: number
2001
+ description: Registration fee amount in minor units (e.g. cents)
2002
+ example: 500
2003
+ registrationFeeCurrency:
2004
+ type: string
2005
+ description: ISO 4217 currency code, lowercase (e.g. eur)
2006
+ example: eur
1991
2007
  required:
1992
2008
  - startTime
1993
2009
  - endTime
@@ -2039,6 +2055,14 @@ components:
2039
2055
  type: number
2040
2056
  description: Maximum number of attendees allowed (null = unlimited)
2041
2057
  example: 100
2058
+ registrationFeeAmount:
2059
+ type: object
2060
+ description: Registration fee amount in minor units (e.g. cents). Set to null to remove the fee.
2061
+ example: 500
2062
+ registrationFeeCurrency:
2063
+ type: object
2064
+ description: ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.
2065
+ example: eur
2042
2066
  MutateEventEntityConnectionDto:
2043
2067
  type: object
2044
2068
  properties:
@@ -2348,6 +2372,14 @@ components:
2348
2372
  type: number
2349
2373
  description: Maximum number of attendees per event instance (null = unlimited)
2350
2374
  example: 50
2375
+ registrationFeeAmount:
2376
+ type: number
2377
+ description: Registration fee amount in minor units (e.g. cents). Must be set together with registrationFeeCurrency.
2378
+ example: 500
2379
+ registrationFeeCurrency:
2380
+ type: string
2381
+ description: ISO 4217 currency code, lowercase (e.g. eur). Must be set together with registrationFeeAmount.
2382
+ example: eur
2351
2383
  required:
2352
2384
  - displayName
2353
2385
  - visibility
@@ -2436,6 +2468,14 @@ components:
2436
2468
  type: number
2437
2469
  description: Maximum number of attendees per event instance
2438
2470
  example: 50
2471
+ registrationFeeAmount:
2472
+ type: number
2473
+ description: Registration fee amount in minor units (e.g. cents)
2474
+ example: 500
2475
+ registrationFeeCurrency:
2476
+ type: string
2477
+ description: ISO 4217 currency code, lowercase (e.g. eur)
2478
+ example: eur
2439
2479
  required:
2440
2480
  - type
2441
2481
  - rrule
@@ -2482,6 +2522,26 @@ components:
2482
2522
  type: number
2483
2523
  description: Maximum number of attendees per event instance (null = unlimited)
2484
2524
  example: 50
2525
+ registrationFeeAmount:
2526
+ type: object
2527
+ description: Registration fee amount in minor units (e.g. cents). Set to null to remove the fee.
2528
+ example: 500
2529
+ registrationFeeCurrency:
2530
+ type: object
2531
+ description: ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.
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
2485
2545
  GetEventSeriesDto:
2486
2546
  type: object
2487
2547
  properties:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxima-nexus/openapi",
3
- "version": "2.3.2",
3
+ "version": "2.4.0",
4
4
  "description": "OpenAPI specification for Proxima Nexus",
5
5
  "main": "openapi.json",
6
6
  "types": "openapi.json",