@jrojaspin/security-map-api-cli 7.0.1 → 7.1.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.
Files changed (84) hide show
  1. package/dist/apis/ItemTypeApi.d.ts +7 -1
  2. package/dist/apis/ItemTypeApi.js +55 -1
  3. package/dist/apis/ItemTypeApi.js.map +1 -1
  4. package/dist/apis/LayerApi.d.ts +52 -0
  5. package/dist/apis/LayerApi.js +183 -0
  6. package/dist/apis/LayerApi.js.map +1 -0
  7. package/dist/apis/ReportApi.d.ts +49 -1
  8. package/dist/apis/ReportApi.js +205 -1
  9. package/dist/apis/ReportApi.js.map +1 -1
  10. package/dist/apis/StateMachineApi.d.ts +13 -1
  11. package/dist/apis/StateMachineApi.js +61 -1
  12. package/dist/apis/StateMachineApi.js.map +1 -1
  13. package/dist/apis/index.d.ts +1 -0
  14. package/dist/apis/index.js +1 -0
  15. package/dist/apis/index.js.map +1 -1
  16. package/dist/index.d.ts +311 -27
  17. package/dist/index.mjs +1075 -84
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/models/Def173.d.ts +8 -0
  20. package/dist/models/Def173.js +16 -0
  21. package/dist/models/Def173.js.map +1 -0
  22. package/dist/models/MapClusterListOutputPaginated.d.ts +9 -0
  23. package/dist/models/MapClusterListOutputPaginated.js +29 -0
  24. package/dist/models/MapClusterListOutputPaginated.js.map +1 -0
  25. package/dist/models/MapClusterORM.d.ts +11 -0
  26. package/dist/models/MapClusterORM.js +40 -0
  27. package/dist/models/MapClusterORM.js.map +1 -0
  28. package/dist/models/MapItemInput.d.ts +1 -1
  29. package/dist/models/MapItemInput.js +1 -3
  30. package/dist/models/MapItemInput.js.map +1 -1
  31. package/dist/models/MapItemListOutputPaginated.d.ts +11 -0
  32. package/dist/models/MapItemListOutputPaginated.js +34 -0
  33. package/dist/models/MapItemListOutputPaginated.js.map +1 -0
  34. package/dist/models/MapItemTypeDynamicFieldDefinitionSingleOutput.d.ts +9 -0
  35. package/dist/models/MapItemTypeDynamicFieldDefinitionSingleOutput.js +29 -0
  36. package/dist/models/MapItemTypeDynamicFieldDefinitionSingleOutput.js.map +1 -0
  37. package/dist/models/MapItemTypeFormOutput.d.ts +9 -0
  38. package/dist/models/MapItemTypeFormOutput.js +29 -0
  39. package/dist/models/MapItemTypeFormOutput.js.map +1 -0
  40. package/dist/models/MapItemTypeSingleOutput.d.ts +9 -0
  41. package/dist/models/MapItemTypeSingleOutput.js +29 -0
  42. package/dist/models/MapItemTypeSingleOutput.js.map +1 -0
  43. package/dist/models/MapLayerOutputDto.d.ts +0 -2
  44. package/dist/models/MapLayerOutputDto.js +0 -5
  45. package/dist/models/MapLayerOutputDto.js.map +1 -1
  46. package/dist/models/PageInfo.d.ts +9 -0
  47. package/dist/models/PageInfo.js +32 -0
  48. package/dist/models/PageInfo.js.map +1 -0
  49. package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
  50. package/dist/models/ReportAllItemsListOutput.js +3 -3
  51. package/dist/models/ReportAvailableColumnDto.d.ts +17 -2
  52. package/dist/models/ReportAvailableColumnDto.js +20 -3
  53. package/dist/models/ReportAvailableColumnDto.js.map +1 -1
  54. package/dist/models/ReportColumnFilterListOutput.d.ts +9 -0
  55. package/dist/models/ReportColumnFilterListOutput.js +29 -0
  56. package/dist/models/ReportColumnFilterListOutput.js.map +1 -0
  57. package/dist/models/ReportColumnFilterOutput.d.ts +9 -0
  58. package/dist/models/ReportColumnFilterOutput.js +29 -0
  59. package/dist/models/ReportColumnFilterOutput.js.map +1 -0
  60. package/dist/models/ReportColumnListOutput.d.ts +9 -0
  61. package/dist/models/ReportColumnListOutput.js +29 -0
  62. package/dist/models/ReportColumnListOutput.js.map +1 -0
  63. package/dist/models/ReportColumnOutput.d.ts +9 -0
  64. package/dist/models/ReportColumnOutput.js +29 -0
  65. package/dist/models/ReportColumnOutput.js.map +1 -0
  66. package/dist/models/StateMachineDefinitionOutput.d.ts +9 -0
  67. package/dist/models/StateMachineDefinitionOutput.js +29 -0
  68. package/dist/models/StateMachineDefinitionOutput.js.map +1 -0
  69. package/dist/models/StateMachineInput.d.ts +8 -0
  70. package/dist/models/StateMachineInput.js +28 -0
  71. package/dist/models/StateMachineInput.js.map +1 -0
  72. package/dist/models/StateMachineOutput.d.ts +9 -0
  73. package/dist/models/StateMachineOutput.js +29 -0
  74. package/dist/models/StateMachineOutput.js.map +1 -0
  75. package/dist/models/StateMachineStateInput.d.ts +9 -0
  76. package/dist/models/StateMachineStateInput.js +32 -0
  77. package/dist/models/StateMachineStateInput.js.map +1 -0
  78. package/dist/models/StateMachineTransitionInput.d.ts +10 -0
  79. package/dist/models/StateMachineTransitionInput.js +36 -0
  80. package/dist/models/StateMachineTransitionInput.js.map +1 -0
  81. package/dist/models/index.d.ts +17 -1
  82. package/dist/models/index.js +17 -1
  83. package/dist/models/index.js.map +1 -1
  84. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1211,19 +1211,19 @@ function ChartConfigurationToJSONTyped(value, ignoreDiscriminator = false) {
1211
1211
  };
1212
1212
  }
1213
1213
 
