smartsheet-python-sdk 1.3.0__tar.gz → 1.3.1__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 (270) hide show
  1. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/.travis.yml +1 -1
  2. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/CHANGELOG.md +31 -2
  3. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/PKG-INFO +3 -2
  4. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/README.rst +2 -1
  5. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/.buildinfo +1 -1
  6. smartsheet-python-sdk-1.3.1/docs/_sources/smartsheet.models.enums.rst.txt +262 -0
  7. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_sources/smartsheet.models.rst.txt +47 -0
  8. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/documentation_options.js +1 -1
  9. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/genindex.html +811 -41
  10. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/index.html +5 -5
  11. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/modules.html +10 -4
  12. smartsheet-python-sdk-1.3.1/docs/objects.inv +0 -0
  13. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/py-modindex.html +189 -4
  14. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/search.html +4 -4
  15. smartsheet-python-sdk-1.3.1/docs/searchindex.js +1 -0
  16. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/smartsheet.html +294 -36
  17. smartsheet-python-sdk-1.3.1/docs/smartsheet.models.enums.html +1749 -0
  18. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/smartsheet.models.html +376 -4
  19. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/setup.py +2 -1
  20. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/cells.py +1 -1
  21. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/__init__.py +5 -0
  22. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/attachment.py +10 -37
  23. smartsheet-python-sdk-1.3.1/smartsheet/models/automation_action.py +163 -0
  24. smartsheet-python-sdk-1.3.1/smartsheet/models/automation_rule.py +164 -0
  25. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/cell_link.py +4 -16
  26. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/column.py +10 -57
  27. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/criteria.py +13 -39
  28. smartsheet-python-sdk-1.3.1/smartsheet/models/cross_sheet_reference.py +135 -0
  29. smartsheet-python-sdk-1.3.1/smartsheet/models/currency.py +65 -0
  30. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/discussion.py +4 -13
  31. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/__init__.py +51 -0
  32. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/access_level.py +25 -0
  33. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/attachment_parent_type.py +23 -0
  34. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/attachment_sub_type.py +26 -0
  35. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/attachment_type.py +29 -0
  36. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/automation_action_frequency.py +24 -0
  37. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/automation_action_type.py +23 -0
  38. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/automation_rule_disabled_reason.py +27 -0
  39. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/cell_link_status.py +28 -0
  40. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/column_type.py +29 -0
  41. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/criteria_target.py +21 -0
  42. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/cross_sheet_reference_status.py +28 -0
  43. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/currency_code.py +43 -0
  44. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/day_descriptors.py +30 -0
  45. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/day_ordinal.py +25 -0
  46. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/global_template.py +23 -0
  47. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/operator.py +58 -0
  48. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/paper_type.py +29 -0
  49. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/predecessor_type.py +24 -0
  50. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/publish_accessible_by.py +22 -0
  51. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/schedule_type.py +25 -0
  52. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/share_scope.py +22 -0
  53. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/share_type.py +22 -0
  54. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/sheet_email_format.py +23 -0
  55. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/sheet_filter_operator.py +22 -0
  56. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/sheet_filter_type.py +23 -0
  57. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/sort_direction.py +22 -0
  58. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/symbol.py +45 -0
  59. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/system_column_type.py +25 -0
  60. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/update_request_status.py +23 -0
  61. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/user_status.py +23 -0
  62. smartsheet-python-sdk-1.3.1/smartsheet/models/enums/widget_type.py +28 -0
  63. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/format_details.py +4 -17
  64. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/image.py +8 -0
  65. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/predecessor.py +4 -12
  66. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/report_publish.py +4 -10
  67. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/row.py +4 -13
  68. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/schedule.py +8 -42
  69. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sent_update_request.py +4 -11
  70. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/share.py +10 -30
  71. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sheet.py +16 -14
  72. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sheet_email.py +4 -11
  73. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sheet_filter.py +13 -11
  74. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sheet_filter_details.py +4 -10
  75. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sheet_publish.py +7 -15
  76. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/shortcut_data_item.py +4 -17
  77. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sight.py +4 -11
  78. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sight_publish.py +4 -10
  79. smartsheet-python-sdk-1.3.1/smartsheet/models/sort_criterion.py +65 -0
  80. smartsheet-python-sdk-1.3.1/smartsheet/models/sort_specifier.py +56 -0
  81. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/template.py +9 -22
  82. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/user_model.py +68 -11
  83. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/widget.py +4 -17
  84. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/workspace.py +4 -13
  85. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/reports.py +3 -5
  86. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/sheets.py +193 -5
  87. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/smartsheet.py +2 -3
  88. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/types.py +55 -0
  89. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/users.py +36 -0
  90. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/util.py +5 -0
  91. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/version.py +1 -1
  92. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/workspaces.py +4 -6
  93. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet_python_sdk.egg-info/PKG-INFO +3 -2
  94. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet_python_sdk.egg-info/SOURCES.txt +78 -0
  95. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet_python_sdk.egg-info/requires.txt +1 -0
  96. smartsheet-python-sdk-1.3.1/tests/integration/test_cross_sheet_references.py +30 -0
  97. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_model_attributes.py +20 -20
  98. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_sheets.py +11 -0
  99. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_users.py +9 -0
  100. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/mock_api/mock_api_test_helper.py +1 -2
  101. smartsheet-python-sdk-1.3.1/tests/mock_api/test_mock_api_automation_rules.py +39 -0
  102. smartsheet-python-sdk-1.3.0/docs/objects.inv +0 -0
  103. smartsheet-python-sdk-1.3.0/docs/searchindex.js +0 -1
  104. smartsheet-python-sdk-1.3.0/smartsheet/models/currency.py +0 -93
  105. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/.gitignore +0 -0
  106. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/.nojekyll +0 -0
  107. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/LICENSE.md +0 -0
  108. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/Makefile +0 -0
  109. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/NOTICE +0 -0
  110. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/README.md +0 -0
  111. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/.nojekyll +0 -0
  112. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_sources/index.rst.txt +0 -0
  113. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_sources/modules.rst.txt +0 -0
  114. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_sources/smartsheet.rst.txt +0 -0
  115. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/ajax-loader.gif +0 -0
  116. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/basic.css +0 -0
  117. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/comment-bright.png +0 -0
  118. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/comment-close.png +0 -0
  119. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/comment.png +0 -0
  120. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/css/badge_only.css +0 -0
  121. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/css/theme.css +0 -0
  122. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/doctools.js +0 -0
  123. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/down-pressed.png +0 -0
  124. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/down.png +0 -0
  125. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/file.png +0 -0
  126. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/Inconsolata-Bold.ttf +0 -0
  127. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/Inconsolata-Regular.ttf +0 -0
  128. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/Lato-Bold.ttf +0 -0
  129. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/Lato-Regular.ttf +0 -0
  130. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/RobotoSlab-Bold.ttf +0 -0
  131. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/RobotoSlab-Regular.ttf +0 -0
  132. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/fontawesome-webfont.eot +0 -0
  133. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/fontawesome-webfont.svg +0 -0
  134. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/fontawesome-webfont.ttf +0 -0
  135. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/fonts/fontawesome-webfont.woff +0 -0
  136. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/jquery-3.2.1.js +0 -0
  137. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/jquery.js +0 -0
  138. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/js/modernizr.min.js +0 -0
  139. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/js/theme.js +0 -0
  140. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/minus.png +0 -0
  141. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/plus.png +0 -0
  142. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/pygments.css +0 -0
  143. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/searchtools.js +0 -0
  144. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/underscore-1.3.1.js +0 -0
  145. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/underscore.js +0 -0
  146. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/up-pressed.png +0 -0
  147. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/up.png +0 -0
  148. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs/_static/websupport.js +0 -0
  149. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs-source/Makefile +0 -0
  150. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs-source/conf.py +0 -0
  151. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/docs-source/index.rst +0 -0
  152. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/pylintrc +0 -0
  153. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/setup.cfg +0 -0
  154. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/__init__.py +0 -0
  155. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/attachments.py +0 -0
  156. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/contacts.py +0 -0
  157. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/discussions.py +0 -0
  158. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/exceptions.py +0 -0
  159. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/favorites.py +0 -0
  160. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/folders.py +0 -0
  161. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/groups.py +0 -0
  162. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/home.py +0 -0
  163. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/images.py +0 -0
  164. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/access_token.py +0 -0
  165. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/account.py +0 -0
  166. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/alternate_email.py +0 -0
  167. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/auto_number_format.py +0 -0
  168. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/boolean_object_value.py +0 -0
  169. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/bulk_item_failure.py +0 -0
  170. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/bulk_item_result.py +0 -0
  171. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/cell.py +0 -0
  172. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/cell_data_item.py +0 -0
  173. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/cell_history.py +0 -0
  174. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/comment.py +0 -0
  175. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/contact.py +0 -0
  176. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/contact_object_value.py +0 -0
  177. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/contact_option.py +0 -0
  178. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/container_destination.py +0 -0
  179. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/copy_or_move_row_destination.py +0 -0
  180. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/copy_or_move_row_directive.py +0 -0
  181. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/copy_or_move_row_result.py +0 -0
  182. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/date_object_value.py +0 -0
  183. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/downloaded_file.py +0 -0
  184. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/duration.py +0 -0
  185. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/email.py +0 -0
  186. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/error.py +0 -0
  187. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/error_result.py +0 -0
  188. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/explicit_null.py +0 -0
  189. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/favorite.py +0 -0
  190. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/folder.py +0 -0
  191. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/font_family.py +0 -0
  192. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/format_tables.py +0 -0
  193. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/group.py +0 -0
  194. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/group_member.py +0 -0
  195. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/home.py +0 -0
  196. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/hyperlink.py +0 -0
  197. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/image_url.py +0 -0
  198. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/image_url_map.py +0 -0
  199. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/index_result.py +0 -0
  200. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/json_object.py +0 -0
  201. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/multi_row_email.py +0 -0
  202. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/number_object_value.py +0 -0
  203. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/o_auth_error.py +0 -0
  204. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/object_value.py +0 -0
  205. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/predecessor_list.py +0 -0
  206. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/primitive_object_value.py +0 -0
  207. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/project_settings.py +0 -0
  208. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/recipient.py +0 -0
  209. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/report.py +0 -0
  210. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/report_cell.py +0 -0
  211. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/report_column.py +0 -0
  212. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/report_row.py +0 -0
  213. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/result.py +0 -0
  214. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/row_email.py +0 -0
  215. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/row_mapping.py +0 -0
  216. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/search_result.py +0 -0
  217. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/search_result_item.py +0 -0
  218. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/server_info.py +0 -0
  219. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/sheet_user_settings.py +0 -0
  220. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/source.py +0 -0
  221. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/string_object_value.py +0 -0
  222. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/update_request.py +0 -0
  223. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/user.py +0 -0
  224. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/user_profile.py +0 -0
  225. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/version.py +0 -0
  226. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/webhook.py +0 -0
  227. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/webhook_secret.py +0 -0
  228. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/webhook_stats.py +0 -0
  229. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/models/widget_content.py +0 -0
  230. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/passthrough.py +0 -0
  231. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/search.py +0 -0
  232. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/server.py +0 -0
  233. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/session.py +0 -0
  234. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/sights.py +0 -0
  235. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/templates.py +0 -0
  236. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/token.py +0 -0
  237. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet/webhooks.py +0 -0
  238. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet_python_sdk.egg-info/dependency_links.txt +0 -0
  239. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/smartsheet_python_sdk.egg-info/top_level.txt +0 -0
  240. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/README.md +0 -0
  241. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/conftest.py +0 -0
  242. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/fixtures/calling_all_curs.txt +0 -0
  243. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/fixtures/curly.jpg +0 -0
  244. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/fixtures/moe-curly.jpg +0 -0
  245. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/fixtures/quote.txt +0 -0
  246. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/fixtures/stooges_v1.jpg +0 -0
  247. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/fixtures/stooges_v2.jpg +0 -0
  248. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_attachments.py +0 -0
  249. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_columns.py +0 -0
  250. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_contacts.py +0 -0
  251. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_discussions.py +0 -0
  252. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_favorites.py +0 -0
  253. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_folders.py +0 -0
  254. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_groups.py +0 -0
  255. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_home.py +0 -0
  256. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_object_value.py +0 -0
  257. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_passthrough.py +0 -0
  258. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_regression.py +0 -0
  259. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_reports.py +0 -0
  260. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_rows.py +0 -0
  261. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_server_info.py +0 -0
  262. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_templates.py +0 -0
  263. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_update_requests.py +0 -0
  264. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_webhooks.py +0 -0
  265. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_workspaces.py +0 -0
  266. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/integration/test_zsearch.py +0 -0
  267. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/mock_api/test_mock_api_rows.py +0 -0
  268. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/mock_api/test_mock_api_sheets.py +0 -0
  269. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/mock_api/test_mock_api_sights.py +0 -0
  270. {smartsheet-python-sdk-1.3.0 → smartsheet-python-sdk-1.3.1}/tests/mock_api/test_mock_change_agent.py +0 -0
