boldsign 3.2.0 → 3.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 (694) hide show
  1. package/.openapi-generator/FILES +36 -0
  2. package/README.md +37 -0
  3. package/WebhookUtility.ts +145 -0
  4. package/api/apis.ts +1 -1
  5. package/api/brandingApi.ts +20 -20
  6. package/api/contactsApi.ts +3 -3
  7. package/api/customFieldApi.ts +3 -3
  8. package/api/documentApi.ts +152 -23
  9. package/api/groupContactsApi.ts +3 -3
  10. package/api/identityVerificationApi.ts +3 -3
  11. package/api/senderIdentitiesApi.ts +6 -6
  12. package/api/teamsApi.ts +1 -1
  13. package/api/templateApi.ts +142 -13
  14. package/api/userApi.ts +2 -2
  15. package/docs/AccessCodeDetail.md +1 -0
  16. package/docs/BehalfOfWebhookModel.md +12 -0
  17. package/docs/BrandingApi.md +20 -20
  18. package/docs/CheckboxValidationSettings.md +13 -0
  19. package/docs/ContactsApi.md +3 -3
  20. package/docs/CreateTemplateRequest.md +1 -0
  21. package/docs/CustomFieldApi.md +3 -3
  22. package/docs/CustomFormField.md +2 -0
  23. package/docs/DocumentApi.md +56 -22
  24. package/docs/DocumentCcWebhookModel.md +12 -0
  25. package/docs/DocumentEvent.md +37 -0
  26. package/docs/DocumentGroupSignerWebhookModel.md +18 -0
  27. package/docs/DocumentProperties.md +1 -0
  28. package/docs/DocumentSender.md +14 -0
  29. package/docs/DocumentSigner.md +1 -0
  30. package/docs/DocumentSignerDetails.md +1 -0
  31. package/docs/DocumentSignerWebhookModel.md +37 -0
  32. package/docs/EditDocumentJsonFile.md +14 -0
  33. package/docs/EditDocumentRequest.md +1 -0
  34. package/docs/EditDocumentSigner.md +1 -0
  35. package/docs/EditTemplateRequest.md +1 -0
  36. package/docs/EmbeddedCloneDocumentJsonRequest.md +22 -0
  37. package/docs/EmbeddedCloneTemplateJsonRequest.md +22 -0
  38. package/docs/EmbeddedClonedDocument.md +12 -0
  39. package/docs/EmbeddedClonedTemplate.md +12 -0
  40. package/docs/EmbeddedCreateTemplateRequest.md +1 -0
  41. package/docs/EmbeddedDocumentRequest.md +1 -0
  42. package/docs/EmbeddedMergeTemplateFormRequest.md +1 -0
  43. package/docs/EmbeddedSendTemplateFormRequest.md +1 -0
  44. package/docs/ErrorResponse.md +12 -0
  45. package/docs/FormFieldPermissionWebhookModel.md +13 -0
  46. package/docs/GroupContactsApi.md +3 -3
  47. package/docs/GroupOption.md +12 -0
  48. package/docs/GroupSignerSettingsWebhookModel.md +12 -0
  49. package/docs/IWebhookData.md +56 -0
  50. package/docs/{IdVerification.md → IdVerificationSignerWebhookModel.md} +1 -1
  51. package/docs/IdentityVerificationApi.md +3 -3
  52. package/docs/IdentityVerificationEvent.md +17 -0
  53. package/docs/KbaAuthenticationEvent.md +17 -0
  54. package/docs/{ProblemDetails.md → KbaDetails.md} +4 -5
  55. package/docs/KbaSettings.md +13 -0
  56. package/docs/KbaSignerWebhookModel.md +14 -0
  57. package/docs/MergeAndSendForSignForm.md +1 -0
  58. package/docs/PhoneNumberWebhookModel.md +12 -0
  59. package/docs/Role.md +1 -0
  60. package/docs/SendForSign.md +1 -0
  61. package/docs/SendForSignFromTemplateForm.md +1 -0
  62. package/docs/SenderIdentitiesApi.md +6 -6
  63. package/docs/SenderIdentityCreator.md +14 -0
  64. package/docs/SenderIdentityEvent.md +23 -0
  65. package/docs/SignerAuthenticationWebhookModel.md +12 -0
  66. package/docs/TeamsApi.md +1 -1
  67. package/docs/TemplateApi.md +46 -12
  68. package/docs/TemplateCcWebhookModel.md +13 -0
  69. package/docs/TemplateEvent.md +36 -0
  70. package/docs/TemplateFormFields.md +1 -0
  71. package/docs/TemplateGroupSignerWebhookModel.md +12 -0
  72. package/docs/TemplateProperties.md +1 -0
  73. package/docs/TemplateSender.md +15 -0
  74. package/docs/TemplateShareErrorResponse.md +14 -0
  75. package/docs/TemplateShareRequest.md +11 -0
  76. package/docs/TemplateSigner.md +29 -0
  77. package/docs/TemplateTeamShareRequest.md +13 -0
  78. package/docs/UserApi.md +2 -2
  79. package/docs/WebhookActorDetails.md +12 -0
  80. package/docs/WebhookContext.md +13 -0
  81. package/docs/WebhookEvent.md +14 -0
  82. package/docs/WebhookEventMetadata.md +15 -0
  83. package/model/accessCodeDetail.ts +9 -1
  84. package/model/auditTrail.ts +7 -1
  85. package/model/behalfOfWebhookModel.ts +37 -0
  86. package/model/checkboxValidationSettings.ts +51 -0
  87. package/model/createTemplateRequest.ts +6 -0
  88. package/model/customFormField.ts +14 -0
  89. package/model/documentCcWebhookModel.ts +37 -0
  90. package/model/documentEvent.ts +213 -0
  91. package/model/documentGroupSignerWebhookModel.ts +83 -0
  92. package/model/documentProperties.ts +6 -0
  93. package/model/documentSender.ts +49 -0
  94. package/model/documentSigner.ts +9 -1
  95. package/model/documentSignerDetails.ts +9 -1
  96. package/model/documentSignerWebhookModel.ts +202 -0
  97. package/model/editDocumentJsonFile.ts +57 -0
  98. package/model/editDocumentRequest.ts +6 -0
  99. package/model/editDocumentSigner.ts +9 -1
  100. package/model/editTemplateRequest.ts +6 -0
  101. package/model/embeddedCloneDocumentJsonRequest.ts +126 -0
  102. package/model/embeddedCloneTemplateJsonRequest.ts +126 -0
  103. package/model/embeddedClonedDocument.ts +37 -0
  104. package/model/embeddedClonedTemplate.ts +37 -0
  105. package/model/embeddedCreateTemplateRequest.ts +6 -0
  106. package/model/embeddedDocumentRequest.ts +6 -0
  107. package/model/embeddedMergeTemplateFormRequest.ts +6 -0
  108. package/model/embeddedSendTemplateFormRequest.ts +6 -0
  109. package/model/formFieldPermissionWebhookModel.ts +43 -0
  110. package/model/groupOption.ts +37 -0
  111. package/model/groupSignerSettingsWebhookModel.ts +37 -0
  112. package/model/iWebhookData.ts +335 -0
  113. package/model/{idVerification.ts → idVerificationSignerWebhookModel.ts} +2 -2
  114. package/model/identityVerificationEvent.ts +80 -0
  115. package/model/index.ts +129 -0
  116. package/model/kbaAuthenticationEvent.ts +80 -0
  117. package/model/{problemDetails.ts → kbaDetails.ts} +11 -17
  118. package/model/kbaSettings.ts +57 -0
  119. package/model/kbaSignerWebhookModel.ts +49 -0
  120. package/model/mergeAndSendForSignForm.ts +6 -0
  121. package/model/phoneNumberWebhookModel.ts +37 -0
  122. package/model/role.ts +9 -1
  123. package/model/roles.ts +2 -1
  124. package/model/sendForSign.ts +6 -0
  125. package/model/sendForSignFromTemplateForm.ts +6 -0
  126. package/model/senderIdentityCreator.ts +49 -0
  127. package/model/senderIdentityEvent.ts +104 -0
  128. package/model/signerAuthenticationWebhookModel.ts +37 -0
  129. package/model/templateCcWebhookModel.ts +43 -0
  130. package/model/templateEvent.ts +198 -0
  131. package/model/templateFormFields.ts +6 -0
  132. package/model/templateGroupSignerWebhookModel.ts +37 -0
  133. package/model/templateProperties.ts +6 -0
  134. package/model/templateRole.ts +2 -1
  135. package/model/templateSender.ts +55 -0
  136. package/model/templateSigner.ts +151 -0
  137. package/model/templateSignerDetails.ts +2 -1
  138. package/model/webhookActorDetails.ts +47 -0
  139. package/model/webhookContext.ts +82 -0
  140. package/model/webhookEvent.ts +53 -0
  141. package/model/webhookEventMetadata.ts +97 -0
  142. package/package.json +1 -1
  143. package/dist/api/apis.d.ts +0 -29
  144. package/dist/api/apis.js +0 -149
  145. package/dist/api/apis.js.map +0 -1
  146. package/dist/api/brandingApi.d.ts +0 -29
  147. package/dist/api/brandingApi.js +0 -776
  148. package/dist/api/brandingApi.js.map +0 -1
  149. package/dist/api/contactsApi.d.ts +0 -28
  150. package/dist/api/contactsApi.js +0 -501
  151. package/dist/api/contactsApi.js.map +0 -1
  152. package/dist/api/customFieldApi.d.ts +0 -28
  153. package/dist/api/customFieldApi.js +0 -519
  154. package/dist/api/customFieldApi.js.map +0 -1
  155. package/dist/api/documentApi.d.ts +0 -48
  156. package/dist/api/documentApi.js +0 -2259
  157. package/dist/api/documentApi.js.map +0 -1
  158. package/dist/api/groupContactsApi.d.ts +0 -28
  159. package/dist/api/groupContactsApi.js +0 -507
  160. package/dist/api/groupContactsApi.js.map +0 -1
  161. package/dist/api/identityVerificationApi.d.ts +0 -26
  162. package/dist/api/identityVerificationApi.js +0 -369
  163. package/dist/api/identityVerificationApi.js.map +0 -1
  164. package/dist/api/index.d.ts +0 -14
  165. package/dist/api/index.js +0 -33
  166. package/dist/api/index.js.map +0 -1
  167. package/dist/api/planApi.d.ts +0 -24
  168. package/dist/api/planApi.js +0 -174
  169. package/dist/api/planApi.js.map +0 -1
  170. package/dist/api/senderIdentitiesApi.d.ts +0 -30
  171. package/dist/api/senderIdentitiesApi.js +0 -663
  172. package/dist/api/senderIdentitiesApi.js.map +0 -1
  173. package/dist/api/teamsApi.d.ts +0 -27
  174. package/dist/api/teamsApi.js +0 -426
  175. package/dist/api/teamsApi.js.map +0 -1
  176. package/dist/api/templateApi.d.ts +0 -39
  177. package/dist/api/templateApi.js +0 -1425
  178. package/dist/api/templateApi.js.map +0 -1
  179. package/dist/api/userApi.d.ts +0 -31
  180. package/dist/api/userApi.js +0 -723
  181. package/dist/api/userApi.js.map +0 -1
  182. package/dist/api.d.ts +0 -2
  183. package/dist/api.js +0 -19
  184. package/dist/api.js.map +0 -1
  185. package/dist/model/accessCodeDetail.d.ts +0 -34
  186. package/dist/model/accessCodeDetail.js +0 -68
  187. package/dist/model/accessCodeDetail.js.map +0 -1
  188. package/dist/model/accessCodeDetails.d.ts +0 -17
  189. package/dist/model/accessCodeDetails.js +0 -28
  190. package/dist/model/accessCodeDetails.js.map +0 -1
  191. package/dist/model/added.d.ts +0 -16
  192. package/dist/model/added.js +0 -28
  193. package/dist/model/added.js.map +0 -1
  194. package/dist/model/address.d.ts +0 -19
  195. package/dist/model/address.js +0 -43
  196. package/dist/model/address.js.map +0 -1
  197. package/dist/model/attachmentInfo.d.ts +0 -17
  198. package/dist/model/attachmentInfo.js +0 -33
  199. package/dist/model/attachmentInfo.js.map +0 -1
  200. package/dist/model/auditTrail.d.ts +0 -114
  201. package/dist/model/auditTrail.js +0 -173
  202. package/dist/model/auditTrail.js.map +0 -1
  203. package/dist/model/authenticationSettings.d.ts +0 -22
  204. package/dist/model/authenticationSettings.js +0 -27
  205. package/dist/model/authenticationSettings.js.map +0 -1
  206. package/dist/model/base64File.d.ts +0 -15
  207. package/dist/model/base64File.js +0 -23
  208. package/dist/model/base64File.js.map +0 -1
  209. package/dist/model/behalfDocument.d.ts +0 -47
  210. package/dist/model/behalfDocument.js +0 -120
  211. package/dist/model/behalfDocument.js.map +0 -1
  212. package/dist/model/behalfDocumentRecords.d.ts +0 -17
  213. package/dist/model/behalfDocumentRecords.js +0 -23
  214. package/dist/model/behalfDocumentRecords.js.map +0 -1
  215. package/dist/model/behalfOf.d.ts +0 -15
  216. package/dist/model/behalfOf.js +0 -23
  217. package/dist/model/behalfOf.js.map +0 -1
  218. package/dist/model/billingViewModel.d.ts +0 -14
  219. package/dist/model/billingViewModel.js +0 -18
  220. package/dist/model/billingViewModel.js.map +0 -1
  221. package/dist/model/brandCreated.d.ts +0 -14
  222. package/dist/model/brandCreated.js +0 -18
  223. package/dist/model/brandCreated.js.map +0 -1
  224. package/dist/model/brandCustomFieldDetails.d.ts +0 -20
  225. package/dist/model/brandCustomFieldDetails.js +0 -46
  226. package/dist/model/brandCustomFieldDetails.js.map +0 -1
  227. package/dist/model/brandingMessage.d.ts +0 -14
  228. package/dist/model/brandingMessage.js +0 -18
  229. package/dist/model/brandingMessage.js.map +0 -1
  230. package/dist/model/brandingRecords.d.ts +0 -15
  231. package/dist/model/brandingRecords.js +0 -18
  232. package/dist/model/brandingRecords.js.map +0 -1
  233. package/dist/model/changeRecipient.d.ts +0 -22
  234. package/dist/model/changeRecipient.js +0 -53
  235. package/dist/model/changeRecipient.js.map +0 -1
  236. package/dist/model/changeTeamRequest.d.ts +0 -15
  237. package/dist/model/changeTeamRequest.js +0 -23
  238. package/dist/model/changeTeamRequest.js.map +0 -1
  239. package/dist/model/collaborationSettings.d.ts +0 -17
  240. package/dist/model/collaborationSettings.js +0 -33
  241. package/dist/model/collaborationSettings.js.map +0 -1
  242. package/dist/model/conditionalRule.d.ts +0 -16
  243. package/dist/model/conditionalRule.js +0 -28
  244. package/dist/model/conditionalRule.js.map +0 -1
  245. package/dist/model/contactCreated.d.ts +0 -15
  246. package/dist/model/contactCreated.js +0 -23
  247. package/dist/model/contactCreated.js.map +0 -1
  248. package/dist/model/contactDetails.d.ts +0 -19
  249. package/dist/model/contactDetails.js +0 -38
  250. package/dist/model/contactDetails.js.map +0 -1
  251. package/dist/model/contactPageDetails.d.ts +0 -16
  252. package/dist/model/contactPageDetails.js +0 -28
  253. package/dist/model/contactPageDetails.js.map +0 -1
  254. package/dist/model/contactsDetails.d.ts +0 -20
  255. package/dist/model/contactsDetails.js +0 -43
  256. package/dist/model/contactsDetails.js.map +0 -1
  257. package/dist/model/contactsList.d.ts +0 -17
  258. package/dist/model/contactsList.js +0 -23
  259. package/dist/model/contactsList.js.map +0 -1
  260. package/dist/model/createContactResponse.d.ts +0 -15
  261. package/dist/model/createContactResponse.js +0 -18
  262. package/dist/model/createContactResponse.js.map +0 -1
  263. package/dist/model/createGroupContactResponse.d.ts +0 -15
  264. package/dist/model/createGroupContactResponse.js +0 -23
  265. package/dist/model/createGroupContactResponse.js.map +0 -1
  266. package/dist/model/createSenderIdentityRequest.d.ts +0 -48
  267. package/dist/model/createSenderIdentityRequest.js +0 -74
  268. package/dist/model/createSenderIdentityRequest.js.map +0 -1
  269. package/dist/model/createTeamRequest.d.ts +0 -14
  270. package/dist/model/createTeamRequest.js +0 -18
  271. package/dist/model/createTeamRequest.js.map +0 -1
  272. package/dist/model/createTemplateRequest.d.ts +0 -58
  273. package/dist/model/createTemplateRequest.js +0 -177
  274. package/dist/model/createTemplateRequest.js.map +0 -1
  275. package/dist/model/createUser.d.ts +0 -26
  276. package/dist/model/createUser.js +0 -41
  277. package/dist/model/createUser.js.map +0 -1
  278. package/dist/model/creators.d.ts +0 -15
  279. package/dist/model/creators.js +0 -23
  280. package/dist/model/creators.js.map +0 -1
  281. package/dist/model/customDomainSettings.d.ts +0 -15
  282. package/dist/model/customDomainSettings.js +0 -23
  283. package/dist/model/customDomainSettings.js.map +0 -1
  284. package/dist/model/customFieldCollection.d.ts +0 -15
  285. package/dist/model/customFieldCollection.js +0 -18
  286. package/dist/model/customFieldCollection.js.map +0 -1
  287. package/dist/model/customFieldMessage.d.ts +0 -15
  288. package/dist/model/customFieldMessage.js +0 -23
  289. package/dist/model/customFieldMessage.js.map +0 -1
  290. package/dist/model/customFormField.d.ts +0 -100
  291. package/dist/model/customFormField.js +0 -246
  292. package/dist/model/customFormField.js.map +0 -1
  293. package/dist/model/deleteCustomFieldReply.d.ts +0 -14
  294. package/dist/model/deleteCustomFieldReply.js +0 -18
  295. package/dist/model/deleteCustomFieldReply.js.map +0 -1
  296. package/dist/model/document.d.ts +0 -45
  297. package/dist/model/document.js +0 -115
  298. package/dist/model/document.js.map +0 -1
  299. package/dist/model/documentCC.d.ts +0 -14
  300. package/dist/model/documentCC.js +0 -18
  301. package/dist/model/documentCC.js.map +0 -1
  302. package/dist/model/documentCcDetails.d.ts +0 -15
  303. package/dist/model/documentCcDetails.js +0 -26
  304. package/dist/model/documentCcDetails.js.map +0 -1
  305. package/dist/model/documentCreated.d.ts +0 -14
  306. package/dist/model/documentCreated.js +0 -18
  307. package/dist/model/documentCreated.js.map +0 -1
  308. package/dist/model/documentEdited.d.ts +0 -20
  309. package/dist/model/documentEdited.js +0 -25
  310. package/dist/model/documentEdited.js.map +0 -1
  311. package/dist/model/documentExpirySettings.d.ts +0 -26
  312. package/dist/model/documentExpirySettings.js +0 -51
  313. package/dist/model/documentExpirySettings.js.map +0 -1
  314. package/dist/model/documentFiles.d.ts +0 -19
  315. package/dist/model/documentFiles.js +0 -43
  316. package/dist/model/documentFiles.js.map +0 -1
  317. package/dist/model/documentFormFields.d.ts +0 -89
  318. package/dist/model/documentFormFields.js +0 -260
  319. package/dist/model/documentFormFields.js.map +0 -1
  320. package/dist/model/documentInfo.d.ts +0 -65
  321. package/dist/model/documentInfo.js +0 -83
  322. package/dist/model/documentInfo.js.map +0 -1
  323. package/dist/model/documentProperties.d.ts +0 -119
  324. package/dist/model/documentProperties.js +0 -298
  325. package/dist/model/documentProperties.js.map +0 -1
  326. package/dist/model/documentReassign.d.ts +0 -16
  327. package/dist/model/documentReassign.js +0 -31
  328. package/dist/model/documentReassign.js.map +0 -1
  329. package/dist/model/documentRecords.d.ts +0 -17
  330. package/dist/model/documentRecords.js +0 -23
  331. package/dist/model/documentRecords.js.map +0 -1
  332. package/dist/model/documentSenderDetail.d.ts +0 -17
  333. package/dist/model/documentSenderDetail.js +0 -36
  334. package/dist/model/documentSenderDetail.js.map +0 -1
  335. package/dist/model/documentSigner.d.ts +0 -112
  336. package/dist/model/documentSigner.js +0 -209
  337. package/dist/model/documentSigner.js.map +0 -1
  338. package/dist/model/documentSignerDetails.d.ts +0 -128
  339. package/dist/model/documentSignerDetails.js +0 -261
  340. package/dist/model/documentSignerDetails.js.map +0 -1
  341. package/dist/model/documentTags.d.ts +0 -15
  342. package/dist/model/documentTags.js +0 -23
  343. package/dist/model/documentTags.js.map +0 -1
  344. package/dist/model/downloadImageRequest.d.ts +0 -19
  345. package/dist/model/downloadImageRequest.js +0 -43
  346. package/dist/model/downloadImageRequest.js.map +0 -1
  347. package/dist/model/editDocumentFile.d.ts +0 -25
  348. package/dist/model/editDocumentFile.js +0 -41
  349. package/dist/model/editDocumentFile.js.map +0 -1
  350. package/dist/model/editDocumentRequest.d.ts +0 -71
  351. package/dist/model/editDocumentRequest.js +0 -187
  352. package/dist/model/editDocumentRequest.js.map +0 -1
  353. package/dist/model/editDocumentSigner.d.ts +0 -118
  354. package/dist/model/editDocumentSigner.js +0 -220
  355. package/dist/model/editDocumentSigner.js.map +0 -1
  356. package/dist/model/editFormField.d.ts +0 -116
  357. package/dist/model/editFormField.js +0 -288
  358. package/dist/model/editFormField.js.map +0 -1
  359. package/dist/model/editSenderIdentityRequest.d.ts +0 -46
  360. package/dist/model/editSenderIdentityRequest.js +0 -64
  361. package/dist/model/editSenderIdentityRequest.js.map +0 -1
  362. package/dist/model/editTemplateRequest.d.ts +0 -51
  363. package/dist/model/editTemplateRequest.js +0 -141
  364. package/dist/model/editTemplateRequest.js.map +0 -1
  365. package/dist/model/editableDateFieldSettings.d.ts +0 -17
  366. package/dist/model/editableDateFieldSettings.js +0 -33
  367. package/dist/model/editableDateFieldSettings.js.map +0 -1
  368. package/dist/model/embeddedCreateTemplateRequest.d.ts +0 -96
  369. package/dist/model/embeddedCreateTemplateRequest.js +0 -269
  370. package/dist/model/embeddedCreateTemplateRequest.js.map +0 -1
  371. package/dist/model/embeddedCustomFieldCreated.d.ts +0 -14
  372. package/dist/model/embeddedCustomFieldCreated.js +0 -18
  373. package/dist/model/embeddedCustomFieldCreated.js.map +0 -1
  374. package/dist/model/embeddedDocumentEditJsonRequest.d.ts +0 -51
  375. package/dist/model/embeddedDocumentEditJsonRequest.js +0 -97
  376. package/dist/model/embeddedDocumentEditJsonRequest.js.map +0 -1
  377. package/dist/model/embeddedDocumentEdited.d.ts +0 -14
  378. package/dist/model/embeddedDocumentEdited.js +0 -18
  379. package/dist/model/embeddedDocumentEdited.js.map +0 -1
  380. package/dist/model/embeddedDocumentRequest.d.ts +0 -115
  381. package/dist/model/embeddedDocumentRequest.js +0 -322
  382. package/dist/model/embeddedDocumentRequest.js.map +0 -1
  383. package/dist/model/embeddedFileDetails.d.ts +0 -19
  384. package/dist/model/embeddedFileDetails.js +0 -43
  385. package/dist/model/embeddedFileDetails.js.map +0 -1
  386. package/dist/model/embeddedFileLink.d.ts +0 -14
  387. package/dist/model/embeddedFileLink.js +0 -18
  388. package/dist/model/embeddedFileLink.js.map +0 -1
  389. package/dist/model/embeddedMergeTemplateFormRequest.d.ts +0 -116
  390. package/dist/model/embeddedMergeTemplateFormRequest.js +0 -311
  391. package/dist/model/embeddedMergeTemplateFormRequest.js.map +0 -1
  392. package/dist/model/embeddedSendCreated.d.ts +0 -15
  393. package/dist/model/embeddedSendCreated.js +0 -23
  394. package/dist/model/embeddedSendCreated.js.map +0 -1
  395. package/dist/model/embeddedSendTemplateFormRequest.d.ts +0 -112
  396. package/dist/model/embeddedSendTemplateFormRequest.js +0 -296
  397. package/dist/model/embeddedSendTemplateFormRequest.js.map +0 -1
  398. package/dist/model/embeddedSigningLink.d.ts +0 -14
  399. package/dist/model/embeddedSigningLink.js +0 -18
  400. package/dist/model/embeddedSigningLink.js.map +0 -1
  401. package/dist/model/embeddedTemplateCreated.d.ts +0 -15
  402. package/dist/model/embeddedTemplateCreated.js +0 -23
  403. package/dist/model/embeddedTemplateCreated.js.map +0 -1
  404. package/dist/model/embeddedTemplateEditRequest.d.ts +0 -53
  405. package/dist/model/embeddedTemplateEditRequest.js +0 -109
  406. package/dist/model/embeddedTemplateEditRequest.js.map +0 -1
  407. package/dist/model/embeddedTemplateEdited.d.ts +0 -14
  408. package/dist/model/embeddedTemplateEdited.js +0 -18
  409. package/dist/model/embeddedTemplateEdited.js.map +0 -1
  410. package/dist/model/embeddedTemplatePreview.d.ts +0 -14
  411. package/dist/model/embeddedTemplatePreview.js +0 -18
  412. package/dist/model/embeddedTemplatePreview.js.map +0 -1
  413. package/dist/model/embeddedTemplatePreviewJsonRequest.d.ts +0 -15
  414. package/dist/model/embeddedTemplatePreviewJsonRequest.js +0 -23
  415. package/dist/model/embeddedTemplatePreviewJsonRequest.js.map +0 -1
  416. package/dist/model/errorResponse.d.ts +0 -15
  417. package/dist/model/errorResponse.js +0 -23
  418. package/dist/model/errorResponse.js.map +0 -1
  419. package/dist/model/errorResult.d.ts +0 -14
  420. package/dist/model/errorResult.js +0 -18
  421. package/dist/model/errorResult.js.map +0 -1
  422. package/dist/model/existingFormField.d.ts +0 -18
  423. package/dist/model/existingFormField.js +0 -38
  424. package/dist/model/existingFormField.js.map +0 -1
  425. package/dist/model/extendExpiry.d.ts +0 -17
  426. package/dist/model/extendExpiry.js +0 -33
  427. package/dist/model/extendExpiry.js.map +0 -1
  428. package/dist/model/fileInfo.d.ts +0 -17
  429. package/dist/model/fileInfo.js +0 -33
  430. package/dist/model/fileInfo.js.map +0 -1
  431. package/dist/model/font.d.ts +0 -36
  432. package/dist/model/font.js +0 -70
  433. package/dist/model/font.js.map +0 -1
  434. package/dist/model/formField.d.ts +0 -113
  435. package/dist/model/formField.js +0 -287
  436. package/dist/model/formField.js.map +0 -1
  437. package/dist/model/formFieldPermission.d.ts +0 -16
  438. package/dist/model/formFieldPermission.js +0 -28
  439. package/dist/model/formFieldPermission.js.map +0 -1
  440. package/dist/model/formGroup.d.ts +0 -26
  441. package/dist/model/formGroup.js +0 -47
  442. package/dist/model/formGroup.js.map +0 -1
  443. package/dist/model/formulaFieldSettings.d.ts +0 -15
  444. package/dist/model/formulaFieldSettings.js +0 -26
  445. package/dist/model/formulaFieldSettings.js.map +0 -1
  446. package/dist/model/getGroupContactDetails.d.ts +0 -20
  447. package/dist/model/getGroupContactDetails.js +0 -38
  448. package/dist/model/getGroupContactDetails.js.map +0 -1
  449. package/dist/model/groupContact.d.ts +0 -18
  450. package/dist/model/groupContact.js +0 -33
  451. package/dist/model/groupContact.js.map +0 -1
  452. package/dist/model/groupContactDetails.d.ts +0 -17
  453. package/dist/model/groupContactDetails.js +0 -28
  454. package/dist/model/groupContactDetails.js.map +0 -1
  455. package/dist/model/groupContactsList.d.ts +0 -17
  456. package/dist/model/groupContactsList.js +0 -23
  457. package/dist/model/groupContactsList.js.map +0 -1
  458. package/dist/model/groupSigner.d.ts +0 -30
  459. package/dist/model/groupSigner.js +0 -59
  460. package/dist/model/groupSigner.js.map +0 -1
  461. package/dist/model/groupSignerSettings.d.ts +0 -15
  462. package/dist/model/groupSignerSettings.js +0 -23
  463. package/dist/model/groupSignerSettings.js.map +0 -1
  464. package/dist/model/groupUser.d.ts +0 -15
  465. package/dist/model/groupUser.js +0 -23
  466. package/dist/model/groupUser.js.map +0 -1
  467. package/dist/model/idDocument.d.ts +0 -26
  468. package/dist/model/idDocument.js +0 -68
  469. package/dist/model/idDocument.js.map +0 -1
  470. package/dist/model/idReport.d.ts +0 -18
  471. package/dist/model/idReport.js +0 -33
  472. package/dist/model/idReport.js.map +0 -1
  473. package/dist/model/idVerification.d.ts +0 -22
  474. package/dist/model/idVerification.js +0 -58
  475. package/dist/model/idVerification.js.map +0 -1
  476. package/dist/model/idVerificationDetails.d.ts +0 -23
  477. package/dist/model/idVerificationDetails.js +0 -63
  478. package/dist/model/idVerificationDetails.js.map +0 -1
  479. package/dist/model/identityVerificationSettings.d.ts +0 -37
  480. package/dist/model/identityVerificationSettings.js +0 -68
  481. package/dist/model/identityVerificationSettings.js.map +0 -1
  482. package/dist/model/imageInfo.d.ts +0 -16
  483. package/dist/model/imageInfo.js +0 -28
  484. package/dist/model/imageInfo.js.map +0 -1
  485. package/dist/model/index.d.ts +0 -174
  486. package/dist/model/index.js +0 -665
  487. package/dist/model/index.js.map +0 -1
  488. package/dist/model/mergeAndSendForSignForm.d.ts +0 -79
  489. package/dist/model/mergeAndSendForSignForm.js +0 -232
  490. package/dist/model/mergeAndSendForSignForm.js.map +0 -1
  491. package/dist/model/modelDate.d.ts +0 -16
  492. package/dist/model/modelDate.js +0 -28
  493. package/dist/model/modelDate.js.map +0 -1
  494. package/dist/model/modelError.d.ts +0 -15
  495. package/dist/model/modelError.js +0 -23
  496. package/dist/model/modelError.js.map +0 -1
  497. package/dist/model/models.d.ts +0 -56
  498. package/dist/model/models.js +0 -212
  499. package/dist/model/models.js.map +0 -1
  500. package/dist/model/modificationDetails.d.ts +0 -15
  501. package/dist/model/modificationDetails.js +0 -23
  502. package/dist/model/modificationDetails.js.map +0 -1
  503. package/dist/model/notificationSettings.d.ts +0 -25
  504. package/dist/model/notificationSettings.js +0 -87
  505. package/dist/model/notificationSettings.js.map +0 -1
  506. package/dist/model/pageDetails.d.ts +0 -19
  507. package/dist/model/pageDetails.js +0 -43
  508. package/dist/model/pageDetails.js.map +0 -1
  509. package/dist/model/phoneNumber.d.ts +0 -15
  510. package/dist/model/phoneNumber.js +0 -23
  511. package/dist/model/phoneNumber.js.map +0 -1
  512. package/dist/model/prefillField.d.ts +0 -15
  513. package/dist/model/prefillField.js +0 -23
  514. package/dist/model/prefillField.js.map +0 -1
  515. package/dist/model/prefillFieldRequest.d.ts +0 -16
  516. package/dist/model/prefillFieldRequest.js +0 -23
  517. package/dist/model/prefillFieldRequest.js.map +0 -1
  518. package/dist/model/problemDetails.d.ts +0 -18
  519. package/dist/model/problemDetails.js +0 -38
  520. package/dist/model/problemDetails.js.map +0 -1
  521. package/dist/model/recipientChangeLog.d.ts +0 -17
  522. package/dist/model/recipientChangeLog.js +0 -23
  523. package/dist/model/recipientChangeLog.js.map +0 -1
  524. package/dist/model/recipientNotificationSettings.d.ts +0 -25
  525. package/dist/model/recipientNotificationSettings.js +0 -86
  526. package/dist/model/recipientNotificationSettings.js.map +0 -1
  527. package/dist/model/rectangle.d.ts +0 -17
  528. package/dist/model/rectangle.js +0 -39
  529. package/dist/model/rectangle.js.map +0 -1
  530. package/dist/model/reminderMessage.d.ts +0 -17
  531. package/dist/model/reminderMessage.js +0 -28
  532. package/dist/model/reminderMessage.js.map +0 -1
  533. package/dist/model/reminderSettings.d.ts +0 -16
  534. package/dist/model/reminderSettings.js +0 -33
  535. package/dist/model/reminderSettings.js.map +0 -1
  536. package/dist/model/removeAuthentication.d.ts +0 -18
  537. package/dist/model/removeAuthentication.js +0 -33
  538. package/dist/model/removeAuthentication.js.map +0 -1
  539. package/dist/model/removed.d.ts +0 -16
  540. package/dist/model/removed.js +0 -28
  541. package/dist/model/removed.js.map +0 -1
  542. package/dist/model/revokeDocument.d.ts +0 -15
  543. package/dist/model/revokeDocument.js +0 -23
  544. package/dist/model/revokeDocument.js.map +0 -1
  545. package/dist/model/role.d.ts +0 -114
  546. package/dist/model/role.js +0 -214
  547. package/dist/model/role.js.map +0 -1
  548. package/dist/model/roles.d.ts +0 -113
  549. package/dist/model/roles.js +0 -219
  550. package/dist/model/roles.js.map +0 -1
  551. package/dist/model/sendForSign.d.ts +0 -78
  552. package/dist/model/sendForSign.js +0 -235
  553. package/dist/model/sendForSign.js.map +0 -1
  554. package/dist/model/sendForSignFromTemplateForm.d.ts +0 -75
  555. package/dist/model/sendForSignFromTemplateForm.js +0 -217
  556. package/dist/model/sendForSignFromTemplateForm.js.map +0 -1
  557. package/dist/model/senderIdentityCreated.d.ts +0 -14
  558. package/dist/model/senderIdentityCreated.js +0 -18
  559. package/dist/model/senderIdentityCreated.js.map +0 -1
  560. package/dist/model/senderIdentityList.d.ts +0 -17
  561. package/dist/model/senderIdentityList.js +0 -23
  562. package/dist/model/senderIdentityList.js.map +0 -1
  563. package/dist/model/senderIdentityViewModel.d.ts +0 -27
  564. package/dist/model/senderIdentityViewModel.js +0 -68
  565. package/dist/model/senderIdentityViewModel.js.map +0 -1
  566. package/dist/model/signatureFrameSettings.d.ts +0 -17
  567. package/dist/model/signatureFrameSettings.js +0 -39
  568. package/dist/model/signatureFrameSettings.js.map +0 -1
  569. package/dist/model/signerAuthenticationSettings.d.ts +0 -15
  570. package/dist/model/signerAuthenticationSettings.js +0 -23
  571. package/dist/model/signerAuthenticationSettings.js.map +0 -1
  572. package/dist/model/size.d.ts +0 -15
  573. package/dist/model/size.js +0 -27
  574. package/dist/model/size.js.map +0 -1
  575. package/dist/model/teamCreated.d.ts +0 -14
  576. package/dist/model/teamCreated.js +0 -18
  577. package/dist/model/teamCreated.js.map +0 -1
  578. package/dist/model/teamDocumentRecords.d.ts +0 -17
  579. package/dist/model/teamDocumentRecords.js +0 -23
  580. package/dist/model/teamDocumentRecords.js.map +0 -1
  581. package/dist/model/teamListResponse.d.ts +0 -17
  582. package/dist/model/teamListResponse.js +0 -23
  583. package/dist/model/teamListResponse.js.map +0 -1
  584. package/dist/model/teamPageDetails.d.ts +0 -15
  585. package/dist/model/teamPageDetails.js +0 -23
  586. package/dist/model/teamPageDetails.js.map +0 -1
  587. package/dist/model/teamResponse.d.ts +0 -19
  588. package/dist/model/teamResponse.js +0 -38
  589. package/dist/model/teamResponse.js.map +0 -1
  590. package/dist/model/teamUpdateRequest.d.ts +0 -15
  591. package/dist/model/teamUpdateRequest.js +0 -23
  592. package/dist/model/teamUpdateRequest.js.map +0 -1
  593. package/dist/model/teamUsers.d.ts +0 -31
  594. package/dist/model/teamUsers.js +0 -57
  595. package/dist/model/teamUsers.js.map +0 -1
  596. package/dist/model/teams.d.ts +0 -17
  597. package/dist/model/teams.js +0 -33
  598. package/dist/model/teams.js.map +0 -1
  599. package/dist/model/template.d.ts +0 -52
  600. package/dist/model/template.js +0 -129
  601. package/dist/model/template.js.map +0 -1
  602. package/dist/model/templateCC.d.ts +0 -15
  603. package/dist/model/templateCC.js +0 -23
  604. package/dist/model/templateCC.js.map +0 -1
  605. package/dist/model/templateCreated.d.ts +0 -14
  606. package/dist/model/templateCreated.js +0 -18
  607. package/dist/model/templateCreated.js.map +0 -1
  608. package/dist/model/templateFiles.d.ts +0 -17
  609. package/dist/model/templateFiles.js +0 -33
  610. package/dist/model/templateFiles.js.map +0 -1
  611. package/dist/model/templateFormFields.d.ts +0 -88
  612. package/dist/model/templateFormFields.js +0 -260
  613. package/dist/model/templateFormFields.js.map +0 -1
  614. package/dist/model/templateGroupSigner.d.ts +0 -15
  615. package/dist/model/templateGroupSigner.js +0 -23
  616. package/dist/model/templateGroupSigner.js.map +0 -1
  617. package/dist/model/templateProperties.d.ts +0 -68
  618. package/dist/model/templateProperties.js +0 -186
  619. package/dist/model/templateProperties.js.map +0 -1
  620. package/dist/model/templateRecords.d.ts +0 -17
  621. package/dist/model/templateRecords.js +0 -23
  622. package/dist/model/templateRecords.js.map +0 -1
  623. package/dist/model/templateRole.d.ts +0 -106
  624. package/dist/model/templateRole.js +0 -189
  625. package/dist/model/templateRole.js.map +0 -1
  626. package/dist/model/templateSenderDetail.d.ts +0 -15
  627. package/dist/model/templateSenderDetail.js +0 -23
  628. package/dist/model/templateSenderDetail.js.map +0 -1
  629. package/dist/model/templateSenderDetails.d.ts +0 -16
  630. package/dist/model/templateSenderDetails.js +0 -28
  631. package/dist/model/templateSenderDetails.js.map +0 -1
  632. package/dist/model/templateShareErrorResponse.d.ts +0 -17
  633. package/dist/model/templateShareErrorResponse.js +0 -33
  634. package/dist/model/templateShareErrorResponse.js.map +0 -1
  635. package/dist/model/templateShareRequest.d.ts +0 -15
  636. package/dist/model/templateShareRequest.js +0 -18
  637. package/dist/model/templateShareRequest.js.map +0 -1
  638. package/dist/model/templateSharedTemplateDetail.d.ts +0 -21
  639. package/dist/model/templateSharedTemplateDetail.js +0 -30
  640. package/dist/model/templateSharedTemplateDetail.js.map +0 -1
  641. package/dist/model/templateSharing.d.ts +0 -15
  642. package/dist/model/templateSharing.js +0 -18
  643. package/dist/model/templateSharing.js.map +0 -1
  644. package/dist/model/templateSignerDetails.d.ts +0 -66
  645. package/dist/model/templateSignerDetails.js +0 -149
  646. package/dist/model/templateSignerDetails.js.map +0 -1
  647. package/dist/model/templateTag.d.ts +0 -17
  648. package/dist/model/templateTag.js +0 -33
  649. package/dist/model/templateTag.js.map +0 -1
  650. package/dist/model/templateTeamShare.d.ts +0 -22
  651. package/dist/model/templateTeamShare.js +0 -31
  652. package/dist/model/templateTeamShare.js.map +0 -1
  653. package/dist/model/templateTeamShareRequest.d.ts +0 -26
  654. package/dist/model/templateTeamShareRequest.js +0 -40
  655. package/dist/model/templateTeamShareRequest.js.map +0 -1
  656. package/dist/model/textTagDefinition.d.ts +0 -91
  657. package/dist/model/textTagDefinition.js +0 -221
  658. package/dist/model/textTagDefinition.js.map +0 -1
  659. package/dist/model/textTagOffset.d.ts +0 -15
  660. package/dist/model/textTagOffset.js +0 -23
  661. package/dist/model/textTagOffset.js.map +0 -1
  662. package/dist/model/updateGroupContact.d.ts +0 -17
  663. package/dist/model/updateGroupContact.js +0 -28
  664. package/dist/model/updateGroupContact.js.map +0 -1
  665. package/dist/model/updateUser.d.ts +0 -28
  666. package/dist/model/updateUser.js +0 -46
  667. package/dist/model/updateUser.js.map +0 -1
  668. package/dist/model/updateUserMetaData.d.ts +0 -17
  669. package/dist/model/updateUserMetaData.js +0 -23
  670. package/dist/model/updateUserMetaData.js.map +0 -1
  671. package/dist/model/userPageDetails.d.ts +0 -15
  672. package/dist/model/userPageDetails.js +0 -23
  673. package/dist/model/userPageDetails.js.map +0 -1
  674. package/dist/model/userProperties.d.ts +0 -26
  675. package/dist/model/userProperties.js +0 -68
  676. package/dist/model/userProperties.js.map +0 -1
  677. package/dist/model/userRecords.d.ts +0 -17
  678. package/dist/model/userRecords.js +0 -23
  679. package/dist/model/userRecords.js.map +0 -1
  680. package/dist/model/usersDetails.d.ts +0 -26
  681. package/dist/model/usersDetails.js +0 -68
  682. package/dist/model/usersDetails.js.map +0 -1
  683. package/dist/model/validation.d.ts +0 -25
  684. package/dist/model/validation.js +0 -38
  685. package/dist/model/validation.js.map +0 -1
  686. package/dist/model/verificationDataRequest.d.ts +0 -18
  687. package/dist/model/verificationDataRequest.js +0 -38
  688. package/dist/model/verificationDataRequest.js.map +0 -1
  689. package/dist/model/viewBrandDetails.d.ts +0 -48
  690. package/dist/model/viewBrandDetails.js +0 -150
  691. package/dist/model/viewBrandDetails.js.map +0 -1
  692. package/dist/model/viewCustomFieldDetails.d.ts +0 -21
  693. package/dist/model/viewCustomFieldDetails.js +0 -48
  694. package/dist/model/viewCustomFieldDetails.js.map +0 -1
