@jrojaspin/security-map-api-cli 2.2.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 +1 -1
  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 { ReportDataJSONDto } from './ReportDataJSONDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ReportDataJSONDto } from './ReportDataJSONDto.js';
17
17
  import {
18
18
  ReportDataJSONDtoFromJSON,
19
19
  ReportDataJSONDtoFromJSONTyped,
20
20
  ReportDataJSONDtoToJSON,
21
21
  ReportDataJSONDtoToJSONTyped,
22
- } from './ReportDataJSONDto';
23
- import type { ReportDataCSVDto } from './ReportDataCSVDto';
22
+ } from './ReportDataJSONDto.js';
23
+ import type { ReportDataCSVDto } from './ReportDataCSVDto.js';
24
24
  import {
25
25
  ReportDataCSVDtoFromJSON,
26
26
  ReportDataCSVDtoFromJSONTyped,
27
27
  ReportDataCSVDtoToJSON,
28
28
  ReportDataCSVDtoToJSONTyped,
29
- } from './ReportDataCSVDto';
29
+ } from './ReportDataCSVDto.js';
30
30
 
31
31
  /**
32
32
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { ChartConfiguration } from './ChartConfiguration';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ChartConfiguration } from './ChartConfiguration.js';
17
17
  import {
18
18
  ChartConfigurationFromJSON,
19
19
  ChartConfigurationFromJSONTyped,
20
20
  ChartConfigurationToJSON,
21
21
  ChartConfigurationToJSONTyped,
22
- } from './ChartConfiguration';
22
+ } from './ChartConfiguration.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 { ReportDataRowORM } from './ReportDataRowORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ReportDataRowORM } from './ReportDataRowORM.js';
17
17
  import {
18
18
  ReportDataRowORMFromJSON,
19
19
  ReportDataRowORMFromJSONTyped,
20
20
  ReportDataRowORMToJSON,
21
21
  ReportDataRowORMToJSONTyped,
22
- } from './ReportDataRowORM';
22
+ } from './ReportDataRowORM.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 { ReportDataJSONDto } from './ReportDataJSONDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ReportDataJSONDto } from './ReportDataJSONDto.js';
17
17
  import {
18
18
  ReportDataJSONDtoFromJSON,
19
19
  ReportDataJSONDtoFromJSONTyped,
20
20
  ReportDataJSONDtoToJSON,
21
21
  ReportDataJSONDtoToJSONTyped,
22
- } from './ReportDataJSONDto';
22
+ } from './ReportDataJSONDto.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 { ReportDto } from './ReportDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ReportDto } from './ReportDto.js';
17
17
  import {
18
18
  ReportDtoFromJSON,
19
19
  ReportDtoFromJSONTyped,
20
20
  ReportDtoToJSON,
21
21
  ReportDtoToJSONTyped,
22
- } from './ReportDto';
22
+ } from './ReportDto.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 { ReportDto } from './ReportDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ReportDto } from './ReportDto.js';
17
17
  import {
18
18
  ReportDtoFromJSON,
19
19
  ReportDtoFromJSONTyped,
20
20
  ReportDtoToJSON,
21
21
  ReportDtoToJSONTyped,
22
- } from './ReportDto';
22
+ } from './ReportDto.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 { SearchResultDto } from './SearchResultDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { SearchResultDto } from './SearchResultDto.js';
17
17
  import {
18
18
  SearchResultDtoFromJSON,
19
19
  SearchResultDtoFromJSONTyped,
20
20
  SearchResultDtoToJSON,
21
21
  SearchResultDtoToJSONTyped,
22
- } from './SearchResultDto';
22
+ } from './SearchResultDto.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 { SearchResultSectionDto } from './SearchResultSectionDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { SearchResultSectionDto } from './SearchResultSectionDto.js';
17
17
  import {
18
18
  SearchResultSectionDtoFromJSON,
19
19
  SearchResultSectionDtoFromJSONTyped,
20
20
  SearchResultSectionDtoToJSON,
21
21
  SearchResultSectionDtoToJSONTyped,
22
- } from './SearchResultSectionDto';
22
+ } from './SearchResultSectionDto.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 { SearchResultSectionItem } from './SearchResultSectionItem';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { SearchResultSectionItem } from './SearchResultSectionItem.js';
17
17
  import {
18
18
  SearchResultSectionItemFromJSON,
19
19
  SearchResultSectionItemFromJSONTyped,
20
20
  SearchResultSectionItemToJSON,
21
21
  SearchResultSectionItemToJSONTyped,
22
- } from './SearchResultSectionItem';
22
+ } from './SearchResultSectionItem.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 { 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,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 { SourceDto } from './SourceDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { SourceDto } from './SourceDto.js';
17
17
  import {
18
18
  SourceDtoFromJSON,
19
19
  SourceDtoFromJSONTyped,
20
20
  SourceDtoToJSON,
21
21
  SourceDtoToJSONTyped,
22
- } from './SourceDto';
22
+ } from './SourceDto.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 { SourceDto } from './SourceDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { SourceDto } from './SourceDto.js';
17
17
  import {
18
18
  SourceDtoFromJSON,
19
19
  SourceDtoFromJSONTyped,
20
20
  SourceDtoToJSON,
21
21
  SourceDtoToJSONTyped,
22
- } from './SourceDto';
22
+ } from './SourceDto.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 { StateMachineDefinitionOutputDto } from './StateMachineDefinitionOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { StateMachineDefinitionOutputDto } from './StateMachineDefinitionOutputDto.js';
17
17
  import {
18
18
  StateMachineDefinitionOutputDtoFromJSON,
19
19
  StateMachineDefinitionOutputDtoFromJSONTyped,
20
20
  StateMachineDefinitionOutputDtoToJSON,
21
21
  StateMachineDefinitionOutputDtoToJSONTyped,
22
- } from './StateMachineDefinitionOutputDto';
22
+ } from './StateMachineDefinitionOutputDto.js';
23
23
 
24
24
  /**
25
25
  *
@@ -12,21 +12,21 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { StateMachineStateOutputDto } from './StateMachineStateOutputDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { StateMachineStateOutputDto } from './StateMachineStateOutputDto.js';
17
17
  import {
18
18
  StateMachineStateOutputDtoFromJSON,
19
19
  StateMachineStateOutputDtoFromJSONTyped,
20
20
  StateMachineStateOutputDtoToJSON,
21
21
  StateMachineStateOutputDtoToJSONTyped,
22
- } from './StateMachineStateOutputDto';
23
- import type { StateMachineTransitionOutputDto } from './StateMachineTransitionOutputDto';
22
+ } from './StateMachineStateOutputDto.js';
23
+ import type { StateMachineTransitionOutputDto } from './StateMachineTransitionOutputDto.js';
24
24
  import {
25
25
  StateMachineTransitionOutputDtoFromJSON,
26
26
  StateMachineTransitionOutputDtoFromJSONTyped,
27
27
  StateMachineTransitionOutputDtoToJSON,
28
28
  StateMachineTransitionOutputDtoToJSONTyped,
29
- } from './StateMachineTransitionOutputDto';
29
+ } from './StateMachineTransitionOutputDto.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,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 { UploadDto } from './UploadDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { UploadDto } from './UploadDto.js';
17
17
  import {
18
18
  UploadDtoFromJSON,
19
19
  UploadDtoFromJSONTyped,
20
20
  UploadDtoToJSON,
21
21
  UploadDtoToJSONTyped,
22
- } from './UploadDto';
22
+ } from './UploadDto.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 { UserORM } from './UserORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { UserORM } from './UserORM.js';
17
17
  import {
18
18
  UserORMFromJSON,
19
19
  UserORMFromJSONTyped,
20
20
  UserORMToJSON,
21
21
  UserORMToJSONTyped,
22
- } from './UserORM';
22
+ } from './UserORM.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 { UserInOrganizationDto } from './UserInOrganizationDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { UserInOrganizationDto } from './UserInOrganizationDto.js';
17
17
  import {
18
18
  UserInOrganizationDtoFromJSON,
19
19
  UserInOrganizationDtoFromJSONTyped,
20
20
  UserInOrganizationDtoToJSON,
21
21
  UserInOrganizationDtoToJSONTyped,
22
- } from './UserInOrganizationDto';
22
+ } from './UserInOrganizationDto.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 { AxisTitle } from './AxisTitle';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { AxisTitle } from './AxisTitle.js';
17
17
  import {
18
18
  AxisTitleFromJSON,
19
19
  AxisTitleFromJSONTyped,
20
20
  AxisTitleToJSON,
21
21
  AxisTitleToJSONTyped,
22
- } from './AxisTitle';
22
+ } from './AxisTitle.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 { AxisTitle } from './AxisTitle';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { AxisTitle } from './AxisTitle.js';
17
17
  import {
18
18
  AxisTitleFromJSON,
19
19
  AxisTitleFromJSONTyped,
20
20
  AxisTitleToJSON,
21
21
  AxisTitleToJSONTyped,
22
- } from './AxisTitle';
22
+ } from './AxisTitle.js';
23
23
 
24
24
  /**
25
25
  *