1214
- function instanceOfDef157(value) {
1214
+ function instanceOfDef173(value) {
1215
1215
  return true;
1216
1216
  }
1217
- function Def157FromJSON(json) {
1218
- return Def157FromJSONTyped(json);
1217
+ function Def173FromJSON(json) {
1218
+ return Def173FromJSONTyped(json);
1219
1219
  }
1220
- function Def157FromJSONTyped(json, ignoreDiscriminator) {
1220
+ function Def173FromJSONTyped(json, ignoreDiscriminator) {
1221
1221
  return json;
1222
1222
  }
1223
- function Def157ToJSON(json) {
1224
- return Def157ToJSONTyped(json, false);
1223
+ function Def173ToJSON(json) {
1224
+ return Def173ToJSONTyped(json, false);
1225
1225
  }
1226
- function Def157ToJSONTyped(value, ignoreDiscriminator = false) {
1226
+ function Def173ToJSONTyped(value, ignoreDiscriminator = false) {
1227
1227
  return value;
1228
1228
  }
1229
1229
 
@@ -3228,6 +3228,74 @@ function ManualRegisterInputToJSONTyped(value, ignoreDiscriminator = false) {
3228
3228
  };
3229
3229
  }
3230
3230
 
3231
+ function instanceOfMapClusterORM(value) {
3232
+ if (!('itemTypeId' in value) || value['itemTypeId'] === undefined)
3233
+ return false;
3234
+ if (!('count' in value) || value['count'] === undefined)
3235
+ return false;
3236
+ if (!('lat' in value) || value['lat'] === undefined)
3237
+ return false;
3238
+ if (!('lon' in value) || value['lon'] === undefined)
3239
+ return false;
3240
+ return true;
3241
+ }
3242
+ function MapClusterORMFromJSON(json) {
3243
+ return MapClusterORMFromJSONTyped(json);
3244
+ }
3245
+ function MapClusterORMFromJSONTyped(json, ignoreDiscriminator) {
3246
+ if (json == null) {
3247
+ return json;
3248
+ }
3249
+ return {
3250
+ 'itemTypeId': json['itemTypeId'],
3251
+ 'count': json['count'],
3252
+ 'lat': json['lat'],
3253
+ 'lon': json['lon'],
3254
+ };
3255
+ }
3256
+ function MapClusterORMToJSON(json) {
3257
+ return MapClusterORMToJSONTyped(json, false);
3258
+ }
3259
+ function MapClusterORMToJSONTyped(value, ignoreDiscriminator = false) {
3260
+ if (value == null) {
3261
+ return value;
3262
+ }
3263
+ return {
3264
+ 'itemTypeId': value['itemTypeId'],
3265
+ 'count': value['count'],
3266
+ 'lat': value['lat'],
3267
+ 'lon': value['lon'],
3268
+ };
3269
+ }
3270
+
3271
+ function instanceOfMapClusterListOutputPaginated(value) {
3272
+ if (!('data' in value) || value['data'] === undefined)
3273
+ return false;
3274
+ return true;
3275
+ }
3276
+ function MapClusterListOutputPaginatedFromJSON(json) {
3277
+ return MapClusterListOutputPaginatedFromJSONTyped(json);
3278
+ }
3279
+ function MapClusterListOutputPaginatedFromJSONTyped(json, ignoreDiscriminator) {
3280
+ if (json == null) {
3281
+ return json;
3282
+ }
3283
+ return {
3284
+ 'data': (json['data'].map(MapClusterORMFromJSON)),
3285
+ };
3286
+ }
3287
+ function MapClusterListOutputPaginatedToJSON(json) {
3288
+ return MapClusterListOutputPaginatedToJSONTyped(json, false);
3289
+ }
3290
+ function MapClusterListOutputPaginatedToJSONTyped(value, ignoreDiscriminator = false) {
3291
+ if (value == null) {
3292
+ return value;
3293
+ }
3294
+ return {
3295
+ 'data': (value['data'].map(MapClusterORMToJSON)),
3296
+ };
3297
+ }
3298
+
3231
3299
  function instanceOfMapItemArticleInputDto(value) {
3232
3300
  if (!('articleId' in value) || value['articleId'] === undefined)
3233
3301
  return false;
@@ -3392,8 +3460,6 @@ function instanceOfMapItemInput(value) {
3392
3460
  return false;
3393
3461
  if (!('stateId' in value) || value['stateId'] === undefined)
3394
3462
  return false;
3395
- if (!('title' in value) || value['title'] === undefined)
3396
- return false;
3397
3463
  if (!('description' in value) || value['description'] === undefined)
3398
3464
  return false;
3399
3465
  if (!('mapItemTypeId' in value) || value['mapItemTypeId'] === undefined)
@@ -3413,7 +3479,7 @@ function MapItemInputFromJSONTyped(json, ignoreDiscriminator) {
3413
3479
  'dynamicFields': (json['dynamicFields'].map(MapItemDynamicFieldInputDtoFromJSON)),
3414
3480
  'layerId': json['layerId'] == null ? undefined : json['layerId'],
3415
3481
  'stateId': json['stateId'],
3416
- 'title': json['title'],
3482
+ 'title': json['title'] == null ? undefined : json['title'],
3417
3483
  'description': json['description'],
3418
3484
  'mapItemTypeId': json['mapItemTypeId'],
3419
3485
  'id': json['id'] == null ? undefined : json['id'],
@@ -3503,6 +3569,70 @@ function MapItemListOutputToJSONTyped(value, ignoreDiscriminator = false) {
3503
3569
  };
3504
3570
  }
3505
3571
 
3572
+ function instanceOfPageInfo(value) {
3573
+ if (!('hasNextPage' in value) || value['hasNextPage'] === undefined)
3574
+ return false;
3575
+ if (!('nextCursor' in value) || value['nextCursor'] === undefined)
3576
+ return false;
3577
+ return true;
3578
+ }
3579
+ function PageInfoFromJSON(json) {
3580
+ return PageInfoFromJSONTyped(json);
3581
+ }
3582
+ function PageInfoFromJSONTyped(json, ignoreDiscriminator) {
3583
+ if (json == null) {
3584
+ return json;
3585
+ }
3586
+ return {
3587
+ 'hasNextPage': json['hasNextPage'],
3588
+ 'nextCursor': json['nextCursor'],
3589
+ };
3590
+ }
3591
+ function PageInfoToJSON(json) {
3592
+ return PageInfoToJSONTyped(json, false);
3593
+ }
3594
+ function PageInfoToJSONTyped(value, ignoreDiscriminator = false) {
3595
+ if (value == null) {
3596
+ return value;
3597
+ }
3598
+ return {
3599
+ 'hasNextPage': value['hasNextPage'],
3600
+ 'nextCursor': value['nextCursor'],
3601
+ };
3602
+ }
3603
+
3604
+ function instanceOfMapItemListOutputPaginated(value) {
3605
+ if (!('data' in value) || value['data'] === undefined)
3606
+ return false;
3607
+ if (!('pageInfo' in value) || value['pageInfo'] === undefined)
3608
+ return false;
3609
+ return true;
3610
+ }
3611
+ function MapItemListOutputPaginatedFromJSON(json) {
3612
+ return MapItemListOutputPaginatedFromJSONTyped(json);
3613
+ }
3614
+ function MapItemListOutputPaginatedFromJSONTyped(json, ignoreDiscriminator) {
3615
+ if (json == null) {
3616
+ return json;
3617
+ }
3618
+ return {
3619
+ 'data': (json['data'].map(MapItemOutputDtoFromJSON)),
3620
+ 'pageInfo': PageInfoFromJSON(json['pageInfo']),
3621
+ };
3622
+ }
3623
+ function MapItemListOutputPaginatedToJSON(json) {
3624
+ return MapItemListOutputPaginatedToJSONTyped(json, false);
3625
+ }
3626
+ function MapItemListOutputPaginatedToJSONTyped(value, ignoreDiscriminator = false) {
3627
+ if (value == null) {
3628
+ return value;
3629
+ }
3630
+ return {
3631
+ 'data': (value['data'].map(MapItemOutputDtoToJSON)),
3632
+ 'pageInfo': PageInfoToJSON(value['pageInfo']),
3633
+ };
3634
+ }
3635
+
3506
3636
  function instanceOfMapItemMultimediaOutput(value) {
3507
3637
  if (!('data' in value) || value['data'] === undefined)
3508
3638
  return false;
@@ -3751,6 +3881,34 @@ function MapItemTypeDynamicFieldDefinitionOutputToJSONTyped(value, ignoreDiscrim
3751
3881
  };
3752
3882
  }
3753
3883
 
3884
+ function instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput(value) {
3885
+ if (!('data' in value) || value['data'] === undefined)
3886
+ return false;
3887
+ return true;
3888
+ }
3889
+ function MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON(json) {
3890
+ return MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped(json);
3891
+ }
3892
+ function MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped(json, ignoreDiscriminator) {
3893
+ if (json == null) {
3894
+ return json;
3895
+ }
3896
+ return {
3897
+ 'data': MapItemCustomFieldDefinitionORMFromJSON(json['data']),
3898
+ };
3899
+ }
3900
+ function MapItemTypeDynamicFieldDefinitionSingleOutputToJSON(json) {
3901
+ return MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped(json, false);
3902
+ }
3903
+ function MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped(value, ignoreDiscriminator = false) {
3904
+ if (value == null) {
3905
+ return value;
3906
+ }
3907
+ return {
3908
+ 'data': MapItemCustomFieldDefinitionORMToJSON(value['data']),
3909
+ };
3910
+ }
3911
+
3754
3912
  function instanceOfSearchResultSectionItem(value) {
3755
3913
  if (!('title' in value) || value['title'] === undefined)
3756
3914
  return false;
@@ -3887,6 +4045,34 @@ function MapItemTypeFormActionToJSONTyped(value, ignoreDiscriminator) {
3887
4045
  return value;
3888
4046
  }
3889
4047
 
4048
+ function instanceOfMapItemTypeFormOutput(value) {
4049
+ if (!('data' in value) || value['data'] === undefined)
4050
+ return false;
4051
+ return true;
4052
+ }
4053
+ function MapItemTypeFormOutputFromJSON(json) {
4054
+ return MapItemTypeFormOutputFromJSONTyped(json);
4055
+ }
4056
+ function MapItemTypeFormOutputFromJSONTyped(json, ignoreDiscriminator) {
4057
+ if (json == null) {
4058
+ return json;
4059
+ }
4060
+ return {
4061
+ 'data': MapItemTypeFormORMFromJSON(json['data']),
4062
+ };
4063
+ }
4064
+ function MapItemTypeFormOutputToJSON(json) {
4065
+ return MapItemTypeFormOutputToJSONTyped(json, false);
4066
+ }
4067
+ function MapItemTypeFormOutputToJSONTyped(value, ignoreDiscriminator = false) {
4068
+ if (value == null) {
4069
+ return value;
4070
+ }
4071
+ return {
4072
+ 'data': MapItemTypeFormORMToJSON(value['data']),
4073
+ };
4074
+ }
4075
+
3890
4076
  const MapItemTypeFormSectionBaseFieldId = {
3891
4077
  Id: 'ID',
3892
4078
  Title: 'TITLE',
@@ -3978,6 +4164,34 @@ function MapItemTypeOutputToJSONTyped(value, ignoreDiscriminator = false) {
3978
4164
  };
3979
4165
  }
3980
4166
 
4167
+ function instanceOfMapItemTypeSingleOutput(value) {
4168
+ if (!('data' in value) || value['data'] === undefined)
4169
+ return false;
4170
+ return true;
4171
+ }
4172
+ function MapItemTypeSingleOutputFromJSON(json) {
4173
+ return MapItemTypeSingleOutputFromJSONTyped(json);
4174
+ }
4175
+ function MapItemTypeSingleOutputFromJSONTyped(json, ignoreDiscriminator) {
4176
+ if (json == null) {
4177
+ return json;
4178
+ }
4179
+ return {
4180
+ 'data': MapItemTypeORMFromJSON(json['data']),
4181
+ };
4182
+ }
4183
+ function MapItemTypeSingleOutputToJSON(json) {
4184
+ return MapItemTypeSingleOutputToJSONTyped(json, false);
4185
+ }
4186
+ function MapItemTypeSingleOutputToJSONTyped(value, ignoreDiscriminator = false) {
4187
+ if (value == null) {
4188
+ return value;
4189
+ }
4190
+ return {
4191
+ 'data': MapItemTypeORMToJSON(value['data']),
4192
+ };
4193
+ }
4194
+
3981
4195
  function instanceOfMapLayerContourCoordORM(value) {
3982
4196
  if (!('layerId' in value) || value['layerId'] === undefined)
3983
4197
  return false;
@@ -4156,57 +4370,9 @@ function MapLayerItemORMToJSONTyped(value, ignoreDiscriminator = false) {
4156
4370
  };
4157
4371
  }
4158
4372
 
4159
- function instanceOfMapORM(value) {
4160
- if (!('title' in value) || value['title'] === undefined)
4161
- return false;
4162
- if (!('centerLat' in value) || value['centerLat'] === undefined)
4163
- return false;
4164
- if (!('centerLon' in value) || value['centerLon'] === undefined)
4165
- return false;
4166
- if (!('code' in value) || value['code'] === undefined)
4167
- return false;
4168
- return true;
4169
- }
4170
- function MapORMFromJSON(json) {
4171
- return MapORMFromJSONTyped(json);
4172
- }
4173
- function MapORMFromJSONTyped(json, ignoreDiscriminator) {
4174
- if (json == null) {
4175
- return json;
4176
- }
4177
- return {
4178
- 'id': json['id'] == null ? undefined : json['id'],
4179
- 'title': json['title'],
4180
- 'centerLat': json['centerLat'],
4181
- 'centerLon': json['centerLon'],
4182
- 'code': json['code'],
4183
- 'createDate': json['createDate'] == null ? undefined : json['createDate'],
4184
- 'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
4185
- };
4186
- }
4187
- function MapORMToJSON(json) {
4188
- return MapORMToJSONTyped(json, false);
4189
- }
4190
- function MapORMToJSONTyped(value, ignoreDiscriminator = false) {
4191
- if (value == null) {
4192
- return value;
4193
- }
4194
- return {
4195
- 'id': value['id'],
4196
- 'title': value['title'],
4197
- 'centerLat': value['centerLat'],
4198
- 'centerLon': value['centerLon'],
4199
- 'code': value['code'],
4200
- 'createDate': value['createDate'],
4201
- 'deleteDate': value['deleteDate'],
4202
- };
4203
- }
4204
-
4205
4373
  function instanceOfMapLayerOutputDto(value) {
4206
4374
  if (!('id' in value) || value['id'] === undefined)
4207
4375
  return false;
4208
- if (!('map' in value) || value['map'] === undefined)
4209
- return false;
4210
4376
  if (!('title' in value) || value['title'] === undefined)
4211
4377
  return false;
4212
4378
  if (!('itemTypeFilter' in value) || value['itemTypeFilter'] === undefined)
@@ -4234,7 +4400,6 @@ function MapLayerOutputDtoFromJSONTyped(json, ignoreDiscriminator) {
4234
4400
  }
4235
4401
  return {
4236
4402
  'id': json['id'],
4237
- 'map': MapORMFromJSON(json['map']),
4238
4403
  'title': json['title'],
4239
4404
  'itemTypeFilter': json['itemTypeFilter'],
4240
4405
  'contour': (json['contour'].map(CoordDtoFromJSON)),
@@ -4256,7 +4421,6 @@ function MapLayerOutputDtoToJSONTyped(value, ignoreDiscriminator = false) {
4256
4421
  }
4257
4422
  return {
4258
4423
  'id': value['id'],
4259
- 'map': MapORMToJSON(value['map']),
4260
4424
  'title': value['title'],
4261
4425
  'itemTypeFilter': value['itemTypeFilter'],
4262
4426
  'contour': (value['contour'].map(CoordDtoToJSON)),
@@ -4380,6 +4544,52 @@ function MapLayerOutputToJSONTyped(value, ignoreDiscriminator = false) {
4380
4544
  };
4381
4545
  }
4382
4546
 
4547
+ function instanceOfMapORM(value) {
4548
+ if (!('title' in value) || value['title'] === undefined)
4549
+ return false;
4550
+ if (!('centerLat' in value) || value['centerLat'] === undefined)
4551
+ return false;
4552
+ if (!('centerLon' in value) || value['centerLon'] === undefined)
4553
+ return false;
4554
+ if (!('code' in value) || value['code'] === undefined)
4555
+ return false;
4556
+ return true;
4557
+ }
4558
+ function MapORMFromJSON(json) {
4559
+ return MapORMFromJSONTyped(json);
4560
+ }
4561
+ function MapORMFromJSONTyped(json, ignoreDiscriminator) {
4562
+ if (json == null) {
4563
+ return json;
4564
+ }
4565
+ return {
4566
+ 'id': json['id'] == null ? undefined : json['id'],
4567
+ 'title': json['title'],
4568
+ 'centerLat': json['centerLat'],
4569
+ 'centerLon': json['centerLon'],
4570
+ 'code': json['code'],
4571
+ 'createDate': json['createDate'] == null ? undefined : json['createDate'],
4572
+ 'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
4573
+ };
4574
+ }
4575
+ function MapORMToJSON(json) {
4576
+ return MapORMToJSONTyped(json, false);
4577
+ }
4578
+ function MapORMToJSONTyped(value, ignoreDiscriminator = false) {
4579
+ if (value == null) {
4580
+ return value;
4581
+ }
4582
+ return {
4583
+ 'id': value['id'],
4584
+ 'title': value['title'],
4585
+ 'centerLat': value['centerLat'],
4586
+ 'centerLon': value['centerLon'],
4587
+ 'code': value['code'],
4588
+ 'createDate': value['createDate'],
4589
+ 'deleteDate': value['deleteDate'],
4590
+ };
4591
+ }
4592
+
4383
4593
  function instanceOfMapListOutput(value) {
4384
4594
  if (!('data' in value) || value['data'] === undefined)
4385
4595
  return false;
@@ -4855,7 +5065,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
4855
5065
  return json;
4856
5066
  }
4857
5067
  return {
4858
- 'data': (json['data'].map(Def157FromJSON)),
5068
+ 'data': (json['data'].map(Def173FromJSON)),
4859
5069
  };
4860
5070
  }
4861
5071
  function ReportAllItemsListOutputToJSON(json) {
@@ -4866,15 +5076,31 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
4866
5076
  return value;
4867
5077
  }
4868
5078
  return {
4869
- 'data': (value['data'].map(Def157ToJSON)),
5079
+ 'data': (value['data'].map(Def173ToJSON)),
4870
5080
  };
4871
5081
  }
4872
5082
 
5083
+ const ReportAvailableColumnDtoColumnTypeEnum = {
5084
+ String: 'STRING',
5085
+ Number: 'NUMBER',
5086
+ Date: 'DATE',
5087
+ DateTime: 'DATE_TIME',
5088
+ Boolean: 'BOOLEAN',
5089
+ Select: 'SELECT',
5090
+ Multiselect: 'MULTISELECT',
5091
+ Textarea: 'TEXTAREA',
5092
+ Link: 'LINK',
5093
+ Image: 'IMAGE',
5094
+ File: 'FILE',
5095
+ MapZone: 'MAP_ZONE'
5096
+ };
4873
5097
  function instanceOfReportAvailableColumnDto(value) {
4874
5098
  if (!('name' in value) || value['name'] === undefined)
4875
5099
  return false;
4876
5100
  if (!('columnType' in value) || value['columnType'] === undefined)
4877
5101
  return false;
5102
+ if (!('columnSource' in value) || value['columnSource'] === undefined)
5103
+ return false;
4878
5104
  return true;
4879
5105
  }
4880
5106
  function ReportAvailableColumnDtoFromJSON(json) {
@@ -4886,7 +5112,8 @@ function ReportAvailableColumnDtoFromJSONTyped(json, ignoreDiscriminator) {
4886
5112
  }
4887
5113
  return {
4888
5114
  'name': json['name'],
4889
- 'columnType': MapItemFieldTypeFromJSON(json['columnType']),
5115
+ 'columnType': json['columnType'],
5116
+ 'columnSource': json['columnSource'],
4890
5117
  };
4891
5118
  }
4892
5119
  function ReportAvailableColumnDtoToJSON(json) {
@@ -4898,7 +5125,8 @@ function ReportAvailableColumnDtoToJSONTyped(value, ignoreDiscriminator = false)
4898
5125
  }
4899
5126
  return {
4900
5127
  'name': value['name'],
4901
- 'columnType': MapItemFieldTypeToJSON(value['columnType']),
5128
+ 'columnType': value['columnType'],
5129
+ 'columnSource': value['columnSource'],
4902
5130
  };
4903
5131
  }
4904
5132
 
@@ -4972,6 +5200,62 @@ function ReportColumnFilterORMToJSONTyped(value, ignoreDiscriminator = false) {
4972
5200
  };
4973
5201
  }
4974
5202
 
5203
+ function instanceOfReportColumnFilterListOutput(value) {
5204
+ if (!('data' in value) || value['data'] === undefined)
5205
+ return false;
5206
+ return true;
5207
+ }
5208
+ function ReportColumnFilterListOutputFromJSON(json) {
5209
+ return ReportColumnFilterListOutputFromJSONTyped(json);
5210
+ }
5211
+ function ReportColumnFilterListOutputFromJSONTyped(json, ignoreDiscriminator) {
5212
+ if (json == null) {
5213
+ return json;
5214
+ }
5215
+ return {
5216
+ 'data': (json['data'].map(ReportColumnFilterORMFromJSON)),
5217
+ };
5218
+ }
5219
+ function ReportColumnFilterListOutputToJSON(json) {
5220
+ return ReportColumnFilterListOutputToJSONTyped(json, false);
5221
+ }
5222
+ function ReportColumnFilterListOutputToJSONTyped(value, ignoreDiscriminator = false) {
5223
+ if (value == null) {
5224
+ return value;
5225
+ }
5226
+ return {
5227
+ 'data': (value['data'].map(ReportColumnFilterORMToJSON)),
5228
+ };
5229
+ }
5230
+
5231
+ function instanceOfReportColumnFilterOutput(value) {
5232
+ if (!('data' in value) || value['data'] === undefined)
5233
+ return false;
5234
+ return true;
5235
+ }
5236
+ function ReportColumnFilterOutputFromJSON(json) {
5237
+ return ReportColumnFilterOutputFromJSONTyped(json);
5238
+ }
5239
+ function ReportColumnFilterOutputFromJSONTyped(json, ignoreDiscriminator) {
5240
+ if (json == null) {
5241
+ return json;
5242
+ }
5243
+ return {
5244
+ 'data': ReportColumnFilterORMFromJSON(json['data']),
5245
+ };
5246
+ }
5247
+ function ReportColumnFilterOutputToJSON(json) {
5248
+ return ReportColumnFilterOutputToJSONTyped(json, false);
5249
+ }
5250
+ function ReportColumnFilterOutputToJSONTyped(value, ignoreDiscriminator = false) {
5251
+ if (value == null) {
5252
+ return value;
5253
+ }
5254
+ return {
5255
+ 'data': ReportColumnFilterORMToJSON(value['data']),
5256
+ };
5257
+ }
5258
+
4975
5259
  function instanceOfReportColumnORM(value) {
4976
5260
  if (!('reportId' in value) || value['reportId'] === undefined)
4977
5261
  return false;
@@ -5038,6 +5322,62 @@ function ReportColumnORMToJSONTyped(value, ignoreDiscriminator = false) {
5038
5322
  };
5039
5323
  }
5040
5324
 
5325
+ function instanceOfReportColumnListOutput(value) {
5326
+ if (!('data' in value) || value['data'] === undefined)
5327
+ return false;
5328
+ return true;
5329
+ }
5330
+ function ReportColumnListOutputFromJSON(json) {
5331
+ return ReportColumnListOutputFromJSONTyped(json);
5332
+ }
5333
+ function ReportColumnListOutputFromJSONTyped(json, ignoreDiscriminator) {
5334
+ if (json == null) {
5335
+ return json;
5336
+ }
5337
+ return {
5338
+ 'data': (json['data'].map(ReportColumnORMFromJSON)),
5339
+ };
5340
+ }
5341
+ function ReportColumnListOutputToJSON(json) {
5342
+ return ReportColumnListOutputToJSONTyped(json, false);
5343
+ }
5344
+ function ReportColumnListOutputToJSONTyped(value, ignoreDiscriminator = false) {
5345
+ if (value == null) {
5346
+ return value;
5347
+ }
5348
+ return {
5349
+ 'data': (value['data'].map(ReportColumnORMToJSON)),
5350
+ };
5351
+ }
5352
+
5353
+ function instanceOfReportColumnOutput(value) {
5354
+ if (!('data' in value) || value['data'] === undefined)
5355
+ return false;
5356
+ return true;
5357
+ }
5358
+ function ReportColumnOutputFromJSON(json) {
5359
+ return ReportColumnOutputFromJSONTyped(json);
5360
+ }
5361
+ function ReportColumnOutputFromJSONTyped(json, ignoreDiscriminator) {
5362
+ if (json == null) {
5363
+ return json;
5364
+ }
5365
+ return {
5366
+ 'data': ReportColumnORMFromJSON(json['data']),
5367
+ };
5368
+ }
5369
+ function ReportColumnOutputToJSON(json) {
5370
+ return ReportColumnOutputToJSONTyped(json, false);
5371
+ }
5372
+ function ReportColumnOutputToJSONTyped(value, ignoreDiscriminator = false) {
5373
+ if (value == null) {
5374
+ return value;
5375
+ }
5376
+ return {
5377
+ 'data': ReportColumnORMToJSON(value['data']),
5378
+ };
5379
+ }
5380
+
5041
5381
  function instanceOfReportConfigurationDto(value) {
5042
5382
  if (!('startDate' in value) || value['startDate'] === undefined)
5043
5383
  return false;
@@ -5627,6 +5967,62 @@ function StateMachineDefinitionListOutputToJSONTyped(value, ignoreDiscriminator
5627
5967
  };
5628
5968
  }
5629
5969
 
5970
+ function instanceOfStateMachineDefinitionOutput(value) {
5971
+ if (!('data' in value) || value['data'] === undefined)
5972
+ return false;
5973
+ return true;
5974
+ }
5975
+ function StateMachineDefinitionOutputFromJSON(json) {
5976
+ return StateMachineDefinitionOutputFromJSONTyped(json);
5977
+ }
5978
+ function StateMachineDefinitionOutputFromJSONTyped(json, ignoreDiscriminator) {
5979
+ if (json == null) {
5980
+ return json;
5981
+ }
5982
+ return {
5983
+ 'data': StateMachineDefinitionOutputDtoFromJSON(json['data']),
5984
+ };
5985
+ }
5986
+ function StateMachineDefinitionOutputToJSON(json) {
5987
+ return StateMachineDefinitionOutputToJSONTyped(json, false);
5988
+ }
5989
+ function StateMachineDefinitionOutputToJSONTyped(value, ignoreDiscriminator = false) {
5990
+ if (value == null) {
5991
+ return value;
5992
+ }
5993
+ return {
5994
+ 'data': StateMachineDefinitionOutputDtoToJSON(value['data']),
5995
+ };
5996
+ }
5997
+
5998
+ function instanceOfStateMachineInput(value) {
5999
+ if (!('title' in value) || value['title'] === undefined)
6000
+ return false;
6001
+ return true;
6002
+ }
6003
+ function StateMachineInputFromJSON(json) {
6004
+ return StateMachineInputFromJSONTyped(json);
6005
+ }
6006
+ function StateMachineInputFromJSONTyped(json, ignoreDiscriminator) {
6007
+ if (json == null) {
6008
+ return json;
6009
+ }
6010
+ return {
6011
+ 'title': json['title'],
6012
+ };
6013
+ }
6014
+ function StateMachineInputToJSON(json) {
6015
+ return StateMachineInputToJSONTyped(json, false);
6016
+ }
6017
+ function StateMachineInputToJSONTyped(value, ignoreDiscriminator = false) {
6018
+ if (value == null) {
6019
+ return value;
6020
+ }
6021
+ return {
6022
+ 'title': value['title'],
6023
+ };
6024
+ }
6025
+
5630
6026
  function instanceOfStateMachineORM(value) {
5631
6027
  if (!('title' in value) || value['title'] === undefined)
5632
6028
  return false;
@@ -5659,6 +6055,102 @@ function StateMachineORMToJSONTyped(value, ignoreDiscriminator = false) {
5659
6055
  };
5660
6056
  }
5661
6057
 
6058
+ function instanceOfStateMachineOutput(value) {
6059
+ if (!('data' in value) || value['data'] === undefined)
6060
+ return false;
6061
+ return true;
6062
+ }
6063
+ function StateMachineOutputFromJSON(json) {
6064
+ return StateMachineOutputFromJSONTyped(json);
6065
+ }
6066
+ function StateMachineOutputFromJSONTyped(json, ignoreDiscriminator) {
6067
+ if (json == null) {
6068
+ return json;
6069
+ }
6070
+ return {
6071
+ 'data': StateMachineORMFromJSON(json['data']),
6072
+ };
6073
+ }
6074
+ function StateMachineOutputToJSON(json) {
6075
+ return StateMachineOutputToJSONTyped(json, false);
6076
+ }
6077
+ function StateMachineOutputToJSONTyped(value, ignoreDiscriminator = false) {
6078
+ if (value == null) {
6079
+ return value;
6080
+ }
6081
+ return {
6082
+ 'data': StateMachineORMToJSON(value['data']),
6083
+ };
6084
+ }
6085
+
6086
+ function instanceOfStateMachineStateInput(value) {
6087
+ if (!('title' in value) || value['title'] === undefined)
6088
+ return false;
6089
+ if (!('isInitState' in value) || value['isInitState'] === undefined)
6090
+ return false;
6091
+ return true;
6092
+ }
6093
+ function StateMachineStateInputFromJSON(json) {
6094
+ return StateMachineStateInputFromJSONTyped(json);
6095
+ }
6096
+ function StateMachineStateInputFromJSONTyped(json, ignoreDiscriminator) {
6097
+ if (json == null) {
6098
+ return json;
6099
+ }
6100
+ return {
6101
+ 'title': json['title'],
6102
+ 'isInitState': json['isInitState'],
6103
+ };
6104
+ }
6105
+ function StateMachineStateInputToJSON(json) {
6106
+ return StateMachineStateInputToJSONTyped(json, false);
6107
+ }
6108
+ function StateMachineStateInputToJSONTyped(value, ignoreDiscriminator = false) {
6109
+ if (value == null) {
6110
+ return value;
6111
+ }
6112
+ return {
6113
+ 'title': value['title'],
6114
+ 'isInitState': value['isInitState'],
6115
+ };
6116
+ }
6117
+
6118
+ function instanceOfStateMachineTransitionInput(value) {
6119
+ if (!('title' in value) || value['title'] === undefined)
6120
+ return false;
6121
+ if (!('stateFromId' in value) || value['stateFromId'] === undefined)
6122
+ return false;
6123
+ if (!('stateToId' in value) || value['stateToId'] === undefined)
6124
+ return false;
6125
+ return true;
6126
+ }
6127
+ function StateMachineTransitionInputFromJSON(json) {
6128
+ return StateMachineTransitionInputFromJSONTyped(json);
6129
+ }
6130
+ function StateMachineTransitionInputFromJSONTyped(json, ignoreDiscriminator) {
6131
+ if (json == null) {
6132
+ return json;
6133
+ }
6134
+ return {
6135
+ 'title': json['title'],
6136
+ 'stateFromId': json['stateFromId'],
6137
+ 'stateToId': json['stateToId'],
6138
+ };
6139
+ }
6140
+ function StateMachineTransitionInputToJSON(json) {
6141
+ return StateMachineTransitionInputToJSONTyped(json, false);
6142
+ }
6143
+ function StateMachineTransitionInputToJSONTyped(value, ignoreDiscriminator = false) {
6144
+ if (value == null) {
6145
+ return value;
6146
+ }
6147
+ return {
6148
+ 'title': value['title'],
6149
+ 'stateFromId': value['stateFromId'],
6150
+ 'stateToId': value['stateToId'],
6151
+ };
6152
+ }
6153
+
5662
6154
  function instanceOfStateMachineTransitionLogORM(value) {
5663
6155
  if (!('itemId' in value) || value['itemId'] === undefined)
5664
6156
  return false;
@@ -6463,6 +6955,42 @@ class ItemTypeApi extends BaseAPI {
6463
6955
  const response = await this.apiV1ItemTypeDynamicfieldGetRaw(initOverrides);
6464
6956
  return await response.value();
6465
6957
  }
6958
+ async apiV1ItemTypeFieldPostRaw(initOverrides) {
6959
+ const queryParameters = {};
6960
+ const headerParameters = {};
6961
+ if (this.configuration && this.configuration.apiKey) {
6962
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6963
+ }
6964
+ const response = await this.request({
6965
+ path: `/api/v1/item/type/field`,
6966
+ method: 'POST',
6967
+ headers: headerParameters,
6968
+ query: queryParameters,
6969
+ }, initOverrides);
6970
+ return new JSONApiResponse(response, (jsonValue) => MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON(jsonValue));
6971
+ }
6972
+ async apiV1ItemTypeFieldPost(initOverrides) {
6973
+ const response = await this.apiV1ItemTypeFieldPostRaw(initOverrides);
6974
+ return await response.value();
6975
+ }
6976
+ async apiV1ItemTypeFormPostRaw(initOverrides) {
6977
+ const queryParameters = {};
6978
+ const headerParameters = {};
6979
+ if (this.configuration && this.configuration.apiKey) {
6980
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6981
+ }
6982
+ const response = await this.request({
6983
+ path: `/api/v1/item/type/form`,
6984
+ method: 'POST',
6985
+ headers: headerParameters,
6986
+ query: queryParameters,
6987
+ }, initOverrides);
6988
+ return new JSONApiResponse(response, (jsonValue) => MapItemTypeFormOutputFromJSON(jsonValue));
6989
+ }
6990
+ async apiV1ItemTypeFormPost(initOverrides) {
6991
+ const response = await this.apiV1ItemTypeFormPostRaw(initOverrides);
6992
+ return await response.value();
6993
+ }
6466
6994
  async apiV1ItemTypeGetRaw(initOverrides) {
6467
6995
  const queryParameters = {};
6468
6996
  const headerParameters = {};
@@ -6508,6 +7036,24 @@ class ItemTypeApi extends BaseAPI {
6508
7036
  const response = await this.apiV1ItemTypeItemTypeIdFormGetRaw(requestParameters, initOverrides);
6509
7037
  return await response.value();
6510
7038
  }
7039
+ async apiV1ItemTypePostRaw(initOverrides) {
7040
+ const queryParameters = {};
7041
+ const headerParameters = {};
7042
+ if (this.configuration && this.configuration.apiKey) {
7043
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7044
+ }
7045
+ const response = await this.request({
7046
+ path: `/api/v1/item/type`,
7047
+ method: 'POST',
7048
+ headers: headerParameters,
7049
+ query: queryParameters,
7050
+ }, initOverrides);
7051
+ return new JSONApiResponse(response, (jsonValue) => MapItemTypeSingleOutputFromJSON(jsonValue));
7052
+ }
7053
+ async apiV1ItemTypePost(initOverrides) {
7054
+ const response = await this.apiV1ItemTypePostRaw(initOverrides);
7055
+ return await response.value();
7056
+ }
6511
7057
  }
6512
7058
 
6513
7059
  class JobApi extends BaseAPI {
@@ -6726,39 +7272,220 @@ class JournalApi extends BaseAPI {
6726
7272
  }
6727
7273
  }
6728
7274
 
6729
- class LocationApi extends BaseAPI {
6730
- async apiV1LocationPointPostRaw(requestParameters, initOverrides) {
7275
+ class LayerApi extends BaseAPI {
7276
+ async apiV1LayerLayerIdGetRaw(requestParameters, initOverrides) {
7277
+ if (requestParameters['layerId'] == null) {
7278
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1LayerLayerIdGet().');
7279
+ }
6731
7280
  const queryParameters = {};
6732
7281
  const headerParameters = {};
6733
- headerParameters['Content-Type'] = 'application/json';
6734
7282
  if (this.configuration && this.configuration.apiKey) {
6735
7283
  headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6736
7284
  }
6737
7285
  const response = await this.request({
6738
- path: `/api/v1/location/point`,
6739
- method: 'POST',
7286
+ path: `/api/v1/layer/{layerId}`.replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))),
7287
+ method: 'GET',
6740
7288
  headers: headerParameters,
6741
7289
  query: queryParameters,
6742
- body: LocationORMToJSON(requestParameters['locationORM']),
6743
7290
  }, initOverrides);
6744
- return new JSONApiResponse(response, (jsonValue) => LocationOutputFromJSON(jsonValue));
7291
+ return new JSONApiResponse(response, (jsonValue) => MapLayerOutputFromJSON(jsonValue));
6745
7292
  }
6746
- async apiV1LocationPointPost(requestParameters = {}, initOverrides) {
6747
- const response = await this.apiV1LocationPointPostRaw(requestParameters, initOverrides);
7293
+ async apiV1LayerLayerIdGet(requestParameters, initOverrides) {
7294
+ const response = await this.apiV1LayerLayerIdGetRaw(requestParameters, initOverrides);
6748
7295
  return await response.value();
6749
7296
  }
6750
- async apiV1LocationZonePostRaw(requestParameters, initOverrides) {
7297
+ async apiV1LayerLayerIdItemGetRaw(requestParameters, initOverrides) {
7298
+ if (requestParameters['layerId'] == null) {
7299
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1LayerLayerIdItemGet().');
7300
+ }
6751
7301
  const queryParameters = {};
6752
- const headerParameters = {};
6753
- headerParameters['Content-Type'] = 'application/json';
6754
- if (this.configuration && this.configuration.apiKey) {
6755
- headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7302
+ if (requestParameters['q'] != null) {
7303
+ queryParameters['q'] = requestParameters['q'];
6756
7304
  }
6757
- const response = await this.request({
6758
- path: `/api/v1/location/zone`,
6759
- method: 'POST',
6760
- headers: headerParameters,
6761
- query: queryParameters,
7305
+ if (requestParameters['paginationCursor'] != null) {
7306
+ queryParameters['paginationCursor'] = requestParameters['paginationCursor'];
7307
+ }
7308
+ if (requestParameters['limit'] != null) {
7309
+ queryParameters['limit'] = requestParameters['limit'];
7310
+ }
7311
+ if (requestParameters['createDateBefore'] != null) {
7312
+ queryParameters['createDateBefore'] = requestParameters['createDateBefore'];
7313
+ }
7314
+ if (requestParameters['createDateAfter'] != null) {
7315
+ queryParameters['createDateAfter'] = requestParameters['createDateAfter'];
7316
+ }
7317
+ const headerParameters = {};
7318
+ if (this.configuration && this.configuration.apiKey) {
7319
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7320
+ }
7321
+ const response = await this.request({
7322
+ path: `/api/v1/layer/{layerId}/item`.replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))),
7323
+ method: 'GET',
7324
+ headers: headerParameters,
7325
+ query: queryParameters,
7326
+ }, initOverrides);
7327
+ return new JSONApiResponse(response, (jsonValue) => MapItemListOutputPaginatedFromJSON(jsonValue));
7328
+ }
7329
+ async apiV1LayerLayerIdItemGet(requestParameters, initOverrides) {
7330
+ const response = await this.apiV1LayerLayerIdItemGetRaw(requestParameters, initOverrides);
7331
+ return await response.value();
7332
+ }
7333
+ async apiV1LayerLayerIdItemItemIdPostRaw(requestParameters, initOverrides) {
7334
+ if (requestParameters['layerId'] == null) {
7335
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1LayerLayerIdItemItemIdPost().');
7336
+ }
7337
+ if (requestParameters['itemId'] == null) {
7338
+ throw new RequiredError('itemId', 'Required parameter "itemId" was null or undefined when calling apiV1LayerLayerIdItemItemIdPost().');
7339
+ }
7340
+ const queryParameters = {};
7341
+ const headerParameters = {};
7342
+ if (this.configuration && this.configuration.apiKey) {
7343
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7344
+ }
7345
+ const response = await this.request({
7346
+ path: `/api/v1/layer/{layerId}/item/{itemId}`.replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))).replace(`{${"itemId"}}`, encodeURIComponent(String(requestParameters['itemId']))),
7347
+ method: 'POST',
7348
+ headers: headerParameters,
7349
+ query: queryParameters,
7350
+ }, initOverrides);
7351
+ return new VoidApiResponse(response);
7352
+ }
7353
+ async apiV1LayerLayerIdItemItemIdPost(requestParameters, initOverrides) {
7354
+ await this.apiV1LayerLayerIdItemItemIdPostRaw(requestParameters, initOverrides);
7355
+ }
7356
+ async apiV1LayerLayerIdPutRaw(requestParameters, initOverrides) {
7357
+ if (requestParameters['layerId'] == null) {
7358
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1LayerLayerIdPut().');
7359
+ }
7360
+ const queryParameters = {};
7361
+ const headerParameters = {};
7362
+ headerParameters['Content-Type'] = 'application/json';
7363
+ if (this.configuration && this.configuration.apiKey) {
7364
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7365
+ }
7366
+ const response = await this.request({
7367
+ path: `/api/v1/layer/{layerId}`.replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))),
7368
+ method: 'PUT',
7369
+ headers: headerParameters,
7370
+ query: queryParameters,
7371
+ body: MapLayerInputToJSON(requestParameters['mapLayerInput']),
7372
+ }, initOverrides);
7373
+ return new JSONApiResponse(response, (jsonValue) => MapLayerOutputFromJSON(jsonValue));
7374
+ }
7375
+ async apiV1LayerLayerIdPut(requestParameters, initOverrides) {
7376
+ const response = await this.apiV1LayerLayerIdPutRaw(requestParameters, initOverrides);
7377
+ return await response.value();
7378
+ }
7379
+ async apiV1LayerLayerIdViewportClusterGetRaw(requestParameters, initOverrides) {
7380
+ if (requestParameters['layerId'] == null) {
7381
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1LayerLayerIdViewportClusterGet().');
7382
+ }
7383
+ const queryParameters = {};
7384
+ if (requestParameters['q'] != null) {
7385
+ queryParameters['q'] = requestParameters['q'];
7386
+ }
7387
+ if (requestParameters['createDateBefore'] != null) {
7388
+ queryParameters['createDateBefore'] = requestParameters['createDateBefore'];
7389
+ }
7390
+ if (requestParameters['createDateAfter'] != null) {
7391
+ queryParameters['createDateAfter'] = requestParameters['createDateAfter'];
7392
+ }
7393
+ const headerParameters = {};
7394
+ if (this.configuration && this.configuration.apiKey) {
7395
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7396
+ }
7397
+ const response = await this.request({
7398
+ path: `/api/v1/layer/{layerId}/viewport/cluster`.replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))),
7399
+ method: 'GET',
7400
+ headers: headerParameters,
7401
+ query: queryParameters,
7402
+ }, initOverrides);
7403
+ return new JSONApiResponse(response, (jsonValue) => MapClusterListOutputPaginatedFromJSON(jsonValue));
7404
+ }
7405
+ async apiV1LayerLayerIdViewportClusterGet(requestParameters, initOverrides) {
7406
+ const response = await this.apiV1LayerLayerIdViewportClusterGetRaw(requestParameters, initOverrides);
7407
+ return await response.value();
7408
+ }
7409
+ async apiV1LayerLayerIdViewportItemGetRaw(requestParameters, initOverrides) {
7410
+ if (requestParameters['layerId'] == null) {
7411
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1LayerLayerIdViewportItemGet().');
7412
+ }
7413
+ const queryParameters = {};
7414
+ if (requestParameters['q'] != null) {
7415
+ queryParameters['q'] = requestParameters['q'];
7416
+ }
7417
+ if (requestParameters['paginationCursor'] != null) {
7418
+ queryParameters['paginationCursor'] = requestParameters['paginationCursor'];
7419
+ }
7420
+ if (requestParameters['limit'] != null) {
7421
+ queryParameters['limit'] = requestParameters['limit'];
7422
+ }
7423
+ if (requestParameters['mapZoomLevel'] != null) {
7424
+ queryParameters['mapZoomLevel'] = requestParameters['mapZoomLevel'];
7425
+ }
7426
+ if (requestParameters['createDateBefore'] != null) {
7427
+ queryParameters['createDateBefore'] = requestParameters['createDateBefore'];
7428
+ }
7429
+ if (requestParameters['createDateAfter'] != null) {
7430
+ queryParameters['createDateAfter'] = requestParameters['createDateAfter'];
7431
+ }
7432
+ if (requestParameters['coordTopLeft'] != null) {
7433
+ queryParameters['coordTopLeft'] = requestParameters['coordTopLeft'];
7434
+ }
7435
+ if (requestParameters['coordBottomRight'] != null) {
7436
+ queryParameters['coordBottomRight'] = requestParameters['coordBottomRight'];
7437
+ }
7438
+ const headerParameters = {};
7439
+ if (this.configuration && this.configuration.apiKey) {
7440
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7441
+ }
7442
+ const response = await this.request({
7443
+ path: `/api/v1/layer/{layerId}/viewport/item`.replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))),
7444
+ method: 'GET',
7445
+ headers: headerParameters,
7446
+ query: queryParameters,
7447
+ }, initOverrides);
7448
+ return new JSONApiResponse(response, (jsonValue) => MapItemListOutputPaginatedFromJSON(jsonValue));
7449
+ }
7450
+ async apiV1LayerLayerIdViewportItemGet(requestParameters, initOverrides) {
7451
+ const response = await this.apiV1LayerLayerIdViewportItemGetRaw(requestParameters, initOverrides);
7452
+ return await response.value();
7453
+ }
7454
+ }
7455
+
7456
+ class LocationApi extends BaseAPI {
7457
+ async apiV1LocationPointPostRaw(requestParameters, initOverrides) {
7458
+ const queryParameters = {};
7459
+ const headerParameters = {};
7460
+ headerParameters['Content-Type'] = 'application/json';
7461
+ if (this.configuration && this.configuration.apiKey) {
7462
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7463
+ }
7464
+ const response = await this.request({
7465
+ path: `/api/v1/location/point`,
7466
+ method: 'POST',
7467
+ headers: headerParameters,
7468
+ query: queryParameters,
7469
+ body: LocationORMToJSON(requestParameters['locationORM']),
7470
+ }, initOverrides);
7471
+ return new JSONApiResponse(response, (jsonValue) => LocationOutputFromJSON(jsonValue));
7472
+ }
7473
+ async apiV1LocationPointPost(requestParameters = {}, initOverrides) {
7474
+ const response = await this.apiV1LocationPointPostRaw(requestParameters, initOverrides);
7475
+ return await response.value();
7476
+ }
7477
+ async apiV1LocationZonePostRaw(requestParameters, initOverrides) {
7478
+ const queryParameters = {};
7479
+ const headerParameters = {};
7480
+ headerParameters['Content-Type'] = 'application/json';
7481
+ if (this.configuration && this.configuration.apiKey) {
7482
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7483
+ }
7484
+ const response = await this.request({
7485
+ path: `/api/v1/location/zone`,
7486
+ method: 'POST',
7487
+ headers: headerParameters,
7488
+ query: queryParameters,
6762
7489
  body: MapZoneInputToJSON(requestParameters['mapZoneInput']),
6763
7490
  }, initOverrides);
6764
7491
  return new JSONApiResponse(response, (jsonValue) => MapZoneOutputFromJSON(jsonValue));
@@ -7502,6 +8229,210 @@ class ReportApi extends BaseAPI {
7502
8229
  const response = await this.apiV1ReportItemGetRaw(initOverrides);
7503
8230
  return await response.value();
7504
8231
  }
8232
+ async apiV1ReportPostRaw(initOverrides) {
8233
+ const queryParameters = {};
8234
+ const headerParameters = {};
8235
+ if (this.configuration && this.configuration.apiKey) {
8236
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8237
+ }
8238
+ const response = await this.request({
8239
+ path: `/api/v1/report`,
8240
+ method: 'POST',
8241
+ headers: headerParameters,
8242
+ query: queryParameters,
8243
+ }, initOverrides);
8244
+ return new JSONApiResponse(response, (jsonValue) => ReportORMFromJSON(jsonValue));
8245
+ }
8246
+ async apiV1ReportPost(initOverrides) {
8247
+ const response = await this.apiV1ReportPostRaw(initOverrides);
8248
+ return await response.value();
8249
+ }
8250
+ async apiV1ReportReportIdColumnColumnIdDeleteRaw(requestParameters, initOverrides) {
8251
+ if (requestParameters['reportId'] == null) {
8252
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdDelete().');
8253
+ }
8254
+ if (requestParameters['columnId'] == null) {
8255
+ throw new RequiredError('columnId', 'Required parameter "columnId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdDelete().');
8256
+ }
8257
+ const queryParameters = {};
8258
+ const headerParameters = {};
8259
+ if (this.configuration && this.configuration.apiKey) {
8260
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8261
+ }
8262
+ const response = await this.request({
8263
+ path: `/api/v1/report/{reportId}/column/{columnId}`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))).replace(`{${"columnId"}}`, encodeURIComponent(String(requestParameters['columnId']))),
8264
+ method: 'DELETE',
8265
+ headers: headerParameters,
8266
+ query: queryParameters,
8267
+ }, initOverrides);
8268
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnListOutputFromJSON(jsonValue));
8269
+ }
8270
+ async apiV1ReportReportIdColumnColumnIdDelete(requestParameters, initOverrides) {
8271
+ const response = await this.apiV1ReportReportIdColumnColumnIdDeleteRaw(requestParameters, initOverrides);
8272
+ return await response.value();
8273
+ }
8274
+ async apiV1ReportReportIdColumnColumnIdFilterFilterIdDeleteRaw(requestParameters, initOverrides) {
8275
+ if (requestParameters['reportId'] == null) {
8276
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterFilterIdDelete().');
8277
+ }
8278
+ if (requestParameters['columnId'] == null) {
8279
+ throw new RequiredError('columnId', 'Required parameter "columnId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterFilterIdDelete().');
8280
+ }
8281
+ if (requestParameters['filterId'] == null) {
8282
+ throw new RequiredError('filterId', 'Required parameter "filterId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterFilterIdDelete().');
8283
+ }
8284
+ const queryParameters = {};
8285
+ const headerParameters = {};
8286
+ if (this.configuration && this.configuration.apiKey) {
8287
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8288
+ }
8289
+ const response = await this.request({
8290
+ path: `/api/v1/report/{reportId}/column/{columnId}/filter/{filterId}`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))).replace(`{${"columnId"}}`, encodeURIComponent(String(requestParameters['columnId']))).replace(`{${"filterId"}}`, encodeURIComponent(String(requestParameters['filterId']))),
8291
+ method: 'DELETE',
8292
+ headers: headerParameters,
8293
+ query: queryParameters,
8294
+ }, initOverrides);
8295
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnOutputFromJSON(jsonValue));
8296
+ }
8297
+ async apiV1ReportReportIdColumnColumnIdFilterFilterIdDelete(requestParameters, initOverrides) {
8298
+ const response = await this.apiV1ReportReportIdColumnColumnIdFilterFilterIdDeleteRaw(requestParameters, initOverrides);
8299
+ return await response.value();
8300
+ }
8301
+ async apiV1ReportReportIdColumnColumnIdFilterGetRaw(requestParameters, initOverrides) {
8302
+ if (requestParameters['reportId'] == null) {
8303
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterGet().');
8304
+ }
8305
+ if (requestParameters['columnId'] == null) {
8306
+ throw new RequiredError('columnId', 'Required parameter "columnId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterGet().');
8307
+ }
8308
+ const queryParameters = {};
8309
+ const headerParameters = {};
8310
+ if (this.configuration && this.configuration.apiKey) {
8311
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8312
+ }
8313
+ const response = await this.request({
8314
+ path: `/api/v1/report/{reportId}/column/{columnId}/filter`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))).replace(`{${"columnId"}}`, encodeURIComponent(String(requestParameters['columnId']))),
8315
+ method: 'GET',
8316
+ headers: headerParameters,
8317
+ query: queryParameters,
8318
+ }, initOverrides);
8319
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnFilterListOutputFromJSON(jsonValue));
8320
+ }
8321
+ async apiV1ReportReportIdColumnColumnIdFilterGet(requestParameters, initOverrides) {
8322
+ const response = await this.apiV1ReportReportIdColumnColumnIdFilterGetRaw(requestParameters, initOverrides);
8323
+ return await response.value();
8324
+ }
8325
+ async apiV1ReportReportIdColumnColumnIdFilterPostRaw(requestParameters, initOverrides) {
8326
+ if (requestParameters['reportId'] == null) {
8327
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterPost().');
8328
+ }
8329
+ if (requestParameters['columnId'] == null) {
8330
+ throw new RequiredError('columnId', 'Required parameter "columnId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterPost().');
8331
+ }
8332
+ const queryParameters = {};
8333
+ const headerParameters = {};
8334
+ if (this.configuration && this.configuration.apiKey) {
8335
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8336
+ }
8337
+ const response = await this.request({
8338
+ path: `/api/v1/report/{reportId}/column/{columnId}/filter`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))).replace(`{${"columnId"}}`, encodeURIComponent(String(requestParameters['columnId']))),
8339
+ method: 'POST',
8340
+ headers: headerParameters,
8341
+ query: queryParameters,
8342
+ }, initOverrides);
8343
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnOutputFromJSON(jsonValue));
8344
+ }
8345
+ async apiV1ReportReportIdColumnColumnIdFilterPost(requestParameters, initOverrides) {
8346
+ const response = await this.apiV1ReportReportIdColumnColumnIdFilterPostRaw(requestParameters, initOverrides);
8347
+ return await response.value();
8348
+ }
8349
+ async apiV1ReportReportIdColumnColumnIdFilterPutRaw(requestParameters, initOverrides) {
8350
+ if (requestParameters['reportId'] == null) {
8351
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterPut().');
8352
+ }
8353
+ if (requestParameters['columnId'] == null) {
8354
+ throw new RequiredError('columnId', 'Required parameter "columnId" was null or undefined when calling apiV1ReportReportIdColumnColumnIdFilterPut().');
8355
+ }
8356
+ const queryParameters = {};
8357
+ const headerParameters = {};
8358
+ if (this.configuration && this.configuration.apiKey) {
8359
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8360
+ }
8361
+ const response = await this.request({
8362
+ path: `/api/v1/report/{reportId}/column/{columnId}/filter`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))).replace(`{${"columnId"}}`, encodeURIComponent(String(requestParameters['columnId']))),
8363
+ method: 'PUT',
8364
+ headers: headerParameters,
8365
+ query: queryParameters,
8366
+ }, initOverrides);
8367
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnOutputFromJSON(jsonValue));
8368
+ }
8369
+ async apiV1ReportReportIdColumnColumnIdFilterPut(requestParameters, initOverrides) {
8370
+ const response = await this.apiV1ReportReportIdColumnColumnIdFilterPutRaw(requestParameters, initOverrides);
8371
+ return await response.value();
8372
+ }
8373
+ async apiV1ReportReportIdColumnGetRaw(requestParameters, initOverrides) {
8374
+ if (requestParameters['reportId'] == null) {
8375
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnGet().');
8376
+ }
8377
+ const queryParameters = {};
8378
+ const headerParameters = {};
8379
+ if (this.configuration && this.configuration.apiKey) {
8380
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8381
+ }
8382
+ const response = await this.request({
8383
+ path: `/api/v1/report/{reportId}/column`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))),
8384
+ method: 'GET',
8385
+ headers: headerParameters,
8386
+ query: queryParameters,
8387
+ }, initOverrides);
8388
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnListOutputFromJSON(jsonValue));
8389
+ }
8390
+ async apiV1ReportReportIdColumnGet(requestParameters, initOverrides) {
8391
+ const response = await this.apiV1ReportReportIdColumnGetRaw(requestParameters, initOverrides);
8392
+ return await response.value();
8393
+ }
8394
+ async apiV1ReportReportIdColumnPostRaw(requestParameters, initOverrides) {
8395
+ if (requestParameters['reportId'] == null) {
8396
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnPost().');
8397
+ }
8398
+ const queryParameters = {};
8399
+ const headerParameters = {};
8400
+ if (this.configuration && this.configuration.apiKey) {
8401
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8402
+ }
8403
+ const response = await this.request({
8404
+ path: `/api/v1/report/{reportId}/column`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))),
8405
+ method: 'POST',
8406
+ headers: headerParameters,
8407
+ query: queryParameters,
8408
+ }, initOverrides);
8409
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnOutputFromJSON(jsonValue));
8410
+ }
8411
+ async apiV1ReportReportIdColumnPost(requestParameters, initOverrides) {
8412
+ const response = await this.apiV1ReportReportIdColumnPostRaw(requestParameters, initOverrides);
8413
+ return await response.value();
8414
+ }
8415
+ async apiV1ReportReportIdColumnPutRaw(requestParameters, initOverrides) {
8416
+ if (requestParameters['reportId'] == null) {
8417
+ throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdColumnPut().');
8418
+ }
8419
+ const queryParameters = {};
8420
+ const headerParameters = {};
8421
+ if (this.configuration && this.configuration.apiKey) {
8422
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8423
+ }
8424
+ const response = await this.request({
8425
+ path: `/api/v1/report/{reportId}/column`.replace(`{${"reportId"}}`, encodeURIComponent(String(requestParameters['reportId']))),
8426
+ method: 'PUT',
8427
+ headers: headerParameters,
8428
+ query: queryParameters,
8429
+ }, initOverrides);
8430
+ return new JSONApiResponse(response, (jsonValue) => ReportColumnOutputFromJSON(jsonValue));
8431
+ }
8432
+ async apiV1ReportReportIdColumnPut(requestParameters, initOverrides) {
8433
+ const response = await this.apiV1ReportReportIdColumnPutRaw(requestParameters, initOverrides);
8434
+ return await response.value();
8435
+ }
7505
8436
  async apiV1ReportReportIdDataPostRaw(requestParameters, initOverrides) {
7506
8437
  if (requestParameters['reportId'] == null) {
7507
8438
  throw new RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdDataPost().');
@@ -7723,7 +8654,67 @@ class StateMachineApi extends BaseAPI {
7723
8654
  const response = await this.apiV1StatemachineGetRaw(initOverrides);
7724
8655
  return await response.value();
7725
8656
  }
8657
+ async apiV1StatemachinePostRaw(initOverrides) {
8658
+ const queryParameters = {};
8659
+ const headerParameters = {};
8660
+ if (this.configuration && this.configuration.apiKey) {
8661
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8662
+ }
8663
+ const response = await this.request({
8664
+ path: `/api/v1/statemachine`,
8665
+ method: 'POST',
8666
+ headers: headerParameters,
8667
+ query: queryParameters,
8668
+ }, initOverrides);
8669
+ return new JSONApiResponse(response, (jsonValue) => StateMachineOutputFromJSON(jsonValue));
8670
+ }
8671
+ async apiV1StatemachinePost(initOverrides) {
8672
+ const response = await this.apiV1StatemachinePostRaw(initOverrides);
8673
+ return await response.value();
8674
+ }
8675
+ async apiV1StatemachineStateMachineIdStatePostRaw(requestParameters, initOverrides) {
8676
+ if (requestParameters['stateMachineId'] == null) {
8677
+ throw new RequiredError('stateMachineId', 'Required parameter "stateMachineId" was null or undefined when calling apiV1StatemachineStateMachineIdStatePost().');
8678
+ }
8679
+ const queryParameters = {};
8680
+ const headerParameters = {};
8681
+ if (this.configuration && this.configuration.apiKey) {
8682
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8683
+ }
8684
+ const response = await this.request({
8685
+ path: `/api/v1/statemachine/{stateMachineId}/state`.replace(`{${"stateMachineId"}}`, encodeURIComponent(String(requestParameters['stateMachineId']))),
8686
+ method: 'POST',
8687
+ headers: headerParameters,
8688
+ query: queryParameters,
8689
+ }, initOverrides);
8690
+ return new JSONApiResponse(response, (jsonValue) => StateMachineDefinitionOutputFromJSON(jsonValue));
8691
+ }
8692
+ async apiV1StatemachineStateMachineIdStatePost(requestParameters, initOverrides) {
8693
+ const response = await this.apiV1StatemachineStateMachineIdStatePostRaw(requestParameters, initOverrides);
8694
+ return await response.value();
8695
+ }
8696
+ async apiV1StatemachineStateMachineIdTransitionPostRaw(requestParameters, initOverrides) {
8697
+ if (requestParameters['stateMachineId'] == null) {
8698
+ throw new RequiredError('stateMachineId', 'Required parameter "stateMachineId" was null or undefined when calling apiV1StatemachineStateMachineIdTransitionPost().');
8699
+ }
8700
+ const queryParameters = {};
8701
+ const headerParameters = {};
8702
+ if (this.configuration && this.configuration.apiKey) {
8703
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
8704
+ }
8705
+ const response = await this.request({
8706
+ path: `/api/v1/statemachine/{stateMachineId}/transition`.replace(`{${"stateMachineId"}}`, encodeURIComponent(String(requestParameters['stateMachineId']))),
8707
+ method: 'POST',
8708
+ headers: headerParameters,
8709
+ query: queryParameters,
8710
+ }, initOverrides);
8711
+ return new JSONApiResponse(response, (jsonValue) => StateMachineDefinitionOutputFromJSON(jsonValue));
8712
+ }
8713
+ async apiV1StatemachineStateMachineIdTransitionPost(requestParameters, initOverrides) {
8714
+ const response = await this.apiV1StatemachineStateMachineIdTransitionPostRaw(requestParameters, initOverrides);
8715
+ return await response.value();
8716
+ }
7726
8717
  }
7727
8718
 
7728
- export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def157FromJSON, Def157FromJSONTyped, Def157ToJSON, Def157ToJSONTyped, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef157, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointORM, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOrganizationORM, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnORM, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReverseGeoCodingOutput, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineORM, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
8719
+ export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def173FromJSON, Def173FromJSONTyped, Def173ToJSON, Def173ToJSONTyped, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LayerApi, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapClusterListOutputPaginatedFromJSON, MapClusterListOutputPaginatedFromJSONTyped, MapClusterListOutputPaginatedToJSON, MapClusterListOutputPaginatedToJSONTyped, MapClusterORMFromJSON, MapClusterORMFromJSONTyped, MapClusterORMToJSON, MapClusterORMToJSONTyped, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputPaginatedFromJSON, MapItemListOutputPaginatedFromJSONTyped, MapItemListOutputPaginatedToJSON, MapItemListOutputPaginatedToJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputToJSON, MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormOutputFromJSON, MapItemTypeFormOutputFromJSONTyped, MapItemTypeFormOutputToJSON, MapItemTypeFormOutputToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapItemTypeSingleOutputFromJSON, MapItemTypeSingleOutputFromJSONTyped, MapItemTypeSingleOutputToJSON, MapItemTypeSingleOutputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoToJSON, PageInfoToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoColumnTypeEnum, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterListOutputFromJSON, ReportColumnFilterListOutputFromJSONTyped, ReportColumnFilterListOutputToJSON, ReportColumnFilterListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnFilterOutputFromJSON, ReportColumnFilterOutputFromJSONTyped, ReportColumnFilterOutputToJSON, ReportColumnFilterOutputToJSONTyped, ReportColumnListOutputFromJSON, ReportColumnListOutputFromJSONTyped, ReportColumnListOutputToJSON, ReportColumnListOutputToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportColumnOutputFromJSON, ReportColumnOutputFromJSONTyped, ReportColumnOutputToJSON, ReportColumnOutputToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineDefinitionOutputFromJSON, StateMachineDefinitionOutputFromJSONTyped, StateMachineDefinitionOutputToJSON, StateMachineDefinitionOutputToJSONTyped, StateMachineInputFromJSON, StateMachineInputFromJSONTyped, StateMachineInputToJSON, StateMachineInputToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineOutputFromJSON, StateMachineOutputFromJSONTyped, StateMachineOutputToJSON, StateMachineOutputToJSONTyped, StateMachineStateInputFromJSON, StateMachineStateInputFromJSONTyped, StateMachineStateInputToJSON, StateMachineStateInputToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionInputFromJSON, StateMachineTransitionInputFromJSONTyped, StateMachineTransitionInputToJSON, StateMachineTransitionInputToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef173, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapClusterListOutputPaginated, instanceOfMapClusterORM, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemListOutputPaginated, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormOutput, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapItemTypeSingleOutput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointORM, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOrganizationORM, instanceOfPageInfo, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnFilterOutput, instanceOfReportColumnListOutput, instanceOfReportColumnORM, instanceOfReportColumnOutput, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReverseGeoCodingOutput, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineInput, instanceOfStateMachineORM, instanceOfStateMachineOutput, instanceOfStateMachineStateInput, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionInput, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
7729
8720
  //# sourceMappingURL=index.mjs.map