smartsheet-python-sdk 3.5.5__py3-none-any.whl

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 (195) hide show
  1. smartsheet/__init__.py +37 -0
  2. smartsheet/attachments.py +565 -0
  3. smartsheet/cells.py +164 -0
  4. smartsheet/contacts.py +78 -0
  5. smartsheet/discussions.py +411 -0
  6. smartsheet/events.py +79 -0
  7. smartsheet/exceptions.py +130 -0
  8. smartsheet/favorites.py +116 -0
  9. smartsheet/folders.py +438 -0
  10. smartsheet/groups.py +186 -0
  11. smartsheet/home.py +180 -0
  12. smartsheet/images.py +61 -0
  13. smartsheet/models/__init__.py +126 -0
  14. smartsheet/models/access_token.py +95 -0
  15. smartsheet/models/account.py +77 -0
  16. smartsheet/models/alternate_email.py +88 -0
  17. smartsheet/models/asset_share.py +165 -0
  18. smartsheet/models/asset_shares_paginated_result.py +84 -0
  19. smartsheet/models/attachment.py +181 -0
  20. smartsheet/models/auto_number_format.py +81 -0
  21. smartsheet/models/automation_action.py +162 -0
  22. smartsheet/models/automation_rule.py +164 -0
  23. smartsheet/models/boolean_object_value.py +38 -0
  24. smartsheet/models/bulk_item_failure.py +77 -0
  25. smartsheet/models/bulk_item_result.py +111 -0
  26. smartsheet/models/cell.py +193 -0
  27. smartsheet/models/cell_data_item.py +152 -0
  28. smartsheet/models/cell_history.py +67 -0
  29. smartsheet/models/cell_link.py +91 -0
  30. smartsheet/models/cell_link_widget_content.py +101 -0
  31. smartsheet/models/chart_widget_content.py +124 -0
  32. smartsheet/models/column.py +253 -0
  33. smartsheet/models/comment.py +126 -0
  34. smartsheet/models/contact.py +88 -0
  35. smartsheet/models/contact_object_value.py +59 -0
  36. smartsheet/models/container_destination.py +74 -0
  37. smartsheet/models/copy_or_move_row_destination.py +54 -0
  38. smartsheet/models/copy_or_move_row_directive.py +64 -0
  39. smartsheet/models/copy_or_move_row_result.py +67 -0
  40. smartsheet/models/criteria.py +82 -0
  41. smartsheet/models/cross_sheet_reference.py +134 -0
  42. smartsheet/models/currency.py +64 -0
  43. smartsheet/models/date_object_value.py +56 -0
  44. smartsheet/models/datetime_object_value.py +56 -0
  45. smartsheet/models/discussion.py +183 -0
  46. smartsheet/models/downloaded_file.py +106 -0
  47. smartsheet/models/duration.py +112 -0
  48. smartsheet/models/email.py +82 -0
  49. smartsheet/models/enums/__init__.py +56 -0
  50. smartsheet/models/enums/access_level.py +26 -0
  51. smartsheet/models/enums/asset_type.py +10 -0
  52. smartsheet/models/enums/attachment_parent_type.py +23 -0
  53. smartsheet/models/enums/attachment_sub_type.py +26 -0
  54. smartsheet/models/enums/attachment_type.py +29 -0
  55. smartsheet/models/enums/automation_action_frequency.py +24 -0
  56. smartsheet/models/enums/automation_action_type.py +23 -0
  57. smartsheet/models/enums/automation_rule_disabled_reason.py +27 -0
  58. smartsheet/models/enums/cell_link_status.py +28 -0
  59. smartsheet/models/enums/column_type.py +31 -0
  60. smartsheet/models/enums/criteria_target.py +21 -0
  61. smartsheet/models/enums/cross_sheet_reference_status.py +28 -0
  62. smartsheet/models/enums/currency_code.py +43 -0
  63. smartsheet/models/enums/day_descriptors.py +30 -0
  64. smartsheet/models/enums/day_ordinal.py +25 -0
  65. smartsheet/models/enums/event_action.py +76 -0
  66. smartsheet/models/enums/event_obejct_type.py +34 -0
  67. smartsheet/models/enums/event_source.py +27 -0
  68. smartsheet/models/enums/global_template.py +23 -0
  69. smartsheet/models/enums/operator.py +62 -0
  70. smartsheet/models/enums/paper_type.py +29 -0
  71. smartsheet/models/enums/predecessor_type.py +24 -0
  72. smartsheet/models/enums/publish_accessible_by.py +22 -0
  73. smartsheet/models/enums/schedule_type.py +25 -0
  74. smartsheet/models/enums/seat_type.py +17 -0
  75. smartsheet/models/enums/share_scope.py +22 -0
  76. smartsheet/models/enums/share_type.py +22 -0
  77. smartsheet/models/enums/sheet_email_format.py +23 -0
  78. smartsheet/models/enums/sheet_filter_operator.py +22 -0
  79. smartsheet/models/enums/sheet_filter_type.py +23 -0
  80. smartsheet/models/enums/sort_direction.py +22 -0
  81. smartsheet/models/enums/symbol.py +45 -0
  82. smartsheet/models/enums/system_column_type.py +25 -0
  83. smartsheet/models/enums/update_request_status.py +23 -0
  84. smartsheet/models/enums/user_status.py +23 -0
  85. smartsheet/models/enums/widget_type.py +32 -0
  86. smartsheet/models/error.py +74 -0
  87. smartsheet/models/error_result.py +117 -0
  88. smartsheet/models/event.py +153 -0
  89. smartsheet/models/event_result.py +86 -0
  90. smartsheet/models/explicit_null.py +24 -0
  91. smartsheet/models/favorite.py +81 -0
  92. smartsheet/models/folder.py +177 -0
  93. smartsheet/models/font_family.py +63 -0
  94. smartsheet/models/format_details.py +55 -0
  95. smartsheet/models/format_tables.py +191 -0
  96. smartsheet/models/group.py +134 -0
  97. smartsheet/models/group_member.py +104 -0
  98. smartsheet/models/home.py +110 -0
  99. smartsheet/models/hyperlink.py +81 -0
  100. smartsheet/models/image.py +101 -0
  101. smartsheet/models/image_url.py +91 -0
  102. smartsheet/models/image_url_map.py +68 -0
  103. smartsheet/models/image_widget_content.py +117 -0
  104. smartsheet/models/index_result.py +118 -0
  105. smartsheet/models/json_object.py +59 -0
  106. smartsheet/models/multi_contact_object_value.py +49 -0
  107. smartsheet/models/multi_picklist_object_value.py +48 -0
  108. smartsheet/models/multi_row_email.py +60 -0
  109. smartsheet/models/number_object_value.py +38 -0
  110. smartsheet/models/o_auth_error.py +86 -0
  111. smartsheet/models/object_value.py +130 -0
  112. smartsheet/models/paginated_children_result.py +80 -0
  113. smartsheet/models/predecessor.py +102 -0
  114. smartsheet/models/predecessor_list.py +49 -0
  115. smartsheet/models/primitive_object_value.py +59 -0
  116. smartsheet/models/profile_image.py +72 -0
  117. smartsheet/models/project_settings.py +89 -0
  118. smartsheet/models/recipient.py +63 -0
  119. smartsheet/models/report.py +90 -0
  120. smartsheet/models/report_cell.py +59 -0
  121. smartsheet/models/report_column.py +67 -0
  122. smartsheet/models/report_publish.py +95 -0
  123. smartsheet/models/report_row.py +68 -0
  124. smartsheet/models/report_widget_content.py +78 -0
  125. smartsheet/models/result.py +105 -0
  126. smartsheet/models/row.py +336 -0
  127. smartsheet/models/row_email.py +83 -0
  128. smartsheet/models/row_mapping.py +77 -0
  129. smartsheet/models/schedule.py +140 -0
  130. smartsheet/models/scope.py +70 -0
  131. smartsheet/models/search_result.py +67 -0
  132. smartsheet/models/search_result_item.py +150 -0
  133. smartsheet/models/selection_range.py +86 -0
  134. smartsheet/models/sent_update_request.py +172 -0
  135. smartsheet/models/server_info.py +67 -0
  136. smartsheet/models/share.py +183 -0
  137. smartsheet/models/sheet.py +462 -0
  138. smartsheet/models/sheet_email.py +81 -0
  139. smartsheet/models/sheet_filter.py +106 -0
  140. smartsheet/models/sheet_filter_details.py +76 -0
  141. smartsheet/models/sheet_publish.py +184 -0
  142. smartsheet/models/sheet_summary.py +59 -0
  143. smartsheet/models/sheet_user_permissions.py +58 -0
  144. smartsheet/models/sheet_user_settings.py +72 -0
  145. smartsheet/models/shortcut_data_item.py +102 -0
  146. smartsheet/models/shortcut_widget_content.py +61 -0
  147. smartsheet/models/sight.py +175 -0
  148. smartsheet/models/sight_publish.py +77 -0
  149. smartsheet/models/sort_criterion.py +64 -0
  150. smartsheet/models/sort_specifier.py +55 -0
  151. smartsheet/models/source.py +83 -0
  152. smartsheet/models/string_object_value.py +38 -0
  153. smartsheet/models/summary_field.py +256 -0
  154. smartsheet/models/template.py +171 -0
  155. smartsheet/models/title_rich_text_widget_content.py +68 -0
  156. smartsheet/models/token_paginated_result.py +79 -0
  157. smartsheet/models/update_request.py +110 -0
  158. smartsheet/models/user.py +58 -0
  159. smartsheet/models/user_model.py +280 -0
  160. smartsheet/models/user_plan.py +77 -0
  161. smartsheet/models/user_profile.py +89 -0
  162. smartsheet/models/version.py +57 -0
  163. smartsheet/models/web_content_widget_content.py +60 -0
  164. smartsheet/models/webhook.py +219 -0
  165. smartsheet/models/webhook_secret.py +58 -0
  166. smartsheet/models/webhook_stats.py +76 -0
  167. smartsheet/models/webhook_subscope.py +50 -0
  168. smartsheet/models/widget.py +211 -0
  169. smartsheet/models/widget_content.py +52 -0
  170. smartsheet/models/widget_hyperlink.py +74 -0
  171. smartsheet/models/workspace.py +185 -0
  172. smartsheet/object_value.py +72 -0
  173. smartsheet/passthrough.py +127 -0
  174. smartsheet/reports.py +382 -0
  175. smartsheet/search.py +100 -0
  176. smartsheet/server.py +48 -0
  177. smartsheet/session.py +70 -0
  178. smartsheet/sharing.py +163 -0
  179. smartsheet/sheets.py +2062 -0
  180. smartsheet/sights.py +370 -0
  181. smartsheet/smartsheet.py +684 -0
  182. smartsheet/templates.py +87 -0
  183. smartsheet/token.py +128 -0
  184. smartsheet/types.py +323 -0
  185. smartsheet/users.py +490 -0
  186. smartsheet/util.py +199 -0
  187. smartsheet/version.py +34 -0
  188. smartsheet/webhooks.py +161 -0
  189. smartsheet/workspaces.py +647 -0
  190. smartsheet_python_sdk-3.5.5.dist-info/METADATA +120 -0
  191. smartsheet_python_sdk-3.5.5.dist-info/RECORD +195 -0
  192. smartsheet_python_sdk-3.5.5.dist-info/WHEEL +5 -0
  193. smartsheet_python_sdk-3.5.5.dist-info/licenses/LICENSE.md +201 -0
  194. smartsheet_python_sdk-3.5.5.dist-info/licenses/NOTICE +10 -0
  195. smartsheet_python_sdk-3.5.5.dist-info/top_level.txt +1 -0
