egain-api-python 0.2.1__tar.gz → 0.3.0__tar.gz

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 (354) hide show
  1. {egain_api_python-0.2.1/src/egain_api_python.egg-info → egain_api_python-0.3.0}/PKG-INFO +10 -3
  2. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/README.md +9 -2
  3. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/pyproject.toml +1 -1
  4. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/_version.py +2 -2
  5. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/aiservices_prompt.py +2 -2
  6. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/export.py +26 -10
  7. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/guidedhelp.py +10 -6
  8. egain_api_python-0.3.0/src/egain_api_python/import_.py +2325 -0
  9. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/__init__.py +127 -9
  10. egain_api_python-0.3.0/src/egain_api_python/models/addsuggestioncommentop.py +52 -0
  11. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleactivitylink.py +33 -8
  12. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articletype.py +7 -19
  13. egain_api_python-0.3.0/src/egain_api_python/models/articletypeinfo.py +64 -0
  14. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachmentforcreatesuggestion.py +2 -2
  15. egain_api_python-0.3.0/src/egain_api_python/models/bookmarkstatus.py +73 -0
  16. egain_api_python-0.3.0/src/egain_api_python/models/createcomment.py +20 -0
  17. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createsuggestion.py +24 -11
  18. egain_api_python-0.3.0/src/egain_api_python/models/createvalidationhookop.py +9 -0
  19. egain_api_python-0.3.0/src/egain_api_python/models/createvalidationhookversionop.py +34 -0
  20. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/datasourcecredentials.py +6 -4
  21. egain_api_python-0.3.0/src/egain_api_python/models/exportstatusop.py +41 -0
  22. egain_api_python-0.3.0/src/egain_api_python/models/fileobject.py +74 -0
  23. egain_api_python-0.3.0/src/egain_api_python/models/getallarticletypesop.py +31 -0
  24. egain_api_python-0.3.0/src/egain_api_python/models/getvalidationhooksop.py +27 -0
  25. egain_api_python-0.3.0/src/egain_api_python/models/getvalidationhookversionop.py +36 -0
  26. egain_api_python-0.3.0/src/egain_api_python/models/getvalidationhookversionsop.py +27 -0
  27. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/ghsearchrequest.py +2 -8
  28. egain_api_python-0.3.0/src/egain_api_python/models/hook.py +35 -0
  29. egain_api_python-0.3.0/src/egain_api_python/models/hooks.py +15 -0
  30. egain_api_python-0.3.0/src/egain_api_python/models/hooktypeparam.py +10 -0
  31. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/importcontent.py +7 -0
  32. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/importstatus.py +9 -2
  33. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/knowledgeexport.py +86 -91
  34. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/languagecode_parameter.py +0 -1
  35. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/languagequeryparameter.py +0 -1
  36. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/mandatorylanguagequeryparameter.py +0 -1
  37. egain_api_python-0.3.0/src/egain_api_python/models/s3config.py +22 -0
  38. egain_api_python-0.3.0/src/egain_api_python/models/sftpconfig.py +27 -0
  39. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/suggestion.py +0 -1
  40. egain_api_python-0.3.0/src/egain_api_python/models/topicbreadcrumbslist.py +24 -0
  41. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_article.py +210 -4
  42. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_suggestion.py +236 -0
  43. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_topic.py +4 -4
  44. {egain_api_python-0.2.1 → egain_api_python-0.3.0/src/egain_api_python.egg-info}/PKG-INFO +10 -3
  45. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python.egg-info/SOURCES.txt +16 -0
  46. egain_api_python-0.2.1/src/egain_api_python/import_.py +0 -1113
  47. egain_api_python-0.2.1/src/egain_api_python/models/bookmarkstatus.py +0 -34
  48. egain_api_python-0.2.1/src/egain_api_python/models/exportstatusop.py +0 -31
  49. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/LICENSE +0 -0
  50. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/setup.cfg +0 -0
  51. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/__init__.py +0 -0
  52. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/_hooks/__init__.py +0 -0
  53. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/_hooks/registration.py +0 -0
  54. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/_hooks/sdkhooks.py +0 -0
  55. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/_hooks/types.py +0 -0
  56. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/aiservices.py +0 -0
  57. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/answers.py +0 -0
  58. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/articlelists.py +0 -0
  59. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/basesdk.py +0 -0
  60. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/connectorssearchevents.py +0 -0
  61. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/content.py +0 -0
  62. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/__init__.py +0 -0
  63. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/egaindefaulterror.py +0 -0
  64. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/egainerror.py +0 -0
  65. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/executepromptop.py +0 -0
  66. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/no_response_error.py +0 -0
  67. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/responsevalidationerror.py +0 -0
  68. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/schemas_wserrorcommon.py +0 -0
  69. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/errors/wserrorcommon.py +0 -0
  70. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/federatedsearchevent.py +0 -0
  71. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/general.py +0 -0
  72. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/httpclient.py +0 -0
  73. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/acceptghsolutionop.py +0 -0
  74. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/acceptlanguage.py +0 -0
  75. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/accessibleportal.py +0 -0
  76. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/action.py +0 -0
  77. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/actionsearch.py +0 -0
  78. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/addasreferenceop.py +0 -0
  79. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/addbookmarkop.py +0 -0
  80. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/additionalsnippets.py +0 -0
  81. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/addtoreplyop.py +0 -0
  82. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/aisearchop.py +0 -0
  83. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/aisearchresponse.py +0 -0
  84. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/aispaginationinfo.py +0 -0
  85. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/aitopicbreadcrumb.py +0 -0
  86. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/aitopicsummary.py +0 -0
  87. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/allaccessibleportals.py +0 -0
  88. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/answer.py +0 -0
  89. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/answeredquestion.py +0 -0
  90. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/answerrange.py +0 -0
  91. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/answersrequest.py +0 -0
  92. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/answersresponse.py +5 -5
  93. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/article.py +0 -0
  94. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleadditionalattributes.py +0 -0
  95. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleaisearchresult.py +0 -0
  96. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleattachment.py +0 -0
  97. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlelist.py +0 -0
  98. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlelistresult.py +0 -0
  99. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlelistsresult.py +0 -0
  100. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlepermissions.py +0 -0
  101. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlepermissionsresult.py +0 -0
  102. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlerating.py +0 -0
  103. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleratingsresponse.py +0 -0
  104. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleresult.py +0 -0
  105. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleresultadditionalattributes.py +0 -0
  106. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articleresults.py +0 -0
  107. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlesort.py +0 -0
  108. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlesortorder.py +0 -0
  109. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/articlewitheditions.py +0 -0
  110. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachment.py +0 -0
  111. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachmentadditionalattributes.py +0 -0
  112. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachmentcontent.py +0 -0
  113. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachmentcontentresult.py +0 -0
  114. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachments.py +0 -0
  115. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachmentsummary.py +0 -0
  116. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/attachmentupload.py +0 -0
  117. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/bookmark.py +0 -0
  118. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/bookmarkresult.py +0 -0
  119. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/cancelimportop.py +0 -0
  120. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/case.py +0 -0
  121. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/caseadditionalattributes.py +0 -0
  122. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/caseanswer.py +0 -0
  123. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/casebase.py +0 -0
  124. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/casebaseresult.py +0 -0
  125. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/casebasesearchsettings.py +0 -0
  126. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/caselistresult.py +0 -0
  127. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/caselistresults.py +0 -0
  128. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/casequestion.py +0 -0
  129. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/casequestiondetail.py +0 -0
  130. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/casesearch.py +0 -0
  131. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/clusterid.py +0 -0
  132. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/clusterresult.py +0 -0
  133. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/clusterresults.py +0 -0
  134. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/comment.py +0 -0
  135. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/comments.py +0 -0
  136. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/compliancearticleresult.py +0 -0
  137. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/compliancearticleresultadditionalattributes.py +0 -0
  138. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/compliancearticleresults.py +0 -0
  139. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/complianceforarticle.py +0 -0
  140. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/complyarticleop.py +0 -0
  141. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/components_schemas_tag.py +0 -0
  142. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/components_schemas_tagcategory.py +0 -0
  143. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/components_schemas_taggroup.py +0 -0
  144. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/configurableattribute.py +0 -0
  145. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/configurableattributes.py +0 -0
  146. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createbookmark.py +0 -0
  147. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createdby.py +0 -0
  148. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createfederatedsearchevent.py +0 -0
  149. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createfederatedsearchresulteventop.py +0 -0
  150. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createimportjobop.py +0 -0
  151. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createimportvalidationjobop.py +0 -0
  152. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createquickpick.py +0 -0
  153. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createquickpickop.py +0 -0
  154. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createsearchresulteventforconnectors.py +0 -0
  155. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createsearchresulteventforconnectorsop.py +0 -0
  156. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createsignedurlop.py +0 -0
  157. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createviewedsearchresulteventforconnectors.py +0 -0
  158. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/createviewedsearchresultseventforconnectorsop.py +0 -0
  159. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/customattribute.py +0 -0
  160. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/deletebookmarkop.py +0 -0
  161. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/deletesuggestionop.py +0 -0
  162. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/department.py +0 -0
  163. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/detailfield.py +0 -0
  164. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/displayfield.py +0 -0
  165. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/dynamiccluster.py +0 -0
  166. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/dynamicsearch.py +0 -0
  167. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/edition.py +0 -0
  168. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/editionwithcontent.py +0 -0
  169. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/executeprompt.py +0 -0
  170. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/executepromptop.py +0 -0
  171. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/executepromptresponse.py +0 -0
  172. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/exportcontentop.py +0 -0
  173. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/exportstatus.py +0 -0
  174. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/feedbackarticleforsuggestion.py +0 -0
  175. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/folderbreadcrumb.py +0 -0
  176. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/foldersummary.py +0 -0
  177. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getacknowledgedcompliancearticlesop.py +0 -0
  178. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getallarticlelistsop.py +0 -0
  179. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getallcasebasesreleasesop.py +0 -0
  180. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getallcasesop.py +0 -0
  181. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getallportalsop.py +0 -0
  182. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getallprofilesinportalop.py +0 -0
  183. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getallquickpicksop.py +0 -0
  184. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getalltopicsop.py +0 -0
  185. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getalluserprofilesop.py +0 -0
  186. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getancestortopicsop.py +0 -0
  187. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getannouncementarticlesop.py +0 -0
  188. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticleattachmentbyidop.py +0 -0
  189. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticlebyidop.py +0 -0
  190. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticlebyidwitheditionsop.py +0 -0
  191. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticleeditiondetailsop.py +0 -0
  192. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticlelistdetailsop.py +0 -0
  193. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticlepermissionsbyidop.py +0 -0
  194. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticlepersonalizationop.py +0 -0
  195. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticleratingsop.py +0 -0
  196. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getarticlesintopicop.py +0 -0
  197. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getattachmentbyidinportalop.py +0 -0
  198. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getbestanswerop.py +0 -0
  199. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getbookmarkop.py +0 -0
  200. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getcasebasereleasebyidop.py +0 -0
  201. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getcasebyidop.py +0 -0
  202. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getchildtopicsop.py +0 -0
  203. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getclusterbycasebasereleaseidop.py +0 -0
  204. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getimportstatusop.py +0 -0
  205. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getmyportalsop.py +0 -0
  206. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getmysubscriptionop.py +0 -0
  207. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getpendingcompliancearticlesop.py +0 -0
  208. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getpopulararticlesop.py +0 -0
  209. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getportaldetailsbyidop.py +0 -0
  210. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getprompttemplatebyidop.py +0 -0
  211. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getprompttemplatesop.py +0 -0
  212. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getrelatedarticlesforsuggestionop.py +0 -0
  213. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getrelatedarticlesop.py +0 -0
  214. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getsuggestionattachmentbyidop.py +0 -0
  215. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getsuggestionattachmentsop.py +0 -0
  216. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getsuggestioncommentsop.py +0 -0
  217. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getsuggestionop.py +0 -0
  218. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/gettagcategoriesforinterestforportalop.py +0 -0
  219. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/gettopicbreadcrumbforarticleop.py +0 -0
  220. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getuserdetailsop.py +0 -0
  221. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/getusermilestonesop.py +0 -0
  222. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/ghsearchresult.py +0 -0
  223. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/ghstepsearchrequest.py +0 -0
  224. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/image.py +0 -0
  225. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/kblanguage.py +0 -0
  226. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/kblanguagecode.py +0 -0
  227. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/kblanguages.py +0 -0
  228. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/l10nstring.py +0 -0
  229. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/languagecode.py +0 -0
  230. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/link.py +0 -0
  231. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/makesuggestionop.py +0 -0
  232. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/metadata.py +0 -0
  233. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/milestone.py +0 -0
  234. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/milestonename.py +0 -0
  235. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/milestones.py +0 -0
  236. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/modifiedby.py +0 -0
  237. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/modifysuggestion.py +0 -0
  238. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/modifysuggestionsop.py +0 -0
  239. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/order.py +0 -0
  240. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/ownedby.py +0 -0
  241. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/paginationinfo.py +0 -0
  242. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/personalization.py +0 -0
  243. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/portal.py +0 -0
  244. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/portalresult.py +0 -0
  245. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/portalsettings.py +0 -0
  246. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/profile.py +0 -0
  247. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/profileresult.py +0 -0
  248. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/prompttemplate.py +0 -0
  249. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/publishprofile.py +0 -0
  250. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/publishview.py +0 -0
  251. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/question.py +0 -0
  252. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/questionandanswer.py +0 -0
  253. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/quickpickrating.py +0 -0
  254. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/quickpickresult.py +0 -0
  255. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/quickpickresults.py +0 -0
  256. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/ratearticleop.py +0 -0
  257. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/referenceresponse.py +0 -0
  258. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/rejectghsolutionop.py +0 -0
  259. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/relatedquestions.py +0 -0
  260. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/replacement.py +0 -0
  261. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/requiredlanguagecode.py +0 -0
  262. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/restorequickpickop.py +0 -0
  263. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/retrievechunksop.py +0 -0
  264. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/retrieverequest.py +0 -0
  265. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/retrieveresponse.py +0 -0
  266. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/role.py +0 -0
  267. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/roletemplate.py +0 -0
  268. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_answer.py +0 -0
  269. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_customattribute.py +0 -0
  270. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_link.py +0 -0
  271. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_tag.py +0 -0
  272. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_tagcategory.py +0 -0
  273. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_taggroup.py +0 -0
  274. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_tags.py +0 -0
  275. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/schemas_wserrorcommon.py +0 -0
  276. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/searchfilterattribute.py +0 -0
  277. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/searchreplacement.py +0 -0
  278. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/searchresult.py +0 -0
  279. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/searchsuggestionop.py +0 -0
  280. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/security.py +0 -0
  281. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/selectuserprofileop.py +0 -0
  282. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/sessioncontextvariable.py +0 -0
  283. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/shorturl.py +0 -0
  284. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/sortidname.py +0 -0
  285. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/sortidnamedepartment.py +0 -0
  286. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/stage.py +0 -0
  287. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/startghsearchop.py +0 -0
  288. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/startquestionandanswer.py +0 -0
  289. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/staticreplacement.py +0 -0
  290. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/stepghsearchop.py +0 -0
  291. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/stringattributevalue.py +0 -0
  292. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/structuredauthoringfields.py +0 -0
  293. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/subscribearticleop.py +0 -0
  294. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/suggestionadditionalattributes.py +0 -0
  295. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/suggestionattachment.py +0 -0
  296. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/suggestions.py +0 -0
  297. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/tag.py +0 -0
  298. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/tagcategoriesforinterest.py +0 -0
  299. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/tagcategory.py +0 -0
  300. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/taggroup.py +0 -0
  301. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/taggroups.py +0 -0
  302. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/tags.py +0 -0
  303. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topic.py +0 -0
  304. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topicadditionalattributes.py +0 -0
  305. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topicbreadcrumb.py +0 -0
  306. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topicresult.py +0 -0
  307. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topicsummary.py +0 -0
  308. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topictreenode.py +0 -0
  309. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/topictreeresult.py +0 -0
  310. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/unsubscribearticleop.py +0 -0
  311. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/userdetails.py +0 -0
  312. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/userprofile.py +0 -0
  313. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/userprofiles.py +0 -0
  314. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/userview.py +0 -0
  315. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/validateimportcontent.py +0 -0
  316. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/virtualcase.py +0 -0
  317. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/workflow.py +0 -0
  318. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/workflowmilestone.py +0 -0
  319. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/models/wserrorcommon.py +0 -0
  320. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/populararticles.py +0 -0
  321. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_attachment.py +0 -0
  322. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_bookmark.py +0 -0
  323. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_sdk.py +0 -0
  324. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_userdetails.py +0 -0
  325. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/portal_userprofile.py +0 -0
  326. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/prompt.py +0 -0
  327. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/py.typed +0 -0
  328. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/retrieve.py +0 -0
  329. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/sdk.py +0 -0
  330. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/sdkconfiguration.py +0 -0
  331. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/search.py +0 -0
  332. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/types/__init__.py +0 -0
  333. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/types/basemodel.py +0 -0
  334. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/usermilestones.py +0 -0
  335. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/__init__.py +0 -0
  336. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/annotations.py +0 -0
  337. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/datetimes.py +0 -0
  338. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/enums.py +0 -0
  339. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/eventstreaming.py +0 -0
  340. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/forms.py +0 -0
  341. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/headers.py +0 -0
  342. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/logger.py +0 -0
  343. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/metadata.py +0 -0
  344. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/queryparams.py +0 -0
  345. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/requestbodies.py +0 -0
  346. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/retries.py +0 -0
  347. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/security.py +0 -0
  348. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/serializers.py +0 -0
  349. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/unmarshal_json_response.py +0 -0
  350. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/url.py +0 -0
  351. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python/utils/values.py +0 -0
  352. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python.egg-info/dependency_links.txt +0 -0
  353. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python.egg-info/requires.txt +0 -0
  354. {egain_api_python-0.2.1 → egain_api_python-0.3.0}/src/egain_api_python.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: egain-api-python
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -275,6 +275,11 @@ with Egain(
275
275
  #### [content.import_](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md)
276
276
 
277
277
  * [create_import_job](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_import_job) - Create Import Job
278
+ * [get_validation_hooks](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_validation_hooks) - Get validation hooks
279
+ * [create_validation_hook](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_validation_hook) - Create validation hook
280
+ * [get_validation_hook_versions](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_validation_hook_versions) - Get all versions for a validation hook
281
+ * [create_validation_hook_version](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_validation_hook_version) - Update validation hook version
282
+ * [get_validation_hook_version](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_validation_hook_version) - Get validation hook version details
278
283
  * [get_import_status](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_import_status) - Get Job Status
279
284
  * [create_import_validation_job](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_import_validation_job) - Create Validation Job
280
285
  * [cancel_import](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#cancel_import) - Cancel Job
@@ -284,6 +289,7 @@ with Egain(
284
289
  * [get_article_by_id](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_article_by_id) - Get Article by ID
285
290
  * [get_article_by_id_with_editions](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_article_by_id_with_editions) - Get Article By ID with Editions
286
291
  * [get_article_edition_details](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_article_edition_details) - Get Article Edition Details
292
+ * [get_all_article_types](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_all_article_types) - Get All Article Types in a Department
287
293
  * [add_to_reply](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#add_to_reply) - Add Article to Reply
288
294
  * [add_as_reference](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#add_as_reference) - Add as Reference
289
295
  * [get_articles_in_topic](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_articles_in_topic) - Get Articles in Topic
@@ -371,6 +377,7 @@ with Egain(
371
377
  * [delete_suggestion](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#delete_suggestion) - Delete a Suggestion
372
378
  * [get_related_articles_for_suggestion](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_related_articles_for_suggestion) - Get Related Articles for Suggestion
373
379
  * [get_suggestion_comments](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_suggestion_comments) - Get Suggestion Comments
380
+ * [add_suggestion_comment](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#add_suggestion_comment) - Add a Suggestion Comment
374
381
  * [get_suggestion_attachments](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_suggestion_attachments) - Get Suggestion Attachments
375
382
  * [get_suggestion_attachment_by_id](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_suggestion_attachment_by_id) - Get Suggestion Attachment by ID
376
383
 
@@ -508,8 +515,8 @@ with Egain(
508
515
 
509
516
 
510
517
  **Inherit from [`EgainError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/egainerror.py)**:
511
- * [`SchemasWSErrorCommon`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/schemaswserrorcommon.py): Not acceptable. Applicable to 4 of 76 methods.*
512
- * [`BadRequestError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/badrequesterror.py): Bad Request. Status code `400`. Applicable to 1 of 76 methods.*
518
+ * [`SchemasWSErrorCommon`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/schemaswserrorcommon.py): Not acceptable. Status code `406`. Applicable to 4 of 83 methods.*
519
+ * [`BadRequestError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/badrequesterror.py): Bad Request. Status code `400`. Applicable to 1 of 83 methods.*
513
520
  * [`ResponseValidationError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
514
521
 
515
522
  </details>
@@ -262,6 +262,11 @@ with Egain(
262
262
  #### [content.import_](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md)
263
263
 
264
264
  * [create_import_job](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_import_job) - Create Import Job
265
+ * [get_validation_hooks](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_validation_hooks) - Get validation hooks
266
+ * [create_validation_hook](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_validation_hook) - Create validation hook
267
+ * [get_validation_hook_versions](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_validation_hook_versions) - Get all versions for a validation hook
268
+ * [create_validation_hook_version](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_validation_hook_version) - Update validation hook version
269
+ * [get_validation_hook_version](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_validation_hook_version) - Get validation hook version details
265
270
  * [get_import_status](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#get_import_status) - Get Job Status
266
271
  * [create_import_validation_job](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#create_import_validation_job) - Create Validation Job
267
272
  * [cancel_import](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/import/README.md#cancel_import) - Cancel Job
@@ -271,6 +276,7 @@ with Egain(
271
276
  * [get_article_by_id](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_article_by_id) - Get Article by ID
272
277
  * [get_article_by_id_with_editions](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_article_by_id_with_editions) - Get Article By ID with Editions
273
278
  * [get_article_edition_details](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_article_edition_details) - Get Article Edition Details
279
+ * [get_all_article_types](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_all_article_types) - Get All Article Types in a Department
274
280
  * [add_to_reply](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#add_to_reply) - Add Article to Reply
275
281
  * [add_as_reference](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#add_as_reference) - Add as Reference
276
282
  * [get_articles_in_topic](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalarticle/README.md#get_articles_in_topic) - Get Articles in Topic
@@ -358,6 +364,7 @@ with Egain(
358
364
  * [delete_suggestion](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#delete_suggestion) - Delete a Suggestion
359
365
  * [get_related_articles_for_suggestion](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_related_articles_for_suggestion) - Get Related Articles for Suggestion
360
366
  * [get_suggestion_comments](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_suggestion_comments) - Get Suggestion Comments
367
+ * [add_suggestion_comment](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#add_suggestion_comment) - Add a Suggestion Comment
361
368
  * [get_suggestion_attachments](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_suggestion_attachments) - Get Suggestion Attachments
362
369
  * [get_suggestion_attachment_by_id](https://github.com/eGain/egain-api-python/blob/main/docs/sdks/portalsuggestion/README.md#get_suggestion_attachment_by_id) - Get Suggestion Attachment by ID
363
370
 
@@ -495,8 +502,8 @@ with Egain(
495
502
 
496
503
 
497
504
  **Inherit from [`EgainError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/egainerror.py)**:
498
- * [`SchemasWSErrorCommon`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/schemaswserrorcommon.py): Not acceptable. Applicable to 4 of 76 methods.*
499
- * [`BadRequestError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/badrequesterror.py): Bad Request. Status code `400`. Applicable to 1 of 76 methods.*
505
+ * [`SchemasWSErrorCommon`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/schemaswserrorcommon.py): Not acceptable. Status code `406`. Applicable to 4 of 83 methods.*
506
+ * [`BadRequestError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/badrequesterror.py): Bad Request. Status code `400`. Applicable to 1 of 83 methods.*
500
507
  * [`ResponseValidationError`](https://github.com/eGain/egain-api-python/blob/main/src/egain_api_python/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
501
508
 
502
509
  </details>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "egain-api-python"
3
- version = "0.2.1"
3
+ version = "0.3.0"
4
4
  description = "Python Client SDK Generated by Speakeasy."
5
5
  authors = [{ name = "Speakeasy" },]
6
6
  readme = "README.md"
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "egain-api-python"
6
- __version__: str = "0.2.1"
6
+ __version__: str = "0.3.0"
7
7
  __openapi_doc_version__: str = "4.0.0"
8
8
  __gen_version__: str = "2.723.11"
9
- __user_agent__: str = "speakeasy-sdk/python 0.2.1 2.723.11 4.0.0 egain-api-python"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.3.0 2.723.11 4.0.0 egain-api-python"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -69,7 +69,7 @@ class AiservicesPrompt(BaseSDK):
69
69
 
70
70
  req = self._build_request(
71
71
  method="POST",
72
- path="/promptmanager/execute/prompt/{promptId}",
72
+ path="/prompt/{promptId}/execute",
73
73
  base_url=base_url,
74
74
  url_variables=url_variables,
75
75
  request=request,
@@ -203,7 +203,7 @@ class AiservicesPrompt(BaseSDK):
203
203
 
204
204
  req = self._build_request_async(
205
205
  method="POST",
206
- path="/promptmanager/execute/prompt/{promptId}",
206
+ path="/prompt/{promptId}/execute",
207
207
  base_url=base_url,
208
208
  url_variables=url_variables,
209
209
  request=request,
@@ -23,6 +23,7 @@ class Export(BaseSDK):
23
23
  models.DataDestination, models.DataDestinationTypedDict
24
24
  ],
25
25
  article_categories: Optional[models.ArticleCategories] = "searchable",
26
+ export_unpublished_only: Optional[bool] = False,
26
27
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
27
28
  server_url: Optional[str] = None,
28
29
  timeout_ms: Optional[int] = None,
@@ -31,7 +32,7 @@ class Export(BaseSDK):
31
32
  r"""Export Knowledge
32
33
 
33
34
  ## Overview
34
- The Content Export API initiates a bulk export of the Knowledge Hub to a client-provided Amazon S3 bucket.
35
+ The Content Export API initiates a bulk export of the Knowledge Hub to a client-provided Amazon S3 bucket or SFTP server path.
35
36
  It returns a URL with a Job ID to enable tracking the status of this asynchronous operation.
36
37
  Each export job can send multiple JSON files, depending on the total number of items to process.
37
38
  More than one bulk export can take place, as needed, one per portal.
@@ -46,9 +47,10 @@ class Export(BaseSDK):
46
47
  :param accept_language: The Language locale accepted by the client (used for locale specific fields in resource representation and in error responses).
47
48
  :param portal_id: The ID of the portal being accessed.<br><br>A portal ID is composed of a 2-4 letter prefix, followed by a dash and 4-15 digits.
48
49
  :param language: The Knowledge Base language in which the content is created.
49
- :param resource_types: Types of Knowledge Hub resources to export. Multiple values can be specified using a comma-separated list: {articles, topics, portals, all}. Details of a single portal are exported. Articles whose state is Published are returned. Portal Attribute Name | Description ------------------------------- | ----------- | id | The ID of the Portal in Readable format. | alternateId | The system-generated ID of the Portal in long format. | name | The name of the Portal. | description | The Portal's description. | departmentId | ID of the department this Portal belongs to. | defaultContentLanguageId | The default ID of the language for the portal content. | Topic Attribute Name | Description | ------------------------------ | ----------- | id | The ID of the Topic in Readable form. | alternateId | The system-generated ID of the Topic in long form. | name | The name of the Topic. | departmentId | ID of the department this Topic belongs to. | modifiedDate | The date when the Topic was last modified on. | topicHomeArticleId | The ID of the Article used as the home page of this Topic. | childCount | Total number of children sub-topis below the current Topic. | subTopicIds | Array with the list of sub-topics (all levels of the topic hierarchy). | parentTopicId | ID of the parent Topic. -1 if it is the root Topic. | imageURL | URL of the inline Topic image. | customAttributes | One or more comma-separated names for Topic custom attributes defined by the user to be returned. | Article Attribute Name | Description | ---------------------- | ----------- | id | The ID of the Article in Readable form. | alternateId | The system-generated ID of the Article in long form. | name | The name of the Article. | additionalInfo | Additional information provided as Article metadata. | type | The Article type object and its attributes. | keywords | A comma-separated list of keywords associated with this Article, provided as metadata. | summary | A brief summary of the Article, provided as metadata. | state | The state of the Article. State P (Published). | departmentId | ID of the department this Article belongs to. | description | The description of the Article. | imageURL | The URL of the image that is present in the Article version. It is used as the thumbnail image for the Article. | attachements | The Article's uploaded attachments and their IDs. | includeInGenAI | Indicates whether this Article is used for eGain's generative AI features. | topicBreadcrumb | Contains a list of topics from the top-level topic to this Article. There may be multiple paths. | versionId | The ID of the Article version that is returned. | expirationDate | The date that the Article is set to expire. | averageRating | Average rating of the Article. | timesRated | Number or times the Article was rated. | availabilityDate | The date the Article is set to be available. | modifiedDate | The date that the Article was last modified on. | articleMacro | The macro of the Article. | content | path to the Article content in .html format. | customAttributes | One or more comma-separated names for Article custom attributes defined by the user to be returned. | personalization | Article personalization details, incuding tag categories. | editions | The editions of the Article, including the publish profile (view) associated with each edition.
50
+ :param resource_types: Types of Knowledge Hub resources to export. Use 'all' to specify all resource types at once. Below are the attributes that are returned for each resource type specified. ##### Portal Resource Type Attributes Portal Attribute Name | Description ------------------------------- | ----------- | id | The ID of the Portal in Readable format. | alternateId | The system-generated ID of the Portal in long format. | name | The name of the Portal. | description | The Portal's description. | departmentId | ID of the department this Portal belongs to. | defaultContentLanguageId | The default ID of the language for the portal content. ##### Topic Resource Type Attributes | Topic Attribute Name | Description | ------------------------------ | ----------- | id | The ID of the Topic in Readable form. | alternateId | The system-generated ID of the Topic in long form. | name | The name of the Topic. | departmentId | ID of the department this Topic belongs to. | modifiedDate | The date when the Topic was last modified on. | topicHomeArticleId | The ID of the Article used as the home page of this Topic. | childCount | Total number of children sub-topis below the current Topic. | subTopicIds | Array with the list of sub-topics (all levels of the topic hierarchy). | parentTopicId | ID of the parent Topic. -1 if it is the root Topic. | imageURL | URL of the inline Topic image. | customAttributes | One or more comma-separated names for Topic custom attributes defined by the user to be returned. ##### Article Resource Type Attributes Export article's attributes returned are aligned with the response of the [Get Article By ID with Editions](../article/getarticlebyidwitheditions) API.
50
51
  :param data_destination:
51
- :param article_categories: Category of articles to return. All includes browsable and searchable.
52
+ :param article_categories: Category of articles to return. If all is selected, it includes both browsable and searchable articles.
53
+ :param export_unpublished_only: Determines which article version to export. If true, the latest unpublished version will be exported for each article where available, and articles that do not have an unpublished version will be omitted from the export. If this property is false or omitted, the latest published version will be exported for each article where available. Each request exports either all published or all unpublished article versions in a portal; never both.
52
54
  :param retries: Override the default retry configuration for this method
53
55
  :param server_url: Override the default server URL for this method
54
56
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -72,6 +74,7 @@ class Export(BaseSDK):
72
74
  language=utils.get_pydantic_model(
73
75
  language, models.KnowledgeExportLanguage
74
76
  ),
77
+ export_unpublished_only=export_unpublished_only,
75
78
  resource_types=resource_types,
76
79
  data_destination=utils.get_pydantic_model(
77
80
  data_destination, models.DataDestination
@@ -117,7 +120,7 @@ class Export(BaseSDK):
117
120
  ),
118
121
  ),
119
122
  request=req,
120
- error_status_codes=["400", "401", "4XX", "500", "5XX"],
123
+ error_status_codes=["400", "401", "403", "404", "406", "4XX", "500", "5XX"],
121
124
  retry_config=retry_config,
122
125
  )
123
126
 
@@ -126,7 +129,9 @@ class Export(BaseSDK):
126
129
  return models.ExportContentResponse(
127
130
  headers=utils.get_response_headers(http_res.headers)
128
131
  )
129
- if utils.match_response(http_res, ["400", "401"], "application/json"):
132
+ if utils.match_response(
133
+ http_res, ["400", "401", "403", "404", "406"], "application/json"
134
+ ):
130
135
  response_data = unmarshal_json_response(errors.WSErrorCommonData, http_res)
131
136
  raise errors.WSErrorCommon(response_data, http_res)
132
137
  if utils.match_response(http_res, "500", "application/json"):
@@ -158,6 +163,7 @@ class Export(BaseSDK):
158
163
  models.DataDestination, models.DataDestinationTypedDict
159
164
  ],
160
165
  article_categories: Optional[models.ArticleCategories] = "searchable",
166
+ export_unpublished_only: Optional[bool] = False,
161
167
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
162
168
  server_url: Optional[str] = None,
163
169
  timeout_ms: Optional[int] = None,
@@ -166,7 +172,7 @@ class Export(BaseSDK):
166
172
  r"""Export Knowledge
167
173
 
168
174
  ## Overview
169
- The Content Export API initiates a bulk export of the Knowledge Hub to a client-provided Amazon S3 bucket.
175
+ The Content Export API initiates a bulk export of the Knowledge Hub to a client-provided Amazon S3 bucket or SFTP server path.
170
176
  It returns a URL with a Job ID to enable tracking the status of this asynchronous operation.
171
177
  Each export job can send multiple JSON files, depending on the total number of items to process.
172
178
  More than one bulk export can take place, as needed, one per portal.
@@ -181,9 +187,10 @@ class Export(BaseSDK):
181
187
  :param accept_language: The Language locale accepted by the client (used for locale specific fields in resource representation and in error responses).
182
188
  :param portal_id: The ID of the portal being accessed.<br><br>A portal ID is composed of a 2-4 letter prefix, followed by a dash and 4-15 digits.
183
189
  :param language: The Knowledge Base language in which the content is created.
184
- :param resource_types: Types of Knowledge Hub resources to export. Multiple values can be specified using a comma-separated list: {articles, topics, portals, all}. Details of a single portal are exported. Articles whose state is Published are returned. Portal Attribute Name | Description ------------------------------- | ----------- | id | The ID of the Portal in Readable format. | alternateId | The system-generated ID of the Portal in long format. | name | The name of the Portal. | description | The Portal's description. | departmentId | ID of the department this Portal belongs to. | defaultContentLanguageId | The default ID of the language for the portal content. | Topic Attribute Name | Description | ------------------------------ | ----------- | id | The ID of the Topic in Readable form. | alternateId | The system-generated ID of the Topic in long form. | name | The name of the Topic. | departmentId | ID of the department this Topic belongs to. | modifiedDate | The date when the Topic was last modified on. | topicHomeArticleId | The ID of the Article used as the home page of this Topic. | childCount | Total number of children sub-topis below the current Topic. | subTopicIds | Array with the list of sub-topics (all levels of the topic hierarchy). | parentTopicId | ID of the parent Topic. -1 if it is the root Topic. | imageURL | URL of the inline Topic image. | customAttributes | One or more comma-separated names for Topic custom attributes defined by the user to be returned. | Article Attribute Name | Description | ---------------------- | ----------- | id | The ID of the Article in Readable form. | alternateId | The system-generated ID of the Article in long form. | name | The name of the Article. | additionalInfo | Additional information provided as Article metadata. | type | The Article type object and its attributes. | keywords | A comma-separated list of keywords associated with this Article, provided as metadata. | summary | A brief summary of the Article, provided as metadata. | state | The state of the Article. State P (Published). | departmentId | ID of the department this Article belongs to. | description | The description of the Article. | imageURL | The URL of the image that is present in the Article version. It is used as the thumbnail image for the Article. | attachements | The Article's uploaded attachments and their IDs. | includeInGenAI | Indicates whether this Article is used for eGain's generative AI features. | topicBreadcrumb | Contains a list of topics from the top-level topic to this Article. There may be multiple paths. | versionId | The ID of the Article version that is returned. | expirationDate | The date that the Article is set to expire. | averageRating | Average rating of the Article. | timesRated | Number or times the Article was rated. | availabilityDate | The date the Article is set to be available. | modifiedDate | The date that the Article was last modified on. | articleMacro | The macro of the Article. | content | path to the Article content in .html format. | customAttributes | One or more comma-separated names for Article custom attributes defined by the user to be returned. | personalization | Article personalization details, incuding tag categories. | editions | The editions of the Article, including the publish profile (view) associated with each edition.
190
+ :param resource_types: Types of Knowledge Hub resources to export. Use 'all' to specify all resource types at once. Below are the attributes that are returned for each resource type specified. ##### Portal Resource Type Attributes Portal Attribute Name | Description ------------------------------- | ----------- | id | The ID of the Portal in Readable format. | alternateId | The system-generated ID of the Portal in long format. | name | The name of the Portal. | description | The Portal's description. | departmentId | ID of the department this Portal belongs to. | defaultContentLanguageId | The default ID of the language for the portal content. ##### Topic Resource Type Attributes | Topic Attribute Name | Description | ------------------------------ | ----------- | id | The ID of the Topic in Readable form. | alternateId | The system-generated ID of the Topic in long form. | name | The name of the Topic. | departmentId | ID of the department this Topic belongs to. | modifiedDate | The date when the Topic was last modified on. | topicHomeArticleId | The ID of the Article used as the home page of this Topic. | childCount | Total number of children sub-topis below the current Topic. | subTopicIds | Array with the list of sub-topics (all levels of the topic hierarchy). | parentTopicId | ID of the parent Topic. -1 if it is the root Topic. | imageURL | URL of the inline Topic image. | customAttributes | One or more comma-separated names for Topic custom attributes defined by the user to be returned. ##### Article Resource Type Attributes Export article's attributes returned are aligned with the response of the [Get Article By ID with Editions](../article/getarticlebyidwitheditions) API.
185
191
  :param data_destination:
186
- :param article_categories: Category of articles to return. All includes browsable and searchable.
192
+ :param article_categories: Category of articles to return. If all is selected, it includes both browsable and searchable articles.
193
+ :param export_unpublished_only: Determines which article version to export. If true, the latest unpublished version will be exported for each article where available, and articles that do not have an unpublished version will be omitted from the export. If this property is false or omitted, the latest published version will be exported for each article where available. Each request exports either all published or all unpublished article versions in a portal; never both.
187
194
  :param retries: Override the default retry configuration for this method
188
195
  :param server_url: Override the default server URL for this method
189
196
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -207,6 +214,7 @@ class Export(BaseSDK):
207
214
  language=utils.get_pydantic_model(
208
215
  language, models.KnowledgeExportLanguage
209
216
  ),
217
+ export_unpublished_only=export_unpublished_only,
210
218
  resource_types=resource_types,
211
219
  data_destination=utils.get_pydantic_model(
212
220
  data_destination, models.DataDestination
@@ -252,7 +260,7 @@ class Export(BaseSDK):
252
260
  ),
253
261
  ),
254
262
  request=req,
255
- error_status_codes=["400", "401", "4XX", "500", "5XX"],
263
+ error_status_codes=["400", "401", "403", "404", "406", "4XX", "500", "5XX"],
256
264
  retry_config=retry_config,
257
265
  )
258
266
 
@@ -261,7 +269,9 @@ class Export(BaseSDK):
261
269
  return models.ExportContentResponse(
262
270
  headers=utils.get_response_headers(http_res.headers)
263
271
  )
264
- if utils.match_response(http_res, ["400", "401"], "application/json"):
272
+ if utils.match_response(
273
+ http_res, ["400", "401", "403", "404", "406"], "application/json"
274
+ ):
265
275
  response_data = unmarshal_json_response(errors.WSErrorCommonData, http_res)
266
276
  raise errors.WSErrorCommon(response_data, http_res)
267
277
  if utils.match_response(http_res, "500", "application/json"):
@@ -283,6 +293,7 @@ class Export(BaseSDK):
283
293
  def export_status(
284
294
  self,
285
295
  *,
296
+ accept_language: models.AcceptLanguage,
286
297
  job_id: str,
287
298
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
288
299
  server_url: Optional[str] = None,
@@ -313,6 +324,7 @@ class Export(BaseSDK):
313
324
  * This API requires a site license (SKU: EG-CL-RTKA-PT).
314
325
 
315
326
 
327
+ :param accept_language: The Language locale accepted by the client (used for locale specific fields in resource representation and in error responses).
316
328
  :param job_id: **Example Usage:** ```bash GET /content/export/7A84B875-6F75-4C7B-B137-0632B62DB0BD/status ```
317
329
  :param retries: Override the default retry configuration for this method
318
330
  :param server_url: Override the default server URL for this method
@@ -330,6 +342,7 @@ class Export(BaseSDK):
330
342
  base_url = self._get_url(base_url, url_variables)
331
343
 
332
344
  request = models.ExportStatusRequest(
345
+ accept_language=accept_language,
333
346
  job_id=job_id,
334
347
  )
335
348
 
@@ -399,6 +412,7 @@ class Export(BaseSDK):
399
412
  async def export_status_async(
400
413
  self,
401
414
  *,
415
+ accept_language: models.AcceptLanguage,
402
416
  job_id: str,
403
417
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
404
418
  server_url: Optional[str] = None,
@@ -429,6 +443,7 @@ class Export(BaseSDK):
429
443
  * This API requires a site license (SKU: EG-CL-RTKA-PT).
430
444
 
431
445
 
446
+ :param accept_language: The Language locale accepted by the client (used for locale specific fields in resource representation and in error responses).
432
447
  :param job_id: **Example Usage:** ```bash GET /content/export/7A84B875-6F75-4C7B-B137-0632B62DB0BD/status ```
433
448
  :param retries: Override the default retry configuration for this method
434
449
  :param server_url: Override the default server URL for this method
@@ -446,6 +461,7 @@ class Export(BaseSDK):
446
461
  base_url = self._get_url(base_url, url_variables)
447
462
 
448
463
  request = models.ExportStatusRequest(
464
+ accept_language=accept_language,
449
465
  job_id=job_id,
450
466
  )
451
467
 
@@ -966,7 +966,7 @@ class Guidedhelp(BaseSDK):
966
966
  :param language: The language that describes the details of a resource. Resources available in different languages may differ from each other.<li>If <code>lang</code> is not passed, then the portal's default language is used.</li>
967
967
  :param gh_custom_additional_attributes:
968
968
  :param questions: Pre-answered Questions in Guided Help search
969
- :param profile_id: The ID of the guided help profile.<br> 1 will always be the **system profile**.
969
+ :param profile_id: The ID of the guided help profile. 1 will always be the **system profile**.
970
970
  :param session_variable: Session variables used to give Guided Help additional context.
971
971
  :param start_over: Restart the current Guided Help search with the existing context along with session variable context.
972
972
  :param use_live_release: Use current live release snapshot of the Casebase otherwise use the authoring release.
@@ -1143,7 +1143,7 @@ class Guidedhelp(BaseSDK):
1143
1143
  :param language: The language that describes the details of a resource. Resources available in different languages may differ from each other.<li>If <code>lang</code> is not passed, then the portal's default language is used.</li>
1144
1144
  :param gh_custom_additional_attributes:
1145
1145
  :param questions: Pre-answered Questions in Guided Help search
1146
- :param profile_id: The ID of the guided help profile.<br> 1 will always be the **system profile**.
1146
+ :param profile_id: The ID of the guided help profile. 1 will always be the **system profile**.
1147
1147
  :param session_variable: Session variables used to give Guided Help additional context.
1148
1148
  :param start_over: Restart the current Guided Help search with the existing context along with session variable context.
1149
1149
  :param use_live_release: Use current live release snapshot of the Casebase otherwise use the authoring release.
@@ -2169,6 +2169,7 @@ class Guidedhelp(BaseSDK):
2169
2169
  "403",
2170
2170
  "404",
2171
2171
  "406",
2172
+ "412",
2172
2173
  "415",
2173
2174
  "4XX",
2174
2175
  "500",
@@ -2181,7 +2182,7 @@ class Guidedhelp(BaseSDK):
2181
2182
  if utils.match_response(http_res, "201", "*"):
2182
2183
  return
2183
2184
  if utils.match_response(
2184
- http_res, ["400", "401", "403", "404", "406"], "application/json"
2185
+ http_res, ["400", "401", "403", "404", "406", "412"], "application/json"
2185
2186
  ):
2186
2187
  response_data = unmarshal_json_response(errors.WSErrorCommonData, http_res)
2187
2188
  raise errors.WSErrorCommon(response_data, http_res)
@@ -2300,6 +2301,7 @@ class Guidedhelp(BaseSDK):
2300
2301
  "403",
2301
2302
  "404",
2302
2303
  "406",
2304
+ "412",
2303
2305
  "415",
2304
2306
  "4XX",
2305
2307
  "500",
@@ -2312,7 +2314,7 @@ class Guidedhelp(BaseSDK):
2312
2314
  if utils.match_response(http_res, "201", "*"):
2313
2315
  return
2314
2316
  if utils.match_response(
2315
- http_res, ["400", "401", "403", "404", "406"], "application/json"
2317
+ http_res, ["400", "401", "403", "404", "406", "412"], "application/json"
2316
2318
  ):
2317
2319
  response_data = unmarshal_json_response(errors.WSErrorCommonData, http_res)
2318
2320
  raise errors.WSErrorCommon(response_data, http_res)
@@ -2431,6 +2433,7 @@ class Guidedhelp(BaseSDK):
2431
2433
  "403",
2432
2434
  "404",
2433
2435
  "406",
2436
+ "412",
2434
2437
  "415",
2435
2438
  "4XX",
2436
2439
  "500",
@@ -2443,7 +2446,7 @@ class Guidedhelp(BaseSDK):
2443
2446
  if utils.match_response(http_res, "201", "*"):
2444
2447
  return
2445
2448
  if utils.match_response(
2446
- http_res, ["400", "401", "403", "404", "406"], "application/json"
2449
+ http_res, ["400", "401", "403", "404", "406", "412"], "application/json"
2447
2450
  ):
2448
2451
  response_data = unmarshal_json_response(errors.WSErrorCommonData, http_res)
2449
2452
  raise errors.WSErrorCommon(response_data, http_res)
@@ -2562,6 +2565,7 @@ class Guidedhelp(BaseSDK):
2562
2565
  "403",
2563
2566
  "404",
2564
2567
  "406",
2568
+ "412",
2565
2569
  "415",
2566
2570
  "4XX",
2567
2571
  "500",
@@ -2574,7 +2578,7 @@ class Guidedhelp(BaseSDK):
2574
2578
  if utils.match_response(http_res, "201", "*"):
2575
2579
  return
2576
2580
  if utils.match_response(
2577
- http_res, ["400", "401", "403", "404", "406"], "application/json"
2581
+ http_res, ["400", "401", "403", "404", "406", "412"], "application/json"
2578
2582
  ):
2579
2583
  response_data = unmarshal_json_response(errors.WSErrorCommonData, http_res)
2580
2584
  raise errors.WSErrorCommon(response_data, http_res)