@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,21 +12,21 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { ChartTitle } from './ChartTitle';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ChartTitle } from './ChartTitle.js';
17
17
  import {
18
18
  ChartTitleFromJSON,
19
19
  ChartTitleFromJSONTyped,
20
20
  ChartTitleToJSON,
21
21
  ChartTitleToJSONTyped,
22
- } from './ChartTitle';
23
- import type { ChartLegend } from './ChartLegend';
22
+ } from './ChartTitle.js';
23
+ import type { ChartLegend } from './ChartLegend.js';
24
24
  import {
25
25
  ChartLegendFromJSON,
26
26
  ChartLegendFromJSONTyped,
27
27
  ChartLegendToJSON,
28
28
  ChartLegendToJSONTyped,
29
- } from './ChartLegend';
29
+ } from './ChartLegend.js';
30
30
 
31
31
  /**
32
32
  *
@@ -12,21 +12,21 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { XAxisOptions } from './XAxisOptions';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { XAxisOptions } from './XAxisOptions.js';
17
17
  import {
18
18
  XAxisOptionsFromJSON,
19
19
  XAxisOptionsFromJSONTyped,
20
20
  XAxisOptionsToJSON,
21
21
  XAxisOptionsToJSONTyped,
22
- } from './XAxisOptions';
23
- import type { YAxisOptions } from './YAxisOptions';
22
+ } from './XAxisOptions.js';
23
+ import type { YAxisOptions } from './YAxisOptions.js';
24
24
  import {
25
25
  YAxisOptionsFromJSON,
26
26
  YAxisOptionsFromJSONTyped,
27
27
  YAxisOptionsToJSON,
28
28
  YAxisOptionsToJSONTyped,
29
- } from './YAxisOptions';
29
+ } from './YAxisOptions.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,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,28 +12,28 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapItemTypeFormSectionDto } from './MapItemTypeFormSectionDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemTypeFormSectionDto } from './MapItemTypeFormSectionDto.js';
17
17
  import {
18
18
  MapItemTypeFormSectionDtoFromJSON,
19
19
  MapItemTypeFormSectionDtoFromJSONTyped,
20
20
  MapItemTypeFormSectionDtoToJSON,
21
21
  MapItemTypeFormSectionDtoToJSONTyped,
22
- } from './MapItemTypeFormSectionDto';
23
- import type { StateMachineDefinitionOutputDto } from './StateMachineDefinitionOutputDto';
22
+ } from './MapItemTypeFormSectionDto.js';
23
+ import type { StateMachineDefinitionOutputDto } from './StateMachineDefinitionOutputDto.js';
24
24
  import {
25
25
  StateMachineDefinitionOutputDtoFromJSON,
26
26
  StateMachineDefinitionOutputDtoFromJSONTyped,
27
27
  StateMachineDefinitionOutputDtoToJSON,
28
28
  StateMachineDefinitionOutputDtoToJSONTyped,
29
- } from './StateMachineDefinitionOutputDto';
30
- import type { MapItemTypeFormORM } from './MapItemTypeFormORM';
29
+ } from './StateMachineDefinitionOutputDto.js';
30
+ import type { MapItemTypeFormORM } from './MapItemTypeFormORM.js';
31
31
  import {
32
32
  MapItemTypeFormORMFromJSON,
33
33
  MapItemTypeFormORMFromJSONTyped,
34
34
  MapItemTypeFormORMToJSON,
35
35
  MapItemTypeFormORMToJSONTyped,
36
- } from './MapItemTypeFormORM';
36
+ } from './MapItemTypeFormORM.js';
37
37
 
38
38
  /**
39
39
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { ItemTypeFormDto } from './ItemTypeFormDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ItemTypeFormDto } from './ItemTypeFormDto.js';
17
17
  import {
18
18
  ItemTypeFormDtoFromJSON,
19
19
  ItemTypeFormDtoFromJSONTyped,
20
20
  ItemTypeFormDtoToJSON,
21
21
  ItemTypeFormDtoToJSONTyped,
22
- } from './ItemTypeFormDto';
22
+ } from './ItemTypeFormDto.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 { ItemTypeORM } from './ItemTypeORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ItemTypeORM } from './ItemTypeORM.js';
17
17
  import {
18
18
  ItemTypeORMFromJSON,
19
19
  ItemTypeORMFromJSONTyped,
20
20
  ItemTypeORMToJSON,
21
21
  ItemTypeORMToJSONTyped,
22
- } from './ItemTypeORM';
22
+ } from './ItemTypeORM.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 { MapItemOutputDto } from './MapItemOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemOutputDto } from './MapItemOutputDto.js';
17
17
  import {
18
18
  MapItemOutputDtoFromJSON,
19
19
  MapItemOutputDtoFromJSONTyped,
20
20
  MapItemOutputDtoToJSON,
21
21
  MapItemOutputDtoToJSONTyped,
22
- } from './MapItemOutputDto';
22
+ } from './MapItemOutputDto.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 { JournalEntryOutputDto } from './JournalEntryOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { JournalEntryOutputDto } from './JournalEntryOutputDto.js';
17
17
  import {
18
18
  JournalEntryOutputDtoFromJSON,
19
19
  JournalEntryOutputDtoFromJSONTyped,
20
20
  JournalEntryOutputDtoToJSON,
21
21
  JournalEntryOutputDtoToJSONTyped,
22
- } from './JournalEntryOutputDto';
22
+ } from './JournalEntryOutputDto.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 { JournalEntryOutputDto } from './JournalEntryOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { JournalEntryOutputDto } from './JournalEntryOutputDto.js';
17
17
  import {
18
18
  JournalEntryOutputDtoFromJSON,
19
19
  JournalEntryOutputDtoFromJSONTyped,
20
20
  JournalEntryOutputDtoToJSON,
21
21
  JournalEntryOutputDtoToJSONTyped,
22
- } from './JournalEntryOutputDto';
22
+ } from './JournalEntryOutputDto.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 { 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,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,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 { 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';
23
- import type { MapItemDynamicFieldORM } from './MapItemDynamicFieldORM';
22
+ } from './MapItemCustomFieldDefinitionORM.js';
23
+ import type { MapItemDynamicFieldORM } from './MapItemDynamicFieldORM.js';
24
24
  import {
25
25
  MapItemDynamicFieldORMFromJSON,
26
26
  MapItemDynamicFieldORMFromJSONTyped,
27
27
  MapItemDynamicFieldORMToJSON,
28
28
  MapItemDynamicFieldORMToJSONTyped,
29
- } from './MapItemDynamicFieldORM';
29
+ } from './MapItemDynamicFieldORM.js';
30
30
 
31
31
  /**
32
32
  *
@@ -12,28 +12,28 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MapItemDynamicFieldInputDto } from './MapItemDynamicFieldInputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemDynamicFieldInputDto } from './MapItemDynamicFieldInputDto.js';
17
17
  import {
18
18
  MapItemDynamicFieldInputDtoFromJSON,
19
19
  MapItemDynamicFieldInputDtoFromJSONTyped,
20
20
  MapItemDynamicFieldInputDtoToJSON,
21
21
  MapItemDynamicFieldInputDtoToJSONTyped,
22
- } from './MapItemDynamicFieldInputDto';
23
- import type { MapZoneInput } from './MapZoneInput';
22
+ } from './MapItemDynamicFieldInputDto.js';
23
+ import type { MapZoneInput } from './MapZoneInput.js';
24
24
  import {
25
25
  MapZoneInputFromJSON,
26
26
  MapZoneInputFromJSONTyped,
27
27
  MapZoneInputToJSON,
28
28
  MapZoneInputToJSONTyped,
29
- } from './MapZoneInput';
30
- import type { MapItemArticleInputDto } from './MapItemArticleInputDto';
29
+ } from './MapZoneInput.js';
30
+ import type { MapItemArticleInputDto } from './MapItemArticleInputDto.js';
31
31
  import {
32
32
  MapItemArticleInputDtoFromJSON,
33
33
  MapItemArticleInputDtoFromJSONTyped,
34
34
  MapItemArticleInputDtoToJSON,
35
35
  MapItemArticleInputDtoToJSONTyped,
36
- } from './MapItemArticleInputDto';
36
+ } from './MapItemArticleInputDto.js';
37
37
 
38
38
  /**
39
39
  *
@@ -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 { MapItemLinkORM } from './MapItemLinkORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemLinkORM } from './MapItemLinkORM.js';
17
17
  import {
18
18
  MapItemLinkORMFromJSON,
19
19
  MapItemLinkORMFromJSONTyped,
20
20
  MapItemLinkORMToJSON,
21
21
  MapItemLinkORMToJSONTyped,
22
- } from './MapItemLinkORM';
22
+ } from './MapItemLinkORM.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 { MapItemOutputDto } from './MapItemOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemOutputDto } from './MapItemOutputDto.js';
17
17
  import {
18
18
  MapItemOutputDtoFromJSON,
19
19
  MapItemOutputDtoFromJSONTyped,
20
20
  MapItemOutputDtoToJSON,
21
21
  MapItemOutputDtoToJSONTyped,
22
- } from './MapItemOutputDto';
22
+ } from './MapItemOutputDto.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 { MapItemMultimediaORM } from './MapItemMultimediaORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemMultimediaORM } from './MapItemMultimediaORM.js';
17
17
  import {
18
18
  MapItemMultimediaORMFromJSON,
19
19
  MapItemMultimediaORMFromJSONTyped,
20
20
  MapItemMultimediaORMToJSON,
21
21
  MapItemMultimediaORMToJSONTyped,
22
- } from './MapItemMultimediaORM';
22
+ } from './MapItemMultimediaORM.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 { MapItemOutputDto } from './MapItemOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MapItemOutputDto } from './MapItemOutputDto.js';
17
17
  import {
18
18
  MapItemOutputDtoFromJSON,
19
19
  MapItemOutputDtoFromJSONTyped,
20
20
  MapItemOutputDtoToJSON,
21
21
  MapItemOutputDtoToJSONTyped,
22
- } from './MapItemOutputDto';
22
+ } from './MapItemOutputDto.js';
23
23
 
24
24
  /**
25
25
  *