@@ -0,0 +1,120 @@
1
+ Metadata-Version: 2.4
2
+ Name: smartsheet-python-sdk
3
+ Version: 3.5.5
4
+ Summary: Library that uses Python to connect to Smartsheet services (using API 2.0).
5
+ License-Expression: Apache-2.0
6
+ Classifier: Development Status :: 5 - Production/Stable
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: Natural Language :: English
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3.7
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Programming Language :: Python :: 3.15
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
22
+ Requires-Python: >=3.7
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE.md
25
+ License-File: NOTICE
26
+ Requires-Dist: requests
27
+ Requires-Dist: requests-toolbelt
28
+ Requires-Dist: six>=1.9
29
+ Requires-Dist: certifi
30
+ Requires-Dist: python-dateutil
31
+ Provides-Extra: test
32
+ Requires-Dist: coverage; extra == "test"
33
+ Requires-Dist: coveralls; extra == "test"
34
+ Requires-Dist: pytest; extra == "test"
35
+ Requires-Dist: pytest-rerunfailures; extra == "test"
36
+ Requires-Dist: requests-toolbelt; extra == "test"
37
+ Provides-Extra: develop
38
+ Requires-Dist: coverage; extra == "develop"
39
+ Requires-Dist: coveralls[yaml]; extra == "develop"
40
+ Requires-Dist: pytest; extra == "develop"
41
+ Requires-Dist: pytest-instafail; extra == "develop"
42
+ Requires-Dist: pylint; extra == "develop"
43
+ Provides-Extra: docs
44
+ Requires-Dist: sphinx; extra == "docs"
45
+ Requires-Dist: sphinx_rtd_theme; extra == "docs"
46
+ Requires-Dist: setuptools_scm; extra == "docs"
47
+ Provides-Extra: packaging
48
+ Requires-Dist: wheel; extra == "packaging"
49
+ Requires-Dist: twine; extra == "packaging"
50
+ Requires-Dist: gitchangelog; extra == "packaging"
51
+ Requires-Dist: mako; extra == "packaging"
52
+ Dynamic: license-file
53
+
54
+ # Smartsheet Python SDK
55
+
56
+ [![Build Status](https://github.com/smartsheet/smartsheet-python-sdk/actions/workflows/test-build.yaml/badge.svg)](https://github.com/smartsheet/smartsheet-python-sdk/actions/workflows/test-build.yaml) [![Coverage Status](https://coveralls.io/repos/github/smartsheet/smartsheet-python-sdk/badge.svg?branch=mainline)](https://coveralls.io/github/smartsheet/smartsheet-python-sdk?branch=mainline) [![PyPI version](https://badge.fury.io/py/smartsheet-python-sdk.svg)](https://badge.fury.io/py/smartsheet-python-sdk)
57
+
58
+ A library for connecting to the [Smartsheet API](https://developers.smartsheet.com/api/smartsheet/) from Python applications.
59
+
60
+ ## Requirements
61
+
62
+ The SDK is compatible with [actively supported](https://devguide.python.org/versions/#versions) Python versions `3.10`, `3.9`, `3.8`, `3.7`.
63
+
64
+ ## Installation
65
+
66
+ To install using [pip](http://www.pip-installer.org/):
67
+
68
+ ```bash
69
+ pip install smartsheet-python-sdk
70
+ ```
71
+
72
+ ## Getting Started
73
+
74
+ To get started with the Smartsheet Python SDK:
75
+
76
+ 1. Set **SMARTSHEET_ACCESS_TOKEN** in your environment, using your Smartsheet API key. Find out more about [Authentication and Access Tokens](https://developers.smartsheet.com/api/smartsheet/guides/basics/authentication) in the Smartsheet API Documentation. You can generate an access token in Smartsheet UI under Account > Personal Settings > API Access.
77
+
78
+ 2. Install the Smartsheet Python SDK (see the installation instructions above)
79
+
80
+ 3. The following snippet shows how to create a Smartsheet client and perform some basic actions using the SDK. Ensure your Smartsheet user has access to at least one sheet.
81
+
82
+ ``` python
83
+
84
+ import smartsheet
85
+
86
+ smart = smartsheet.Smartsheet() # Create a Smartsheet client
87
+
88
+ response = smart.Sheets.list_sheets() # Call the list_sheets() function and store the response object
89
+ sheetId = response.data[0].id # Get the ID of the first sheet in the response
90
+ sheet = smart.Sheets.get_sheet(sheetId) # Load the sheet by using its ID
91
+
92
+ print(f"The sheet {sheet.name} has {sheet.total_row_count} rows") # Print information about the sheet
93
+ ```
94
+
95
+ ## Documentation
96
+
97
+ Use the following resources to learn more about the SDK capabilities:
98
+
99
+ 1. [Smartsheet Python SDK sample project](https://github.com/smartsheet-samples/python-read-write-sheet)
100
+ 2. [Python SDK documentation](https://smartsheet.github.io/smartsheet-python-sdk/)
101
+ 3. [Smartsheet API Documentation](https://developers.smartsheet.com/api/smartsheet/)
102
+
103
+ ## Advanced Topics
104
+
105
+ For details about logging, testing, how to use a passthrough option, and how to override HTTP client behavior,
106
+ see [Advanced Topics](ADVANCED.md).
107
+
108
+ ## Developer Agreement
109
+
110
+ Review the [Developer Program Agreement](https://www.smartsheet.com/legal/developer-program-agreement).
111
+
112
+ ## Acknowledgements
113
+
114
+ We would like to thank the following people for their contributions to this project:
115
+
116
+ * Tim Wells - [timwellswa](https://github.com/timwellswa)
117
+ * Scott Wimer - [happybob007](https://github.com/happybob007)
118
+ * Steve Weil - [seweil](https://github.com/seweil)
119
+ * Kevin Fansler - [kfansler](https://github.com/kfansler)
120
+ * Nathan Armstrong - [armstnp](https://github.com/armstnp)
@@ -0,0 +1,195 @@
1
+ smartsheet/__init__.py,sha256=h2TD_nYTxqa7lcKb_mOIa-DMQN-pYaGk1Du0U3IVMyA,1152
2
+ smartsheet/attachments.py,sha256=eZ1y5jS_TJSyZzzapc68ol1qhrLxCXc2sY8l8oY1Gvo,17865
3
+ smartsheet/cells.py,sha256=1BCBps0mV9FV_nmdtsP5j7jT0avTVIfbYSAhnOqzlwM,4845
4
+ smartsheet/contacts.py,sha256=IBV3ncoP7R7GmzQI0H1CIwq4scGk9iBC1ayyQ927YrQ,2383
5
+ smartsheet/discussions.py,sha256=n0mbARczzdBkw83ZPKcNABp5j6AQLZPUHkKAZOK5q1Y,13110
6
+ smartsheet/events.py,sha256=MKASwB9BF5AeEMC7Qx-YPKpd9yjs6UCWwilBC8RZDgA,3417
7
+ smartsheet/exceptions.py,sha256=ISCV4fIAkYgcYMsZL62zDr48qIPPok6N4myifej2M4c,3894
8
+ smartsheet/favorites.py,sha256=8D1o1YCmzie43cNvSVwuDKdUnRaEV8-1PiIimNcQkp0,3921
9
+ smartsheet/folders.py,sha256=GemtQiqLnuc2beU-VKqbGRAz5Ec8brUWfhyFeAFoIPY,14441
10
+ smartsheet/groups.py,sha256=Sk9mhsR9KtIKTTX8SzqIyagz93rSr5z_5G19fn1eAoI,5325
11
+ smartsheet/home.py,sha256=u0Ioz59TiNQRf-u5N6s3ZQTuaW3Ck4FJIT04nbSoJt8,5650
12
+ smartsheet/images.py,sha256=Pts20YXCsZ06JGC6av3mk2je_kbcM11b9lO7L11mJoc,1872
13
+ smartsheet/object_value.py,sha256=dcPFZEPpqAiZsBRUawozLSSlVjxGBWTT3VXvsRYso8Q,3129
14
+ smartsheet/passthrough.py,sha256=k4p_3Kk7ISApNNFLDicVN5KYL0ll2AA4eAgX2cjnlzg,3950
15
+ smartsheet/reports.py,sha256=0B5bdQwVJHwu-V04aMSJ-Y7HaILK4rgjjMtn0--kcig,12835
16
+ smartsheet/search.py,sha256=ffy1dkVl3GtuYgCxvuR-vwahOBWIehGv_zwzLoJMimA,3394
17
+ smartsheet/server.py,sha256=9wySsa_y_G-VO88tEHGHp919zRVFS0kCFIhiM6crWEU,1429
18
+ smartsheet/session.py,sha256=TQ3IgVZ64r7Dszwo8rMISFezWxuwFYshhW9QhzoA428,2125
19
+ smartsheet/sharing.py,sha256=pYQdYuZy5ZJdaPhh1monaYfyQQOOcTi_lQuHM0xzsnQ,5882
20
+ smartsheet/sheets.py,sha256=2SUhanCsRFKCsbN-oAIRMsuYnk1aSFlXKzfZhxMo7d0,70603
21
+ smartsheet/sights.py,sha256=IZgy8CJZBJ-pQo6vNwkDSBuoLCv5RAW39kNUMMNJ-oc,11569
22
+ smartsheet/smartsheet.py,sha256=d98DFUpIxX_m6tOHcLENiAnaWJwBmhOCHe1zTcLiFbs,24446
23
+ smartsheet/templates.py,sha256=z_Tj-4jZsu3RkLNbCAZWM2W05Zbio9T_uyU33rUPxzE,2898
24
+ smartsheet/token.py,sha256=5uz-IG5adx_zr2-uepH-W8ATv0dq9aZNjYLeZNwldqI,4703
25
+ smartsheet/types.py,sha256=aIdRJ89jwclmiZ4RH3hnZHJTFWFxgNKW3d8fghm21eM,9126
26
+ smartsheet/users.py,sha256=1KnqKJIzJEPMNy26BQY1b9jb3dItbzglrljV1MGD5ic,15887
27
+ smartsheet/util.py,sha256=uH54kYKbouLvyFn-VFRQELObCk0KdXLRCfuQ53fv3W0,5728
28
+ smartsheet/version.py,sha256=x3HbLo5zkbJncvpo0auJvVopGJ6qmC5g5W_XjPW1M-Q,704
29
+ smartsheet/webhooks.py,sha256=7F7g4Ks0GyS3QxsNWm1SFtrOr00jBisCjj7-hcToHM8,4637
30
+ smartsheet/workspaces.py,sha256=r81xh3HfYsX--ll5pQ-h7kSSJELokYV-bSjuD0WloeU,22651
31
+ smartsheet/models/__init__.py,sha256=wJter68K1D2T3Noq4r7SooPhahtdkJBKIrrUwJxymNQ,4860
32
+ smartsheet/models/access_token.py,sha256=sKHL5cFRWPTjymX06ZIXaCDp8ZJQEVpXN8mns1DAvGM,2564
33
+ smartsheet/models/account.py,sha256=nLg_5O4Vnc7aNf9p1kIcsgdAm23IC2H7cKkxjLxwS9U,1941
34
+ smartsheet/models/alternate_email.py,sha256=n8zqWkY-uzSw_CVKBvYUc6pGSR0v4yTx8S5PaIiX_AU,2263
35
+ smartsheet/models/asset_share.py,sha256=a6alub5Pn5f6J5LS6sFAhEOqnEpB1lk43DNT0UgMYN8,3975
36
+ smartsheet/models/asset_shares_paginated_result.py,sha256=lvFOAjclocin_8AQENflaX9W-cRlCmUqaAVTpb2v7Hc,2552
37
+ smartsheet/models/attachment.py,sha256=5DgnZ4fj19rtIgN3INqlP0zYh8JNa0DRleeAS52tQ2o,4684
38
+ smartsheet/models/auto_number_format.py,sha256=LRNIkasbspWKJFg0hwMvhSe4HmuuNRrvH_jerCbKooM,2091
39
+ smartsheet/models/automation_action.py,sha256=_1cb_ubhR4Xx56UNGi3dLXdfoBkA7oyjDWu2wA98p-Q,4526
40
+ smartsheet/models/automation_rule.py,sha256=Ay7cCG0xXxzmfdVExWWTQf2lh5m_PJl1uMayh6JQytU,4298
41
+ smartsheet/models/boolean_object_value.py,sha256=W8Y47xDYbagDe76vnSHo1Vfzinbe5iO2HWTHCR9oWHQ,1246
42
+ smartsheet/models/bulk_item_failure.py,sha256=cOiL4zEWFa7YL6hHwIJgppvAtq3vqNRWlEV_qneGKVM,2053
43
+ smartsheet/models/bulk_item_result.py,sha256=FHjJuakgIP5qKm7SExiMSDh7ZnN44Cvlhe7vifWd3tU,3139
44
+ smartsheet/models/cell.py,sha256=X-jbDtWxsWyGVeU8sImWOk_r7Uqex-F6q97l0aTHryc,5028
45
+ smartsheet/models/cell_data_item.py,sha256=bhKdAJz_dpZO1x2qDHFAAUow-H2Lb7rRrO4DoKfMYxQ,3919
46
+ smartsheet/models/cell_history.py,sha256=4uBJ5fKfSxRbqtVVjK0e5kURymb0ec5d2uelXVFmJVM,1867
47
+ smartsheet/models/cell_link.py,sha256=v7D3Vc4fU1su8EV4LliTwnUgBbGiVVepVbvx281VBVU,2331
48
+ smartsheet/models/cell_link_widget_content.py,sha256=GKHUJ_x20Y_qGxOQvt6H-e9fzBSFUoYsX3Qd9qqldU4,2816
49
+ smartsheet/models/chart_widget_content.py,sha256=mvg3oyrKy0lbw_QaG8AfxwO8oit9XVsKqUJ25aFT8BU,3387
50
+ smartsheet/models/column.py,sha256=aTvwlvyzA27hS0NqOCOKOkcyLOsVOhYGLRUsm4gY9VU,6201
51
+ smartsheet/models/comment.py,sha256=E0M-ALmB6RnFU_UuULQTAXtLj85PHv4yWZw_vxhv5KA,3219
52
+ smartsheet/models/contact.py,sha256=r1vpuo-2j7OWZSoamS_pGo-EQXVXEWBlAXO9Uz23sNE,2194
53
+ smartsheet/models/contact_object_value.py,sha256=GAjppxCO9DKT7Vp6B-U4L6mQbb-VPuKaQQ7RGpwfaSI,1752
54
+ smartsheet/models/container_destination.py,sha256=4NnbsC04IQ8tXvdN6nelKOFW0byoPBiVf6zCI3XL5wk,2125
55
+ smartsheet/models/copy_or_move_row_destination.py,sha256=2L7HqPyPFnw1J2PgHPOK6EE6aNB5LVxtOKeETyTUJhg,1516
56
+ smartsheet/models/copy_or_move_row_directive.py,sha256=mPMYiop4VbahyzsU81mRnUgddDDwg4MXgCLYcZ6Q9RY,1783
57
+ smartsheet/models/copy_or_move_row_result.py,sha256=9YxMyVi5hdbmuw7wk3s9y4pydbvtO41AwXWgakgu5BU,1929
58
+ smartsheet/models/criteria.py,sha256=zk6Zxq1JkO3TVRGhenKPdupxlFJYLXRLe_eM0yns4IY,2139
59
+ smartsheet/models/cross_sheet_reference.py,sha256=rh5vhbkPGf20wOqQoGamERju0TkzMUXzcqYjw6ydOU8,3476
60
+ smartsheet/models/currency.py,sha256=XHaEaLAvM5J8WRphwMc1ldY94Qfk_cFmmghx2uooeOA,1692
61
+ smartsheet/models/date_object_value.py,sha256=YEKtiaY9yb-PzK1RlFA3yqYd932XAlVYuoXBVPcUsd0,1616
62
+ smartsheet/models/datetime_object_value.py,sha256=uWH-YSOjy5P-BiavVMJFMkbcb5MEFTmyeqTAH5X25_k,1652
63
+ smartsheet/models/discussion.py,sha256=ndazqRPjrmE1FV42czM9NDI1VFE78y8v8KhOlylJpd8,4790
64
+ smartsheet/models/downloaded_file.py,sha256=8o6namCzPceSV_FbTzgywFu2JdOWiwll94pRFXftnGM,2869
65
+ smartsheet/models/duration.py,sha256=jaHSGFUiAxbvQ1-McK3U1kKicgIHam4dV6DSAymL9r8,2767
66
+ smartsheet/models/email.py,sha256=pADV4diMHIwoB1IQNJn9Bz0zAz3faGySwdHL47i9cCc,2078
67
+ smartsheet/models/error.py,sha256=Ropa-AkYHpGhwne5AKarNtyAsW_VVX_duCtL-Jkpvts,1976
68
+ smartsheet/models/error_result.py,sha256=kwMIb5YkEcPhpbkqKh63FAVLmvBL_SYt-bjDuGqNBi0,2923
69
+ smartsheet/models/event.py,sha256=GFs2nK2wPfPOCiRlu6qhn0Teu_b2-JcIdA7nlo_TDf0,4050
70
+ smartsheet/models/event_result.py,sha256=XN1TYx6RUPlXq6qHYvbRI2Pfm2-HcBs8WNmB5gzoGVQ,2560
71
+ smartsheet/models/explicit_null.py,sha256=ajwJRTseizgnf2ZY0qf5k97zvNTm033bKduA1OGCm0M,774
72
+ smartsheet/models/favorite.py,sha256=BTQumH0o-MQ93AS02qymyIxEVCR_CrwMWfuT0H051dc,2157
73
+ smartsheet/models/folder.py,sha256=WOLaECb18w07tn5PuRpF0aNiovZ9I3B9oH5-1QMgoi8,4325
74
+ smartsheet/models/font_family.py,sha256=32tBgd0w58dWco3goN4NZ9eMafaU3szzXYdQudGmeUM,1646
75
+ smartsheet/models/format_details.py,sha256=DwVi1XpXq__lFa1WQHzciE9s8nJltUmfq9l7xTM4uec,1542
76
+ smartsheet/models/format_tables.py,sha256=FwoZBr030PDZ1s2Z2Prfob1csHao5TyNKB2vlOttGPU,4765
77
+ smartsheet/models/group.py,sha256=BXJwiPyD37aBb1YUw31bl11MVmGt-mDCQuZ16KSt7rE,3305
78
+ smartsheet/models/group_member.py,sha256=n7rPsce_Ajm4mQR-j8_CEV6QY5lv0dzzqSju4XC88qQ,2550
79
+ smartsheet/models/home.py,sha256=fEQP1MPIrRp3w6PSmeZFwCv9gnJVtwkuPmDp66P48K8,2701
80
+ smartsheet/models/hyperlink.py,sha256=4Qp_Y0PJqH6zob3daKU9AU2QTardKemiFtpQnnisqvE,2052
81
+ smartsheet/models/image.py,sha256=EkoTNgg8dTo2cHBd1TmBI0l735nrxGiTMEM1cVRNFcQ,2447
82
+ smartsheet/models/image_url.py,sha256=NmUotfupHxj6F3UvqykhgjzhcSrtPYUXRfxxOovDqGQ,2261
83
+ smartsheet/models/image_url_map.py,sha256=k3U1mykrlMsSPQxGa9AAC-erFfEMpvaL5nGp7stBZz0,1927
84
+ smartsheet/models/image_widget_content.py,sha256=lWmhK9rIoG62rIGXDMnSswn09qPBICeCEk5lYxRCqdw,3098
85
+ smartsheet/models/index_result.py,sha256=OzLE8Hd57CJSbTCJSpHS5equd0N1HW9_NrrEaQivS_4,3235
86
+ smartsheet/models/json_object.py,sha256=HDJeFcPhlLrhUyb2nMO2ARE9AaCmWXHJ_O3YUQ1vl3s,1572
87
+ smartsheet/models/multi_contact_object_value.py,sha256=m59rDL0a3QXPYJ4Lz27ECeVji7IP5ptrCwhZBHFoBzc,1538
88
+ smartsheet/models/multi_picklist_object_value.py,sha256=jDwPLZZYaFTob74r2SeJSp_4bFL7BAr_zjfPkZhyz7E,1475
89
+ smartsheet/models/multi_row_email.py,sha256=LXvLY7b9KIqubaFX9uLjh4JsUHIQgPg0O_oC9EyYgu0,1594
90
+ smartsheet/models/number_object_value.py,sha256=m4s9dsDxIl-t6jPB0_sZtCL82EHBcc8yatXjyCCDGZY,1241
91
+ smartsheet/models/o_auth_error.py,sha256=svDzW9mqdUnRD4g0lhrr0QQVvBHPqY6C1nZj7oPw8p4,2340
92
+ smartsheet/models/object_value.py,sha256=_-IzfdTlBsRKY1EV_1geTYj6-iqvV1B5aG5DrEMtN_I,3454
93
+ smartsheet/models/paginated_children_result.py,sha256=zcFUp7k8AQDbDLw-UWTZYkf6Gp8Z-v7LQWy9FPJ5ry4,2913
94
+ smartsheet/models/predecessor.py,sha256=UjmBW_bTD7cAySPL-p5BrkcjNEQxkDizdgcr-KCuvM8,2629
95
+ smartsheet/models/predecessor_list.py,sha256=OYfrr_P4YkdDRNU6IUGL1ZN75yWyejCNx_q7rGdzIx0,1523
96
+ smartsheet/models/primitive_object_value.py,sha256=LaO7zBnVPZIXXEqS_oGSLi6XaulTiw9dK6-bM8pEYXc,1563
97
+ smartsheet/models/profile_image.py,sha256=697n8qku2C19Rs_jXsCuN9LBvYOCxI6tC3YdI5vXttk,1860
98
+ smartsheet/models/project_settings.py,sha256=BtF8apYNycAQ27BUF8py8J4wVqUboj9rQjHWY1vlFA0,2610
99
+ smartsheet/models/recipient.py,sha256=rYImZMKd-dJo-z-6LOX9jcPhvPjTxLWf_RVzV-_undc,1660
100
+ smartsheet/models/report.py,sha256=zxTXDCnWBhQSPk2hXqvUxUm49-qMFq7UfbgJUPwXU_o,2365
101
+ smartsheet/models/report_cell.py,sha256=T9rTiFy26j0nkVvLrWje4wx9X-yFlMvyNs6pXsVjQXY,1706
102
+ smartsheet/models/report_column.py,sha256=jlOwG2RSeWUzAHtgd806iZyTwa-aS5NrICkQDe7fofI,1866
103
+ smartsheet/models/report_publish.py,sha256=8nIfofNhtUId-INF_3lxMJzT0XR5jf-8wrC2ezloqGw,2972
104
+ smartsheet/models/report_row.py,sha256=eUDfsplTMFeX26R-Mpk5UrIH4RLBVsGcvpWQhdmdfys,1806
105
+ smartsheet/models/report_widget_content.py,sha256=lDW4442D-BuBreaiuyjvAX50h5zuHzKl3I6H9suLoxs,2252
106
+ smartsheet/models/result.py,sha256=zyrWhqZz51o5FEuhU-G4SmM-0usBs0vDG0feo_iSr68,2989
107
+ smartsheet/models/row.py,sha256=npQyAze8CXybcyZ-xBtW0JTOKpUaP_GVZGg23TZEZ8A,8261
108
+ smartsheet/models/row_email.py,sha256=sMUVrVA0MzylIfWZzjyoM11RFP5Isy91RclMe15J22Y,2309
109
+ smartsheet/models/row_mapping.py,sha256=pq4pBlMBK3JBMD744COOxQDD2nn0GCbpa2X1SlQHkmA,1956
110
+ smartsheet/models/schedule.py,sha256=MZKHY8S7HeohGwdBir5n2AfP1jEye1Bv_5Y12GlMhDs,3668
111
+ smartsheet/models/scope.py,sha256=hmKxOV0a2pcNKEM89bimhUi0v7_ulQH2pLrZmvLu6zg,1971
112
+ smartsheet/models/search_result.py,sha256=VjkwWYjhl5jdbac643p1rQwpPjPc8dm5cZWww1tJGFs,1843
113
+ smartsheet/models/search_result_item.py,sha256=e3UfKivvwf-K3MC5qvcFKv41sua030aSIIUmhku-Hi0,4045
114
+ smartsheet/models/selection_range.py,sha256=5i_pf3tvIEB2NJvW0KyD8_RiPomXQQzXW8y2wwVOeII,2447
115
+ smartsheet/models/sent_update_request.py,sha256=p9yQCAJ-Ag6Tog7u6Meb-Bictew66_e6oUA2n5iUGoA,4469
116
+ smartsheet/models/server_info.py,sha256=qo-UV6tA20abwwfGVT_XmvcVHkM0zlMtWE1R4ABFjMs,1873
117
+ smartsheet/models/share.py,sha256=WBRuLpV6h8xT4zIEtlsnPYyzdOSySA0JOfxpWVXorzU,4413
118
+ smartsheet/models/sheet.py,sha256=fGpMA4DYZhF4FpXHvo16BilR6tmqag2YmY41kgSe2Bs,13262
119
+ smartsheet/models/sheet_email.py,sha256=Wx1QR6Jua9fxaS222SIpYxLUxofOAC2nnO-EkUNuZ2k,2249
120
+ smartsheet/models/sheet_filter.py,sha256=ZR11QApnybuxmjnUg1Z1CcQV1H2NqqJYTtseTwTFYO4,2700
121
+ smartsheet/models/sheet_filter_details.py,sha256=bfBX6jIHiIXl-3nHrIZBBt7OtoJ4GyDONiQDKF2C7M0,2089
122
+ smartsheet/models/sheet_publish.py,sha256=lR6vu8nWjz5_hD1SLJ3Co3S--KblX8z-BzKmQ-9Sv-A,5572
123
+ smartsheet/models/sheet_summary.py,sha256=62PDzMbE2MkwI2aMy7Yoqgx4ze6-gL0ABbk_BJQDmlo,1633
124
+ smartsheet/models/sheet_user_permissions.py,sha256=7Fv_RX3cCq8LNE5lZDbcLRgVUTLkG9W-vTlbx6aJXsY,1685
125
+ smartsheet/models/sheet_user_settings.py,sha256=dsOkxDWx6MBkyOSCeG7i0WTYibAqCcxUGxgHSKOuKnc,2150
126
+ smartsheet/models/shortcut_data_item.py,sha256=NLZi1PhUX1dopNzSCX3OoTvKx5YfSdx6Ucm6Fdxyb5Y,2696
127
+ smartsheet/models/shortcut_widget_content.py,sha256=4vWIp9W17RMpKFk5UtKVCusQl52mBnRv1FgTgJgw_OU,1833
128
+ smartsheet/models/sight.py,sha256=braCa6b4GX-3XS7PpNJxnLUcoFxRy1XsauGjs_lVKTE,4376
129
+ smartsheet/models/sight_publish.py,sha256=kzYJ2v4Klw28bOZmnlDG0c5HkUXZ5R7F_mc7DXB6oX0,2342
130
+ smartsheet/models/sort_criterion.py,sha256=VwQwDZrqeEqoahpAqf7PJWEUogqcEhH-owV89EAbqsQ,1757
131
+ smartsheet/models/sort_specifier.py,sha256=1wR3RX7xSQni2jzSkid1OS7swSUyDJay46nWOeN_zTQ,1566
132
+ smartsheet/models/source.py,sha256=9Yko05-2BaTZBG8JgQWqZyvTOFMmWI9yndBak12_D1Q,2202
133
+ smartsheet/models/string_object_value.py,sha256=GPMIAA1utIefw4VVsHWcT5y5GBK9Z9FC4dc3qua4Px0,1241
134
+ smartsheet/models/summary_field.py,sha256=QdVYD2XleUKkprVAxOJ6dfTbZo8w7sSTj2p_wj2Ue2E,6341
135
+ smartsheet/models/template.py,sha256=Up5yM3Q02-8QM8j74_WWWN-AwCValM3xnAiOzmmQiDE,4207
136
+ smartsheet/models/title_rich_text_widget_content.py,sha256=zdHd_RdPPO7flnOmKqIkkqo_CSDtOg0Z4hj0vAK7-ZU,2018
137
+ smartsheet/models/token_paginated_result.py,sha256=gfdLwahCrG7kTRMVvoXe78jqYdw6TeZEVbnKqUPwCqc,2297
138
+ smartsheet/models/update_request.py,sha256=5CkaSfhPLUPqtU6O9EuwFsyccpeBB3rnLLtvyxPmrpM,2881
139
+ smartsheet/models/user.py,sha256=CKMjNusL7_TU0V07vqoxruL6gQbXHctBNItJJIsSQHI,1553
140
+ smartsheet/models/user_model.py,sha256=iULkJJ9T6BcosFwXtGA6ykS3JCQtfVGfLRridR1Z6jo,7226
141
+ smartsheet/models/user_plan.py,sha256=X0wqktFHBoBae4WQNM8nm_WL5HW0CZ0t6Uyd5tIKEKA,2012
142
+ smartsheet/models/user_profile.py,sha256=vKVL2XkFdO9l2RGZRRcpiASjek1q-Ffee7x4z53SLtE,2341
143
+ smartsheet/models/version.py,sha256=gC8YvEjB-RO9avvz3sG2lDHrDkMi0i-o9SP8h5vLrbY,1540
144
+ smartsheet/models/web_content_widget_content.py,sha256=N_2HEOsWLI6D3s6vGZV_qCsVEEe3xkxeK9xUAP4SqCI,1719
145
+ smartsheet/models/webhook.py,sha256=ezPXAr0ucYPTOhzBLDdR1HRA7b2S07biBB5wVD0PeSc,5487
146
+ smartsheet/models/webhook_secret.py,sha256=ohNC3wNf2QgqnRKH71ulvH4PVdqxHiK9FsnOGdP1FTM,1628
147
+ smartsheet/models/webhook_stats.py,sha256=pYEyF7SA_iM9D5irYDszLskZVoZT_SMsPynlO3e21Aw,2334
148
+ smartsheet/models/webhook_subscope.py,sha256=h65vj3vww4GsnBreDRKJcgg76XbC0-2K0PBXfpYI3f4,1414
149
+ smartsheet/models/widget.py,sha256=G5UKR1latGSuXqm-MCRQxn9W7IJgo2FsUWJ9heEW0RA,6099
150
+ smartsheet/models/widget_content.py,sha256=hxv3DJWO8YPe4ND-HUZ59eOVU9LAy02owU-KQVWUsDU,1525
151
+ smartsheet/models/widget_hyperlink.py,sha256=JPjaSftHFHiFj48tfOckGWzrew_CLKmE2k9lUA_RQSk,2059
152
+ smartsheet/models/workspace.py,sha256=_YT4i4DEK32kEyqlWixZUQSQyBiZkNtwtSmuhc98H2s,4522
153
+ smartsheet/models/enums/__init__.py,sha256=qDpcuk-xU4jVTvwgD6aWz8hUM02hOZbiRNDfMLSniQM,2356
154
+ smartsheet/models/enums/access_level.py,sha256=LvKh3Z2LrFeLm-R-dT0qOVinBsA4jEOxM02flg0LFaY,816
155
+ smartsheet/models/enums/asset_type.py,sha256=hrNXZDk_mme57f-0wO86mk_RwzNP8zkb9h7GAEZbhjQ,253
156
+ smartsheet/models/enums/attachment_parent_type.py,sha256=EFcrHg8xpx_ZxrrGb3vkk9Ji8PD74Q8GeWhXZMquVEw,770
157
+ smartsheet/models/enums/attachment_sub_type.py,sha256=wZEo80LynIFDFZkTHCpQx5T-G5deT9HSRBMRdvHyh7Q,826
158
+ smartsheet/models/enums/attachment_type.py,sha256=2c7TXc22Vzwq-8BG8rvEfqOpe29njT27otogdfVidwc,869
159
+ smartsheet/models/enums/automation_action_frequency.py,sha256=For6k_5WLY2vF1MfsX6uTGxDsth4NiAnwAuG-wqELjg,797
160
+ smartsheet/models/enums/automation_action_type.py,sha256=5g6ThkHZsQjw60nSoCq4x7wSmht5cyvkKjV0X3PvqMI,818
161
+ smartsheet/models/enums/automation_rule_disabled_reason.py,sha256=OZy9h1L0HavrU_XbRuZ4S-_iVRnITwsf3iWnbmAdbIE,964
162
+ smartsheet/models/enums/cell_link_status.py,sha256=0qVblxXIeW5r_wtwRDab3aOw3JKiGn9MFIc_9SIFEYI,854
163
+ smartsheet/models/enums/column_type.py,sha256=u3tD1Muy0Qx-cuyekCEBR9qmV4Nzo6SKsoxu8f2O4hU,938
164
+ smartsheet/models/enums/criteria_target.py,sha256=fTyrXMbglavtNQJnq5Gfyle9pjMmoq2mUpjXfQ_JJPo,734
165
+ smartsheet/models/enums/cross_sheet_reference_status.py,sha256=W4bR7HdSQHr6x6ngbZst8gOnJ8NZ2nXOc6zOx77IWGE,865
166
+ smartsheet/models/enums/currency_code.py,sha256=Fxg1ai0U53VexaFEgjpwLf9FJHQy2ykL9uqDIgSG9r4,1009
167
+ smartsheet/models/enums/day_descriptors.py,sha256=ZvjD6g4LqnjDopKN2kAWi5qZJrESjRY3H58Bva9IAUE,880
168
+ smartsheet/models/enums/day_ordinal.py,sha256=Wg2H2oOefSEH5hMJyo5vZ8Ge4_D6lXbq6paWKjp5HBA,789
169
+ smartsheet/models/enums/event_action.py,sha256=zO8QQN1doN5FaxuWtLMRQWRwDZ-iQ_aaq-jl9SlIUto,2005
170
+ smartsheet/models/enums/event_obejct_type.py,sha256=hB_J5FfiNJuaodxgjjcNehL1e8Pooq1yVtgP_ITS7lI,946
171
+ smartsheet/models/enums/event_source.py,sha256=tB9IEhZY4JvOUxX0qjckturiWMLF8S05gFh557DvjNk,847
172
+ smartsheet/models/enums/global_template.py,sha256=NQjHD1h9rn7B4CvOAeJzRVisCoGmlcdn_t-ZGaE7rTQ,782
173
+ smartsheet/models/enums/operator.py,sha256=fREabjb27V-vt2KDHZpDFwLf75TrAQwTte6S0OrEU0U,1606
174
+ smartsheet/models/enums/paper_type.py,sha256=vh0VrF6G9xB5Kdt979I51wulnTqYl8hMrXoUaR0MXUo,828
175
+ smartsheet/models/enums/predecessor_type.py,sha256=CB2oX7xbjAV8RjzkTCSHTKVWvzvCkwZLa21jBQLjotA,767
176
+ smartsheet/models/enums/publish_accessible_by.py,sha256=x5z2CCHttwprcyV7XL0AN39E1h7OIUMpe_Fei5HpBGo,751
177
+ smartsheet/models/enums/schedule_type.py,sha256=KtTpdD3oKlntmk1Nl2i3ymIfGW6CP3I_7mi7vrVTCZc,793
178
+ smartsheet/models/enums/seat_type.py,sha256=5kaFtJPpescgCtnbXg4JM6H35UQKh-eeSWBFlaBkbE4,318
179
+ smartsheet/models/enums/share_scope.py,sha256=LEZnBQjBGnFIHVHrX_FsG-sndGK-XsfqDhPeY7oZPWs,749
180
+ smartsheet/models/enums/share_type.py,sha256=89e8ki-mlH3i8qEjFKnqBEK-GUEipFItOE5rhED39bg,744
181
+ smartsheet/models/enums/sheet_email_format.py,sha256=St0FcwbnnkPQa0ZqlwnkQ44XxineojE-XtZmZd7_B9U,768
182
+ smartsheet/models/enums/sheet_filter_operator.py,sha256=upYEQhs7rrlDCmgUXVPjwqJ7qZBqAzGNpB6rq8CQvlQ,750
183
+ smartsheet/models/enums/sheet_filter_type.py,sha256=QSMBIPI4LoqHYXvB8_I_piEZtk7s0xehk2Sw92ianOw,769
184
+ smartsheet/models/enums/sort_direction.py,sha256=ljmMZ6vLwbKqAbu6zIplVv_00_RiD5Ek0YK68ZmaTes,758
185
+ smartsheet/models/enums/symbol.py,sha256=Vq7bqiutud9ERm6rYTBKwByjD-dKXFcW9J6Jl4tOFQE,1164
186
+ smartsheet/models/enums/system_column_type.py,sha256=UfhNUBGD_0K1Pas7fujGEuax55O3qI_Rsg7jMf3Vntk,826
187
+ smartsheet/models/enums/update_request_status.py,sha256=xYF84x1dTFhJMYVi1q3G1T9u1IGN3szlR1jj5HHC0hE,777
188
+ smartsheet/models/enums/user_status.py,sha256=SB7qRcA0dhdRimsOKHCGF3CB6fL0XuifxQEWZGNNS8Q,766
189
+ smartsheet/models/enums/widget_type.py,sha256=VfVq59fLZsT4ks_ZBrtv52u2Cl60iAdlA6mGD_elz-k,1072
190
+ smartsheet_python_sdk-3.5.5.dist-info/licenses/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
191
+ smartsheet_python_sdk-3.5.5.dist-info/licenses/NOTICE,sha256=mXr2ryVjnCjykeW0J79kFfVXQG_Z9SV4BV_QPNENW1U,420
192
+ smartsheet_python_sdk-3.5.5.dist-info/METADATA,sha256=hTPWYKQ7Vro4gb6USUDDHYGTZ8Gl9rCQst7zwJHxFRI,5305
193
+ smartsheet_python_sdk-3.5.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
194
+ smartsheet_python_sdk-3.5.5.dist-info/top_level.txt,sha256=kozWEYiKjyJmSXzd6p5ugkQ5bhoHS9V3NnvLagUfcNw,11
195
+ smartsheet_python_sdk-3.5.5.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,10 @@
1
+ Smartsheet Python SDK
2
+ Copyright 2016-2021 Smartsheet.com, Inc.
3
+
4
+ Portions of this software were developed by SmartBear Software under
5
+ the Apache License, Version 2.0. The original software is available
6
+ from https://github.com/swagger-api/swagger-codegen
7
+
8
+ Portions of this software were developed by Dropbox Inc. under the
9
+ MIT license. The original software is available from
10
+ https://github.com/dropbox/dropbox-sdk-python
@@ -0,0 +1 @@
1
+ smartsheet