@equisoft/equisoft-connect-sdk-typescript 10.5.2-snapshot.20210908191711 → 10.6.7

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 (338) hide show
  1. package/dist/apis/DSFApi.d.ts +61 -0
  2. package/dist/apis/DSFApi.js +186 -0
  3. package/dist/apis/DatabasesApi.d.ts +47 -0
  4. package/dist/apis/DatabasesApi.js +129 -0
  5. package/dist/apis/EventsApi.d.ts +207 -0
  6. package/dist/apis/EventsApi.js +586 -0
  7. package/dist/apis/GatewaysApi.d.ts +122 -0
  8. package/dist/apis/GatewaysApi.js +379 -0
  9. package/dist/apis/IntegrationsApi.d.ts +40 -0
  10. package/dist/apis/IntegrationsApi.js +96 -0
  11. package/dist/apis/LegacyDocumentApi.d.ts +106 -0
  12. package/dist/apis/LegacyDocumentApi.js +312 -0
  13. package/dist/apis/LegacyProvisioningApi.d.ts +37 -0
  14. package/dist/apis/LegacyProvisioningApi.js +97 -0
  15. package/dist/apis/MovementApi.d.ts +60 -0
  16. package/dist/apis/MovementApi.js +182 -0
  17. package/dist/apis/MxApi.d.ts +29 -0
  18. package/dist/apis/MxApi.js +67 -0
  19. package/dist/apis/RemoteAccountApi.d.ts +48 -0
  20. package/dist/apis/RemoteAccountApi.js +141 -0
  21. package/dist/apis/TasksApi.d.ts +163 -0
  22. package/dist/apis/TasksApi.js +465 -0
  23. package/dist/apis/UsersApi.d.ts +37 -0
  24. package/dist/apis/UsersApi.js +94 -0
  25. package/dist/apis/index.d.ts +12 -0
  26. package/dist/apis/index.js +24 -0
  27. package/dist/index.d.ts +3 -0
  28. package/dist/index.js +15 -0
  29. package/dist/models/AccessRights.d.ts +33 -0
  30. package/dist/models/AccessRights.js +43 -0
  31. package/dist/models/AdminCredentialPayload.d.ts +33 -0
  32. package/dist/models/AdminCredentialPayload.js +43 -0
  33. package/dist/models/AdminCredentialResponse.d.ts +39 -0
  34. package/dist/models/AdminCredentialResponse.js +45 -0
  35. package/dist/models/CalendarDefaultCalendarId.d.ts +23 -0
  36. package/dist/models/CalendarDefaultCalendarId.js +38 -0
  37. package/dist/models/CalendarsCalendar.d.ts +64 -0
  38. package/dist/models/CalendarsCalendar.js +55 -0
  39. package/dist/models/CalendarsListCalendarResponse.d.ts +28 -0
  40. package/dist/models/CalendarsListCalendarResponse.js +42 -0
  41. package/dist/models/ContextActor.d.ts +33 -0
  42. package/dist/models/ContextActor.js +43 -0
  43. package/dist/models/ContextEquisoftConnect.d.ts +52 -0
  44. package/dist/models/ContextEquisoftConnect.js +50 -0
  45. package/dist/models/ContextEquisoftConnectUser.d.ts +27 -0
  46. package/dist/models/ContextEquisoftConnectUser.js +41 -0
  47. package/dist/models/ContextInstance.d.ts +33 -0
  48. package/dist/models/ContextInstance.js +43 -0
  49. package/dist/models/ContextPreferences.d.ts +45 -0
  50. package/dist/models/ContextPreferences.js +47 -0
  51. package/dist/models/ContextUser.d.ts +39 -0
  52. package/dist/models/ContextUser.js +45 -0
  53. package/dist/models/ContextUserContext.d.ts +52 -0
  54. package/dist/models/ContextUserContext.js +51 -0
  55. package/dist/models/CredentialDto.d.ts +99 -0
  56. package/dist/models/CredentialDto.js +66 -0
  57. package/dist/models/CredentialsResponse.d.ts +28 -0
  58. package/dist/models/CredentialsResponse.js +42 -0
  59. package/dist/models/DatabasesDatabase.d.ts +63 -0
  60. package/dist/models/DatabasesDatabase.js +54 -0
  61. package/dist/models/DatabasesListDatabasesResponse.d.ts +28 -0
  62. package/dist/models/DatabasesListDatabasesResponse.js +42 -0
  63. package/dist/models/DateOrDateTime.d.ts +33 -0
  64. package/dist/models/DateOrDateTime.js +44 -0
  65. package/dist/models/DsfCreateOrUpdateFinancialCenterResponse.d.ts +27 -0
  66. package/dist/models/DsfCreateOrUpdateFinancialCenterResponse.js +41 -0
  67. package/dist/models/DsfFinancialCenter.d.ts +63 -0
  68. package/dist/models/DsfFinancialCenter.js +54 -0
  69. package/dist/models/DsfFinancialCenterPayload.d.ts +45 -0
  70. package/dist/models/DsfFinancialCenterPayload.js +48 -0
  71. package/dist/models/DsfListFinancialCenterResponse.d.ts +28 -0
  72. package/dist/models/DsfListFinancialCenterResponse.js +42 -0
  73. package/dist/models/ErrorResponse.d.ts +33 -0
  74. package/dist/models/ErrorResponse.js +44 -0
  75. package/dist/models/EventsCreateEventPayload.d.ts +118 -0
  76. package/dist/models/EventsCreateEventPayload.js +73 -0
  77. package/dist/models/EventsCreateEventResponse.d.ts +27 -0
  78. package/dist/models/EventsCreateEventResponse.js +41 -0
  79. package/dist/models/EventsEvent.d.ts +174 -0
  80. package/dist/models/EventsEvent.js +91 -0
  81. package/dist/models/EventsEventType.d.ts +27 -0
  82. package/dist/models/EventsEventType.js +42 -0
  83. package/dist/models/EventsGetEventInstancesResponse.d.ts +34 -0
  84. package/dist/models/EventsGetEventInstancesResponse.js +45 -0
  85. package/dist/models/EventsListEventResponse.d.ts +34 -0
  86. package/dist/models/EventsListEventResponse.js +45 -0
  87. package/dist/models/EventsOrderByType.d.ts +24 -0
  88. package/dist/models/EventsOrderByType.js +39 -0
  89. package/dist/models/EventsPatchEventPayload.d.ts +106 -0
  90. package/dist/models/EventsPatchEventPayload.js +69 -0
  91. package/dist/models/EventsPatchEventResponse.d.ts +27 -0
  92. package/dist/models/EventsPatchEventResponse.js +41 -0
  93. package/dist/models/EventsTransferToCompletedResponse.d.ts +27 -0
  94. package/dist/models/EventsTransferToCompletedResponse.js +41 -0
  95. package/dist/models/EventsVisibilityType.d.ts +23 -0
  96. package/dist/models/EventsVisibilityType.js +38 -0
  97. package/dist/models/FieldValue.d.ts +33 -0
  98. package/dist/models/FieldValue.js +43 -0
  99. package/dist/models/GatewaysAccessesAccess.d.ts +34 -0
  100. package/dist/models/GatewaysAccessesAccess.js +50 -0
  101. package/dist/models/GatewaysAccessesCreateAccessResponse.d.ts +27 -0
  102. package/dist/models/GatewaysAccessesCreateAccessResponse.js +41 -0
  103. package/dist/models/GatewaysAccessesCreateEquisoftAnalyzeAccessPayload.d.ts +33 -0
  104. package/dist/models/GatewaysAccessesCreateEquisoftAnalyzeAccessPayload.js +43 -0
  105. package/dist/models/GatewaysAccessesEquisoftAnalyzeAccess.d.ts +42 -0
  106. package/dist/models/GatewaysAccessesEquisoftAnalyzeAccess.js +47 -0
  107. package/dist/models/GatewaysAccessesEquisoftAnalyzeAccessAllOf.d.ts +41 -0
  108. package/dist/models/GatewaysAccessesEquisoftAnalyzeAccessAllOf.js +52 -0
  109. package/dist/models/GatewaysAccessesListGatewayAccessesResponse.d.ts +28 -0
  110. package/dist/models/GatewaysAccessesListGatewayAccessesResponse.js +42 -0
  111. package/dist/models/GatewaysAccessesPatchEquisoftAnalyzeAccessPayload.d.ts +27 -0
  112. package/dist/models/GatewaysAccessesPatchEquisoftAnalyzeAccessPayload.js +42 -0
  113. package/dist/models/GatewaysAccessesUser.d.ts +39 -0
  114. package/dist/models/GatewaysAccessesUser.js +46 -0
  115. package/dist/models/GatewaysCredentials.d.ts +45 -0
  116. package/dist/models/GatewaysCredentials.js +48 -0
  117. package/dist/models/GatewaysCredentialsWithSsn.d.ts +51 -0
  118. package/dist/models/GatewaysCredentialsWithSsn.js +50 -0
  119. package/dist/models/GatewaysCredentialsWithSsnAllOf.d.ts +27 -0
  120. package/dist/models/GatewaysCredentialsWithSsnAllOf.js +42 -0
  121. package/dist/models/GatewaysGatewayName.d.ts +22 -0
  122. package/dist/models/GatewaysGatewayName.js +37 -0
  123. package/dist/models/GatewaysGatewayType.d.ts +22 -0
  124. package/dist/models/GatewaysGatewayType.js +37 -0
  125. package/dist/models/GatewaysListCredentialsResponse.d.ts +28 -0
  126. package/dist/models/GatewaysListCredentialsResponse.js +42 -0
  127. package/dist/models/HandlersOauth2AssetbookAssetBookTokenPostBody.d.ts +33 -0
  128. package/dist/models/HandlersOauth2AssetbookAssetBookTokenPostBody.js +43 -0
  129. package/dist/models/InternalNotesAuthor.d.ts +39 -0
  130. package/dist/models/InternalNotesAuthor.js +46 -0
  131. package/dist/models/InternalNotesCreateNotePayload.d.ts +27 -0
  132. package/dist/models/InternalNotesCreateNotePayload.js +41 -0
  133. package/dist/models/InternalNotesCreateNoteResponse.d.ts +27 -0
  134. package/dist/models/InternalNotesCreateNoteResponse.js +41 -0
  135. package/dist/models/InternalNotesHistoryType.d.ts +23 -0
  136. package/dist/models/InternalNotesHistoryType.js +38 -0
  137. package/dist/models/InternalNotesLegacyNote.d.ts +27 -0
  138. package/dist/models/InternalNotesLegacyNote.js +41 -0
  139. package/dist/models/InternalNotesNote.d.ts +58 -0
  140. package/dist/models/InternalNotesNote.js +53 -0
  141. package/dist/models/InternalNotesNoteList.d.ts +34 -0
  142. package/dist/models/InternalNotesNoteList.js +45 -0
  143. package/dist/models/InternalNotesNoteRevision.d.ts +45 -0
  144. package/dist/models/InternalNotesNoteRevision.js +48 -0
  145. package/dist/models/InternalNotesNoteRevisionType.d.ts +25 -0
  146. package/dist/models/InternalNotesNoteRevisionType.js +40 -0
  147. package/dist/models/InternalNotesPatchNotePayload.d.ts +27 -0
  148. package/dist/models/InternalNotesPatchNotePayload.js +41 -0
  149. package/dist/models/InternalNotesPatchNoteResponse.d.ts +27 -0
  150. package/dist/models/InternalNotesPatchNoteResponse.js +41 -0
  151. package/dist/models/LaserAppLaserAppAnywhereError.d.ts +27 -0
  152. package/dist/models/LaserAppLaserAppAnywhereError.js +41 -0
  153. package/dist/models/LaserAppLaserAppAnywhereResponse.d.ts +27 -0
  154. package/dist/models/LaserAppLaserAppAnywhereResponse.js +41 -0
  155. package/dist/models/LegacyAddUpdateItem.d.ts +39 -0
  156. package/dist/models/LegacyAddUpdateItem.js +46 -0
  157. package/dist/models/LegacyAddUpdateResponse.d.ts +46 -0
  158. package/dist/models/LegacyAddUpdateResponse.js +49 -0
  159. package/dist/models/LegacyAddUpdateResponseAllOf.d.ts +28 -0
  160. package/dist/models/LegacyAddUpdateResponseAllOf.js +42 -0
  161. package/dist/models/LegacyContactAddress.d.ts +123 -0
  162. package/dist/models/LegacyContactAddress.js +74 -0
  163. package/dist/models/LegacyContactContact.d.ts +93 -0
  164. package/dist/models/LegacyContactContact.js +64 -0
  165. package/dist/models/LegacyContactContactPayloadItem.d.ts +363 -0
  166. package/dist/models/LegacyContactContactPayloadItem.js +154 -0
  167. package/dist/models/LegacyContactContactPayloadItemAllOf.d.ts +291 -0
  168. package/dist/models/LegacyContactContactPayloadItemAllOf.js +130 -0
  169. package/dist/models/LegacyDocumentBase64FilePayload.d.ts +28 -0
  170. package/dist/models/LegacyDocumentBase64FilePayload.js +43 -0
  171. package/dist/models/LegacyDocumentBase64FilePayloadItem.d.ts +57 -0
  172. package/dist/models/LegacyDocumentBase64FilePayloadItem.js +52 -0
  173. package/dist/models/LegacyDocumentBase64FilePayloadItemAllOf.d.ts +33 -0
  174. package/dist/models/LegacyDocumentBase64FilePayloadItemAllOf.js +44 -0
  175. package/dist/models/LegacyDocumentDocument.d.ts +124 -0
  176. package/dist/models/LegacyDocumentDocument.js +75 -0
  177. package/dist/models/LegacyDocumentDocumentListItem.d.ts +52 -0
  178. package/dist/models/LegacyDocumentDocumentListItem.js +51 -0
  179. package/dist/models/LegacyDocumentDocumentPayload.d.ts +28 -0
  180. package/dist/models/LegacyDocumentDocumentPayload.js +43 -0
  181. package/dist/models/LegacyDocumentDocumentPayloadItem.d.ts +100 -0
  182. package/dist/models/LegacyDocumentDocumentPayloadItem.js +67 -0
  183. package/dist/models/LegacyDocumentDocumentPayloadRequest.d.ts +28 -0
  184. package/dist/models/LegacyDocumentDocumentPayloadRequest.js +42 -0
  185. package/dist/models/LegacyDocumentDownloadFileResponse.d.ts +46 -0
  186. package/dist/models/LegacyDocumentDownloadFileResponse.js +49 -0
  187. package/dist/models/LegacyDocumentDownloadFileResponseAllOf.d.ts +28 -0
  188. package/dist/models/LegacyDocumentDownloadFileResponseAllOf.js +42 -0
  189. package/dist/models/LegacyDocumentFile.d.ts +45 -0
  190. package/dist/models/LegacyDocumentFile.js +48 -0
  191. package/dist/models/LegacyDocumentGetListOptions.d.ts +39 -0
  192. package/dist/models/LegacyDocumentGetListOptions.js +46 -0
  193. package/dist/models/LegacyDocumentGetListResponse.d.ts +46 -0
  194. package/dist/models/LegacyDocumentGetListResponse.js +49 -0
  195. package/dist/models/LegacyDocumentGetListResponseAllOf.d.ts +28 -0
  196. package/dist/models/LegacyDocumentGetListResponseAllOf.js +42 -0
  197. package/dist/models/LegacyDocumentGetResponse.d.ts +46 -0
  198. package/dist/models/LegacyDocumentGetResponse.js +49 -0
  199. package/dist/models/LegacyDocumentGetResponseAllOf.d.ts +28 -0
  200. package/dist/models/LegacyDocumentGetResponseAllOf.js +42 -0
  201. package/dist/models/LegacyDocumentUploadDocumentFileRequest.d.ts +28 -0
  202. package/dist/models/LegacyDocumentUploadDocumentFileRequest.js +42 -0
  203. package/dist/models/LegacyProvisioningGetOrganizationListResponse.d.ts +46 -0
  204. package/dist/models/LegacyProvisioningGetOrganizationListResponse.js +49 -0
  205. package/dist/models/LegacyProvisioningGetOrganizationListResponseAllOf.d.ts +28 -0
  206. package/dist/models/LegacyProvisioningGetOrganizationListResponseAllOf.js +42 -0
  207. package/dist/models/LegacyProvisioningGetOrganizationResponse.d.ts +46 -0
  208. package/dist/models/LegacyProvisioningGetOrganizationResponse.js +49 -0
  209. package/dist/models/LegacyProvisioningGetOrganizationResponseAllOf.d.ts +28 -0
  210. package/dist/models/LegacyProvisioningGetOrganizationResponseAllOf.js +42 -0
  211. package/dist/models/LegacyProvisioningGroupItem.d.ts +33 -0
  212. package/dist/models/LegacyProvisioningGroupItem.js +44 -0
  213. package/dist/models/LegacyProvisioningOrganizationItem.d.ts +131 -0
  214. package/dist/models/LegacyProvisioningOrganizationItem.js +77 -0
  215. package/dist/models/LegacyProvisioningUserIdentifier.d.ts +27 -0
  216. package/dist/models/LegacyProvisioningUserIdentifier.js +42 -0
  217. package/dist/models/LegacyProvisioningUserItem.d.ts +181 -0
  218. package/dist/models/LegacyProvisioningUserItem.js +91 -0
  219. package/dist/models/LegacyProvisioningUserPayload.d.ts +166 -0
  220. package/dist/models/LegacyProvisioningUserPayload.js +83 -0
  221. package/dist/models/LegacyResponse.d.ts +39 -0
  222. package/dist/models/LegacyResponse.js +46 -0
  223. package/dist/models/LegacyUser.d.ts +39 -0
  224. package/dist/models/LegacyUser.js +46 -0
  225. package/dist/models/MovementAddMovementResponse.d.ts +27 -0
  226. package/dist/models/MovementAddMovementResponse.js +42 -0
  227. package/dist/models/MovementClientBaseUsingDistributionListMovement.d.ts +79 -0
  228. package/dist/models/MovementClientBaseUsingDistributionListMovement.js +47 -0
  229. package/dist/models/MovementClientBaseUsingDistributionListMovementAllOf.d.ts +79 -0
  230. package/dist/models/MovementClientBaseUsingDistributionListMovementAllOf.js +65 -0
  231. package/dist/models/MovementClientBaseUsingDistributionListMovementPayload.d.ts +79 -0
  232. package/dist/models/MovementClientBaseUsingDistributionListMovementPayload.js +47 -0
  233. package/dist/models/MovementClientBaseUsingDistributionListMovementPayloadAllOf.d.ts +78 -0
  234. package/dist/models/MovementClientBaseUsingDistributionListMovementPayloadAllOf.js +64 -0
  235. package/dist/models/MovementClientBaseUsingFileMovement.d.ts +77 -0
  236. package/dist/models/MovementClientBaseUsingFileMovement.js +47 -0
  237. package/dist/models/MovementClientBaseUsingFileMovementAllOf.d.ts +77 -0
  238. package/dist/models/MovementClientBaseUsingFileMovementAllOf.js +65 -0
  239. package/dist/models/MovementClientBaseUsingFileMovementPayload.d.ts +77 -0
  240. package/dist/models/MovementClientBaseUsingFileMovementPayload.js +47 -0
  241. package/dist/models/MovementClientBaseUsingFileMovementPayloadAllOf.d.ts +76 -0
  242. package/dist/models/MovementClientBaseUsingFileMovementPayloadAllOf.js +64 -0
  243. package/dist/models/MovementCopyMovement.d.ts +53 -0
  244. package/dist/models/MovementCopyMovement.js +46 -0
  245. package/dist/models/MovementCopyMovementAllOf.d.ts +53 -0
  246. package/dist/models/MovementCopyMovementAllOf.js +56 -0
  247. package/dist/models/MovementCopyMovementPayload.d.ts +53 -0
  248. package/dist/models/MovementCopyMovementPayload.js +47 -0
  249. package/dist/models/MovementCopyMovementPayloadAllOf.d.ts +53 -0
  250. package/dist/models/MovementCopyMovementPayloadAllOf.js +57 -0
  251. package/dist/models/MovementDatabase.d.ts +33 -0
  252. package/dist/models/MovementDatabase.js +44 -0
  253. package/dist/models/MovementDistributionList.d.ts +33 -0
  254. package/dist/models/MovementDistributionList.js +44 -0
  255. package/dist/models/MovementGatewayAccessCode.d.ts +45 -0
  256. package/dist/models/MovementGatewayAccessCode.js +48 -0
  257. package/dist/models/MovementGetStatusResponse.d.ts +27 -0
  258. package/dist/models/MovementGetStatusResponse.js +41 -0
  259. package/dist/models/MovementListMovementResponse.d.ts +28 -0
  260. package/dist/models/MovementListMovementResponse.js +42 -0
  261. package/dist/models/MovementMoveMovement.d.ts +53 -0
  262. package/dist/models/MovementMoveMovement.js +46 -0
  263. package/dist/models/MovementMoveMovementAllOf.d.ts +53 -0
  264. package/dist/models/MovementMoveMovementAllOf.js +56 -0
  265. package/dist/models/MovementMoveMovementPayload.d.ts +53 -0
  266. package/dist/models/MovementMoveMovementPayload.js +46 -0
  267. package/dist/models/MovementMoveMovementPayloadAllOf.d.ts +52 -0
  268. package/dist/models/MovementMoveMovementPayloadAllOf.js +55 -0
  269. package/dist/models/MovementMovement.d.ts +76 -0
  270. package/dist/models/MovementMovement.js +77 -0
  271. package/dist/models/MovementMovementPayload.d.ts +33 -0
  272. package/dist/models/MovementMovementPayload.js +62 -0
  273. package/dist/models/MovementMovementStatus.d.ts +26 -0
  274. package/dist/models/MovementMovementStatus.js +41 -0
  275. package/dist/models/MovementMovementType.d.ts +26 -0
  276. package/dist/models/MovementMovementType.js +41 -0
  277. package/dist/models/MovementReassignmentMovement.d.ts +59 -0
  278. package/dist/models/MovementReassignmentMovement.js +46 -0
  279. package/dist/models/MovementReassignmentMovementAllOf.d.ts +59 -0
  280. package/dist/models/MovementReassignmentMovementAllOf.js +58 -0
  281. package/dist/models/MovementReassignmentMovementPayload.d.ts +59 -0
  282. package/dist/models/MovementReassignmentMovementPayload.js +46 -0
  283. package/dist/models/MovementReassignmentMovementPayloadAllOf.d.ts +58 -0
  284. package/dist/models/MovementReassignmentMovementPayloadAllOf.js +57 -0
  285. package/dist/models/MovementTransferOption.d.ts +23 -0
  286. package/dist/models/MovementTransferOption.js +38 -0
  287. package/dist/models/MovementUser.d.ts +39 -0
  288. package/dist/models/MovementUser.js +46 -0
  289. package/dist/models/MovementUserTuple.d.ts +34 -0
  290. package/dist/models/MovementUserTuple.js +44 -0
  291. package/dist/models/MovementUserTuplePayload.d.ts +33 -0
  292. package/dist/models/MovementUserTuplePayload.js +43 -0
  293. package/dist/models/MovementValidationError.d.ts +35 -0
  294. package/dist/models/MovementValidationError.js +44 -0
  295. package/dist/models/MovementValidationErrorResponse.d.ts +30 -0
  296. package/dist/models/MovementValidationErrorResponse.js +43 -0
  297. package/dist/models/MxRecipient.d.ts +45 -0
  298. package/dist/models/MxRecipient.js +47 -0
  299. package/dist/models/MxRecipientsPayload.d.ts +51 -0
  300. package/dist/models/MxRecipientsPayload.js +49 -0
  301. package/dist/models/MxValidateRecipientsResponse.d.ts +28 -0
  302. package/dist/models/MxValidateRecipientsResponse.js +42 -0
  303. package/dist/models/RemoteaccountAccountSyncResponse.d.ts +34 -0
  304. package/dist/models/RemoteaccountAccountSyncResponse.js +45 -0
  305. package/dist/models/RemoteaccountSyncStatus.d.ts +34 -0
  306. package/dist/models/RemoteaccountSyncStatus.js +45 -0
  307. package/dist/models/RemoteaccountSyncTaskStatus.d.ts +33 -0
  308. package/dist/models/RemoteaccountSyncTaskStatus.js +44 -0
  309. package/dist/models/TasksCreateTaskPayload.d.ts +99 -0
  310. package/dist/models/TasksCreateTaskPayload.js +66 -0
  311. package/dist/models/TasksCreateTaskResponse.d.ts +27 -0
  312. package/dist/models/TasksCreateTaskResponse.js +41 -0
  313. package/dist/models/TasksDueDateFilter.d.ts +23 -0
  314. package/dist/models/TasksDueDateFilter.js +38 -0
  315. package/dist/models/TasksListTaskResponse.d.ts +34 -0
  316. package/dist/models/TasksListTaskResponse.js +45 -0
  317. package/dist/models/TasksOrderByType.d.ts +27 -0
  318. package/dist/models/TasksOrderByType.js +42 -0
  319. package/dist/models/TasksPatchTaskPayload.d.ts +87 -0
  320. package/dist/models/TasksPatchTaskPayload.js +62 -0
  321. package/dist/models/TasksPatchTaskResponse.d.ts +27 -0
  322. package/dist/models/TasksPatchTaskResponse.js +41 -0
  323. package/dist/models/TasksTask.d.ts +124 -0
  324. package/dist/models/TasksTask.js +75 -0
  325. package/dist/models/TasksTransferToCompletedResponse.d.ts +27 -0
  326. package/dist/models/TasksTransferToCompletedResponse.js +41 -0
  327. package/dist/models/TasksVisibilityType.d.ts +23 -0
  328. package/dist/models/TasksVisibilityType.js +38 -0
  329. package/dist/models/UsersListUsersResponse.d.ts +28 -0
  330. package/dist/models/UsersListUsersResponse.js +42 -0
  331. package/dist/models/UsersUser.d.ts +69 -0
  332. package/dist/models/UsersUser.js +55 -0
  333. package/dist/models/index.d.ts +152 -0
  334. package/dist/models/index.js +164 -0
  335. package/dist/runtime.d.ts +140 -0
  336. package/dist/runtime.js +256 -0
  337. package/package.json +1 -1
  338. package/src/models/UsersUser.ts +16 -16
