@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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jrojaspin/security-map-api-cli",
3
- "version": "2.1.0",
3
+ "version": "2.3.0",
4
4
  "description": "Backend API",
5
5
  "repository": "https://github.com/security-map/map-api",
6
6
  "license": "MIT",
@@ -15,8 +15,7 @@
15
15
  ".": {
16
16
  "import": "./dist/index.mjs",
17
17
  "require": "./dist/index.cjs",
18
- "default": "./dist/index.mjs",
19
- "types": "./dist/index.d.ts"
18
+ "default": "./dist/index.mjs"
20
19
  }
21
20
  },
22
21
  "dependencies": {
@@ -13,12 +13,12 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  AccountORM,
19
19
  AccountOutput,
20
20
  UserInOrganizationOutput,
21
- } from '../models/index';
21
+ } from '../models/index.js';
22
22
  import {
23
23
  AccountORMFromJSON,
24
24
  AccountORMToJSON,
@@ -26,7 +26,7 @@ import {
26
26
  AccountOutputToJSON,
27
27
  UserInOrganizationOutputFromJSON,
28
28
  UserInOrganizationOutputToJSON,
29
- } from '../models/index';
29
+ } from '../models/index.js';
30
30
 
31
31
  export interface ApiV1AccountPostRequest {
32
32
  accountORM?: AccountORM;
@@ -13,14 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  AvailableArticlesOutput,
19
- } from '../models/index';
19
+ } from '../models/index.js';
20
20
  import {
21
21
  AvailableArticlesOutputFromJSON,
22
22
  AvailableArticlesOutputToJSON,
23
- } from '../models/index';
23
+ } from '../models/index.js';
24
24
 