@@ -19,7 +19,7 @@ before_install:
19
19
  install:
20
20
  - pip install --upgrade pip
21
21
  - pip install certifi
22
- - pip install requests six python-dateutil coverage coveralls[yaml] pytest pytest-travis-fold pytest-instafail requests-toolbelt
22
+ - pip install enum34 requests six python-dateutil coverage coveralls[yaml] pytest pytest-travis-fold pytest-instafail requests-toolbelt
23
23
 
24
24
  script:
25
25
  - smartsheet-sdk-tests/travis_scripts/start_wiremock.sh
@@ -6,11 +6,40 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.3.1] - 2018-3-1
10
+
11
+ ### Added
12
+ - Implemented [cross-sheet References](http://smartsheet-platform.github.io/api-docs/?shell#cross-sheet-references)
13
+ - Updated UserProfile and added support for profile images
14
+ - Added an argument to the client constructor method to externally set the API base URI
15
+ - Implemented [Automation Rules](http://smartsheet-platform.github.io/api-docs/?shell#automation-rules)
16
+ - Implemented row sort objects and [Sort Rows in Sheet](http://smartsheet-platform.github.io/api-docs/?shell#sort-rows-in-sheet) endpoint
17
+ - Added row filter properties to SheetFilter
18
+ - Added ifVersionAfter parameter to Sheet.get_sheet() method
19
+
20
+ ### Changed
21
+ In our efforts to further streamline the SDK, enumerated properties have been changed from type String to type EnumeratedValue, which wraps Python Enum.
22
+ In addition to allowing us to remove a number of redundant string arrays, this also provides the benefit of better code completion (in most IDEs)
23
+ and provides for more programmatic clarity, for example:
24
+ ```
25
+ sheet = smartsheet.Sheets.get_sheet(sheet_id)
26
+ if sheet.access_level == AccessLevel.OWNER:
27
+ # perform some task for OWNER
28
+ ...
29
+ ```
30
+ However, string comparisons will continue to operate as they did previously. No change is required if your code uses comparisons such as:
31
+ ```
32
+ sheet = smartsheet.Sheets.get_sheet(sheet_id)
33
+ if sheet.access_level == 'OWNER':
34
+ # perform some task for OWNER
35
+ ...
36
+ ```
37
+ [enum34](https://pypi.python.org/pypi/enum34) has been added as a required package for the SDK
38
+
9
39
  ## [1.3.0] - 2018-2-21
10
40
 
11
- ## Pre-release SDK version 1.3
41
+ ### Changed
12
42
 
13
- ###Changed
14
43
  Several changes have been made to the SDK to improve both the maintainability of the SDK and the predictability/reliability of the results returned by the SDK. Some of these changes may be breaking to code that currently uses the SDK. The following changes should be reviewed:
15
44
  * The JSON serializer has been changed to ignore `null` values and empty lists (`[]`). A new Smartsheet model, ExplicitNull, is provided for circumstances where there is a need to force the serialization of a null value. As an example, to clear a hyperlink value from a cell, you can perform the following operation:
16
45
  ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: smartsheet-python-sdk
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Library that uses Python to connect to Smartsheet services (using API 2.0).
5
5
  Home-page: http://smartsheet-platform.github.io/api-docs/
6
6
  Author: Smartsheet
@@ -17,7 +17,7 @@ Description: Smartsheet Python SDK
17
17
  System Requirements
18
18
  -------------------
19
19
 
20
- The SDK currently supports Python 2.7, 3.3, 3.4, 3.5, 3.6, pypy, and pypy3.
20
+ The SDK currently supports Python 2.7, 3.4, 3.5, 3.6, pypy, and pypy3.
21
21
  The following packages are required.
22
22
 
23
23
  - `requests <https://pypi.python.org/pypi/requests>`__
@@ -25,6 +25,7 @@ Description: Smartsheet Python SDK
25
25
  - `six <https://pypi.python.org/pypi/six>`__
26
26
  - `certifi <https://pypi.python.org/pypi/certifi>`__
27
27
  - `python-dateutil <https://pypi.python.org/pypi/python-dateutil>`__
28
+ - `enum34 <https://pypi.python.org/pypi/enum34>`__
28
29
 
29
30
  Installation
30
31
  ------------
@@ -8,7 +8,7 @@ applications.
8
8
  System Requirements
9
9
  -------------------
10
10
 
11
- The SDK currently supports Python 2.7, 3.3, 3.4, 3.5, 3.6, pypy, and pypy3.
11
+ The SDK currently supports Python 2.7, 3.4, 3.5, 3.6, pypy, and pypy3.
12
12
  The following packages are required.
13
13
 
14
14
  - `requests <https://pypi.python.org/pypi/requests>`__
@@ -16,6 +16,7 @@ The following packages are required.
16
16
  - `six <https://pypi.python.org/pypi/six>`__
17
17
  - `certifi <https://pypi.python.org/pypi/certifi>`__
18
18
  - `python-dateutil <https://pypi.python.org/pypi/python-dateutil>`__
19
+ - `enum34 <https://pypi.python.org/pypi/enum34>`__
19
20
 
20
21
  Installation
21
22
  ------------
@@ -1,4 +1,4 @@
1
1
  # Sphinx build info version 1
2
2
  # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3
- config: 2a9aefe4202d8f91b6d416ef70220ded
3
+ config: 182ba4142853120fe0a76a6374d55800
4
4
  tags: 645f666f9bcd5a90fca523b33c5a78b7
@@ -0,0 +1,262 @@
1
+ smartsheet.models.enums package
2
+ ===============================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ smartsheet.models.enums.access\_level module
8
+ --------------------------------------------
9
+
10
+ .. automodule:: smartsheet.models.enums.access_level
11
+ :members:
12
+ :undoc-members:
13
+ :show-inheritance:
14
+
15
+ smartsheet.models.enums.attachment\_parent\_type module
16
+ -------------------------------------------------------
17
+
18
+ .. automodule:: smartsheet.models.enums.attachment_parent_type
19
+ :members:
20
+ :undoc-members:
21
+ :show-inheritance:
22
+
23
+ smartsheet.models.enums.attachment\_sub\_type module
24
+ ----------------------------------------------------
25
+
26
+ .. automodule:: smartsheet.models.enums.attachment_sub_type
27
+ :members:
28
+ :undoc-members:
29
+ :show-inheritance:
30
+
31
+ smartsheet.models.enums.attachment\_type module
32
+ -----------------------------------------------
33
+
34
+ .. automodule:: smartsheet.models.enums.attachment_type
35
+ :members:
36
+ :undoc-members:
37
+ :show-inheritance:
38
+
39
+ smartsheet.models.enums.automation\_action\_frequency module
40
+ ------------------------------------------------------------
41
+
42
+ .. automodule:: smartsheet.models.enums.automation_action_frequency
43
+ :members:
44
+ :undoc-members:
45
+ :show-inheritance:
46
+
47
+ smartsheet.models.enums.automation\_action\_type module
48
+ -------------------------------------------------------
49
+
50
+ .. automodule:: smartsheet.models.enums.automation_action_type
51
+ :members:
52
+ :undoc-members:
53
+ :show-inheritance:
54
+
55
+ smartsheet.models.enums.automation\_rule\_disabled\_reason module
56
+ -----------------------------------------------------------------
57
+
58
+ .. automodule:: smartsheet.models.enums.automation_rule_disabled_reason
59
+ :members:
60
+ :undoc-members:
61
+ :show-inheritance:
62
+
63
+ smartsheet.models.enums.cell\_link\_status module
64
+ -------------------------------------------------
65
+
66
+ .. automodule:: smartsheet.models.enums.cell_link_status
67
+ :members:
68
+ :undoc-members:
69
+ :show-inheritance:
70
+
71
+ smartsheet.models.enums.column\_type module
72
+ -------------------------------------------
73
+
74
+ .. automodule:: smartsheet.models.enums.column_type
75
+ :members:
76
+ :undoc-members:
77
+ :show-inheritance:
78
+
79
+ smartsheet.models.enums.criteria\_target module
80
+ -----------------------------------------------
81
+
82
+ .. automodule:: smartsheet.models.enums.criteria_target
83
+ :members:
84
+ :undoc-members:
85
+ :show-inheritance:
86
+
87
+ smartsheet.models.enums.cross\_sheet\_reference\_status module
88
+ --------------------------------------------------------------
89
+
90
+ .. automodule:: smartsheet.models.enums.cross_sheet_reference_status
91
+ :members:
92
+ :undoc-members:
93
+ :show-inheritance:
94
+
95
+ smartsheet.models.enums.currency\_code module
96
+ ---------------------------------------------
97
+
98
+ .. automodule:: smartsheet.models.enums.currency_code
99
+ :members:
100
+ :undoc-members:
101
+ :show-inheritance:
102
+
103
+ smartsheet.models.enums.day\_descriptors module
104
+ -----------------------------------------------
105
+
106
+ .. automodule:: smartsheet.models.enums.day_descriptors
107
+ :members:
108
+ :undoc-members:
109
+ :show-inheritance:
110
+
111
+ smartsheet.models.enums.day\_ordinal module
112
+ -------------------------------------------
113
+
114
+ .. automodule:: smartsheet.models.enums.day_ordinal
115
+ :members:
116
+ :undoc-members:
117
+ :show-inheritance:
118
+
119
+ smartsheet.models.enums.global\_template module
120
+ -----------------------------------------------
121
+
122
+ .. automodule:: smartsheet.models.enums.global_template
123
+ :members:
124
+ :undoc-members:
125
+ :show-inheritance:
126
+
127
+ smartsheet.models.enums.operator module
128
+ ---------------------------------------
129
+
130
+ .. automodule:: smartsheet.models.enums.operator
131
+ :members:
132
+ :undoc-members:
133
+ :show-inheritance:
134
+
135
+ smartsheet.models.enums.paper\_type module
136
+ ------------------------------------------
137
+
138
+ .. automodule:: smartsheet.models.enums.paper_type
139
+ :members:
140
+ :undoc-members:
141
+ :show-inheritance:
142
+
143
+ smartsheet.models.enums.predecessor\_type module
144
+ ------------------------------------------------
145
+
146
+ .. automodule:: smartsheet.models.enums.predecessor_type
147
+ :members:
148
+ :undoc-members:
149
+ :show-inheritance:
150
+
151
+ smartsheet.models.enums.publish\_accessible\_by module
152
+ ------------------------------------------------------
153
+
154
+ .. automodule:: smartsheet.models.enums.publish_accessible_by
155
+ :members:
156
+ :undoc-members:
157
+ :show-inheritance:
158
+
159
+ smartsheet.models.enums.schedule\_type module
160
+ ---------------------------------------------
161
+
162
+ .. automodule:: smartsheet.models.enums.schedule_type
163
+ :members:
164
+ :undoc-members:
165
+ :show-inheritance:
166
+
167
+ smartsheet.models.enums.share\_scope module
168
+ -------------------------------------------
169
+
170
+ .. automodule:: smartsheet.models.enums.share_scope
171
+ :members:
172
+ :undoc-members:
173
+ :show-inheritance:
174
+
175
+ smartsheet.models.enums.share\_type module
176
+ ------------------------------------------
177
+
178
+ .. automodule:: smartsheet.models.enums.share_type
179
+ :members:
180
+ :undoc-members:
181
+ :show-inheritance:
182
+
183
+ smartsheet.models.enums.sheet\_email\_format module
184
+ ---------------------------------------------------
185
+
186
+ .. automodule:: smartsheet.models.enums.sheet_email_format
187
+ :members:
188
+ :undoc-members:
189
+ :show-inheritance:
190
+
191
+ smartsheet.models.enums.sheet\_filter\_operator module
192
+ ------------------------------------------------------
193
+
194
+ .. automodule:: smartsheet.models.enums.sheet_filter_operator
195
+ :members:
196
+ :undoc-members:
197
+ :show-inheritance:
198
+
199
+ smartsheet.models.enums.sheet\_filter\_type module
200
+ --------------------------------------------------
201
+
202
+ .. automodule:: smartsheet.models.enums.sheet_filter_type
203
+ :members:
204
+ :undoc-members:
205
+ :show-inheritance:
206
+
207
+ smartsheet.models.enums.sort\_direction module
208
+ ----------------------------------------------
209
+
210
+ .. automodule:: smartsheet.models.enums.sort_direction
211
+ :members:
212
+ :undoc-members:
213
+ :show-inheritance:
214
+
215
+ smartsheet.models.enums.symbol module
216
+ -------------------------------------
217
+
218
+ .. automodule:: smartsheet.models.enums.symbol
219
+ :members:
220
+ :undoc-members:
221
+ :show-inheritance:
222
+
223
+ smartsheet.models.enums.system\_column\_type module
224
+ ---------------------------------------------------
225
+
226
+ .. automodule:: smartsheet.models.enums.system_column_type
227
+ :members:
228
+ :undoc-members:
229
+ :show-inheritance:
230
+
231
+ smartsheet.models.enums.update\_request\_status module
232
+ ------------------------------------------------------
233
+
234
+ .. automodule:: smartsheet.models.enums.update_request_status
235
+ :members:
236
+ :undoc-members:
237
+ :show-inheritance:
238
+
239
+ smartsheet.models.enums.user\_status module
240
+ -------------------------------------------
241
+
242
+ .. automodule:: smartsheet.models.enums.user_status
243
+ :members:
244
+ :undoc-members:
245
+ :show-inheritance:
246
+
247
+ smartsheet.models.enums.widget\_type module
248
+ -------------------------------------------
249
+
250
+ .. automodule:: smartsheet.models.enums.widget_type
251
+ :members:
252
+ :undoc-members:
253
+ :show-inheritance:
254
+
255
+
256
+ Module contents
257
+ ---------------
258
+
259
+ .. automodule:: smartsheet.models.enums
260
+ :members:
261
+ :undoc-members:
262
+ :show-inheritance:
@@ -1,6 +1,13 @@
1
1
  smartsheet.models package
2
2
  =========================
3
3
 
4
+ Subpackages
5
+ -----------
6
+
7
+ .. toctree::
8
+
9
+ smartsheet.models.enums
10
+
4
11
  Submodules
5
12
  ----------
6
13
 
@@ -44,6 +51,22 @@ smartsheet.models.auto\_number\_format module
44
51
  :undoc-members:
45
52
  :show-inheritance:
46
53
 
54
+ smartsheet.models.automation\_action module
55
+ -------------------------------------------
56
+
57
+ .. automodule:: smartsheet.models.automation_action
58
+ :members:
59
+ :undoc-members:
60
+ :show-inheritance:
61
+
62
+ smartsheet.models.automation\_rule module
63
+ -----------------------------------------
64
+
65
+ .. automodule:: smartsheet.models.automation_rule
66
+ :members:
67
+ :undoc-members:
68
+ :show-inheritance:
69
+
47
70
  smartsheet.models.boolean\_object\_value module
48
71
  -----------------------------------------------
49
72
 
@@ -180,6 +203,14 @@ smartsheet.models.criteria module
180
203
  :undoc-members:
181
204
  :show-inheritance:
182
205
 
206
+ smartsheet.models.cross\_sheet\_reference module
207
+ ------------------------------------------------
208
+
209
+ .. automodule:: smartsheet.models.cross_sheet_reference
210
+ :members:
211
+ :undoc-members:
212
+ :show-inheritance:
213
+
183
214
  smartsheet.models.currency module
184
215
  ---------------------------------
185
216
 
@@ -628,6 +659,22 @@ smartsheet.models.sight\_publish module
628
659
  :undoc-members:
629
660
  :show-inheritance:
630
661
 
662
+ smartsheet.models.sort\_criterion module
663
+ ----------------------------------------
664
+
665
+ .. automodule:: smartsheet.models.sort_criterion
666
+ :members:
667
+ :undoc-members:
668
+ :show-inheritance:
669
+
670
+ smartsheet.models.sort\_specifier module
671
+ ----------------------------------------
672
+
673
+ .. automodule:: smartsheet.models.sort_specifier
674
+ :members:
675
+ :undoc-members:
676
+ :show-inheritance:
677
+
631
678
  smartsheet.models.source module
632
679
  -------------------------------
633
680
 
@@ -1,6 +1,6 @@
1
1
  var DOCUMENTATION_OPTIONS = {
2
2
  URL_ROOT: '',
3
- VERSION: '1.2.5.dev38+g7d61cc0',
3
+ VERSION: '1.3.1',
4
4
  LANGUAGE: 'None',
5
5
  COLLAPSE_INDEX: false,
6
6
  FILE_SUFFIX: '.html',