@@ -15,7 +15,7 @@ import axios, { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
15
15
  import {
16
16
  ObjectSerializer, Authentication, VoidAuth, Interceptor,
17
17
  HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth, RequestFile,
18
- AccessCodeDetail,AccessCodeDetails,BehalfDocumentRecords,ChangeRecipient,DocumentCreated,DocumentEdited,DocumentProperties,DocumentRecords,DocumentTags,EditDocumentRequest,EmbeddedDocumentEditJsonRequest,EmbeddedDocumentEdited,EmbeddedDocumentRequest,EmbeddedSendCreated,EmbeddedSigningLink,ErrorResult,ExtendExpiry,PrefillFieldRequest,ReminderMessage,RemoveAuthentication,RevokeDocument,SendForSign,TeamDocumentRecords,
18
+ AccessCodeDetail,AccessCodeDetails,BehalfDocumentRecords,ChangeRecipient,DocumentCreated,DocumentEdited,DocumentProperties,DocumentRecords,DocumentTags,EditDocumentRequest,EmbeddedCloneDocumentJsonRequest,EmbeddedClonedDocument,EmbeddedDocumentEditJsonRequest,EmbeddedDocumentEdited,EmbeddedDocumentRequest,EmbeddedSendCreated,EmbeddedSigningLink,ErrorResult,ExtendExpiry,PrefillFieldRequest,ReminderMessage,RemoveAuthentication,RevokeDocument,SendForSign,TeamDocumentRecords,
19
19
  } from '../model';
20
20
 
21
21
  import {
@@ -94,7 +94,7 @@ export class DocumentApi {
94
94
  /**
95
95
  *
96
96
  * @summary The add authentication to recipient.
97
- * @param documentId The DocumentId.
97
+ * @param documentId
98
98
  * @param accessCodeDetail Access code details.
99
99
  * @param options
100
100
  */
@@ -500,8 +500,8 @@ export class DocumentApi {
500
500
  /**
501
501
  *
502
502
  * @summary Cancels editing for a document that is currently in edit-mode.
503
- * @param documentId The document id.
504
- * @param onBehalfOf The onbehalfof email id.
503
+ * @param documentId
504
+ * @param onBehalfOf
505
505
  * @param options
506
506
  */
507
507
  public async cancelEditing (documentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -752,7 +752,7 @@ export class DocumentApi {
752
752
  /**
753
753
  *
754
754
  * @summary Change recipient details of a document.
755
- * @param documentId The documentID details.
755
+ * @param documentId
756
756
  * @param changeRecipient The new recipient details.
757
757
  * @param options
758
758
  */
@@ -870,6 +870,135 @@ export class DocumentApi {
870
870
  }
871
871
 
872
872
 
873
+ reject(error);
874
+ });
875
+ });
876
+ });
877
+ }
878
+ /**
879
+ *
880
+ * @summary Generates a URL to embeds Clone document process into your application.
881
+ * @param documentId
882
+ * @param embeddedCloneDocumentJsonRequest The embedded clone document request body.
883
+ * @param options
884
+ */
885
+ public async createEmbeddedDocumentCloneUrl (documentId: string, embeddedCloneDocumentJsonRequest?: EmbeddedCloneDocumentJsonRequest, options: optionsI = {headers: {}}) : Promise<EmbeddedClonedDocument> {
886
+ embeddedCloneDocumentJsonRequest = deserializeIfNeeded(embeddedCloneDocumentJsonRequest, "EmbeddedCloneDocumentJsonRequest");
887
+ const localVarPath = this.basePath + '/v1/document/createEmbeddedCloneUrl';
888
+ let localVarQueryParameters: any = {};
889
+ let localVarHeaderParams: any = (<any>Object).assign({}, this._defaultHeaders);
890
+ const produces = ['application/json'];
891
+ // give precedence to 'application/json'
892
+ if (produces.indexOf('application/json') >= 0) {
893
+ localVarHeaderParams['content-type'] = 'application/json';
894
+ } else {
895
+ localVarHeaderParams['content-type'] = produces.join(',');
896
+ }
897
+ let localVarFormParams: any = {};
898
+ let localVarBodyParams: any = undefined;
899
+
900
+ // verify required parameter 'documentId' is not null or undefined
901
+ if (documentId === null || documentId === undefined) {
902
+ throw new Error('Required parameter documentId was null or undefined when calling createEmbeddedDocumentCloneUrl.');
903
+ }
904
+
905
+ if (documentId !== undefined) {
906
+ localVarQueryParameters['documentId'] = ObjectSerializer.serialize(documentId, "string");
907
+ }
908
+
909
+ (<any>Object).assign(localVarHeaderParams, options.headers);
910
+
911
+ let localVarUseFormData = false;
912
+
913
+ const result = generateFormData(embeddedCloneDocumentJsonRequest, EmbeddedCloneDocumentJsonRequest);
914
+ localVarUseFormData = result.localVarUseFormData;
915
+
916
+ let data = {};
917
+ if (localVarUseFormData) {
918
+ const formData = toFormData(result.data);
919
+ data = formData;
920
+ localVarHeaderParams = {
921
+ ...localVarHeaderParams,
922
+ ...formData.getHeaders(),
923
+ };
924
+ } else {
925
+ data = ObjectSerializer.serialize(
926
+ embeddedCloneDocumentJsonRequest,
927
+ "EmbeddedCloneDocumentJsonRequest"
928
+ );
929
+ }
930
+
931
+ let localVarRequestOptions: AxiosRequestConfig = {
932
+ method: 'POST',
933
+ params: localVarQueryParameters,
934
+ headers: localVarHeaderParams,
935
+ url: localVarPath,
936
+ paramsSerializer: this._useQuerystring ? queryParamsSerializer : undefined,
937
+ maxContentLength: Infinity,
938
+ maxBodyLength: Infinity,
939
+ responseType: "json",
940
+ };
941
+
942
+ if (localVarRequestOptions.method !== 'GET') {
943
+ localVarRequestOptions.data = data;
944
+ }
945
+ let authenticationPromise = Promise.resolve();
946
+
947
+ if (this.authentications["X-API-KEY"].apiKey) {
948
+ authenticationPromise = authenticationPromise.then(() => this.authentications["X-API-KEY"].applyToRequest(localVarRequestOptions));
949
+ }
950
+ if (this.authentications["Bearer"].apiKey) {
951
+ authenticationPromise = authenticationPromise.then(() => this.authentications["Bearer"].applyToRequest(localVarRequestOptions));
952
+ }
953
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
954
+
955
+ let interceptorPromise = authenticationPromise;
956
+ for (const interceptor of this.interceptors) {
957
+ interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
958
+ }
959
+
960
+ return interceptorPromise.then(() => {
961
+ return new Promise<EmbeddedClonedDocument>((resolve, reject) => {
962
+ axios.request(localVarRequestOptions)
963
+ .then((response) => {
964
+ handleSuccessfulResponse<EmbeddedClonedDocument>(
965
+ resolve,
966
+ reject,
967
+ response,
968
+ "EmbeddedClonedDocument",
969
+ );
970
+ }, (error: AxiosError) => {
971
+ if (error.response == null) {
972
+ reject(error);
973
+ return;
974
+ }
975
+
976
+ if (handleErrorCodeResponse(
977
+ reject,
978
+ error.response,
979
+ 201,
980
+ "EmbeddedClonedDocument",
981
+ )) {
982
+ return;
983
+ }
984
+ if (handleErrorCodeResponse(
985
+ reject,
986
+ error.response,
987
+ 401,
988
+ "ErrorResult",
989
+ )) {
990
+ return;
991
+ }
992
+ if (handleErrorCodeResponse(
993
+ reject,
994
+ error.response,
995
+ 400,
996
+ "ErrorResult",
997
+ )) {
998
+ return;
999
+ }
1000
+
1001
+
873
1002
  reject(error);
874
1003
  });
875
1004
  });
@@ -878,7 +1007,7 @@ export class DocumentApi {
878
1007
  /**
879
1008
  *
880
1009
  * @summary Generates an embedded edit URL that allows the document editing process to be integrated into your application.
881
- * @param documentId The document id.
1010
+ * @param documentId
882
1011
  * @param embeddedDocumentEditJsonRequest The embedded edit document request body.
883
1012
  * @param options
884
1013
  */
@@ -1158,8 +1287,8 @@ export class DocumentApi {
1158
1287
  /**
1159
1288
  *
1160
1289
  * @summary Delete the document.
1161
- * @param documentId Document Id.
1162
- * @param deletePermanently Delete Permanently.
1290
+ * @param documentId
1291
+ * @param deletePermanently
1163
1292
  * @param options
1164
1293
  */
1165
1294
  public async deleteDocument (documentId: string, deletePermanently?: boolean, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -1385,9 +1514,9 @@ export class DocumentApi {
1385
1514
  /**
1386
1515
  *
1387
1516
  * @summary Download the Attachment.
1388
- * @param documentId Document Id.
1389
- * @param attachmentId Attachment Id(Get attachment ID from Properties API).
1390
- * @param onBehalfOf The on behalfof email address.
1517
+ * @param documentId
1518
+ * @param attachmentId
1519
+ * @param onBehalfOf
1391
1520
  * @param options
1392
1521
  */
1393
1522
  public async downloadAttachment (documentId: string, attachmentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<Buffer> {
@@ -1519,8 +1648,8 @@ export class DocumentApi {
1519
1648
  /**
1520
1649
  *
1521
1650
  * @summary Download the audit trail document.
1522
- * @param documentId Document Id.
1523
- * @param onBehalfOf The on behalfof email address.
1651
+ * @param documentId
1652
+ * @param onBehalfOf
1524
1653
  * @param options
1525
1654
  */
1526
1655
  public async downloadAuditLog (documentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<Buffer> {
@@ -1643,8 +1772,8 @@ export class DocumentApi {
1643
1772
  /**
1644
1773
  *
1645
1774
  * @summary Download the document.
1646
- * @param documentId Document Id.
1647
- * @param onBehalfOf The on behalfof email address.
1775
+ * @param documentId
1776
+ * @param onBehalfOf
1648
1777
  * @param options
1649
1778
  */
1650
1779
  public async downloadDocument (documentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<Buffer> {
@@ -1767,7 +1896,7 @@ export class DocumentApi {
1767
1896
  /**
1768
1897
  *
1769
1898
  * @summary Sends a draft-status document out for signature.
1770
- * @param documentId The ID of the document to be sent.
1899
+ * @param documentId
1771
1900
  * @param options
1772
1901
  */
1773
1902
  public async draftSend (documentId: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -1878,7 +2007,7 @@ export class DocumentApi {
1878
2007
  /**
1879
2008
  *
1880
2009
  * @summary Edit and updates an existing document.
1881
- * @param documentId Document Id.
2010
+ * @param documentId
1882
2011
  * @param editDocumentRequest Edit document JSON request.
1883
2012
  * @param options
1884
2013
  */
@@ -2023,7 +2152,7 @@ export class DocumentApi {
2023
2152
  /**
2024
2153
  *
2025
2154
  * @summary Extends the expiration date of the document.
2026
- * @param documentId Document Id.
2155
+ * @param documentId
2027
2156
  * @param extendExpiry The new expiry value should be specified in yyyy-MM-dd format for days type, ISO date time format for specific date time and integer for hours type.
2028
2157
  * @param options
2029
2158
  */
@@ -2144,7 +2273,7 @@ export class DocumentApi {
2144
2273
  /**
2145
2274
  *
2146
2275
  * @summary Get summary of the document.
2147
- * @param documentId Document Id.
2276
+ * @param documentId
2148
2277
  * @param options
2149
2278
  */
2150
2279
  public async getProperties (documentId: string, options: optionsI = {headers: {}}) : Promise<DocumentProperties> {
@@ -2578,7 +2707,7 @@ export class DocumentApi {
2578
2707
  /**
2579
2708
  *
2580
2709
  * @summary Updates the value (prefill) of the fields in the document.
2581
- * @param documentId The DocumentId.
2710
+ * @param documentId
2582
2711
  * @param prefillFieldRequest The prefill field request.
2583
2712
  * @param options
2584
2713
  */
@@ -2704,8 +2833,8 @@ export class DocumentApi {
2704
2833
  /**
2705
2834
  *
2706
2835
  * @summary Send reminder to pending signers.
2707
- * @param documentId Document Id.
2708
- * @param receiverEmails Signer emails.
2836
+ * @param documentId
2837
+ * @param receiverEmails
2709
2838
  * @param reminderMessage Reminder Message for signers.
2710
2839
  * @param options
2711
2840
  */
@@ -2951,7 +3080,7 @@ export class DocumentApi {
2951
3080
  /**
2952
3081
  *
2953
3082
  * @summary Revoke the document.
2954
- * @param documentId Document Id.
3083
+ * @param documentId
2955
3084
  * @param revokeDocument RevokeDetails.
2956
3085
  * @param options
2957
3086
  */
@@ -213,7 +213,7 @@ export class GroupContactsApi {
213
213
  /**
214
214
  *
215
215
  * @summary Deletes a Group Contact.
216
- * @param groupId The group contact id.
216
+ * @param groupId
217
217
  * @param options
218
218
  */
219
219
  public async deleteGroupContact (groupId: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -324,7 +324,7 @@ export class GroupContactsApi {
324
324
  /**
325
325
  *
326
326
  * @summary Get Summary of the Group Contact.
327
- * @param groupId Group Contact Id.
327
+ * @param groupId
328
328
  * @param options
329
329
  */
330
330
  public async getGroupContact (groupId: string, options: optionsI = {headers: {}}) : Promise<GetGroupContactDetails> {
@@ -574,7 +574,7 @@ export class GroupContactsApi {
574
574
  /**
575
575
  *
576
576
  * @summary Update the Group Contact.
577
- * @param groupId The group contact ID.
577
+ * @param groupId
578
578
  * @param updateGroupContact The group contact details.
579
579
  * @param options
580
580
  */
@@ -94,7 +94,7 @@ export class IdentityVerificationApi {
94
94
  /**
95
95
  *
96
96
  * @summary Generate a URL that embeds manual ID verification for the specified document signer into your application.
97
- * @param documentId The document id.
97
+ * @param documentId
98
98
  * @param embeddedFileDetails The embedded verification link request.
99
99
  * @param options
100
100
  */
@@ -223,7 +223,7 @@ export class IdentityVerificationApi {
223
223
  /**
224
224
  *
225
225
  * @summary Retrieve the uploaded ID verification document or selfie image for the specified document signer using the file ID.
226
- * @param documentId The document id.
226
+ * @param documentId
227
227
  * @param downloadImageRequest The download image request.
228
228
  * @param options
229
229
  */
@@ -365,7 +365,7 @@ export class IdentityVerificationApi {
365
365
  /**
366
366
  *
367
367
  * @summary Retrieve the ID verification report for the specified document signer.
368
- * @param documentId The document id.
368
+ * @param documentId
369
369
  * @param verificationDataRequest The download image request.
370
370
  * @param options
371
371
  */
@@ -226,7 +226,7 @@ export class SenderIdentitiesApi {
226
226
  /**
227
227
  *
228
228
  * @summary Deletes sender identity.
229
- * @param email The email address.
229
+ * @param email
230
230
  * @param options
231
231
  */
232
232
  public async deleteSenderIdentities (email: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -337,8 +337,8 @@ export class SenderIdentitiesApi {
337
337
  /**
338
338
  *
339
339
  * @summary Gets sender identity by ID or email.
340
- * @param id The sender identity id.
341
- * @param email The sender identity email.
340
+ * @param id
341
+ * @param email
342
342
  * @param options
343
343
  */
344
344
  public async getSenderIdentityProperties (id?: string, email?: string, options: optionsI = {headers: {}}) : Promise<SenderIdentityViewModel> {
@@ -590,7 +590,7 @@ export class SenderIdentitiesApi {
590
590
  /**
591
591
  *
592
592
  * @summary Rerequests denied sender identity.
593
- * @param email The email address.
593
+ * @param email
594
594
  * @param options
595
595
  */
596
596
  public async reRequestSenderIdentities (email: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -701,7 +701,7 @@ export class SenderIdentitiesApi {
701
701
  /**
702
702
  *
703
703
  * @summary Resends sender identity invitation.
704
- * @param email The email address.
704
+ * @param email
705
705
  * @param options
706
706
  */
707
707
  public async resendInvitationSenderIdentities (email: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -812,7 +812,7 @@ export class SenderIdentitiesApi {
812
812
  /**
813
813
  *
814
814
  * @summary Updates sender identity.
815
- * @param email The email address.
815
+ * @param email
816
816
  * @param editSenderIdentityRequest The create sender identity request.
817
817
  * @param options
818
818
  */
package/api/teamsApi.ts CHANGED
@@ -218,7 +218,7 @@ export class TeamsApi {
218
218
  /**
219
219
  *
220
220
  * @summary Get Team details.
221
- * @param teamId Team Id.
221
+ * @param teamId
222
222
  * @param options
223
223
  */
224
224
  public async getTeam (teamId: string, options: optionsI = {headers: {}}) : Promise<TeamResponse> {
@@ -15,7 +15,7 @@ import axios, { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
15
15
  import {
16
16
  ObjectSerializer, Authentication, VoidAuth, Interceptor,
17
17
  HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth, RequestFile,
18
- CreateTemplateRequest,DocumentCreated,EditTemplateRequest,EmbeddedCreateTemplateRequest,EmbeddedMergeTemplateFormRequest,EmbeddedSendCreated,EmbeddedSendTemplateFormRequest,EmbeddedTemplateCreated,EmbeddedTemplateEditRequest,EmbeddedTemplateEdited,EmbeddedTemplatePreview,EmbeddedTemplatePreviewJsonRequest,ErrorResponse,ErrorResult,MergeAndSendForSignForm,SendForSignFromTemplateForm,TemplateCreated,TemplateProperties,TemplateRecords,TemplateShareErrorResponse,TemplateShareRequest,TemplateTag,
18
+ CreateTemplateRequest,DocumentCreated,EditTemplateRequest,EmbeddedCloneTemplateJsonRequest,EmbeddedClonedTemplate,EmbeddedCreateTemplateRequest,EmbeddedMergeTemplateFormRequest,EmbeddedSendCreated,EmbeddedSendTemplateFormRequest,EmbeddedTemplateCreated,EmbeddedTemplateEditRequest,EmbeddedTemplateEdited,EmbeddedTemplatePreview,EmbeddedTemplatePreviewJsonRequest,ErrorResponse,ErrorResult,MergeAndSendForSignForm,SendForSignFromTemplateForm,TemplateCreated,TemplateProperties,TemplateRecords,TemplateShareErrorResponse,TemplateShareRequest,TemplateTag,
19
19
  } from '../model';
20
20
 
21
21
  import {
@@ -205,7 +205,7 @@ export class TemplateApi {
205
205
  /**
206
206
  *
207
207
  * @summary Generates a preview URL for a template to view it.
208
- * @param templateId The template id.
208
+ * @param templateId
209
209
  * @param embeddedTemplatePreviewJsonRequest The embedded template preview request body.
210
210
  * @param options
211
211
  */
@@ -326,7 +326,7 @@ export class TemplateApi {
326
326
  /**
327
327
  *
328
328
  * @summary Generates a send URL using a template which embeds document sending process into your application.
329
- * @param templateId The template id.
329
+ * @param templateId
330
330
  * @param embeddedSendTemplateFormRequest Embedded send template json request.
331
331
  * @param options
332
332
  */
@@ -447,6 +447,135 @@ export class TemplateApi {
447
447
  }
448
448
 
449
449
 
450
+ reject(error);
451
+ });
452
+ });
453
+ });
454
+ }
455
+ /**
456
+ *
457
+ * @summary Generates a URL to embeds Clone template process into your application.
458
+ * @param templateId
459
+ * @param embeddedCloneTemplateJsonRequest The embedded clone template request body.
460
+ * @param options
461
+ */
462
+ public async createEmbeddedTemplateCloneUrl (templateId: string, embeddedCloneTemplateJsonRequest?: EmbeddedCloneTemplateJsonRequest, options: optionsI = {headers: {}}) : Promise<EmbeddedClonedTemplate> {
463
+ embeddedCloneTemplateJsonRequest = deserializeIfNeeded(embeddedCloneTemplateJsonRequest, "EmbeddedCloneTemplateJsonRequest");
464
+ const localVarPath = this.basePath + '/v1/template/createEmbeddedCloneUrl';
465
+ let localVarQueryParameters: any = {};
466
+ let localVarHeaderParams: any = (<any>Object).assign({}, this._defaultHeaders);
467
+ const produces = ['application/json'];
468
+ // give precedence to 'application/json'
469
+ if (produces.indexOf('application/json') >= 0) {
470
+ localVarHeaderParams['content-type'] = 'application/json';
471
+ } else {
472
+ localVarHeaderParams['content-type'] = produces.join(',');
473
+ }
474
+ let localVarFormParams: any = {};
475
+ let localVarBodyParams: any = undefined;
476
+
477
+ // verify required parameter 'templateId' is not null or undefined
478
+ if (templateId === null || templateId === undefined) {
479
+ throw new Error('Required parameter templateId was null or undefined when calling createEmbeddedTemplateCloneUrl.');
480
+ }
481
+
482
+ if (templateId !== undefined) {
483
+ localVarQueryParameters['templateId'] = ObjectSerializer.serialize(templateId, "string");
484
+ }
485
+
486
+ (<any>Object).assign(localVarHeaderParams, options.headers);
487
+
488
+ let localVarUseFormData = false;
489
+
490
+ const result = generateFormData(embeddedCloneTemplateJsonRequest, EmbeddedCloneTemplateJsonRequest);
491
+ localVarUseFormData = result.localVarUseFormData;
492
+
493
+ let data = {};
494
+ if (localVarUseFormData) {
495
+ const formData = toFormData(result.data);
496
+ data = formData;
497
+ localVarHeaderParams = {
498
+ ...localVarHeaderParams,
499
+ ...formData.getHeaders(),
500
+ };
501
+ } else {
502
+ data = ObjectSerializer.serialize(
503
+ embeddedCloneTemplateJsonRequest,
504
+ "EmbeddedCloneTemplateJsonRequest"
505
+ );
506
+ }
507
+
508
+ let localVarRequestOptions: AxiosRequestConfig = {
509
+ method: 'POST',
510
+ params: localVarQueryParameters,
511
+ headers: localVarHeaderParams,
512
+ url: localVarPath,
513
+ paramsSerializer: this._useQuerystring ? queryParamsSerializer : undefined,
514
+ maxContentLength: Infinity,
515
+ maxBodyLength: Infinity,
516
+ responseType: "json",
517
+ };
518
+
519
+ if (localVarRequestOptions.method !== 'GET') {
520
+ localVarRequestOptions.data = data;
521
+ }
522
+ let authenticationPromise = Promise.resolve();
523
+
524
+ if (this.authentications["X-API-KEY"].apiKey) {
525
+ authenticationPromise = authenticationPromise.then(() => this.authentications["X-API-KEY"].applyToRequest(localVarRequestOptions));
526
+ }
527
+ if (this.authentications["Bearer"].apiKey) {
528
+ authenticationPromise = authenticationPromise.then(() => this.authentications["Bearer"].applyToRequest(localVarRequestOptions));
529
+ }
530
+ authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
531
+
532
+ let interceptorPromise = authenticationPromise;
533
+ for (const interceptor of this.interceptors) {
534
+ interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
535
+ }
536
+
537
+ return interceptorPromise.then(() => {
538
+ return new Promise<EmbeddedClonedTemplate>((resolve, reject) => {
539
+ axios.request(localVarRequestOptions)
540
+ .then((response) => {
541
+ handleSuccessfulResponse<EmbeddedClonedTemplate>(
542
+ resolve,
543
+ reject,
544
+ response,
545
+ "EmbeddedClonedTemplate",
546
+ );
547
+ }, (error: AxiosError) => {
548
+ if (error.response == null) {
549
+ reject(error);
550
+ return;
551
+ }
552
+
553
+ if (handleErrorCodeResponse(
554
+ reject,
555
+ error.response,
556
+ 201,
557
+ "EmbeddedClonedTemplate",
558
+ )) {
559
+ return;
560
+ }
561
+ if (handleErrorCodeResponse(
562
+ reject,
563
+ error.response,
564
+ 401,
565
+ "ErrorResult",
566
+ )) {
567
+ return;
568
+ }
569
+ if (handleErrorCodeResponse(
570
+ reject,
571
+ error.response,
572
+ 400,
573
+ "ErrorResult",
574
+ )) {
575
+ return;
576
+ }
577
+
578
+
450
579
  reject(error);
451
580
  });
452
581
  });
@@ -701,8 +830,8 @@ export class TemplateApi {
701
830
  /**
702
831
  *
703
832
  * @summary Deletes a template.
704
- * @param templateId The template id.
705
- * @param onBehalfOf The on behalfof email address.
833
+ * @param templateId
834
+ * @param onBehalfOf
706
835
  * @param options
707
836
  */
708
837
  public async deleteTemplate (templateId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
@@ -928,9 +1057,9 @@ export class TemplateApi {
928
1057
  /**
929
1058
  *
930
1059
  * @summary Download the template.
931
- * @param templateId Template Id.
932
- * @param onBehalfOf The on behalfof email address.
933
- * @param includeFormFieldValues Include form field data.
1060
+ * @param templateId
1061
+ * @param onBehalfOf
1062
+ * @param includeFormFieldValues
934
1063
  * @param options
935
1064
  */
936
1065
  public async download (templateId: string, onBehalfOf?: string, includeFormFieldValues?: boolean, options: optionsI = {headers: {}}) : Promise<Buffer> {
@@ -1057,7 +1186,7 @@ export class TemplateApi {
1057
1186
  /**
1058
1187
  *
1059
1188
  * @summary Edit and updates an existing template.
1060
- * @param templateId The template id.
1189
+ * @param templateId
1061
1190
  * @param editTemplateRequest The edit template request body.
1062
1191
  * @param options
1063
1192
  */
@@ -1191,7 +1320,7 @@ export class TemplateApi {
1191
1320
  /**
1192
1321
  *
1193
1322
  * @summary Generates a edit URL to embeds template edit process into your application.
1194
- * @param templateId The template id.
1323
+ * @param templateId
1195
1324
  * @param embeddedTemplateEditRequest The embedded edit template request body.
1196
1325
  * @param options
1197
1326
  */
@@ -1320,7 +1449,7 @@ export class TemplateApi {
1320
1449
  /**
1321
1450
  *
1322
1451
  * @summary Get summary of the template.
1323
- * @param templateId Template Id.
1452
+ * @param templateId
1324
1453
  * @param options
1325
1454
  */
1326
1455
  public async getProperties (templateId: string, options: optionsI = {headers: {}}) : Promise<TemplateProperties> {
@@ -1838,7 +1967,7 @@ export class TemplateApi {
1838
1967
  /**
1839
1968
  *
1840
1969
  * @summary Send a document for signature using a Template.
1841
- * @param templateId The template id.
1970
+ * @param templateId
1842
1971
  * @param sendForSignFromTemplateForm The send template details as JSON.
1843
1972
  * @param options
1844
1973
  */
@@ -1967,7 +2096,7 @@ export class TemplateApi {
1967
2096
  /**
1968
2097
  *
1969
2098
  * @summary Share a template with teams and manage permissions.
1970
- * @param templateId Template Id.
2099
+ * @param templateId
1971
2100
  * @param templateShareRequest Permissions request.
1972
2101
  * @param options
1973
2102
  */
package/api/userApi.ts CHANGED
@@ -205,7 +205,7 @@ export class UserApi {
205
205
  /**
206
206
  *
207
207
  * @summary Change users to other team.
208
- * @param userId user Id.
208
+ * @param userId
209
209
  * @param changeTeamRequest Change team request.
210
210
  * @param options
211
211
  */
@@ -437,7 +437,7 @@ export class UserApi {
437
437
  /**
438
438
  *
439
439
  * @summary Get summary of the user.
440
- * @param userId User Id.
440
+ * @param userId
441
441
  * @param options
442
442
  */
443
443
  public async getUser (userId: string, options: optionsI = {headers: {}}) : Promise<UserProperties> {
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  | `onBehalfOf` | ```string``` | | |
14
14
  | `phoneNumber` | [```PhoneNumber```](PhoneNumber.md) | | |
15
15
  | `identityVerificationSettings` | [```IdentityVerificationSettings```](IdentityVerificationSettings.md) | | |
16
+ | `kbaSettings` | [```KbaSettings```](KbaSettings.md) | | |
16
17
  | `authenticationRetryCount` | ```number``` | | |
17
18
  | `authenticationSettings` | [```AuthenticationSettings```](AuthenticationSettings.md) | | |
18
19
 
@@ -0,0 +1,12 @@
1
+ # # BehalfOfWebhookModel
2
+
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ | `id` | ```string``` | | |
10
+ | `email` | ```string``` | | |
11
+
12
+ [[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)