25
25
  /**
26
26
  *
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
 
18
18
  /**
19
19
  *
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  ItemLayerLinkInputDto,
19
19
  ItemLinkToLayerOutput,
@@ -29,7 +29,7 @@ import type {
29
29
  MapItemTypeDynamicFieldDefinitionValuesOutput,
30
30
  MapItemTypeOutput,
31
31
  ReportAvailableColumnsListOutput,
32
- } from '../models/index';
32
+ } from '../models/index.js';
33
33
  import {
34
34
  ItemLayerLinkInputDtoFromJSON,
35
35
  ItemLayerLinkInputDtoToJSON,
@@ -59,7 +59,7 @@ import {
59
59
  MapItemTypeOutputToJSON,
60
60
  ReportAvailableColumnsListOutputFromJSON,
61
61
  ReportAvailableColumnsListOutputToJSON,
62
- } from '../models/index';
62
+ } from '../models/index.js';
63
63
 
64
64
  export interface ApiV1ItemItemIdGetRequest {
65
65
  itemId: string;
@@ -13,14 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  JournalEntryListOutput,
19
19
  JournalEntryMultimediaInput,
20
20
  JournalEntryMultimediaOutput,
21
21
  JournalEntryORM,
22
22
  JournalEntryOutput,
23
- } from '../models/index';
23
+ } from '../models/index.js';
24
24
  import {
25
25
  JournalEntryListOutputFromJSON,
26
26
  JournalEntryListOutputToJSON,
@@ -32,7 +32,7 @@ import {
32
32
  JournalEntryORMToJSON,
33
33
  JournalEntryOutputFromJSON,
34
34
  JournalEntryOutputToJSON,
35
- } from '../models/index';
35
+ } from '../models/index.js';
36
36
 
37
37
  export interface ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest {
38
38
  parentId: string;
@@ -13,13 +13,13 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  LocationORM,
19
19
  LocationOutput,
20
20
  MapZoneInput,
21
21
  MapZoneOutput,
22
- } from '../models/index';
22
+ } from '../models/index.js';
23
23
  import {
24
24
  LocationORMFromJSON,
25
25
  LocationORMToJSON,
@@ -29,7 +29,7 @@ import {
29
29
  MapZoneInputToJSON,
30
30
  MapZoneOutputFromJSON,
31
31
  MapZoneOutputToJSON,
32
- } from '../models/index';
32
+ } from '../models/index.js';
33
33
 
34
34
  export interface ApiV1LocationPointPostRequest {
35
35
  locationORM?: LocationORM;
@@ -13,12 +13,12 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  ManualLoginInput,
19
19
  ManualLoginPasswordUpdateInput,
20
20
  ManualRegisterInput,
21
- } from '../models/index';
21
+ } from '../models/index.js';
22
22
  import {
23
23
  ManualLoginInputFromJSON,
24
24
  ManualLoginInputToJSON,
@@ -26,7 +26,7 @@ import {
26
26
  ManualLoginPasswordUpdateInputToJSON,
27
27
  ManualRegisterInputFromJSON,
28
28
  ManualRegisterInputToJSON,
29
- } from '../models/index';
29
+ } from '../models/index.js';
30
30
 
31
31
  export interface ApiV1AuthManualLoginPostRequest {
32
32
  noRedirect?: number;
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  MapItemListOutput,
19
19
  MapLayerInput,
@@ -22,7 +22,7 @@ import type {
22
22
  MapListOutput,
23
23
  MapORM,
24
24
  MapOutput,
25
- } from '../models/index';
25
+ } from '../models/index.js';
26
26
  import {
27
27
  MapItemListOutputFromJSON,
28
28
  MapItemListOutputToJSON,
@@ -38,7 +38,7 @@ import {
38
38
  MapORMToJSON,
39
39
  MapOutputFromJSON,
40
40
  MapOutputToJSON,
41
- } from '../models/index';
41
+ } from '../models/index.js';
42
42
 
43
43
  export interface ApiV1MapMapIdGetRequest {
44
44
  mapId: string;
@@ -13,14 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  MultimediaOutput,
19
- } from '../models/index';
19
+ } from '../models/index.js';
20
20
  import {
21
21
  MultimediaOutputFromJSON,
22
22
  MultimediaOutputToJSON,
23
- } from '../models/index';
23
+ } from '../models/index.js';
24
24
 
25
25
  export interface ApiV1MultimediaContentTypeRelativeUrlGetRequest {
26
26
  contentType: string;
@@ -13,14 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  AccountOutput,
19
19
  AddUserToOrganizationDto,
20
20
  OrganizationORM,
21
21
  UpdateUserInOrganizationPasswordDto,
22
22
  UserInOrganizationOutput,
23
- } from '../models/index';
23
+ } from '../models/index.js';
24
24
  import {
25
25
  AccountOutputFromJSON,
26
26
  AccountOutputToJSON,
@@ -32,7 +32,7 @@ import {
32
32
  UpdateUserInOrganizationPasswordDtoToJSON,
33
33
  UserInOrganizationOutputFromJSON,
34
34
  UserInOrganizationOutputToJSON,
35
- } from '../models/index';
35
+ } from '../models/index.js';
36
36
 
37
37
  export interface ApiV1OrganizationPostRequest {
38
38
  organizationORM?: OrganizationORM;
@@ -13,13 +13,13 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  ReportConfigurationDto,
19
19
  ReportDataOutput,
20
20
  ReportListOutput,
21
21
  ReportOutput,
22
- } from '../models/index';
22
+ } from '../models/index.js';
23
23
  import {
24
24
  ReportConfigurationDtoFromJSON,
25
25
  ReportConfigurationDtoToJSON,
@@ -29,7 +29,7 @@ import {
29
29
  ReportListOutputToJSON,
30
30
  ReportOutputFromJSON,
31
31
  ReportOutputToJSON,
32
- } from '../models/index';
32
+ } from '../models/index.js';
33
33
 
34
34
  export interface ApiV1ReportReportIdDataPostRequest {
35
35
  reportId: string;
@@ -13,14 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  SearchOutput,
19
- } from '../models/index';
19
+ } from '../models/index.js';
20
20
  import {
21
21
  SearchOutputFromJSON,
22
22
  SearchOutputToJSON,
23
- } from '../models/index';
23
+ } from '../models/index.js';
24
24
 
25
25
  export interface ApiV1SearchPostRequest {
26
26
  q: string;
@@ -13,12 +13,12 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  SourceDto,
19
19
  SourceListOutput,
20
20
  SourceOutput,
21
- } from '../models/index';
21
+ } from '../models/index.js';
22
22
  import {
23
23
  SourceDtoFromJSON,
24
24
  SourceDtoToJSON,
@@ -26,7 +26,7 @@ import {
26
26
  SourceListOutputToJSON,
27
27
  SourceOutputFromJSON,
28
28
  SourceOutputToJSON,
29
- } from '../models/index';
29
+ } from '../models/index.js';
30
30
 
31
31
  export interface ApiV1SourcePostRequest {
32
32
  sourceDto?: SourceDto;
@@ -13,14 +13,14 @@
13
13
  */
