@jrojaspin/security-map-api-cli 2.1.0 → 2.3.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 (148) hide show
  1. package/package.json +2 -3
  2. package/src/apis/AccountApi.ts +3 -3
  3. package/src/apis/ArticleApi.ts +3 -3
  4. package/src/apis/HealthcheckApi.ts +1 -1
  5. package/src/apis/ItemApi.ts +3 -3
  6. package/src/apis/JournalApi.ts +3 -3
  7. package/src/apis/LocationApi.ts +3 -3
  8. package/src/apis/LoginApi.ts +3 -3
  9. package/src/apis/MapApi.ts +3 -3
  10. package/src/apis/MultimediaApi.ts +3 -3
  11. package/src/apis/OrganizationApi.ts +3 -3
  12. package/src/apis/ReportApi.ts +3 -3
  13. package/src/apis/SearchApi.ts +3 -3
  14. package/src/apis/SourceApi.ts +3 -3
  15. package/src/apis/StateMachineApi.ts +3 -3
  16. package/src/apis/index.ts +14 -14
  17. package/src/index.ts +3 -3
  18. package/src/models/AccountORM.ts +1 -1
  19. package/src/models/AccountOutput.ts +3 -3
  20. package/src/models/AddUserToOrganizationDto.ts +3 -3
  21. package/src/models/ArticleORM.ts +1 -1
  22. package/src/models/ArticlePresentationORM.ts +1 -1
  23. package/src/models/ArticleTypeORM.ts +1 -1
  24. package/src/models/AutoCompleteORM.ts +1 -1
  25. package/src/models/AvailableArticlesDto.ts +11 -11
  26. package/src/models/AvailableArticlesOutput.ts +3 -3
  27. package/src/models/AxisTitle.ts +1 -1
  28. package/src/models/ChartConfiguration.ts +5 -5
  29. package/src/models/ChartData.ts +3 -3
  30. package/src/models/ChartDataset.ts +3 -3
  31. package/src/models/ChartLegend.ts +1 -1
  32. package/src/models/ChartOptions.ts +5 -5
  33. package/src/models/ChartPlugins.ts +5 -5
  34. package/src/models/ChartScales.ts +5 -5
  35. package/src/models/ChartTitle.ts +1 -1
  36. package/src/models/DataPoint.ts +1 -1
  37. package/src/models/ItemLayerLinkInputDto.ts +1 -1
  38. package/src/models/ItemLinkToLayerOutput.ts +1 -1
  39. package/src/models/ItemTypeFormDto.ts +7 -7
  40. package/src/models/ItemTypeFormOutput.ts +3 -3
  41. package/src/models/ItemTypeORM.ts +1 -1
  42. package/src/models/ItemTypeOutput.ts +3 -3
  43. package/src/models/ItemsOutput.ts +3 -3
  44. package/src/models/JournalBookORM.ts +1 -1
  45. package/src/models/JournalEntryArticleORM.ts +1 -1
  46. package/src/models/JournalEntryListOutput.ts +3 -3
  47. package/src/models/JournalEntryMultimediaInput.ts +1 -1
  48. package/src/models/JournalEntryMultimediaORM.ts +1 -1
  49. package/src/models/JournalEntryMultimediaOutput.ts +1 -1
  50. package/src/models/JournalEntryORM.ts +1 -1
  51. package/src/models/JournalEntryOutput.ts +3 -3
  52. package/src/models/JournalEntryOutputDto.ts +1 -1
  53. package/src/models/LocationORM.ts +1 -1
  54. package/src/models/LocationOutput.ts +3 -3
  55. package/src/models/MagnitudeORM.ts +1 -1
  56. package/src/models/ManualLoginInput.ts +1 -1
  57. package/src/models/ManualLoginPasswordUpdateInput.ts +1 -1
  58. package/src/models/ManualRegisterInput.ts +1 -1
  59. package/src/models/MapItemArticleInputDto.ts +1 -1
  60. package/src/models/MapItemArticleORM.ts +1 -1
  61. package/src/models/MapItemCustomFieldDefinitionORM.ts +1 -1
  62. package/src/models/MapItemDynamicFieldInputDto.ts +1 -1
  63. package/src/models/MapItemDynamicFieldORM.ts +1 -1
  64. package/src/models/MapItemDynamicFieldWithDefinitionORM.ts +5 -5
  65. package/src/models/MapItemInput.ts +7 -7
  66. package/src/models/MapItemLinkORM.ts +1 -1
  67. package/src/models/MapItemLinkOutput.ts +3 -3
  68. package/src/models/MapItemListOutput.ts +3 -3
  69. package/src/models/MapItemMultimediaORM.ts +1 -1
  70. package/src/models/MapItemMultimediaOutput.ts +3 -3
  71. package/src/models/MapItemNearByORM.ts +1 -1
  72. package/src/models/MapItemORM.ts +1 -1
  73. package/src/models/MapItemOutput.ts +3 -3
  74. package/src/models/MapItemOutputDto.ts +13 -13
  75. package/src/models/MapItemOutputDtoProps.ts +13 -13
  76. package/src/models/MapItemTypeDynamicFieldDefinitionOutput.ts +3 -3
  77. package/src/models/MapItemTypeDynamicFieldDefinitionValuesOutput.ts +1 -1
  78. package/src/models/MapItemTypeFormORM.ts +1 -1
  79. package/src/models/MapItemTypeFormSectionDto.ts +5 -5
  80. package/src/models/MapItemTypeFormSectionFieldORM.ts +1 -1
  81. package/src/models/MapItemTypeFormSectionORM.ts +1 -1
  82. package/src/models/MapItemTypeORM.ts +1 -1
  83. package/src/models/MapItemTypeOutput.ts +3 -3
  84. package/src/models/MapLayerInput.ts +1 -1
  85. package/src/models/MapLayerItemListOutput.ts +3 -3
  86. package/src/models/MapLayerItemORM.ts +1 -1
  87. package/src/models/MapLayerItemOutput.ts +3 -3
  88. package/src/models/MapLayerListOutput.ts +3 -3
  89. package/src/models/MapLayerORM.ts +1 -1
  90. package/src/models/MapLayerOutput.ts +3 -3
  91. package/src/models/MapLayerOutputDto.ts +3 -3
  92. package/src/models/MapListOutput.ts +3 -3
  93. package/src/models/MapORM.ts +1 -1
  94. package/src/models/MapOutput.ts +3 -3
  95. package/src/models/MapZoneInput.ts +1 -1
  96. package/src/models/MapZoneORM.ts +1 -1
  97. package/src/models/MapZoneOutput.ts +3 -3
  98. package/src/models/MapZoneOutputDto.ts +3 -3
  99. package/src/models/MapZonePointORM.ts +1 -1
  100. package/src/models/MeasureUnitORM.ts +1 -1
  101. package/src/models/ModelRequestContext.ts +1 -1
  102. package/src/models/MultimediaORM.ts +1 -1
  103. package/src/models/MultimediaOutput.ts +3 -3
  104. package/src/models/NominatimAddressORM.ts +1 -1
  105. package/src/models/NominatimORM.ts +1 -1
  106. package/src/models/OrganizationORM.ts +1 -1
  107. package/src/models/ReportAvailableColumnDto.ts +1 -1
  108. package/src/models/ReportAvailableColumnsListOutput.ts +3 -3
  109. package/src/models/ReportColumnFilterORM.ts +1 -1
  110. package/src/models/ReportColumnORM.ts +1 -1
  111. package/src/models/ReportConfigurationDto.ts +1 -1
  112. package/src/models/ReportDataCSVDto.ts +1 -1
  113. package/src/models/ReportDataDto.ts +5 -5
  114. package/src/models/ReportDataJSONDto.ts +3 -3
  115. package/src/models/ReportDataORM.ts +3 -3
  116. package/src/models/ReportDataOutput.ts +3 -3
  117. package/src/models/ReportDataRowORM.ts +1 -1
  118. package/src/models/ReportDto.ts +1 -1
  119. package/src/models/ReportListOutput.ts +3 -3
  120. package/src/models/ReportORM.ts +1 -1
  121. package/src/models/ReportOutput.ts +3 -3
  122. package/src/models/SearchORM.ts +1 -1
  123. package/src/models/SearchOutput.ts +3 -3
  124. package/src/models/SearchResultDto.ts +3 -3
  125. package/src/models/SearchResultSectionDto.ts +3 -3
  126. package/src/models/SearchResultSectionItem.ts +3 -3
  127. package/src/models/SourceDto.ts +1 -1
  128. package/src/models/SourceListOutput.ts +3 -3
  129. package/src/models/SourceOutput.ts +3 -3
  130. package/src/models/StateMachineDefinitionListOutput.ts +3 -3
  131. package/src/models/StateMachineDefinitionOutputDto.ts +5 -5
  132. package/src/models/StateMachineORM.ts +1 -1
  133. package/src/models/StateMachineStateORM.ts +1 -1
  134. package/src/models/StateMachineStateOutputDto.ts +1 -1
  135. package/src/models/StateMachineTransitionLogORM.ts +1 -1
  136. package/src/models/StateMachineTransitionORM.ts +1 -1
  137. package/src/models/StateMachineTransitionOutputDto.ts +1 -1
  138. package/src/models/UpdateUserInOrganizationPasswordDto.ts +1 -1
  139. package/src/models/UploadDto.ts +1 -1
  140. package/src/models/UploadOutput.ts +3 -3
  141. package/src/models/UserDto.ts +3 -3
  142. package/src/models/UserInOrganizationDto.ts +1 -1
  143. package/src/models/UserInOrganizationOutput.ts +3 -3
  144. package/src/models/UserORM.ts +1 -1
  145. package/src/models/XAxisOptions.ts +3 -3
  146. package/src/models/YAxisOptions.ts +3 -3
  147. package/src/models/index.ts +130 -130
  148. package/tsconfig.build.json +10 -12
