@jrojaspin/security-map-api-cli 1.9.0 → 2.0.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 (313) hide show
  1. package/package.json +3 -3
  2. package/src/apis/AccountApi.ts +58 -20
  3. package/src/apis/ArticleApi.ts +6 -6
  4. package/src/apis/ItemApi.ts +289 -71
  5. package/src/apis/JournalApi.ts +28 -28
  6. package/src/apis/LocationApi.ts +57 -14
  7. package/src/apis/LoginApi.ts +15 -15
  8. package/src/apis/MapApi.ts +46 -79
  9. package/src/apis/MultimediaApi.ts +6 -6
  10. package/src/apis/OrganizationApi.ts +41 -41
  11. package/src/apis/ReportApi.ts +37 -23
  12. package/src/apis/SearchApi.ts +9 -9
  13. package/src/apis/SourceApi.ts +17 -17
  14. package/src/apis/StateMachineApi.ts +6 -6
  15. package/src/apis/index.ts +0 -1
  16. package/src/models/{Def1.ts → AccountORM.ts} +15 -23
  17. package/src/models/AccountOutput.ts +74 -0
  18. package/src/models/AddUserToOrganizationDto.ts +74 -0
  19. package/src/models/{Def4.ts → ArticleORM.ts} +26 -31
  20. package/src/models/ArticlePresentationORM.ts +83 -0
  21. package/src/models/ArticleTypeORM.ts +74 -0
  22. package/src/models/AutoCompleteORM.ts +98 -0
  23. package/src/models/AvailableArticlesDto.ts +138 -0
  24. package/src/models/AvailableArticlesOutput.ts +74 -0
  25. package/src/models/AxisTitle.ts +75 -0
  26. package/src/models/ChartConfiguration.ts +99 -0
  27. package/src/models/ChartData.ts +74 -0
  28. package/src/models/ChartDataset.ts +131 -0
  29. package/src/models/ChartLegend.ts +79 -0
  30. package/src/models/ChartOptions.ts +99 -0
  31. package/src/models/ChartPlugins.ts +90 -0
  32. package/src/models/ChartScales.ts +90 -0
  33. package/src/models/ChartTitle.ts +75 -0
  34. package/src/models/DataPoint.ts +75 -0
  35. package/src/models/ItemLayerLinkInputDto.ts +66 -0
  36. package/src/models/ItemLinkToLayerOutput.ts +66 -0
  37. package/src/models/ItemTypeFormDto.ts +106 -0
  38. package/src/models/ItemTypeFormOutput.ts +74 -0
  39. package/src/models/{Def16.ts → ItemTypeORM.ts} +19 -38
  40. package/src/models/ItemTypeOutput.ts +74 -0
  41. package/src/models/ItemsOutput.ts +74 -0
  42. package/src/models/JournalBookORM.ts +84 -0
  43. package/src/models/JournalEntryArticleORM.ts +110 -0
  44. package/src/models/JournalEntryListOutput.ts +74 -0
  45. package/src/models/JournalEntryMultimediaInput.ts +66 -0
  46. package/src/models/JournalEntryMultimediaORM.ts +83 -0
  47. package/src/models/JournalEntryMultimediaOutput.ts +66 -0
  48. package/src/models/{Def57Data.ts → JournalEntryORM.ts} +25 -24
  49. package/src/models/JournalEntryOutput.ts +74 -0
  50. package/src/models/JournalEntryOutputDto.ts +75 -0
  51. package/src/models/LegendPosition.ts +55 -0
  52. package/src/models/LocationORM.ts +218 -0
  53. package/src/models/LocationOutput.ts +74 -0
  54. package/src/models/MagnitudeORM.ts +74 -0
  55. package/src/models/{Def44.ts → ManualLoginInput.ts} +13 -13
  56. package/src/models/{Def45.ts → ManualLoginPasswordUpdateInput.ts} +13 -13
  57. package/src/models/{Def43.ts → ManualRegisterInput.ts} +14 -14
  58. package/src/models/MapItemArticleInputDto.ts +109 -0
  59. package/src/models/MapItemArticleORM.ts +110 -0
  60. package/src/models/{Def14.ts → MapItemCustomFieldDefinitionORM.ts} +17 -36
  61. package/src/models/{Def15CustomFieldValue.ts → MapItemDynamicFieldInputDto.ts} +19 -21
  62. package/src/models/{Def13.ts → MapItemDynamicFieldORM.ts} +17 -18
  63. package/src/models/MapItemDynamicFieldWithDefinitionORM.ts +90 -0
  64. package/src/models/MapItemInput.ts +191 -0
  65. package/src/models/{Def11.ts → MapItemLinkORM.ts} +26 -23
  66. package/src/models/MapItemLinkOutput.ts +74 -0
  67. package/src/models/MapItemListOutput.ts +74 -0
  68. package/src/models/MapItemMultimediaORM.ts +83 -0
  69. package/src/models/MapItemMultimediaOutput.ts +74 -0
  70. package/src/models/MapItemNearByORM.ts +75 -0
  71. package/src/models/MapItemORM.ts +133 -0
  72. package/src/models/MapItemOutput.ts +74 -0
  73. package/src/models/MapItemOutputDto.ts +225 -0
  74. package/src/models/MapItemOutputDtoProps.ts +225 -0
  75. package/src/models/MapItemTypeDynamicFieldDefinitionOutput.ts +74 -0
  76. package/src/models/MapItemTypeDynamicFieldDefinitionValuesOutput.ts +66 -0
  77. package/src/models/MapItemTypeFormORM.ts +83 -0
  78. package/src/models/MapItemTypeFormSectionDto.ts +90 -0
  79. package/src/models/MapItemTypeFormSectionFieldORM.ts +101 -0
  80. package/src/models/MapItemTypeFormSectionORM.ts +92 -0
  81. package/src/models/{Def54Data.ts → MapItemTypeORM.ts} +43 -35
  82. package/src/models/MapItemTypeOutput.ts +74 -0
  83. package/src/models/MapLayerInput.ts +84 -0
  84. package/src/models/MapLayerItemListOutput.ts +74 -0
  85. package/src/models/MapLayerItemORM.ts +101 -0
  86. package/src/models/MapLayerItemOutput.ts +74 -0
  87. package/src/models/MapLayerListOutput.ts +74 -0
  88. package/src/models/{Def7.ts → MapLayerORM.ts} +27 -33
  89. package/src/models/MapLayerOutput.ts +74 -0
  90. package/src/models/MapLayerOutputDto.ts +118 -0
  91. package/src/models/MapListOutput.ts +74 -0
  92. package/src/models/{Def71Data.ts → MapORM.ts} +35 -32
  93. package/src/models/MapOutput.ts +74 -0
  94. package/src/models/MapZoneInput.ts +66 -0
  95. package/src/models/MapZoneORM.ts +83 -0
  96. package/src/models/MapZoneOutput.ts +74 -0
  97. package/src/models/MapZoneOutputDto.ts +100 -0
  98. package/src/models/MapZonePointORM.ts +83 -0
  99. package/src/models/MeasureUnitORM.ts +92 -0
  100. package/src/models/ModelRequestContext.ts +74 -0
  101. package/src/models/{Def18.ts → MultimediaORM.ts} +24 -31
  102. package/src/models/MultimediaOutput.ts +74 -0
  103. package/src/models/NominatimAddressORM.ts +147 -0
  104. package/src/models/NominatimORM.ts +192 -0
  105. package/src/models/{Def2.ts → OrganizationORM.ts} +16 -17
  106. package/src/models/{Def86.ts → ReportAvailableColumnDto.ts} +13 -13
  107. package/src/models/ReportAvailableColumnsListOutput.ts +74 -0
  108. package/src/models/ReportColumnFilterORM.ts +101 -0
  109. package/src/models/ReportColumnORM.ts +135 -0
  110. package/src/models/{Def83.ts → ReportConfigurationDto.ts} +13 -22
  111. package/src/models/ReportDataCSVDto.ts +66 -0
  112. package/src/models/ReportDataDto.ts +88 -0
  113. package/src/models/ReportDataJSONDto.ts +74 -0
  114. package/src/models/ReportDataORM.ts +74 -0
  115. package/src/models/ReportDataOutput.ts +74 -0
  116. package/src/models/{Def34RowsInner.ts → ReportDataRowORM.ts} +12 -12
  117. package/src/models/ReportDto.ts +75 -0
  118. package/src/models/ReportListOutput.ts +74 -0
  119. package/src/models/{Def58Data.ts → ReportORM.ts} +25 -32
  120. package/src/models/ReportOutput.ts +74 -0
  121. package/src/models/SearchORM.ts +84 -0
  122. package/src/models/SearchOutput.ts +74 -0
  123. package/src/models/SearchResultDto.ts +74 -0
  124. package/src/models/SearchResultSectionDto.ts +92 -0
  125. package/src/models/SearchResultSectionItem.ts +100 -0
  126. package/src/models/{Def86Data.ts → SourceDto.ts} +16 -15
  127. package/src/models/SourceListOutput.ts +74 -0
  128. package/src/models/SourceOutput.ts +74 -0
  129. package/src/models/StateMachineDefinitionListOutput.ts +74 -0
  130. package/src/models/StateMachineDefinitionOutputDto.ts +117 -0
  131. package/src/models/StateMachineORM.ts +82 -0
  132. package/src/models/{Def37.ts → StateMachineStateORM.ts} +20 -20
  133. package/src/models/StateMachineStateOutputDto.ts +84 -0
  134. package/src/models/{Def39.ts → StateMachineTransitionLogORM.ts} +20 -22
  135. package/src/models/{Def98TransitionsInner.ts → StateMachineTransitionORM.ts} +18 -19
  136. package/src/models/{Def38.ts → StateMachineTransitionOutputDto.ts} +15 -24
  137. package/src/models/UpdateUserInOrganizationPasswordDto.ts +66 -0
  138. package/src/models/UploadDto.ts +75 -0
  139. package/src/models/UploadOutput.ts +74 -0
  140. package/src/models/UserDto.ts +83 -0
  141. package/src/models/{Def49.ts → UserInOrganizationDto.ts} +23 -32
  142. package/src/models/UserInOrganizationOutput.ts +74 -0
  143. package/src/models/{Def3.ts → UserORM.ts} +36 -38
  144. package/src/models/XAxisOptions.ts +83 -0
  145. package/src/models/YAxisOptions.ts +83 -0
  146. package/src/models/index.ts +130 -155
  147. package/src/apis/DefaultApi.ts +0 -224
  148. package/src/models/Def0.ts +0 -74
  149. package/src/models/Def10.ts +0 -105
  150. package/src/models/Def100.ts +0 -73
  151. package/src/models/Def100Data.ts +0 -73
  152. package/src/models/Def101.ts +0 -74
  153. package/src/models/Def101Data.ts +0 -73
  154. package/src/models/Def12.ts +0 -81
  155. package/src/models/Def15.ts +0 -90
  156. package/src/models/Def15CustomFieldDefinition.ts +0 -111
  157. package/src/models/Def17.ts +0 -81
  158. package/src/models/Def19.ts +0 -81
  159. package/src/models/Def20.ts +0 -105
  160. package/src/models/Def21.ts +0 -81
  161. package/src/models/Def22.ts +0 -217
  162. package/src/models/Def23.ts +0 -97
  163. package/src/models/Def24.ts +0 -128
  164. package/src/models/Def25.ts +0 -81
  165. package/src/models/Def26.ts +0 -81
  166. package/src/models/Def27.ts +0 -105
  167. package/src/models/Def28.ts +0 -121
  168. package/src/models/Def29.ts +0 -97
  169. package/src/models/Def30.ts +0 -113
  170. package/src/models/Def31.ts +0 -116
  171. package/src/models/Def32.ts +0 -121
  172. package/src/models/Def33.ts +0 -66
  173. package/src/models/Def34.ts +0 -74
  174. package/src/models/Def35.ts +0 -98
  175. package/src/models/Def35LocationOrm.ts +0 -217
  176. package/src/models/Def35MapItemOrm.ts +0 -156
  177. package/src/models/Def36.ts +0 -84
  178. package/src/models/Def40.ts +0 -137
  179. package/src/models/Def41.ts +0 -187
  180. package/src/models/Def41Address.ts +0 -137
  181. package/src/models/Def42.ts +0 -74
  182. package/src/models/Def42Data.ts +0 -81
  183. package/src/models/Def46.ts +0 -90
  184. package/src/models/Def46OrganizationOrm.ts +0 -84
  185. package/src/models/Def46UserOrm.ts +0 -147
  186. package/src/models/Def47.ts +0 -74
  187. package/src/models/Def47UsersInner.ts +0 -75
  188. package/src/models/Def48.ts +0 -66
  189. package/src/models/Def5.ts +0 -89
  190. package/src/models/Def50.ts +0 -74
  191. package/src/models/Def50ArticlePresentationsInner.ts +0 -97
  192. package/src/models/Def50ArticleTypesInner.ts +0 -89
  193. package/src/models/Def50ArticlesInner.ts +0 -113
  194. package/src/models/Def50DataInner.ts +0 -138
  195. package/src/models/Def50MagnitudesInner.ts +0 -81
  196. package/src/models/Def50MeasureUnitsInner.ts +0 -97
  197. package/src/models/Def51.ts +0 -138
  198. package/src/models/Def51ArticlePresentationsInner.ts +0 -97
  199. package/src/models/Def51ArticleTypesInner.ts +0 -89
  200. package/src/models/Def51ArticlesInner.ts +0 -113
  201. package/src/models/Def51Data.ts +0 -138
  202. package/src/models/Def51MagnitudesInner.ts +0 -81
  203. package/src/models/Def51MeasureUnitsInner.ts +0 -97
  204. package/src/models/Def52.ts +0 -74
  205. package/src/models/Def52Data.ts +0 -138
  206. package/src/models/Def53.ts +0 -65
  207. package/src/models/Def53Data.ts +0 -127
  208. package/src/models/Def54.ts +0 -74
  209. package/src/models/Def54DataInner.ts +0 -246
  210. package/src/models/Def54DataInnerArticlesInner.ts +0 -105
  211. package/src/models/Def54DataInnerDynamicFieldsInner.ts +0 -90
  212. package/src/models/Def54DataInnerItemMultimediasInner.ts +0 -81
  213. package/src/models/Def54DataInnerLinkedItemsInner.ts +0 -105
  214. package/src/models/Def54DataInnerMapZoneDto.ts +0 -99
  215. package/src/models/Def54DataInnerMapZoneDtoLocationsInner.ts +0 -217
  216. package/src/models/Def55.ts +0 -74
  217. package/src/models/Def55DataInner.ts +0 -246
  218. package/src/models/Def55DataInnerArticlesInner.ts +0 -105
  219. package/src/models/Def55DataInnerDynamicFieldsInner.ts +0 -90
  220. package/src/models/Def55DataInnerItemMultimediasInner.ts +0 -81
  221. package/src/models/Def55DataInnerLinkedItemsInner.ts +0 -105
  222. package/src/models/Def55DataInnerMapZoneDto.ts +0 -99
  223. package/src/models/Def55DataInnerMapZoneDtoLocationsInner.ts +0 -217
  224. package/src/models/Def56.ts +0 -124
  225. package/src/models/Def57.ts +0 -66
  226. package/src/models/Def58.ts +0 -74
  227. package/src/models/Def58DataInner.ts +0 -124
  228. package/src/models/Def59.ts +0 -74
  229. package/src/models/Def59DataInner.ts +0 -124
  230. package/src/models/Def6.ts +0 -97
  231. package/src/models/Def60.ts +0 -66
  232. package/src/models/Def61.ts +0 -90
  233. package/src/models/Def61MapZoneInput.ts +0 -90
  234. package/src/models/Def62.ts +0 -223
  235. package/src/models/Def62MapZoneInput.ts +0 -90
  236. package/src/models/Def63.ts +0 -84
  237. package/src/models/Def63Data.ts +0 -121
  238. package/src/models/Def64.ts +0 -74
  239. package/src/models/Def64Data.ts +0 -121
  240. package/src/models/Def64DataInner.ts +0 -121
  241. package/src/models/Def65.ts +0 -74
  242. package/src/models/Def65DataInner.ts +0 -121
  243. package/src/models/Def66.ts +0 -246
  244. package/src/models/Def67.ts +0 -99
  245. package/src/models/Def68.ts +0 -74
  246. package/src/models/Def68DataInner.ts +0 -105
  247. package/src/models/Def69.ts +0 -74
  248. package/src/models/Def69DataInner.ts +0 -105
  249. package/src/models/Def70.ts +0 -74
  250. package/src/models/Def71.ts +0 -66
  251. package/src/models/Def72.ts +0 -74
  252. package/src/models/Def72Data.ts +0 -105
  253. package/src/models/Def73.ts +0 -74
  254. package/src/models/Def73Data.ts +0 -81
  255. package/src/models/Def73DataInner.ts +0 -128
  256. package/src/models/Def74.ts +0 -74
  257. package/src/models/Def74Data.ts +0 -128
  258. package/src/models/Def74DataInner.ts +0 -128
  259. package/src/models/Def75.ts +0 -74
  260. package/src/models/Def75Data.ts +0 -128
  261. package/src/models/Def76.ts +0 -74
  262. package/src/models/Def76Data.ts +0 -113
  263. package/src/models/Def77.ts +0 -74
  264. package/src/models/Def77Data.ts +0 -113
  265. package/src/models/Def77DataInner.ts +0 -113
  266. package/src/models/Def78.ts +0 -74
  267. package/src/models/Def78Data.ts +0 -246
  268. package/src/models/Def78DataInner.ts +0 -113
  269. package/src/models/Def79.ts +0 -74
  270. package/src/models/Def79Data.ts +0 -246
  271. package/src/models/Def8.ts +0 -156
  272. package/src/models/Def80.ts +0 -83
  273. package/src/models/Def80Data.ts +0 -83
  274. package/src/models/Def81.ts +0 -74
  275. package/src/models/Def81Data.ts +0 -83
  276. package/src/models/Def82.ts +0 -74
  277. package/src/models/Def82Data.ts +0 -113
  278. package/src/models/Def84.ts +0 -75
  279. package/src/models/Def85.ts +0 -73
  280. package/src/models/Def87.ts +0 -74
  281. package/src/models/Def87Data.ts +0 -73
  282. package/src/models/Def88.ts +0 -74
  283. package/src/models/Def88Data.ts +0 -75
  284. package/src/models/Def88DataInner.ts +0 -73
  285. package/src/models/Def89.ts +0 -74
  286. package/src/models/Def89DataInner.ts +0 -73
  287. package/src/models/Def9.ts +0 -113
  288. package/src/models/Def90.ts +0 -74
  289. package/src/models/Def90DataInner.ts +0 -75
  290. package/src/models/Def91.ts +0 -101
  291. package/src/models/Def91ItemsInner.ts +0 -101
  292. package/src/models/Def92.ts +0 -92
  293. package/src/models/Def92ItemsInner.ts +0 -101
  294. package/src/models/Def92SectionsInner.ts +0 -92
  295. package/src/models/Def93.ts +0 -74
  296. package/src/models/Def93Data.ts +0 -74
  297. package/src/models/Def93SectionsInner.ts +0 -92
  298. package/src/models/Def94.ts +0 -74
  299. package/src/models/Def94Data.ts +0 -74
  300. package/src/models/Def95.ts +0 -73
  301. package/src/models/Def95Data.ts +0 -73
  302. package/src/models/Def96.ts +0 -74
  303. package/src/models/Def96Data.ts +0 -73
  304. package/src/models/Def96DataInner.ts +0 -73
  305. package/src/models/Def97.ts +0 -74
  306. package/src/models/Def97DataInner.ts +0 -73
  307. package/src/models/Def97StatesInner.ts +0 -92
  308. package/src/models/Def97TransitionsInner.ts +0 -102
  309. package/src/models/Def98.ts +0 -116
  310. package/src/models/Def98DataInner.ts +0 -116
  311. package/src/models/Def98StatesInner.ts +0 -92
  312. package/src/models/Def99.ts +0 -74
  313. package/src/models/Def99DataInner.ts +0 -116
