@proxima-nexus/sdk-typescript 2.4.5 → 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,13 @@ All notable changes to the Proxima Nexus TypeScript SDK are documented in this f
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-05-23
9
+
10
+ ### Added
11
+
12
+ - `UpdateEventSeriesDto` now exposes optional `instanceStartTime`, `instanceEndTime`, and `timezone` properties, enabling callers to mutate the wall-clock and zone of an event series. Server-side, changing any of these triggers regeneration of upcoming event instances.
13
+ - Tracks `@proxima-nexus/openapi@^2.4.0`.
14
+
8
15
  ## [2.4.3] - 2026-03-19
9
16
 
10
17
  ### Added
@@ -47,6 +47,18 @@ export interface UpdateEventSeriesDto {
47
47
  * ISO 4217 currency code, lowercase (e.g. eur). Set to null to remove the fee.
48
48
  */
49
49
  'registrationFeeCurrency'?: object;
50
+ /**
51
+ * Start time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates upcoming instances.
52
+ */
53
+ 'instanceStartTime'?: string;
54
+ /**
55
+ * End time of each instance in HH:MM format (local time in the given timezone). Changing this regenerates upcoming instances.
56
+ */
57
+ 'instanceEndTime'?: string;
58
+ /**
59
+ * IANA timezone for interpreting times and generating instances. Changing this regenerates upcoming instances.
60
+ */
61
+ 'timezone'?: string;
50
62
  }
51
63
  export declare enum UpdateEventSeriesDtoVisibilityEnum {
52
64
  public = "public",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxima-nexus/sdk-typescript",
3
- "version": "2.4.5",
3
+ "version": "2.5.0",
4
4
  "description": "TypeScript SDK for Proxima Nexus Data Plane API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "devDependencies": {
45
45
  "@openapitools/openapi-generator-cli": "^2.7.0",
46
- "@proxima-nexus/openapi": "^2.3.3",
46
+ "@proxima-nexus/openapi": "^2.4.0",
47
47
  "@types/node": "^20.10.0",
48
48
  "typescript": "^5.3.3",
49
49
  "ts-node": "^10.9.2"