@@ -12,49 +12,49 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { StateMachineStateORM } from './StateMachineStateORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { StateMachineStateORM } from './StateMachineStateORM.js';
17
17
  import {
18
18
  StateMachineStateORMFromJSON,
19
19
  StateMachineStateORMFromJSONTyped,
20
20
  StateMachineStateORMToJSON,
21
21
  StateMachineStateORMToJSONTyped,
22
- } from './StateMachineStateORM';
23
- import type { MapItemMultimediaORM } from './MapItemMultimediaORM';
22
+ } from './StateMachineStateORM.js';
23
+ import type { MapItemMultimediaORM } from './MapItemMultimediaORM.js';
24
24
  import {
25
25
  MapItemMultimediaORMFromJSON,
26
26
  MapItemMultimediaORMFromJSONTyped,
27
27
  MapItemMultimediaORMToJSON,
28
28
  MapItemMultimediaORMToJSONTyped,
29
- } from './MapItemMultimediaORM';
30
- import type { MapItemArticleORM } from './MapItemArticleORM';
29
+ } from './MapItemMultimediaORM.js';
30
+ import type { MapItemArticleORM } from './MapItemArticleORM.js';
31
31
  import {
32
32
  MapItemArticleORMFromJSON,
33
33
  MapItemArticleORMFromJSONTyped,
34
34
  MapItemArticleORMToJSON,
35
35
  MapItemArticleORMToJSONTyped,
36
- } from './MapItemArticleORM';
37
- import type { MapItemLinkORM } from './MapItemLinkORM';
36
+ } from './MapItemArticleORM.js';
37
+ import type { MapItemLinkORM } from './MapItemLinkORM.js';
38
38
  import {
39
39
  MapItemLinkORMFromJSON,
40
40
  MapItemLinkORMFromJSONTyped,
41
41
  MapItemLinkORMToJSON,
42
42
  MapItemLinkORMToJSONTyped,
43
- } from './MapItemLinkORM';
44
- import type { MapZoneOutputDto } from './MapZoneOutputDto';
43
+ } from './MapItemLinkORM.js';
44
+ import type { MapZoneOutputDto } from './MapZoneOutputDto.js';
45
45
  import {
46
46
  MapZoneOutputDtoFromJSON,
47
47
  MapZoneOutputDtoFromJSONTyped,
48
48
  MapZoneOutputDtoToJSON,
49
49
  MapZoneOutputDtoToJSONTyped,
50
- } from './MapZoneOutputDto';
51
- import type { MapItemDynamicFieldWithDefinitionORM } from './MapItemDynamicFieldWithDefinitionORM';
50
+ } from './MapZoneOutputDto.js';
51
+ import type { MapItemDynamicFieldWithDefinitionORM } from './MapItemDynamicFieldWithDefinitionORM.js';
52
52
  import {
53
53
  MapItemDynamicFieldWithDefinitionORMFromJSON,
54
54
  MapItemDynamicFieldWithDefinitionORMFromJSONTyped,
55
55
  MapItemDynamicFieldWithDefinitionORMToJSON,
56
56
  MapItemDynamicFieldWithDefinitionORMToJSONTyped,
57
- } from './MapItemDynamicFieldWithDefinitionORM';
57
+ } from './MapItemDynamicFieldWithDefinitionORM.js';
58
58
 