@@ -0,0 +1,93 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface LegacyContactContact
16
+ */
17
+ export interface LegacyContactContact {
18
+ /**
19
+ * Unique id
20
+ * @type {string}
21
+ * @memberof LegacyContactContact
22
+ */
23
+ id?: string;
24
+ /**
25
+ * Contact UUID
26
+ * @type {string}
27
+ * @memberof LegacyContactContact
28
+ */
29
+ uuid?: string;
30
+ /**
31
+ * type of the contact
32
+ * @type {string}
33
+ * @memberof LegacyContactContact
34
+ */
35
+ typeContact?: string;
36
+ /**
37
+ * type INDIVIDUAL OR ORGANIZATION
38
+ * @type {string}
39
+ * @memberof LegacyContactContact
40
+ */
41
+ indOrg?: string;
42
+ /**
43
+ * display name of the contact
44
+ * @type {string}
45
+ * @memberof LegacyContactContact
46
+ */
47
+ displayName?: string;
48
+ /**
49
+ * first name of the contact
50
+ * @type {string}
51
+ * @memberof LegacyContactContact
52
+ */
53
+ firstName?: string;
54
+ /**
55
+ * nickname of the contact
56
+ * @type {string}
57
+ * @memberof LegacyContactContact
58
+ */
59
+ nickname?: string;
60
+ /**
61
+ * middle name of the contact
62
+ * @type {string}
63
+ * @memberof LegacyContactContact
64
+ */
65
+ middleName?: string;
66
+ /**
67
+ * last name of the contact
68
+ * @type {string}
69
+ * @memberof LegacyContactContact
70
+ */
71
+ lastName?: string;
72
+ /**
73
+ * first line of corporation name (Organization)
74
+ * @type {string}
75
+ * @memberof LegacyContactContact
76
+ */
77
+ corporationName?: string;
78
+ /**
79
+ * second line of corporation name (Organization)
80
+ * @type {string}
81
+ * @memberof LegacyContactContact
82
+ */
83
+ corporationNameLine2?: string;
84
+ /**
85
+ * rank of the contact. (Industrial Alliance only)
86
+ * @type {string}
87
+ * @memberof LegacyContactContact
88
+ */
89
+ rank?: string;
90
+ }
91
+ export declare function LegacyContactContactFromJSON(json: any): LegacyContactContact;
92
+ export declare function LegacyContactContactFromJSONTyped(json: any, ignoreDiscriminator: boolean): LegacyContactContact;
93
+ export declare function LegacyContactContactToJSON(value?: LegacyContactContact | null): any;
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Equisoft /connect API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: latest
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.LegacyContactContactToJSON = exports.LegacyContactContactFromJSONTyped = exports.LegacyContactContactFromJSON = void 0;
17
+ const runtime_1 = require("../runtime");
18
+ function LegacyContactContactFromJSON(json) {
19
+ return LegacyContactContactFromJSONTyped(json, false);
20
+ }
21
+ exports.LegacyContactContactFromJSON = LegacyContactContactFromJSON;
22
+ function LegacyContactContactFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'id': !runtime_1.exists(json, 'id') ? undefined : json['id'],
28
+ 'uuid': !runtime_1.exists(json, 'uuid') ? undefined : json['uuid'],
29
+ 'typeContact': !runtime_1.exists(json, 'typeContact') ? undefined : json['typeContact'],
30
+ 'indOrg': !runtime_1.exists(json, 'indOrg') ? undefined : json['indOrg'],
31
+ 'displayName': !runtime_1.exists(json, 'displayName') ? undefined : json['displayName'],
32
+ 'firstName': !runtime_1.exists(json, 'firstName') ? undefined : json['firstName'],
33
+ 'nickname': !runtime_1.exists(json, 'nickname') ? undefined : json['nickname'],
34
+ 'middleName': !runtime_1.exists(json, 'middleName') ? undefined : json['middleName'],
35
+ 'lastName': !runtime_1.exists(json, 'lastName') ? undefined : json['lastName'],
36
+ 'corporationName': !runtime_1.exists(json, 'corporationName') ? undefined : json['corporationName'],
37
+ 'corporationNameLine2': !runtime_1.exists(json, 'corporationNameLine2') ? undefined : json['corporationNameLine2'],
38
+ 'rank': !runtime_1.exists(json, 'rank') ? undefined : json['rank'],
39
+ };
40
+ }
41
+ exports.LegacyContactContactFromJSONTyped = LegacyContactContactFromJSONTyped;
42
+ function LegacyContactContactToJSON(value) {
43
+ if (value === undefined) {
44
+ return undefined;
45
+ }
46
+ if (value === null) {
47
+ return null;
48
+ }
49
+ return {
50
+ 'id': value.id,
51
+ 'uuid': value.uuid,
52
+ 'typeContact': value.typeContact,
53
+ 'indOrg': value.indOrg,
54
+ 'displayName': value.displayName,
55
+ 'firstName': value.firstName,
56
+ 'nickname': value.nickname,
57
+ 'middleName': value.middleName,
58
+ 'lastName': value.lastName,
59
+ 'corporationName': value.corporationName,
60
+ 'corporationNameLine2': value.corporationNameLine2,
61
+ 'rank': value.rank,
62
+ };
63
+ }
64
+ exports.LegacyContactContactToJSON = LegacyContactContactToJSON;
@@ -0,0 +1,363 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface LegacyContactContactPayloadItem
16
+ */
17
+ export interface LegacyContactContactPayloadItem {
18
+ /**
19
+ * Unique id
20
+ * @type {string}
21
+ * @memberof LegacyContactContactPayloadItem
22
+ */
23
+ id?: string;
24
+ /**
25
+ * Contact UUID
26
+ * @type {string}
27
+ * @memberof LegacyContactContactPayloadItem
28
+ */
29
+ uuid?: string;
30
+ /**
31
+ * type of the contact
32
+ * @type {string}
33
+ * @memberof LegacyContactContactPayloadItem
34
+ */
35
+ typeContact?: string;
36
+ /**
37
+ * type INDIVIDUAL OR ORGANIZATION
38
+ * @type {string}
39
+ * @memberof LegacyContactContactPayloadItem
40
+ */
41
+ indOrg?: string;
42
+ /**
43
+ * display name of the contact
44
+ * @type {string}
45
+ * @memberof LegacyContactContactPayloadItem
46
+ */
47
+ displayName?: string;
48
+ /**
49
+ * first name of the contact
50
+ * @type {string}
51
+ * @memberof LegacyContactContactPayloadItem
52
+ */
53
+ firstName?: string;
54
+ /**
55
+ * nickname of the contact
56
+ * @type {string}
57
+ * @memberof LegacyContactContactPayloadItem
58
+ */
59
+ nickname?: string;
60
+ /**
61
+ * middle name of the contact
62
+ * @type {string}
63
+ * @memberof LegacyContactContactPayloadItem
64
+ */
65
+ middleName?: string;
66
+ /**
67
+ * last name of the contact
68
+ * @type {string}
69
+ * @memberof LegacyContactContactPayloadItem
70
+ */
71
+ lastName?: string;
72
+ /**
73
+ * first line of corporation name (Organization)
74
+ * @type {string}
75
+ * @memberof LegacyContactContactPayloadItem
76
+ */
77
+ corporationName?: string;
78
+ /**
79
+ * second line of corporation name (Organization)
80
+ * @type {string}
81
+ * @memberof LegacyContactContactPayloadItem
82
+ */
83
+ corporationNameLine2?: string;
84
+ /**
85
+ * rank of the contact. (Industrial Alliance only)
86
+ * @type {string}
87
+ * @memberof LegacyContactContactPayloadItem
88
+ */
89
+ rank?: string;
90
+ /**
91
+ * external key
92
+ * @type {string}
93
+ * @memberof LegacyContactContactPayloadItem
94
+ */
95
+ externalKey?: string;
96
+ /**
97
+ * External key type
98
+ * @type {string}
99
+ * @memberof LegacyContactContactPayloadItem
100
+ */
101
+ externalKeyType?: string;
102
+ /**
103
+ * Gender of the contact. Either MALE or FEMALE
104
+ * @type {string}
105
+ * @memberof LegacyContactContactPayloadItem
106
+ */
107
+ gender?: string;
108
+ /**
109
+ * sin of the contact
110
+ * @type {string}
111
+ * @memberof LegacyContactContactPayloadItem
112
+ */
113
+ sin?: string;
114
+ /**
115
+ * birthdate of the contact
116
+ * @type {string}
117
+ * @memberof LegacyContactContactPayloadItem
118
+ */
119
+ birthdate?: string;
120
+ /**
121
+ * Smoker status of the contact.
122
+ * @type {string}
123
+ * @memberof LegacyContactContactPayloadItem
124
+ */
125
+ smoker?: string;
126
+ /**
127
+ * Smoker status since date.
128
+ * @type {string}
129
+ * @memberof LegacyContactContactPayloadItem
130
+ */
131
+ smokerSince?: string;
132
+ /**
133
+ * phone number of the contact at home
134
+ * @type {string}
135
+ * @memberof LegacyContactContactPayloadItem
136
+ */
137
+ phoneHome?: string;
138
+ /**
139
+ * second phone number of the contact at home
140
+ * @type {string}
141
+ * @memberof LegacyContactContactPayloadItem
142
+ */
143
+ phoneHomeSecond?: string;
144
+ /**
145
+ * assistant phone number of the contact
146
+ * @type {string}
147
+ * @memberof LegacyContactContactPayloadItem
148
+ */
149
+ phoneAssistant?: string;
150
+ /**
151
+ * office phone number of the contact
152
+ * @type {string}
153
+ * @memberof LegacyContactContactPayloadItem
154
+ */
155
+ phoneOffice?: string;
156
+ /**
157
+ * second office phone number of the contact
158
+ * @type {string}
159
+ * @memberof LegacyContactContactPayloadItem
160
+ */
161
+ phoneOfficeSecond?: string;
162
+ /**
163
+ * cell phone number of the contact
164
+ * @type {string}
165
+ * @memberof LegacyContactContactPayloadItem
166
+ */
167
+ phoneCell?: string;
168
+ /**
169
+ * Pager phone number of the contact
170
+ * @type {string}
171
+ * @memberof LegacyContactContactPayloadItem
172
+ */
173
+ phonePager?: string;
174
+ /**
175
+ * fax phone number of the contact
176
+ * @type {string}
177
+ * @memberof LegacyContactContactPayloadItem
178
+ */
179
+ phoneFax?: string;
180
+ /**
181
+ * main email of the contact
182
+ * @type {string}
183
+ * @memberof LegacyContactContactPayloadItem
184
+ */
185
+ mainEmail?: string;
186
+ /**
187
+ * personal email of the contact
188
+ * @type {string}
189
+ * @memberof LegacyContactContactPayloadItem
190
+ */
191
+ emailPersonal?: string;
192
+ /**
193
+ * Web Site URL. This represent the main website for the contact.
194
+ * @type {string}
195
+ * @memberof LegacyContactContactPayloadItem
196
+ */
197
+ webSite?: string;
198
+ /**
199
+ * business email of the contact
200
+ * @type {string}
201
+ * @memberof LegacyContactContactPayloadItem
202
+ */
203
+ emailBusiness?: string;
204
+ /**
205
+ * business email of the contact
206
+ * @type {string}
207
+ * @memberof LegacyContactContactPayloadItem
208
+ */
209
+ emailOther?: string;
210
+ /**
211
+ * notes of the contact
212
+ * @type {string}
213
+ * @memberof LegacyContactContactPayloadItem
214
+ */
215
+ notes?: string;
216
+ /**
217
+ * peculiarity of the contact
218
+ * @type {string}
219
+ * @memberof LegacyContactContactPayloadItem
220
+ */
221
+ peculiarity?: string;
222
+ /**
223
+ * End of the financial year (for organization)
224
+ * @type {string}
225
+ * @memberof LegacyContactContactPayloadItem
226
+ */
227
+ endFinancialYear?: string;
228
+ /**
229
+ * Language
230
+ * @type {string}
231
+ * @memberof LegacyContactContactPayloadItem
232
+ */
233
+ language?: string;
234
+ /**
235
+ * Active (boolean)
236
+ * @type {string}
237
+ * @memberof LegacyContactContactPayloadItem
238
+ */
239
+ active?: string;
240
+ /**
241
+ * Publish (boolean)
242
+ * @type {string}
243
+ * @memberof LegacyContactContactPayloadItem
244
+ */
245
+ publish?: string;
246
+ /**
247
+ * Title
248
+ * @type {string}
249
+ * @memberof LegacyContactContactPayloadItem
250
+ */
251
+ title?: string;
252
+ /**
253
+ * Suffix
254
+ * @type {string}
255
+ * @memberof LegacyContactContactPayloadItem
256
+ */
257
+ suffix?: string;
258
+ /**
259
+ * Civility
260
+ * @type {string}
261
+ * @memberof LegacyContactContactPayloadItem
262
+ */
263
+ civility?: string;
264
+ /**
265
+ * Civility id
266
+ * @type {number}
267
+ * @memberof LegacyContactContactPayloadItem
268
+ */
269
+ civilityId?: number;
270
+ /**
271
+ * Person Addressed (Correspondance)
272
+ * @type {string}
273
+ * @memberof LegacyContactContactPayloadItem
274
+ */
275
+ personAddressed?: string;
276
+ /**
277
+ * Organization name (Correspondance)
278
+ * @type {string}
279
+ * @memberof LegacyContactContactPayloadItem
280
+ */
281
+ organizationLine1?: string;
282
+ /**
283
+ * Organization name - second line (Correspondance)
284
+ * @type {string}
285
+ * @memberof LegacyContactContactPayloadItem
286
+ */
287
+ organizationLine2?: string;
288
+ /**
289
+ * Department (Correspondance)
290
+ * @type {string}
291
+ * @memberof LegacyContactContactPayloadItem
292
+ */
293
+ department?: string;
294
+ /**
295
+ * Customer Number
296
+ * @type {string}
297
+ * @memberof LegacyContactContactPayloadItem
298
+ */
299
+ customerNumber?: string;
300
+ /**
301
+ * Birth Place
302
+ * @type {string}
303
+ * @memberof LegacyContactContactPayloadItem
304
+ */
305
+ birthPlace?: string;
306
+ /**
307
+ * Nationality
308
+ * @type {string}
309
+ * @memberof LegacyContactContactPayloadItem
310
+ */
311
+ nationality?: string;
312
+ /**
313
+ *
314
+ * @type {string}
315
+ * @memberof LegacyContactContactPayloadItem
316
+ */
317
+ orgDateCreated?: string;
318
+ /**
319
+ *
320
+ * @type {string}
321
+ * @memberof LegacyContactContactPayloadItem
322
+ */
323
+ orgDateClosed?: string;
324
+ /**
325
+ *
326
+ * @type {string}
327
+ * @memberof LegacyContactContactPayloadItem
328
+ */
329
+ dateEndFinancialYear?: string;
330
+ /**
331
+ *
332
+ * @type {string}
333
+ * @memberof LegacyContactContactPayloadItem
334
+ */
335
+ orgIdNo?: string;
336
+ /**
337
+ *
338
+ * @type {string}
339
+ * @memberof LegacyContactContactPayloadItem
340
+ */
341
+ orgFedNo?: string;
342
+ /**
343
+ *
344
+ * @type {string}
345
+ * @memberof LegacyContactContactPayloadItem
346
+ */
347
+ orgProvNo?: string;
348
+ /**
349
+ *
350
+ * @type {string}
351
+ * @memberof LegacyContactContactPayloadItem
352
+ */
353
+ orgStateId?: string;
354
+ /**
355
+ *
356
+ * @type {string}
357
+ * @memberof LegacyContactContactPayloadItem
358
+ */
359
+ orgEin?: string;
360
+ }
361
+ export declare function LegacyContactContactPayloadItemFromJSON(json: any): LegacyContactContactPayloadItem;
362
+ export declare function LegacyContactContactPayloadItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): LegacyContactContactPayloadItem;
363
+ export declare function LegacyContactContactPayloadItemToJSON(value?: LegacyContactContactPayloadItem | null): any;
@@ -0,0 +1,154 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Equisoft /connect API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: latest
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.LegacyContactContactPayloadItemToJSON = exports.LegacyContactContactPayloadItemFromJSONTyped = exports.LegacyContactContactPayloadItemFromJSON = void 0;
17
+ const runtime_1 = require("../runtime");
18
+ function LegacyContactContactPayloadItemFromJSON(json) {
19
+ return LegacyContactContactPayloadItemFromJSONTyped(json, false);
20
+ }
21
+ exports.LegacyContactContactPayloadItemFromJSON = LegacyContactContactPayloadItemFromJSON;
22
+ function LegacyContactContactPayloadItemFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'id': !runtime_1.exists(json, 'id') ? undefined : json['id'],
28
+ 'uuid': !runtime_1.exists(json, 'uuid') ? undefined : json['uuid'],
29
+ 'typeContact': !runtime_1.exists(json, 'typeContact') ? undefined : json['typeContact'],
30
+ 'indOrg': !runtime_1.exists(json, 'indOrg') ? undefined : json['indOrg'],
31
+ 'displayName': !runtime_1.exists(json, 'displayName') ? undefined : json['displayName'],
32
+ 'firstName': !runtime_1.exists(json, 'firstName') ? undefined : json['firstName'],
33
+ 'nickname': !runtime_1.exists(json, 'nickname') ? undefined : json['nickname'],
34
+ 'middleName': !runtime_1.exists(json, 'middleName') ? undefined : json['middleName'],
35
+ 'lastName': !runtime_1.exists(json, 'lastName') ? undefined : json['lastName'],
36
+ 'corporationName': !runtime_1.exists(json, 'corporationName') ? undefined : json['corporationName'],
37
+ 'corporationNameLine2': !runtime_1.exists(json, 'corporationNameLine2') ? undefined : json['corporationNameLine2'],
38
+ 'rank': !runtime_1.exists(json, 'rank') ? undefined : json['rank'],
39
+ 'externalKey': !runtime_1.exists(json, 'externalKey') ? undefined : json['externalKey'],
40
+ 'externalKeyType': !runtime_1.exists(json, 'externalKeyType') ? undefined : json['externalKeyType'],
41
+ 'gender': !runtime_1.exists(json, 'gender') ? undefined : json['gender'],
42
+ 'sin': !runtime_1.exists(json, 'sin') ? undefined : json['sin'],
43
+ 'birthdate': !runtime_1.exists(json, 'birthdate') ? undefined : json['birthdate'],
44
+ 'smoker': !runtime_1.exists(json, 'smoker') ? undefined : json['smoker'],
45
+ 'smokerSince': !runtime_1.exists(json, 'smokerSince') ? undefined : json['smokerSince'],
46
+ 'phoneHome': !runtime_1.exists(json, 'phoneHome') ? undefined : json['phoneHome'],
47
+ 'phoneHomeSecond': !runtime_1.exists(json, 'phoneHomeSecond') ? undefined : json['phoneHomeSecond'],
48
+ 'phoneAssistant': !runtime_1.exists(json, 'phoneAssistant') ? undefined : json['phoneAssistant'],
49
+ 'phoneOffice': !runtime_1.exists(json, 'phoneOffice') ? undefined : json['phoneOffice'],
50
+ 'phoneOfficeSecond': !runtime_1.exists(json, 'phoneOfficeSecond') ? undefined : json['phoneOfficeSecond'],
51
+ 'phoneCell': !runtime_1.exists(json, 'phoneCell') ? undefined : json['phoneCell'],
52
+ 'phonePager': !runtime_1.exists(json, 'phonePager') ? undefined : json['phonePager'],
53
+ 'phoneFax': !runtime_1.exists(json, 'phoneFax') ? undefined : json['phoneFax'],
54
+ 'mainEmail': !runtime_1.exists(json, 'mainEmail') ? undefined : json['mainEmail'],
55
+ 'emailPersonal': !runtime_1.exists(json, 'emailPersonal') ? undefined : json['emailPersonal'],
56
+ 'webSite': !runtime_1.exists(json, 'webSite') ? undefined : json['webSite'],
57
+ 'emailBusiness': !runtime_1.exists(json, 'emailBusiness') ? undefined : json['emailBusiness'],
58
+ 'emailOther': !runtime_1.exists(json, 'emailOther') ? undefined : json['emailOther'],
59
+ 'notes': !runtime_1.exists(json, 'notes') ? undefined : json['notes'],
60
+ 'peculiarity': !runtime_1.exists(json, 'peculiarity') ? undefined : json['peculiarity'],
61
+ 'endFinancialYear': !runtime_1.exists(json, 'endFinancialYear') ? undefined : json['endFinancialYear'],
62
+ 'language': !runtime_1.exists(json, 'language') ? undefined : json['language'],
63
+ 'active': !runtime_1.exists(json, 'active') ? undefined : json['active'],
64
+ 'publish': !runtime_1.exists(json, 'publish') ? undefined : json['publish'],
65
+ 'title': !runtime_1.exists(json, 'title') ? undefined : json['title'],
66
+ 'suffix': !runtime_1.exists(json, 'suffix') ? undefined : json['suffix'],
67
+ 'civility': !runtime_1.exists(json, 'civility') ? undefined : json['civility'],
68
+ 'civilityId': !runtime_1.exists(json, 'civilityId') ? undefined : json['civilityId'],
69
+ 'personAddressed': !runtime_1.exists(json, 'personAddressed') ? undefined : json['personAddressed'],
70
+ 'organizationLine1': !runtime_1.exists(json, 'organizationLine1') ? undefined : json['organizationLine1'],
71
+ 'organizationLine2': !runtime_1.exists(json, 'organizationLine2') ? undefined : json['organizationLine2'],
72
+ 'department': !runtime_1.exists(json, 'department') ? undefined : json['department'],
73
+ 'customerNumber': !runtime_1.exists(json, 'customerNumber') ? undefined : json['customerNumber'],
74
+ 'birthPlace': !runtime_1.exists(json, 'birthPlace') ? undefined : json['birthPlace'],
75
+ 'nationality': !runtime_1.exists(json, 'nationality') ? undefined : json['nationality'],
76
+ 'orgDateCreated': !runtime_1.exists(json, 'orgDateCreated') ? undefined : json['orgDateCreated'],
77
+ 'orgDateClosed': !runtime_1.exists(json, 'orgDateClosed') ? undefined : json['orgDateClosed'],
78
+ 'dateEndFinancialYear': !runtime_1.exists(json, 'dateEndFinancialYear') ? undefined : json['dateEndFinancialYear'],
79
+ 'orgIdNo': !runtime_1.exists(json, 'orgIdNo') ? undefined : json['orgIdNo'],
80
+ 'orgFedNo': !runtime_1.exists(json, 'orgFedNo') ? undefined : json['orgFedNo'],
81
+ 'orgProvNo': !runtime_1.exists(json, 'orgProvNo') ? undefined : json['orgProvNo'],
82
+ 'orgStateId': !runtime_1.exists(json, 'orgStateId') ? undefined : json['orgStateId'],
83
+ 'orgEin': !runtime_1.exists(json, 'orgEin') ? undefined : json['orgEin'],
84
+ };
85
+ }
86
+ exports.LegacyContactContactPayloadItemFromJSONTyped = LegacyContactContactPayloadItemFromJSONTyped;
87
+ function LegacyContactContactPayloadItemToJSON(value) {
88
+ if (value === undefined) {
89
+ return undefined;
90
+ }
91
+ if (value === null) {
92
+ return null;
93
+ }
94
+ return {
95
+ 'id': value.id,
96
+ 'uuid': value.uuid,
97
+ 'typeContact': value.typeContact,
98
+ 'indOrg': value.indOrg,
99
+ 'displayName': value.displayName,
100
+ 'firstName': value.firstName,
101
+ 'nickname': value.nickname,
102
+ 'middleName': value.middleName,
103
+ 'lastName': value.lastName,
104
+ 'corporationName': value.corporationName,
105
+ 'corporationNameLine2': value.corporationNameLine2,
106
+ 'rank': value.rank,
107
+ 'externalKey': value.externalKey,
108
+ 'externalKeyType': value.externalKeyType,
109
+ 'gender': value.gender,
110
+ 'sin': value.sin,
111
+ 'birthdate': value.birthdate,
112
+ 'smoker': value.smoker,
113
+ 'smokerSince': value.smokerSince,
114
+ 'phoneHome': value.phoneHome,
115
+ 'phoneHomeSecond': value.phoneHomeSecond,
116
+ 'phoneAssistant': value.phoneAssistant,
117
+ 'phoneOffice': value.phoneOffice,
118
+ 'phoneOfficeSecond': value.phoneOfficeSecond,
119
+ 'phoneCell': value.phoneCell,
120
+ 'phonePager': value.phonePager,
121
+ 'phoneFax': value.phoneFax,
122
+ 'mainEmail': value.mainEmail,
123
+ 'emailPersonal': value.emailPersonal,
124
+ 'webSite': value.webSite,
125
+ 'emailBusiness': value.emailBusiness,
126
+ 'emailOther': value.emailOther,
127
+ 'notes': value.notes,
128
+ 'peculiarity': value.peculiarity,
129
+ 'endFinancialYear': value.endFinancialYear,
130
+ 'language': value.language,
131
+ 'active': value.active,
132
+ 'publish': value.publish,
133
+ 'title': value.title,
134
+ 'suffix': value.suffix,
135
+ 'civility': value.civility,
136
+ 'civilityId': value.civilityId,
137
+ 'personAddressed': value.personAddressed,
138
+ 'organizationLine1': value.organizationLine1,
139
+ 'organizationLine2': value.organizationLine2,
140
+ 'department': value.department,
141
+ 'customerNumber': value.customerNumber,
142
+ 'birthPlace': value.birthPlace,
143
+ 'nationality': value.nationality,
144
+ 'orgDateCreated': value.orgDateCreated,
145
+ 'orgDateClosed': value.orgDateClosed,
146
+ 'dateEndFinancialYear': value.dateEndFinancialYear,
147
+ 'orgIdNo': value.orgIdNo,
148
+ 'orgFedNo': value.orgFedNo,
149
+ 'orgProvNo': value.orgProvNo,
150
+ 'orgStateId': value.orgStateId,
151
+ 'orgEin': value.orgEin,
152
+ };
153
+ }
154
+ exports.LegacyContactContactPayloadItemToJSON = LegacyContactContactPayloadItemToJSON;