14
14
 
15
15
 
16
- import * as runtime from '../runtime';
16
+ import * as runtime from '../runtime.js';
17
17
  import type {
18
18
  StateMachineDefinitionListOutput,
19
- } from '../models/index';
19
+ } from '../models/index.js';
20
20
  import {
21
21
  StateMachineDefinitionListOutputFromJSON,
22
22
  StateMachineDefinitionListOutputToJSON,
23
- } from '../models/index';
23
+ } from '../models/index.js';
24
24
 
25
25
  /**
26
26
  *
package/src/apis/index.ts CHANGED
@@ -1,16 +1,16 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- export * from './AccountApi';
4
- export * from './ArticleApi';
5
- export * from './HealthcheckApi';
6
- export * from './ItemApi';
7
- export * from './JournalApi';
8
- export * from './LocationApi';
9
- export * from './LoginApi';
10
- export * from './MapApi';
11
- export * from './MultimediaApi';
12
- export * from './OrganizationApi';
13
- export * from './ReportApi';
14
- export * from './SearchApi';
15
- export * from './SourceApi';
16
- export * from './StateMachineApi';
3
+ export * from './AccountApi.js';
4
+ export * from './ArticleApi.js';
5
+ export * from './HealthcheckApi.js';
6
+ export * from './ItemApi.js';
7
+ export * from './JournalApi.js';
8
+ export * from './LocationApi.js';
9
+ export * from './LoginApi.js';
10
+ export * from './MapApi.js';
11
+ export * from './MultimediaApi.js';
12
+ export * from './OrganizationApi.js';
13
+ export * from './ReportApi.js';
14
+ export * from './SearchApi.js';
15
+ export * from './SourceApi.js';
16
+ export * from './StateMachineApi.js';
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- export * from './runtime';
4
- export * from './apis/index';
5
- export * from './models/index';
3
+ export * from './runtime.js';
4
+ export * from './apis/index.js';
5
+ export * from './models/index.js';
@@ -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 { AccountORM } from './AccountORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { AccountORM } from './AccountORM.js';
17
17
  import {
18
18
  AccountORMFromJSON,
19
19
  AccountORMFromJSONTyped,
20
20
  AccountORMToJSON,
21
21
  AccountORMToJSONTyped,
22
- } from './AccountORM';
22
+ } from './AccountORM.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 { ManualLoginInput } from './ManualLoginInput';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ManualLoginInput } from './ManualLoginInput.js';
17
17
  import {
18
18
  ManualLoginInputFromJSON,
19
19
  ManualLoginInputFromJSONTyped,
20
20
  ManualLoginInputToJSON,
21
21
  ManualLoginInputToJSONTyped,
22
- } from './ManualLoginInput';
22
+ } from './ManualLoginInput.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,42 +12,42 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { MeasureUnitORM } from './MeasureUnitORM';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { MeasureUnitORM } from './MeasureUnitORM.js';
17
17
  import {
18
18
  MeasureUnitORMFromJSON,
19
19
  MeasureUnitORMFromJSONTyped,
20
20
  MeasureUnitORMToJSON,
21
21
  MeasureUnitORMToJSONTyped,
22
- } from './MeasureUnitORM';
23
- import type { ArticleORM } from './ArticleORM';
22
+ } from './MeasureUnitORM.js';
23
+ import type { ArticleORM } from './ArticleORM.js';
24
24
  import {
25
25
  ArticleORMFromJSON,
26
26
  ArticleORMFromJSONTyped,
27
27
  ArticleORMToJSON,
28
28
  ArticleORMToJSONTyped,
29
- } from './ArticleORM';
30
- import type { ArticlePresentationORM } from './ArticlePresentationORM';
29
+ } from './ArticleORM.js';
30
+ import type { ArticlePresentationORM } from './ArticlePresentationORM.js';
31
31
  import {
32
32
  ArticlePresentationORMFromJSON,
33
33
  ArticlePresentationORMFromJSONTyped,
34
34
  ArticlePresentationORMToJSON,
35
35
  ArticlePresentationORMToJSONTyped,
36
- } from './ArticlePresentationORM';
37
- import type { ArticleTypeORM } from './ArticleTypeORM';
36
+ } from './ArticlePresentationORM.js';
37
+ import type { ArticleTypeORM } from './ArticleTypeORM.js';
38
38
  import {
39
39
  ArticleTypeORMFromJSON,
40
40
  ArticleTypeORMFromJSONTyped,
41
41
  ArticleTypeORMToJSON,
42
42
  ArticleTypeORMToJSONTyped,
43
- } from './ArticleTypeORM';
44
- import type { MagnitudeORM } from './MagnitudeORM';
43
+ } from './ArticleTypeORM.js';
44
+ import type { MagnitudeORM } from './MagnitudeORM.js';
45
45
  import {
46
46
  MagnitudeORMFromJSON,
47
47
  MagnitudeORMFromJSONTyped,
48
48
  MagnitudeORMToJSON,
49
49
  MagnitudeORMToJSONTyped,
50
- } from './MagnitudeORM';
50
+ } from './MagnitudeORM.js';
51
51
 
52
52
  /**
53
53
  *
@@ -12,14 +12,14 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { AvailableArticlesDto } from './AvailableArticlesDto';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { AvailableArticlesDto } from './AvailableArticlesDto.js';
17
17
  import {
18
18
  AvailableArticlesDtoFromJSON,
19
19
  AvailableArticlesDtoFromJSONTyped,
20
20
  AvailableArticlesDtoToJSON,
21
21
  AvailableArticlesDtoToJSONTyped,
22
- } from './AvailableArticlesDto';
22
+ } from './AvailableArticlesDto.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,21 +12,21 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { ChartData } from './ChartData';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ChartData } from './ChartData.js';
17
17
  import {
18
18
  ChartDataFromJSON,
19
19
  ChartDataFromJSONTyped,
20
20
  ChartDataToJSON,
21
21
  ChartDataToJSONTyped,
22
- } from './ChartData';
23
- import type { ChartOptions } from './ChartOptions';
22
+ } from './ChartData.js';
23
+ import type { ChartOptions } from './ChartOptions.js';
24
24
  import {
25
25
  ChartOptionsFromJSON,
26
26
  ChartOptionsFromJSONTyped,
27
27
  ChartOptionsToJSON,
28
28
  ChartOptionsToJSONTyped,
29
- } from './ChartOptions';
29
+ } from './ChartOptions.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 { ChartDataset } from './ChartDataset';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ChartDataset } from './ChartDataset.js';
17
17
  import {
18
18
  ChartDatasetFromJSON,
19
19
  ChartDatasetFromJSONTyped,
20
20
  ChartDatasetToJSON,
21
21
  ChartDatasetToJSONTyped,
22
- } from './ChartDataset';
22
+ } from './ChartDataset.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 { DataPoint } from './DataPoint';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { DataPoint } from './DataPoint.js';
17
17
  import {
18
18
  DataPointFromJSON,
19
19
  DataPointFromJSONTyped,
20
20
  DataPointToJSON,
21
21
  DataPointToJSONTyped,
22
- } from './DataPoint';
22
+ } from './DataPoint.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,21 +12,21 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
- import { mapValues } from '../runtime';
16
- import type { ChartPlugins } from './ChartPlugins';
15
+ import { mapValues } from '../runtime.js';
16
+ import type { ChartPlugins } from './ChartPlugins.js';
17
17
  import {
18
18
  ChartPluginsFromJSON,
19
19
  ChartPluginsFromJSONTyped,
20
20
  ChartPluginsToJSON,
21
21
  ChartPluginsToJSONTyped,
22
- } from './ChartPlugins';
23
- import type { ChartScales } from './ChartScales';
22
+ } from './ChartPlugins.js';
23
+ import type { ChartScales } from './ChartScales.js';
24
24
  import {
25
25
  ChartScalesFromJSON,
26
26
  ChartScalesFromJSONTyped,
27
27
  ChartScalesToJSON,
28
28
  ChartScalesToJSONTyped,
29
- } from './ChartScales';
29
+ } from './ChartScales.js';
30
30
 
31
31
  /**
32
32
  *