59
59
  /**
60
60
  *
@@ -12,49 +12,49 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { StateMachineStateORM } from './StateMachineStateORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { StateMachineStateORM } from './StateMachineStateORM.js';
17
17
  import {
18
18
  StateMachineStateORMFromJSON,
19
19
  StateMachineStateORMFromJSONTyped,
20
20
  StateMachineStateORMToJSON,
21
21
  StateMachineStateORMToJSONTyped,
22
- } from './StateMachineStateORM';
23
- import type { MapItemMultimediaORM } from './MapItemMultimediaORM';
22
+ } from './StateMachineStateORM.js';
23
+ import type { MapItemMultimediaORM } from './MapItemMultimediaORM.js';
24
24
  import {
25
25
  MapItemMultimediaORMFromJSON,
26
26
  MapItemMultimediaORMFromJSONTyped,
27
27
  MapItemMultimediaORMToJSON,
28
28
  MapItemMultimediaORMToJSONTyped,
29
- } from './MapItemMultimediaORM';
30
- import type { MapItemArticleORM } from './MapItemArticleORM';
29
+ } from './MapItemMultimediaORM.js';
30
+ import type { MapItemArticleORM } from './MapItemArticleORM.js';
31
31
  import {
32
32
  MapItemArticleORMFromJSON,
33
33
  MapItemArticleORMFromJSONTyped,
34
34
  MapItemArticleORMToJSON,
35
35
  MapItemArticleORMToJSONTyped,
36
- } from './MapItemArticleORM';
37
- import type { MapItemLinkORM } from './MapItemLinkORM';
36
+ } from './MapItemArticleORM.js';
37
+ import type { MapItemLinkORM } from './MapItemLinkORM.js';
38
38
  import {
39
39
  MapItemLinkORMFromJSON,
40
40
  MapItemLinkORMFromJSONTyped,
41
41
  MapItemLinkORMToJSON,
42
42
  MapItemLinkORMToJSONTyped,
43
- } from './MapItemLinkORM';
44
- import type { MapZoneOutputDto } from './MapZoneOutputDto';
43
+ } from './MapItemLinkORM.js';
44
+ import type { MapZoneOutputDto } from './MapZoneOutputDto.js';
45
45
  import {
46
46
  MapZoneOutputDtoFromJSON,
47
47
  MapZoneOutputDtoFromJSONTyped,
48
48
  MapZoneOutputDtoToJSON,
49
49
  MapZoneOutputDtoToJSONTyped,
50
- } from './MapZoneOutputDto';
51
- import type { MapItemDynamicFieldWithDefinitionORM } from './MapItemDynamicFieldWithDefinitionORM';
50
+ } from './MapZoneOutputDto.js';
51
+ import type { MapItemDynamicFieldWithDefinitionORM } from './MapItemDynamicFieldWithDefinitionORM.js';
52
52
  import {
53
53
  MapItemDynamicFieldWithDefinitionORMFromJSON,
54
54
  MapItemDynamicFieldWithDefinitionORMFromJSONTyped,
55
55
  MapItemDynamicFieldWithDefinitionORMToJSON,
56
56
  MapItemDynamicFieldWithDefinitionORMToJSONTyped,
57
- } from './MapItemDynamicFieldWithDefinitionORM';
57
+ } from './MapItemDynamicFieldWithDefinitionORM.js';
58
58
 
59
59
  /**
60
60
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapItemCustomFieldDefinitionORM } from './MapItemCustomFieldDefinitionORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemCustomFieldDefinitionORM } from './MapItemCustomFieldDefinitionORM.js';
17
17
  import {
18
18
  MapItemCustomFieldDefinitionORMFromJSON,
19
19
  MapItemCustomFieldDefinitionORMFromJSONTyped,
20
20
  MapItemCustomFieldDefinitionORMToJSON,
21
21
  MapItemCustomFieldDefinitionORMToJSONTyped,
22
- } from './MapItemCustomFieldDefinitionORM';
22
+ } from './MapItemCustomFieldDefinitionORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,21 +12,21 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapItemTypeFormSectionORM } from './MapItemTypeFormSectionORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemTypeFormSectionORM } from './MapItemTypeFormSectionORM.js';
17
17
  import {
18
18
  MapItemTypeFormSectionORMFromJSON,
19
19
  MapItemTypeFormSectionORMFromJSONTyped,
20
20
  MapItemTypeFormSectionORMToJSON,
21
21
  MapItemTypeFormSectionORMToJSONTyped,
22
- } from './MapItemTypeFormSectionORM';
23
- import type { MapItemTypeFormSectionFieldORM } from './MapItemTypeFormSectionFieldORM';
22
+ } from './MapItemTypeFormSectionORM.js';
23
+ import type { MapItemTypeFormSectionFieldORM } from './MapItemTypeFormSectionFieldORM.js';
24
24
  import {
25
25
  MapItemTypeFormSectionFieldORMFromJSON,
26
26
  MapItemTypeFormSectionFieldORMFromJSONTyped,
27
27
  MapItemTypeFormSectionFieldORMToJSON,
28
28
  MapItemTypeFormSectionFieldORMToJSONTyped,
29
- } from './MapItemTypeFormSectionFieldORM';
29
+ } from './MapItemTypeFormSectionFieldORM.js';
30
30
 
31
31
  /**
32
32
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapItemTypeORM } from './MapItemTypeORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemTypeORM } from './MapItemTypeORM.js';
17
17
  import {
18
18
  MapItemTypeORMFromJSON,
19
19
  MapItemTypeORMFromJSONTyped,
20
20
  MapItemTypeORMToJSON,
21
21
  MapItemTypeORMToJSONTyped,
22
- } from './MapItemTypeORM';
22
+ } from './MapItemTypeORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapLayerItemORM } from './MapLayerItemORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapLayerItemORM } from './MapLayerItemORM.js';
17
17
  import {
18
18
  MapLayerItemORMFromJSON,
19
19
  MapLayerItemORMFromJSONTyped,
20
20
  MapLayerItemORMToJSON,
21
21
  MapLayerItemORMToJSONTyped,
22
- } from './MapLayerItemORM';
22
+ } from './MapLayerItemORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapLayerItemORM } from './MapLayerItemORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapLayerItemORM } from './MapLayerItemORM.js';
17
17
  import {
18
18
  MapLayerItemORMFromJSON,
19
19
  MapLayerItemORMFromJSONTyped,
20
20
  MapLayerItemORMToJSON,
21
21
  MapLayerItemORMToJSONTyped,
22
- } from './MapLayerItemORM';
22
+ } from './MapLayerItemORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapLayerOutputDto } from './MapLayerOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapLayerOutputDto } from './MapLayerOutputDto.js';
17
17
  import {
18
18
  MapLayerOutputDtoFromJSON,
19
19
  MapLayerOutputDtoFromJSONTyped,
20
20
  MapLayerOutputDtoToJSON,
21
21
  MapLayerOutputDtoToJSONTyped,
22
- } from './MapLayerOutputDto';
22
+ } from './MapLayerOutputDto.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapLayerOutputDto } from './MapLayerOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapLayerOutputDto } from './MapLayerOutputDto.js';
17
17
  import {
18
18
  MapLayerOutputDtoFromJSON,
19
19
  MapLayerOutputDtoFromJSONTyped,
20
20
  MapLayerOutputDtoToJSON,
21
21
  MapLayerOutputDtoToJSONTyped,
22
- } from './MapLayerOutputDto';
22
+ } from './MapLayerOutputDto.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapORM } from './MapORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapORM } from './MapORM.js';
17
17
  import {
18
18
  MapORMFromJSON,
19
19
  MapORMFromJSONTyped,
20
20
  MapORMToJSON,
21
21
  MapORMToJSONTyped,
22
- } from './MapORM';
22
+ } from './MapORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapORM } from './MapORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapORM } from './MapORM.js';
17
17
  import {
18
18
  MapORMFromJSON,
19
19
  MapORMFromJSONTyped,
20
20
  MapORMToJSON,
21
21
  MapORMToJSONTyped,
22
- } from './MapORM';
22
+ } from './MapORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapORM } from './MapORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapORM } from './MapORM.js';
17
17
  import {
18
18
  MapORMFromJSON,
19
19
  MapORMFromJSONTyped,
20
20
  MapORMToJSON,
21
21
  MapORMToJSONTyped,
22
- } from './MapORM';
22
+ } from './MapORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapZoneOutputDto } from './MapZoneOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapZoneOutputDto } from './MapZoneOutputDto.js';
17
17
  import {
18
18
  MapZoneOutputDtoFromJSON,
19
19
  MapZoneOutputDtoFromJSONTyped,
20
20
  MapZoneOutputDtoToJSON,
21
21
  MapZoneOutputDtoToJSONTyped,
22
- } from './MapZoneOutputDto';
22
+ } from './MapZoneOutputDto.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { LocationORM } from './LocationORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { LocationORM } from './LocationORM.js';
17
17
  import {
18
18
  LocationORMFromJSON,
19
19
  LocationORMFromJSONTyped,
20
20
  LocationORMToJSON,
21
21
  LocationORMToJSONTyped,
22
- } from './LocationORM';
22
+ } from './LocationORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MultimediaORM } from './MultimediaORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MultimediaORM } from './MultimediaORM.js';
17
17
  import {
18
18
  MultimediaORMFromJSON,
19
19
  MultimediaORMFromJSONTyped,
20
20
  MultimediaORMToJSON,
21
21
  MultimediaORMToJSONTyped,
22
- } from './MultimediaORM';
22
+ } from './MultimediaORM.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { ReportAvailableColumnDto } from './ReportAvailableColumnDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ReportAvailableColumnDto } from './ReportAvailableColumnDto.js';
17
17
  import {
18
18
  ReportAvailableColumnDtoFromJSON,
19
19
  ReportAvailableColumnDtoFromJSONTyped,
20
20
  ReportAvailableColumnDtoToJSON,
21
21
  ReportAvailableColumnDtoToJSONTyped,
22
- } from './ReportAvailableColumnDto';
22
+ } from './ReportAvailableColumnDto.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
15
+ import { mapValues } from '../runtime.js';
16
16
  /**
17
17
  *
18
18
  * @export