@inovitas/infra3dapi 1.7.0 → 1.7.2

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/README.md CHANGED
@@ -1,333 +1,360 @@
1
- # Installation
2
-
3
- ### NPM Package
4
-
5
- The API can be installed as a package using npm. To install it from the npm package repository, simply type:
6
-
7
- ```bash
8
- npm install @inovitas/infra3dapi
9
- ```
10
-
11
- ### CDN Download
12
-
13
- Alternatively, you can obtain the API from a CDN. To get the latest version, add the following script to your HTML file:
14
-
15
- ```html
16
- <script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@latest/infra3dapi.js"></script>
17
- ```
18
-
19
- We recommend using a specific version in your project. To get a specific version, use the following script and adjust the version accordingly:
20
-
21
- ```html
22
- <script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@1.0.1/infra3dapi.js"></script>
23
- ```
24
-
25
- **Note**: Please do not name the `<div>` in which the viewer is initialized as "infra3d" as this may cause internal conflicts.
26
-
27
- # Core Concept
28
-
29
- To use the API, you can call the init functions in infra3dapi. After loggin in and initializing the view (with [`manager.initView()`](classes/_inovitas_infra3dapi.manager.Manager.html#initView)), you will get a viewer object. This viewer object can then be used to add event-listeners to different events emitted by the viewer (like [`viewer.geoframechanged`](classes/_inovitas_infra3dsdk.Viewer.html#geoframechanged)) or to call some functions (like [`viewer.getRoutes()`](classes/_inovitas_infra3dsdk.Viewer.html#getRoutes) or [`viewer.movePosition()`](classes/_inovitas_infra3dsdk.Viewer.html#movePosition)).
30
-
31
- # Authentication
32
-
33
- 1. Register your OAuth 2.0 application with our sales team to obtain credentials (client_id and client_secret).
34
- 2. Develop a server-side component to securely use these credentials, obtaining an access token from infra3D.
35
- 3. Your server-side component fetches the access token using client credentials, which can then be shared with your client app.
36
- 4. Your client app uses this token to authenticate with infra3D for requested services, refreshing it via the server component when expired. Remember to treat the client_secret like a password, avoiding exposure in client-side environments for enhanced security.
37
-
1
+ # Installation
2
+
3
+ ### NPM Package
4
+
5
+ The API can be installed as a package using npm. To install it from the npm package repository, simply type:
6
+
7
+ ```bash
8
+ npm install @inovitas/infra3dapi
9
+ ```
10
+
11
+ ### CDN Download
12
+
13
+ Alternatively, you can obtain the API from a CDN. To get the latest version, add the following script to your HTML file:
14
+
15
+ ```html
16
+ <script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@latest/infra3dapi.js"></script>
17
+ ```
18
+
19
+ We recommend using a specific version in your project. To get a specific version, use the following script and adjust the version accordingly:
20
+
21
+ ```html
22
+ <script src="https://cdn.jsdelivr.net/npm/@inovitas/infra3dapi@1.0.1/infra3dapi.js"></script>
23
+ ```
24
+
25
+ **Note**: Please do not name the `<div>` in which the viewer is initialized as "infra3d" as this may cause internal conflicts.
26
+
27
+ # Core Concept
28
+
29
+ To use the API, you can call the init functions in infra3dapi. After loggin in and initializing the view (with [`manager.initView()`](classes/_inovitas_infra3dapi.manager.Manager.html#initView)), you will get a viewer object. This viewer object can then be used to add event-listeners to different events emitted by the viewer (like [`viewer.geoframechanged`](classes/_inovitas_infra3dsdk.Viewer.html#geoframechanged)) or to call some functions (like [`viewer.getRoutes()`](classes/_inovitas_infra3dsdk.Viewer.html#getRoutes) or [`viewer.movePosition()`](classes/_inovitas_infra3dsdk.Viewer.html#movePosition)).
30
+
31
+ # Authentication
32
+
33
+ 1. Register your OAuth 2.0 application with our sales team to obtain credentials (client_id and client_secret).
34
+ 2. Develop a server-side component to securely use these credentials, obtaining an access token from infra3D.
35
+ 3. Your server-side component fetches the access token using client credentials, which can then be shared with your client app.
36
+ 4. Your client app uses this token to authenticate with infra3D for requested services, refreshing it via the server component when expired. Remember to treat the client_secret like a password, avoiding exposure in client-side environments for enhanced security.
37
+
38
38
  # Changelog
39
39
 
40
- ## 1.7.0 - 2025-12-16
41
-
42
- ### Added
43
-
44
- - Enable linref for cantons (IN-3084)
45
- - Fully support domains in ArcGIS Layers
46
- - add link to infra3D Academy
47
- - enabled link to profile on platform (IN-1993)
48
-
49
- ## 1.6.1 - 2025-11-20
50
-
51
- ### Bugfixes
52
-
53
- - Performance when calling movePosition on the viewer is improved (NVTS-1060, NVTS-1062)
54
- - When clicking twice on a feature with the info-tool, the feature info disappears (NVTS-1029, NVTS-1125)
55
- - When exceeding the limit of the localstorage when importing layers, a message is displayed (NVTS-995)
56
- - Fixed errors when importing geodataconfigurations from infra3D Classic (NVTS-1069)
57
- - The Share-Link is updated even if the tool is open and the viewer is moved (NVTS-1078)
58
- - While the layertree is open and focussed, the play with space works again (NVTS-1066)
59
- - Overlap of layertree visibility-symbol with scrollbar in Firefox is fixed (NVTS-1067)
60
-
61
- ### Added
62
-
63
- - PDF-Export is now also in the API available (NVTS-1057)
64
-
65
- ## 1.6.0 - 2025-10-29
66
-
67
- ### Bugfixes
68
-
69
- - When clicking twice on a feature with the info-tool, the feature info disappears
70
- - When importing Shapefiles, containing an id property, the ID is no longer overwritten with an internal one
71
-
72
- ### Added
73
-
74
- - Authenticate interactively. You could now login with the common login mask (using username)
75
-
76
- ## 1.5.1 - 2025-10-13
77
-
78
- ### Bugfixes
79
-
80
- - fix forever loading search when switching from classic to nextgen (IN-3791)
81
-
82
- ## 1.5.0 - 2025-09-17
83
-
84
- ### Added
85
-
86
- - Node ID is returned in nodechanged event
87
- - viewer.moveToKey() to move to a specific key
88
-
89
- ### Bugfixes
90
-
91
- - Projects with a projectScope containing start- or endtimestamps, show the correct routeLines and routeHexes in the map
92
- - Fix boolean attribute handling on creating new features
93
- - moveToPosition is considering the maxDist parameter correctly
94
-
95
- ### Removed
96
-
97
- - No request to /outline in framegate is been done, instead the project boundary or the boundary of the EPSG is used.
98
-
99
- ## 1.4.2 - 2025-08-13
100
-
101
- ### Bugfixes
102
-
103
- - fix readme docs
104
-
105
- ## 1.4.1 - 2025-08-13
106
-
107
- ### Bugfixes
108
-
109
- - fix performance (re-render) issue & improve store implementations (IN-3675)
110
- - fix showing whatsnew on hotfix release (IN-3400)
111
- - reset selectedaxis when moving away too far
112
- - fix linref step being shown in non-linref projects
113
-
114
- ### Changes
115
-
116
- - streamline PDF Export translations across the whole app (-)
117
- - activate continuous measurement in linref tool
118
-
119
- ### Added
120
-
121
- - implement whatsnew step
122
-
123
- ## 1.4.0 - 07.08.2025
124
-
125
- ### Changes
126
-
127
- - Improve What's New Announcements
128
-
129
- ### Added
130
-
131
- - Linear Reference tools: Axisscalebar, Axis Panel, Linear Reference Measurement
132
- - Survey Wheel Measure
133
- - PDF Export Tool
134
-
135
- ## 1.3.1 - 25.07.2025
136
-
137
- ### Bugfixes
138
-
139
- - Fix types-file
140
- - Bundle images inside the js-file
141
-
142
- ## 1.3.0 - 02.07.2025
143
-
144
- ### Added
145
-
146
- - viewer.getCameraView() and viewer.setCameraView(...)
147
- - viewer.setUserInteraction(true, false) to enable or disable paning and/or zooming in the image
148
- - viewer.on("panzoomchanged", ...) to get notified when a user is interacting whithin a stereo image
149
- - viewer.getCurrentNode() to retrieve some information like coordinates of the current position
150
- - extended the viewer.on("nodechanged", ...) with some further properties
151
-
152
- ## 1.2.5 - 27.06.2025
153
-
154
- ### Bugfixes
155
-
156
- - When adding a WFS 2.0 Layer, the settings have not been took over and not been saved correctly (IN-3444)
157
- - When minimising the measurement panel and reopening meausrements again, the panels overlap each other (IN-3461)
158
-
159
- ## 1.2.4 - 12.06.2025
160
-
161
- ### Bugfixes
162
-
163
- - Some request when using a non-migrated user resulted in a 400 Bad Request.
164
-
165
- ## 1.2.3 - 05.06.2025
166
-
167
- ### Bugfixes
168
-
169
- - Profile Tool enlarge button now has a tooltip
170
- - Add-On Point Cloud Export: Authorisation based on scope entry in token
171
-
172
- ### Added
173
-
174
- - LoD Concept for Pointcloud fragments
175
- - Add-On Point Cloud Export: Loading state on startup
176
-
177
- ## 1.2.2 - 17.04.2025
178
-
179
- ### Bugfixes
180
-
181
- - Keydown/-up Eventlisteners ignored if evt.target is an HTMLInputElement, HTMLTextAreaElement or HTMLSelectElement.
182
- - Requests in routesprovider have a lower limit to not reach the backend limit of 6 MB.
183
- - Viewer is destroyed completly, with unlistening to events.
184
- - Layer-configs: Wrong handling with source_options fixed
185
- - When adding a new feature, it could be saved only after two inserts. This is now fixed.
186
- - Fix shortened arcgis URL in Layer options
187
- - Fix jump to multipolygon feature in Feature table
188
- - Fix bug when Frame 0 is not inside projectscope
189
- - Fix zick-zack bug in map when having lra-projects
190
-
191
- ## 1.2.1 - 24.02.2025
192
-
193
- ### Bugfixes
194
-
195
- - React Reference Error when activating survey wheel measurement
196
- - Not loading depthmaps anymore if loading view
197
-
198
- ## 1.2.0 - 16.12.2024
199
-
200
- ### Bugfixes
201
-
202
- - Improve styling when using global box-sizing style
203
- - Style of the scrollbar is no more globally overwritten by the API
204
- - Resize event listens now on the div and not the whole window
205
-
206
- ### Added
207
-
208
- - Added functions on viewer to draw and pick a geometry
209
- - Added geometry overlays to display geometries in the viewer
210
- - Function to destroy the API and remove it from the DOM
211
-
212
- ## 1.1.2 - 21.10.2024
213
-
214
- ### Bugfixes
215
-
216
- - viewer.getRoutes() resulted in an error
217
-
218
- ## 1.1.1 - 14.10.2024
219
-
220
- ### Bugfixes
221
-
222
- - Layer export not working for non-memory layers
223
- - Duplicate layers when exporting directly after importing layers (without reloading)
224
-
225
- ## 1.1.0 - 09.10.2024
226
-
227
- ### Bugfixes
228
-
229
- - Bug in viewer.getRoutesOutline() when using as migrated user.
230
- - Same default EPSG-Code (4326) when using start-position for (un)-migrated users.
231
-
232
- ### Added
233
-
234
- - ProjectScope is available to restrict the access inside a project accordingly.
235
- - New concept for routes abstraction in the map, using hexagons
236
- - viewer.getRouteLines() and viewer.getRouteHexes()
237
- - PointCloudExport
238
- - Support of EPSG-Code in start-position
239
-
240
- ## 1.0.3 - 17.09.2024
241
-
242
- ### Bugfixes
243
-
244
- - Fixed pilegate URL for migrated users.
245
- - Using the profiletool, added an information and reset the tool when changing the image while performing a measurement.
246
- - Fix the bug when using jest for testing.
247
- - Added missing bounding box parameter to viewer.getRoutes().
248
-
249
- ## 1.0.2 - 06.08.2024
250
-
251
- ### Bugfixes
252
-
253
- - Fixed bug in the layer tree view. The layer tree is visible again.
254
-
255
- ## 1.0.1 - 23.07.2024
256
-
257
- ### Bugfixes
258
-
259
- - Fixed a bug in the campaign change event in the viewer.
260
-
261
- ## 1.0.0 - 17.05.2024
262
-
263
- ### Bugfixes
264
-
265
- - Restoration of toolbar and top bar functionality: They can now be shown and hidden smoothly.
266
-
267
- ### Added
268
-
269
- - Introduction of machine authentication and a new corresponding example.
270
- - Added: Option for access token in the init function.
271
- - Added: Refresh token for the init function.
272
- - Typings
273
-
274
- ### Changed
275
-
276
- - Examples have been updated to accommodate the new authentication process.
277
-
278
- ### Deleted
279
-
280
- - Interactive login functions.
281
- - Removed: Two options from the init function:
282
- - demoAccess
283
- - redirectPath
284
-
285
- ## 0.2.8 - 08.04.2024
286
-
287
- ### Added
288
-
289
- - Integrated and documented functions
290
- - moveToPosition
291
- - moveToCampaign
292
- - lookAtPosition
293
- - getRoutes
294
-
295
- ## 0.2.7 - 04.04.2024
296
-
297
- ### Added
298
-
299
- - Improved documentation
300
- - Description of the event types
301
- - Description of further settings
302
-
303
- ### Changed
304
-
305
- - Adaptation to the existing examples
306
-
307
- ## 0.2.4 - 14.03.2024
308
-
309
- ### Bugfixes
310
-
311
- - Troubleshooting with internal module
312
-
313
- ## 0.2.3 - 09.02.2024
314
-
315
- ### Added
316
-
317
- - Demo Access Login
318
- - Documenation
319
-
320
- ### Changed
321
-
322
- - Adoption of adjustments to the UI base of infra3D Edit
323
-
324
- ### Bugfixes
325
-
326
- - Various minor adjustments
327
-
328
- ## 0.2.0 - 30.01.2024
329
-
330
- ### Added
331
-
332
- - Edit functionality
40
+ ## 1.7.2 - 2026-03-05
41
+
42
+ ### Added
43
+
44
+ - nodechanged event returns now also an averaged lat/lon
45
+ - add new interactive authentication method
46
+ - add tenant name to apm logs
47
+
48
+ ### Bugfixes
49
+
50
+ - fix not all layerimports give local storage warning
51
+ - fix linref measurement not showing the pinned value field
52
+ - fix localStorage not updating
53
+ - fix point cloud export not working correctly on tablet
54
+ - fix textures & geometries memory leak, which caused a WebGL context-loss
55
+
56
+ ### Changes
57
+
58
+ - internal repo reorganisation
59
+ - update sdk dependencies
60
+
61
+ ## 1.7.1 - 2026-01-27
62
+
63
+ ### Bugfixes
64
+
65
+ - Fix login as non-migrated user when using the API
66
+
67
+ ## 1.7.0 - 2025-12-16
68
+
69
+ ### Added
70
+
71
+ - Enable linref for cantons (IN-3084)
72
+ - Fully support domains in ArcGIS Layers
73
+ - add link to infra3D Academy
74
+ - enabled link to profile on platform (IN-1993)
75
+
76
+ ## 1.6.1 - 2025-11-20
77
+
78
+ ### Bugfixes
79
+
80
+ - Performance when calling movePosition on the viewer is improved (NVTS-1060, NVTS-1062)
81
+ - When clicking twice on a feature with the info-tool, the feature info disappears (NVTS-1029, NVTS-1125)
82
+ - When exceeding the limit of the localstorage when importing layers, a message is displayed (NVTS-995)
83
+ - Fixed errors when importing geodataconfigurations from infra3D Classic (NVTS-1069)
84
+ - The Share-Link is updated even if the tool is open and the viewer is moved (NVTS-1078)
85
+ - While the layertree is open and focussed, the play with space works again (NVTS-1066)
86
+ - Overlap of layertree visibility-symbol with scrollbar in Firefox is fixed (NVTS-1067)
87
+
88
+ ### Added
89
+
90
+ - PDF-Export is now also in the API available (NVTS-1057)
91
+
92
+ ## 1.6.0 - 2025-10-29
93
+
94
+ ### Bugfixes
95
+
96
+ - When clicking twice on a feature with the info-tool, the feature info disappears
97
+ - When importing Shapefiles, containing an id property, the ID is no longer overwritten with an internal one
98
+
99
+ ### Added
100
+
101
+ - Authenticate interactively. You could now login with the common login mask (using username)
102
+
103
+ ## 1.5.1 - 2025-10-13
104
+
105
+ ### Bugfixes
106
+
107
+ - fix forever loading search when switching from classic to nextgen (IN-3791)
108
+
109
+ ## 1.5.0 - 2025-09-17
110
+
111
+ ### Added
112
+
113
+ - Node ID is returned in nodechanged event
114
+ - viewer.moveToKey() to move to a specific key
115
+
116
+ ### Bugfixes
117
+
118
+ - Projects with a projectScope containing start- or endtimestamps, show the correct routeLines and routeHexes in the map
119
+ - Fix boolean attribute handling on creating new features
120
+ - moveToPosition is considering the maxDist parameter correctly
121
+
122
+ ### Removed
123
+
124
+ - No request to /outline in framegate is been done, instead the project boundary or the boundary of the EPSG is used.
125
+
126
+ ## 1.4.2 - 2025-08-13
127
+
128
+ ### Bugfixes
129
+
130
+ - fix readme docs
131
+
132
+ ## 1.4.1 - 2025-08-13
133
+
134
+ ### Bugfixes
135
+
136
+ - fix performance (re-render) issue & improve store implementations (IN-3675)
137
+ - fix showing whatsnew on hotfix release (IN-3400)
138
+ - reset selectedaxis when moving away too far
139
+ - fix linref step being shown in non-linref projects
140
+
141
+ ### Changes
142
+
143
+ - streamline PDF Export translations across the whole app (-)
144
+ - activate continuous measurement in linref tool
145
+
146
+ ### Added
147
+
148
+ - implement whatsnew step
149
+
150
+ ## 1.4.0 - 07.08.2025
151
+
152
+ ### Changes
153
+
154
+ - Improve What's New Announcements
155
+
156
+ ### Added
157
+
158
+ - Linear Reference tools: Axisscalebar, Axis Panel, Linear Reference Measurement
159
+ - Survey Wheel Measure
160
+ - PDF Export Tool
161
+
162
+ ## 1.3.1 - 25.07.2025
163
+
164
+ ### Bugfixes
165
+
166
+ - Fix types-file
167
+ - Bundle images inside the js-file
168
+
169
+ ## 1.3.0 - 02.07.2025
170
+
171
+ ### Added
172
+
173
+ - viewer.getCameraView() and viewer.setCameraView(...)
174
+ - viewer.setUserInteraction(true, false) to enable or disable paning and/or zooming in the image
175
+ - viewer.on("panzoomchanged", ...) to get notified when a user is interacting whithin a stereo image
176
+ - viewer.getCurrentNode() to retrieve some information like coordinates of the current position
177
+ - extended the viewer.on("nodechanged", ...) with some further properties
178
+
179
+ ## 1.2.5 - 27.06.2025
180
+
181
+ ### Bugfixes
182
+
183
+ - When adding a WFS 2.0 Layer, the settings have not been took over and not been saved correctly (IN-3444)
184
+ - When minimising the measurement panel and reopening meausrements again, the panels overlap each other (IN-3461)
185
+
186
+ ## 1.2.4 - 12.06.2025
187
+
188
+ ### Bugfixes
189
+
190
+ - Some request when using a non-migrated user resulted in a 400 Bad Request.
191
+
192
+ ## 1.2.3 - 05.06.2025
193
+
194
+ ### Bugfixes
195
+
196
+ - Profile Tool enlarge button now has a tooltip
197
+ - Add-On Point Cloud Export: Authorisation based on scope entry in token
198
+
199
+ ### Added
200
+
201
+ - LoD Concept for Pointcloud fragments
202
+ - Add-On Point Cloud Export: Loading state on startup
203
+
204
+ ## 1.2.2 - 17.04.2025
205
+
206
+ ### Bugfixes
207
+
208
+ - Keydown/-up Eventlisteners ignored if evt.target is an HTMLInputElement, HTMLTextAreaElement or HTMLSelectElement.
209
+ - Requests in routesprovider have a lower limit to not reach the backend limit of 6 MB.
210
+ - Viewer is destroyed completly, with unlistening to events.
211
+ - Layer-configs: Wrong handling with source_options fixed
212
+ - When adding a new feature, it could be saved only after two inserts. This is now fixed.
213
+ - Fix shortened arcgis URL in Layer options
214
+ - Fix jump to multipolygon feature in Feature table
215
+ - Fix bug when Frame 0 is not inside projectscope
216
+ - Fix zick-zack bug in map when having lra-projects
217
+
218
+ ## 1.2.1 - 24.02.2025
219
+
220
+ ### Bugfixes
221
+
222
+ - React Reference Error when activating survey wheel measurement
223
+ - Not loading depthmaps anymore if loading view
224
+
225
+ ## 1.2.0 - 16.12.2024
226
+
227
+ ### Bugfixes
228
+
229
+ - Improve styling when using global box-sizing style
230
+ - Style of the scrollbar is no more globally overwritten by the API
231
+ - Resize event listens now on the div and not the whole window
232
+
233
+ ### Added
234
+
235
+ - Added functions on viewer to draw and pick a geometry
236
+ - Added geometry overlays to display geometries in the viewer
237
+ - Function to destroy the API and remove it from the DOM
238
+
239
+ ## 1.1.2 - 21.10.2024
240
+
241
+ ### Bugfixes
242
+
243
+ - viewer.getRoutes() resulted in an error
244
+
245
+ ## 1.1.1 - 14.10.2024
246
+
247
+ ### Bugfixes
248
+
249
+ - Layer export not working for non-memory layers
250
+ - Duplicate layers when exporting directly after importing layers (without reloading)
251
+
252
+ ## 1.1.0 - 09.10.2024
253
+
254
+ ### Bugfixes
255
+
256
+ - Bug in viewer.getRoutesOutline() when using as migrated user.
257
+ - Same default EPSG-Code (4326) when using start-position for (un)-migrated users.
258
+
259
+ ### Added
260
+
261
+ - ProjectScope is available to restrict the access inside a project accordingly.
262
+ - New concept for routes abstraction in the map, using hexagons
263
+ - viewer.getRouteLines() and viewer.getRouteHexes()
264
+ - PointCloudExport
265
+ - Support of EPSG-Code in start-position
266
+
267
+ ## 1.0.3 - 17.09.2024
268
+
269
+ ### Bugfixes
270
+
271
+ - Fixed pilegate URL for migrated users.
272
+ - Using the profiletool, added an information and reset the tool when changing the image while performing a measurement.
273
+ - Fix the bug when using jest for testing.
274
+ - Added missing bounding box parameter to viewer.getRoutes().
275
+
276
+ ## 1.0.2 - 06.08.2024
277
+
278
+ ### Bugfixes
279
+
280
+ - Fixed bug in the layer tree view. The layer tree is visible again.
281
+
282
+ ## 1.0.1 - 23.07.2024
283
+
284
+ ### Bugfixes
285
+
286
+ - Fixed a bug in the campaign change event in the viewer.
287
+
288
+ ## 1.0.0 - 17.05.2024
289
+
290
+ ### Bugfixes
291
+
292
+ - Restoration of toolbar and top bar functionality: They can now be shown and hidden smoothly.
293
+
294
+ ### Added
295
+
296
+ - Introduction of machine authentication and a new corresponding example.
297
+ - Added: Option for access token in the init function.
298
+ - Added: Refresh token for the init function.
299
+ - Typings
300
+
301
+ ### Changed
302
+
303
+ - Examples have been updated to accommodate the new authentication process.
304
+
305
+ ### Deleted
306
+
307
+ - Interactive login functions.
308
+ - Removed: Two options from the init function:
309
+ - demoAccess
310
+ - redirectPath
311
+
312
+ ## 0.2.8 - 08.04.2024
313
+
314
+ ### Added
315
+
316
+ - Integrated and documented functions
317
+ - moveToPosition
318
+ - moveToCampaign
319
+ - lookAtPosition
320
+ - getRoutes
321
+
322
+ ## 0.2.7 - 04.04.2024
323
+
324
+ ### Added
325
+
326
+ - Improved documentation
327
+ - Description of the event types
328
+ - Description of further settings
329
+
330
+ ### Changed
331
+
332
+ - Adaptation to the existing examples
333
+
334
+ ## 0.2.4 - 14.03.2024
335
+
336
+ ### Bugfixes
337
+
338
+ - Troubleshooting with internal module
339
+
340
+ ## 0.2.3 - 09.02.2024
341
+
342
+ ### Added
343
+
344
+ - Demo Access Login
345
+ - Documenation
346
+
347
+ ### Changed
348
+
349
+ - Adoption of adjustments to the UI base of infra3D Edit
350
+
351
+ ### Bugfixes
352
+
353
+ - Various minor adjustments
354
+
355
+ ## 0.2.0 - 30.01.2024
356
+
357
+ ### Added
358
+
359
+ - Edit functionality
333
360