@@ -0,0 +1,225 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Security Map API
5
+ * Security Map API
6
+ *
7
+ * The version of the OpenAPI document: 0.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { StateMachineStateORM } from './StateMachineStateORM';
17
+ import {
18
+ StateMachineStateORMFromJSON,
19
+ StateMachineStateORMFromJSONTyped,
20
+ StateMachineStateORMToJSON,
21
+ StateMachineStateORMToJSONTyped,
22
+ } from './StateMachineStateORM';
23
+ import type { MapItemMultimediaORM } from './MapItemMultimediaORM';
24
+ import {
25
+ MapItemMultimediaORMFromJSON,
26
+ MapItemMultimediaORMFromJSONTyped,
27
+ MapItemMultimediaORMToJSON,
28
+ MapItemMultimediaORMToJSONTyped,
29
+ } from './MapItemMultimediaORM';
30
+ import type { MapItemArticleORM } from './MapItemArticleORM';
31
+ import {
32
+ MapItemArticleORMFromJSON,
33
+ MapItemArticleORMFromJSONTyped,
34
+ MapItemArticleORMToJSON,
35
+ MapItemArticleORMToJSONTyped,
36
+ } from './MapItemArticleORM';
37
+ import type { MapItemLinkORM } from './MapItemLinkORM';
38
+ import {
39
+ MapItemLinkORMFromJSON,
40
+ MapItemLinkORMFromJSONTyped,
41
+ MapItemLinkORMToJSON,
42
+ MapItemLinkORMToJSONTyped,
43
+ } from './MapItemLinkORM';
44
+ import type { MapZoneOutputDto } from './MapZoneOutputDto';
45
+ import {
46
+ MapZoneOutputDtoFromJSON,
47
+ MapZoneOutputDtoFromJSONTyped,
48
+ MapZoneOutputDtoToJSON,
49
+ MapZoneOutputDtoToJSONTyped,
50
+ } from './MapZoneOutputDto';
51
+ import type { MapItemDynamicFieldWithDefinitionORM } from './MapItemDynamicFieldWithDefinitionORM';
52
+ import {
53
+ MapItemDynamicFieldWithDefinitionORMFromJSON,
54
+ MapItemDynamicFieldWithDefinitionORMFromJSONTyped,
55
+ MapItemDynamicFieldWithDefinitionORMToJSON,
56
+ MapItemDynamicFieldWithDefinitionORMToJSONTyped,
57
+ } from './MapItemDynamicFieldWithDefinitionORM';
58
+
59
+ /**
60
+ *
61
+ * @export
62
+ * @interface MapItemOutputDto
63
+ */
64
+ export interface MapItemOutputDto {
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof MapItemOutputDto
69
+ */
70
+ id: number;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof MapItemOutputDto
75
+ */
76
+ title: string;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof MapItemOutputDto
81
+ */
82
+ description: string;
83
+ /**
84
+ *
85
+ * @type {number}
86
+ * @memberof MapItemOutputDto
87
+ */
88
+ mapItemTypeId: number;
89
+ /**
90
+ *
91
+ * @type {StateMachineStateORM}
92
+ * @memberof MapItemOutputDto
93
+ */
94
+ state: StateMachineStateORM;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof MapItemOutputDto
99
+ */
100
+ deleteDate?: string;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof MapItemOutputDto
105
+ */
106
+ createDate: string;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof MapItemOutputDto
111
+ */
112
+ updateDate: string;
113
+ /**
114
+ *
115
+ * @type {MapZoneOutputDto}
116
+ * @memberof MapItemOutputDto
117
+ */
118
+ mapZoneDto: MapZoneOutputDto;
119
+ /**
120
+ *
121
+ * @type {Array<MapItemArticleORM>}
122
+ * @memberof MapItemOutputDto
123
+ */
124
+ articles: Array<MapItemArticleORM>;
125
+ /**
126
+ *
127
+ * @type {Array<MapItemLinkORM>}
128
+ * @memberof MapItemOutputDto
129
+ */
130
+ linkedItems: Array<MapItemLinkORM>;
131
+ /**
132
+ *
133
+ * @type {Array<MapItemMultimediaORM>}
134
+ * @memberof MapItemOutputDto
135
+ */
136
+ itemMultimedias: Array<MapItemMultimediaORM>;
137
+ /**
138
+ *
139
+ * @type {Array<MapItemDynamicFieldWithDefinitionORM>}
140
+ * @memberof MapItemOutputDto
141
+ */
142
+ dynamicFields: Array<MapItemDynamicFieldWithDefinitionORM>;
143
+ /**
144
+ *
145
+ * @type {number}
146
+ * @memberof MapItemOutputDto
147
+ */
148
+ version: number;
149
+ }
150
+
151
+ /**
152
+ * Check if a given object implements the MapItemOutputDto interface.
153
+ */
154
+ export function instanceOfMapItemOutputDto(value: object): value is MapItemOutputDto {
155
+ if (!('id' in value) || value['id'] === undefined) return false;
156
+ if (!('title' in value) || value['title'] === undefined) return false;
157
+ if (!('description' in value) || value['description'] === undefined) return false;
158
+ if (!('mapItemTypeId' in value) || value['mapItemTypeId'] === undefined) return false;
159
+ if (!('state' in value) || value['state'] === undefined) return false;
160
+ if (!('createDate' in value) || value['createDate'] === undefined) return false;
161
+ if (!('updateDate' in value) || value['updateDate'] === undefined) return false;
162
+ if (!('mapZoneDto' in value) || value['mapZoneDto'] === undefined) return false;
163
+ if (!('articles' in value) || value['articles'] === undefined) return false;
164
+ if (!('linkedItems' in value) || value['linkedItems'] === undefined) return false;
165
+ if (!('itemMultimedias' in value) || value['itemMultimedias'] === undefined) return false;
166
+ if (!('dynamicFields' in value) || value['dynamicFields'] === undefined) return false;
167
+ if (!('version' in value) || value['version'] === undefined) return false;
168
+ return true;
169
+ }
170
+
171
+ export function MapItemOutputDtoFromJSON(json: any): MapItemOutputDto {
172
+ return MapItemOutputDtoFromJSONTyped(json, false);
173
+ }
174
+
175
+ export function MapItemOutputDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemOutputDto {
176
+ if (json == null) {
177
+ return json;
178
+ }
179
+ return {
180
+
181
+ 'id': json['id'],
182
+ 'title': json['title'],
183
+ 'description': json['description'],
184
+ 'mapItemTypeId': json['mapItemTypeId'],
185
+ 'state': StateMachineStateORMFromJSON(json['state']),
186
+ 'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
187
+ 'createDate': json['createDate'],
188
+ 'updateDate': json['updateDate'],
189
+ 'mapZoneDto': MapZoneOutputDtoFromJSON(json['mapZoneDto']),
190
+ 'articles': ((json['articles'] as Array<any>).map(MapItemArticleORMFromJSON)),
191
+ 'linkedItems': ((json['linkedItems'] as Array<any>).map(MapItemLinkORMFromJSON)),
192
+ 'itemMultimedias': ((json['itemMultimedias'] as Array<any>).map(MapItemMultimediaORMFromJSON)),
193
+ 'dynamicFields': ((json['dynamicFields'] as Array<any>).map(MapItemDynamicFieldWithDefinitionORMFromJSON)),
194
+ 'version': json['version'],
195
+ };
196
+ }
197
+
198
+ export function MapItemOutputDtoToJSON(json: any): MapItemOutputDto {
199
+ return MapItemOutputDtoToJSONTyped(json, false);
200
+ }
201
+
202
+ export function MapItemOutputDtoToJSONTyped(value?: MapItemOutputDto | null, ignoreDiscriminator: boolean = false): any {
203
+ if (value == null) {
204
+ return value;
205
+ }
206
+
207
+ return {
208
+
209
+ 'id': value['id'],
210
+ 'title': value['title'],
211
+ 'description': value['description'],
212
+ 'mapItemTypeId': value['mapItemTypeId'],
213
+ 'state': StateMachineStateORMToJSON(value['state']),
214
+ 'deleteDate': value['deleteDate'],
215
+ 'createDate': value['createDate'],
216
+ 'updateDate': value['updateDate'],
217
+ 'mapZoneDto': MapZoneOutputDtoToJSON(value['mapZoneDto']),
218
+ 'articles': ((value['articles'] as Array<any>).map(MapItemArticleORMToJSON)),
219
+ 'linkedItems': ((value['linkedItems'] as Array<any>).map(MapItemLinkORMToJSON)),
220
+ 'itemMultimedias': ((value['itemMultimedias'] as Array<any>).map(MapItemMultimediaORMToJSON)),
221
+ 'dynamicFields': ((value['dynamicFields'] as Array<any>).map(MapItemDynamicFieldWithDefinitionORMToJSON)),
222
+ 'version': value['version'],
223
+ };
224
+ }
225
+
@@ -0,0 +1,225 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Security Map API
5
+ * Security Map API
6
+ *
7
+ * The version of the OpenAPI document: 0.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { StateMachineStateORM } from './StateMachineStateORM';
17
+ import {
18
+ StateMachineStateORMFromJSON,
19
+ StateMachineStateORMFromJSONTyped,
20
+ StateMachineStateORMToJSON,
21
+ StateMachineStateORMToJSONTyped,
22
+ } from './StateMachineStateORM';
23
+ import type { MapItemMultimediaORM } from './MapItemMultimediaORM';
24
+ import {
25
+ MapItemMultimediaORMFromJSON,
26
+ MapItemMultimediaORMFromJSONTyped,
27
+ MapItemMultimediaORMToJSON,
28
+ MapItemMultimediaORMToJSONTyped,
29
+ } from './MapItemMultimediaORM';
30
+ import type { MapItemArticleORM } from './MapItemArticleORM';
31
+ import {
32
+ MapItemArticleORMFromJSON,
33
+ MapItemArticleORMFromJSONTyped,
34
+ MapItemArticleORMToJSON,
35
+ MapItemArticleORMToJSONTyped,
36
+ } from './MapItemArticleORM';
37
+ import type { MapItemLinkORM } from './MapItemLinkORM';
38
+ import {
39
+ MapItemLinkORMFromJSON,
40
+ MapItemLinkORMFromJSONTyped,
41
+ MapItemLinkORMToJSON,
42
+ MapItemLinkORMToJSONTyped,
43
+ } from './MapItemLinkORM';
44
+ import type { MapZoneOutputDto } from './MapZoneOutputDto';
45
+ import {
46
+ MapZoneOutputDtoFromJSON,
47
+ MapZoneOutputDtoFromJSONTyped,
48
+ MapZoneOutputDtoToJSON,
49
+ MapZoneOutputDtoToJSONTyped,
50
+ } from './MapZoneOutputDto';
51
+ import type { MapItemDynamicFieldWithDefinitionORM } from './MapItemDynamicFieldWithDefinitionORM';
52
+ import {
53
+ MapItemDynamicFieldWithDefinitionORMFromJSON,
54
+ MapItemDynamicFieldWithDefinitionORMFromJSONTyped,
55
+ MapItemDynamicFieldWithDefinitionORMToJSON,
56
+ MapItemDynamicFieldWithDefinitionORMToJSONTyped,
57
+ } from './MapItemDynamicFieldWithDefinitionORM';
58
+
59
+ /**
60
+ *
61
+ * @export
62
+ * @interface MapItemOutputDtoProps
63
+ */
64
+ export interface MapItemOutputDtoProps {
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof MapItemOutputDtoProps
69
+ */
70
+ id: number;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof MapItemOutputDtoProps
75
+ */
76
+ title: string;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof MapItemOutputDtoProps
81
+ */
82
+ description: string;
83
+ /**
84
+ *
85
+ * @type {number}
86
+ * @memberof MapItemOutputDtoProps
87
+ */
88
+ mapItemTypeId: number;
89
+ /**
90
+ *
91
+ * @type {StateMachineStateORM}
92
+ * @memberof MapItemOutputDtoProps
93
+ */
94
+ state: StateMachineStateORM;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof MapItemOutputDtoProps
99
+ */
100
+ deleteDate?: string;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof MapItemOutputDtoProps
105
+ */
106
+ createDate: string;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof MapItemOutputDtoProps
111
+ */
112
+ updateDate: string;
113
+ /**
114
+ *
115
+ * @type {MapZoneOutputDto}
116
+ * @memberof MapItemOutputDtoProps
117
+ */
118
+ mapZoneDto: MapZoneOutputDto;
119
+ /**
120
+ *
121
+ * @type {Array<MapItemArticleORM>}
122
+ * @memberof MapItemOutputDtoProps
123
+ */
124
+ articles: Array<MapItemArticleORM>;
125
+ /**
126
+ *
127
+ * @type {Array<MapItemLinkORM>}
128
+ * @memberof MapItemOutputDtoProps
129
+ */
130
+ linkedItems: Array<MapItemLinkORM>;
131
+ /**
132
+ *
133
+ * @type {Array<MapItemMultimediaORM>}
134
+ * @memberof MapItemOutputDtoProps
135
+ */
136
+ itemMultimedias: Array<MapItemMultimediaORM>;
137
+ /**
138
+ *
139
+ * @type {Array<MapItemDynamicFieldWithDefinitionORM>}
140
+ * @memberof MapItemOutputDtoProps
141
+ */
142
+ dynamicFields: Array<MapItemDynamicFieldWithDefinitionORM>;
143
+ /**
144
+ *
145
+ * @type {number}
146
+ * @memberof MapItemOutputDtoProps
147
+ */
148
+ version: number;
149
+ }
150
+
151
+ /**
152
+ * Check if a given object implements the MapItemOutputDtoProps interface.
153
+ */
154
+ export function instanceOfMapItemOutputDtoProps(value: object): value is MapItemOutputDtoProps {
155
+ if (!('id' in value) || value['id'] === undefined) return false;
156
+ if (!('title' in value) || value['title'] === undefined) return false;
157
+ if (!('description' in value) || value['description'] === undefined) return false;
158
+ if (!('mapItemTypeId' in value) || value['mapItemTypeId'] === undefined) return false;
159
+ if (!('state' in value) || value['state'] === undefined) return false;
160
+ if (!('createDate' in value) || value['createDate'] === undefined) return false;
161
+ if (!('updateDate' in value) || value['updateDate'] === undefined) return false;
162
+ if (!('mapZoneDto' in value) || value['mapZoneDto'] === undefined) return false;
163
+ if (!('articles' in value) || value['articles'] === undefined) return false;
164
+ if (!('linkedItems' in value) || value['linkedItems'] === undefined) return false;
165
+ if (!('itemMultimedias' in value) || value['itemMultimedias'] === undefined) return false;
166
+ if (!('dynamicFields' in value) || value['dynamicFields'] === undefined) return false;
167
+ if (!('version' in value) || value['version'] === undefined) return false;
168
+ return true;
169
+ }
170
+
171
+ export function MapItemOutputDtoPropsFromJSON(json: any): MapItemOutputDtoProps {
172
+ return MapItemOutputDtoPropsFromJSONTyped(json, false);
173
+ }
174
+
175
+ export function MapItemOutputDtoPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemOutputDtoProps {
176
+ if (json == null) {
177
+ return json;
178
+ }
179
+ return {
180
+
181
+ 'id': json['id'],
182
+ 'title': json['title'],
183
+ 'description': json['description'],
184
+ 'mapItemTypeId': json['mapItemTypeId'],
185
+ 'state': StateMachineStateORMFromJSON(json['state']),
186
+ 'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
187
+ 'createDate': json['createDate'],
188
+ 'updateDate': json['updateDate'],
189
+ 'mapZoneDto': MapZoneOutputDtoFromJSON(json['mapZoneDto']),
190
+ 'articles': ((json['articles'] as Array<any>).map(MapItemArticleORMFromJSON)),
191
+ 'linkedItems': ((json['linkedItems'] as Array<any>).map(MapItemLinkORMFromJSON)),
192
+ 'itemMultimedias': ((json['itemMultimedias'] as Array<any>).map(MapItemMultimediaORMFromJSON)),
193
+ 'dynamicFields': ((json['dynamicFields'] as Array<any>).map(MapItemDynamicFieldWithDefinitionORMFromJSON)),
194
+ 'version': json['version'],
195
+ };
196
+ }
197
+
198
+ export function MapItemOutputDtoPropsToJSON(json: any): MapItemOutputDtoProps {
199
+ return MapItemOutputDtoPropsToJSONTyped(json, false);
200
+ }
201
+
202
+ export function MapItemOutputDtoPropsToJSONTyped(value?: MapItemOutputDtoProps | null, ignoreDiscriminator: boolean = false): any {
203
+ if (value == null) {
204
+ return value;
205
+ }
206
+
207
+ return {
208
+
209
+ 'id': value['id'],
210
+ 'title': value['title'],
211
+ 'description': value['description'],
212
+ 'mapItemTypeId': value['mapItemTypeId'],
213
+ 'state': StateMachineStateORMToJSON(value['state']),
214
+ 'deleteDate': value['deleteDate'],
215
+ 'createDate': value['createDate'],
216
+ 'updateDate': value['updateDate'],
217
+ 'mapZoneDto': MapZoneOutputDtoToJSON(value['mapZoneDto']),
218
+ 'articles': ((value['articles'] as Array<any>).map(MapItemArticleORMToJSON)),
219
+ 'linkedItems': ((value['linkedItems'] as Array<any>).map(MapItemLinkORMToJSON)),
220
+ 'itemMultimedias': ((value['itemMultimedias'] as Array<any>).map(MapItemMultimediaORMToJSON)),
221
+ 'dynamicFields': ((value['dynamicFields'] as Array<any>).map(MapItemDynamicFieldWithDefinitionORMToJSON)),
222
+ 'version': value['version'],
223
+ };
224
+ }
225
+
@@ -0,0 +1,74 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Security Map API
5
+ * Security Map API
6
+ *
7
+ * The version of the OpenAPI document: 0.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { MapItemCustomFieldDefinitionORM } from './MapItemCustomFieldDefinitionORM';
17
+ import {
18
+ MapItemCustomFieldDefinitionORMFromJSON,
19
+ MapItemCustomFieldDefinitionORMFromJSONTyped,
20
+ MapItemCustomFieldDefinitionORMToJSON,
21
+ MapItemCustomFieldDefinitionORMToJSONTyped,
22
+ } from './MapItemCustomFieldDefinitionORM';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface MapItemTypeDynamicFieldDefinitionOutput
28
+ */
29
+ export interface MapItemTypeDynamicFieldDefinitionOutput {
30
+ /**
31
+ *
32
+ * @type {Array<MapItemCustomFieldDefinitionORM>}
33
+ * @memberof MapItemTypeDynamicFieldDefinitionOutput
34
+ */
35
+ data: Array<MapItemCustomFieldDefinitionORM>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the MapItemTypeDynamicFieldDefinitionOutput interface.
40
+ */
41
+ export function instanceOfMapItemTypeDynamicFieldDefinitionOutput(value: object): value is MapItemTypeDynamicFieldDefinitionOutput {
42
+ if (!('data' in value) || value['data'] === undefined) return false;
43
+ return true;
44
+ }
45
+
46
+ export function MapItemTypeDynamicFieldDefinitionOutputFromJSON(json: any): MapItemTypeDynamicFieldDefinitionOutput {
47
+ return MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped(json, false);
48
+ }
49
+
50
+ export function MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemTypeDynamicFieldDefinitionOutput {
51
+ if (json == null) {
52
+ return json;
53
+ }
54
+ return {
55
+
56
+ 'data': ((json['data'] as Array<any>).map(MapItemCustomFieldDefinitionORMFromJSON)),
57
+ };
58
+ }
59
+
60
+ export function MapItemTypeDynamicFieldDefinitionOutputToJSON(json: any): MapItemTypeDynamicFieldDefinitionOutput {
61
+ return MapItemTypeDynamicFieldDefinitionOutputToJSONTyped(json, false);
62
+ }
63
+
64
+ export function MapItemTypeDynamicFieldDefinitionOutputToJSONTyped(value?: MapItemTypeDynamicFieldDefinitionOutput | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'data': ((value['data'] as Array<any>).map(MapItemCustomFieldDefinitionORMToJSON)),
72
+ };
73
+ }
74
+
@@ -0,0 +1,66 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Security Map API
5
+ * Security Map API
6
+ *
7
+ * The version of the OpenAPI document: 0.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface MapItemTypeDynamicFieldDefinitionValuesOutput
20
+ */
21
+ export interface MapItemTypeDynamicFieldDefinitionValuesOutput {
22
+ /**
23
+ *
24
+ * @type {Array<string>}
25
+ * @memberof MapItemTypeDynamicFieldDefinitionValuesOutput
26
+ */
27
+ data: Array<string>;
28
+ }
29
+
30
+ /**
31
+ * Check if a given object implements the MapItemTypeDynamicFieldDefinitionValuesOutput interface.
32
+ */
33
+ export function instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput(value: object): value is MapItemTypeDynamicFieldDefinitionValuesOutput {
34
+ if (!('data' in value) || value['data'] === undefined) return false;
35
+ return true;
36
+ }
37
+
38
+ export function MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON(json: any): MapItemTypeDynamicFieldDefinitionValuesOutput {
39
+ return MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped(json, false);
40
+ }
41
+
42
+ export function MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemTypeDynamicFieldDefinitionValuesOutput {
43
+ if (json == null) {
44
+ return json;
45
+ }
46
+ return {
47
+
48
+ 'data': json['data'],
49
+ };
50
+ }
51
+
52
+ export function MapItemTypeDynamicFieldDefinitionValuesOutputToJSON(json: any): MapItemTypeDynamicFieldDefinitionValuesOutput {
53
+ return MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped(json, false);
54
+ }
55
+
56
+ export function MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped(value?: MapItemTypeDynamicFieldDefinitionValuesOutput | null, ignoreDiscriminator: boolean = false): any {
57
+ if (value == null) {
58
+ return value;
59
+ }
60
+
61
+ return {
62
+
63
+ 'data': value['data'],
64
+ };
65
+ }
66
+
@@ -0,0 +1,83 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Security Map API
5
+ * Security Map API
6
+ *
7
+ * The version of the OpenAPI document: 0.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface MapItemTypeFormORM
20
+ */
21
+ export interface MapItemTypeFormORM {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof MapItemTypeFormORM
26
+ */
27
+ id?: number;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof MapItemTypeFormORM
32
+ */
33
+ mapItemTypeId: number;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof MapItemTypeFormORM
38
+ */
39
+ targetActionName: string;
40
+ }
41
+
42
+ /**
43
+ * Check if a given object implements the MapItemTypeFormORM interface.
44
+ */
45
+ export function instanceOfMapItemTypeFormORM(value: object): value is MapItemTypeFormORM {
46
+ if (!('mapItemTypeId' in value) || value['mapItemTypeId'] === undefined) return false;
47
+ if (!('targetActionName' in value) || value['targetActionName'] === undefined) return false;
48
+ return true;
49
+ }
50
+
51
+ export function MapItemTypeFormORMFromJSON(json: any): MapItemTypeFormORM {
52
+ return MapItemTypeFormORMFromJSONTyped(json, false);
53
+ }
54
+
55
+ export function MapItemTypeFormORMFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemTypeFormORM {
56
+ if (json == null) {
57
+ return json;
58
+ }
59
+ return {
60
+
61
+ 'id': json['id'] == null ? undefined : json['id'],
62
+ 'mapItemTypeId': json['mapItemTypeId'],
63
+ 'targetActionName': json['targetActionName'],
64
+ };
65
+ }
66
+
67
+ export function MapItemTypeFormORMToJSON(json: any): MapItemTypeFormORM {
68
+ return MapItemTypeFormORMToJSONTyped(json, false);
69
+ }
70
+
71
+ export function MapItemTypeFormORMToJSONTyped(value?: MapItemTypeFormORM | null, ignoreDiscriminator: boolean = false): any {
72
+ if (value == null) {
73
+ return value;
74
+ }
75
+
76
+ return {
77
+
78
+ 'id': value['id'],
79
+ 'mapItemTypeId': value['mapItemTypeId'],
80
+ 'targetActionName': value['targetActionName'],
81
+ };
82
+ }
83
+