smartsheet-python-sdk 3.8.0__tar.gz → 3.9.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.
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/CHANGELOG.md +27 -0
- {smartsheet_python_sdk-3.8.0/smartsheet_python_sdk.egg-info → smartsheet_python_sdk-3.9.0}/PKG-INFO +1 -1
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_enums.rst +32 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_models.rst +64 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/__init__.py +11 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/create_report_request.py +107 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/create_report_result.py +105 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/__init__.py +5 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/enums/report_aggregation_type.py +27 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/enums/report_asset_type.py +22 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/enums/report_boolean_operator.py +22 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/enums/report_destination_type.py +22 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/enums/report_filter_operator.py +56 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/seat_type.py +2 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_column_identifier.py +117 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_definition.py +98 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_destination.py +64 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_filter_criterion.py +100 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_filter_expression.py +126 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_grouping_criterion.py +83 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_scope_inclusion.py +68 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_sorting_criterion.py +73 -0
- smartsheet_python_sdk-3.9.0/smartsheet/models/report_summarizing_criterion.py +73 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/reports.py +166 -1
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/smartsheet.py +5 -3
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/types.py +15 -4
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/users.py +14 -2
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/util.py +0 -1
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/version.py +3 -3
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0/smartsheet_python_sdk.egg-info}/PKG-INFO +1 -1
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet_python_sdk.egg-info/SOURCES.txt +24 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/reports/common_test_constants.py +5 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/reports/test_add_report_columns.py +319 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/reports/test_add_report_scope.py +133 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/reports/test_create_report.py +334 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/reports/test_remove_report_scope.py +133 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/reports/test_update_report_definition.py +408 -0
- smartsheet_python_sdk-3.9.0/tests/mock_api/test_mock_api_reports.py +55 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/test_list_user_plans.py +19 -2
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/test_list_users.py +44 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/test_user_upgrade_downgrade.py +21 -0
- smartsheet_python_sdk-3.9.0/tests/test_enumerated_value_set.py +366 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.gitchangelog.rc +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.gitchangelog.tpl +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.github/pull_request_template.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.github/workflows/publish-distribution.yaml +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.github/workflows/publish-documentation.yaml +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.github/workflows/test-build.yaml +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.gitignore +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.markdownlint.json +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/.roo/roomotes.yml +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/ADVANCED.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/CONTRIBUTING.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/ISSUE-FIRST.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/LICENSE.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/Makefile +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/NOTICE +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/README.md +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/Makefile +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/conf.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/index.rst +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_api.rst +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_exceptions.rst +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_types.rst +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/pyproject.toml +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/setup.cfg +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/__init__.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/attachments.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/cells.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/contacts.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/discussions.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/events.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/exceptions.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/favorites.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/folders.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/groups.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/home.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/images.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/access_token.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/account.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/alternate_email.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/asset_share.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/asset_shares_paginated_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/attachment.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/auto_number_format.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/automation_action.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/automation_rule.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/boolean_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/bulk_item_failure.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/bulk_item_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/cell.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/cell_data_item.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/cell_history.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/cell_link.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/cell_link_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/chart_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/column.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/comment.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/contact.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/contact_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/container_destination.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/copy_or_move_row_destination.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/copy_or_move_row_directive.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/copy_or_move_row_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/criteria.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/cross_sheet_reference.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/currency.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/date_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/datetime_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/discussion.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/downloaded_file.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/duration.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/email.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/access_level.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/asset_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/attachment_parent_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/attachment_sub_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/attachment_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/automation_action_frequency.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/automation_action_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/automation_rule_disabled_reason.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/cell_link_status.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/column_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/criteria_target.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/cross_sheet_reference_status.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/currency_code.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/day_descriptors.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/day_ordinal.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/event_action.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/event_object_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/event_source.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/favorite_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/global_template.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/operator.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/paper_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/predecessor_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/publish_accessible_by.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/schedule_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/share_scope.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/share_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/sheet_email_format.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/sheet_filter_operator.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/sheet_filter_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/sort_direction.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/symbol.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/system_column_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/update_request_status.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/user_status.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/widget_type.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/error.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/error_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/event.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/event_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/explicit_null.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/favorite.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/folder.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/font_family.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/format_details.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/format_tables.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/group.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/group_member.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/home.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/hyperlink.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/image.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/image_url.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/image_url_map.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/image_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/index_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/json_object.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/multi_contact_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/multi_picklist_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/multi_row_email.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/number_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/o_auth_error.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/paginated_children_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/predecessor.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/predecessor_list.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/primitive_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/profile_image.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/project_settings.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/recipient.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/report.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/report_cell.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/report_column.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/report_publish.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/report_row.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/report_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/row.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/row_email.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/row_mapping.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/schedule.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/scope.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/search_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/search_result_item.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/selection_range.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sent_update_request.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/server_info.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/share.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_email.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_filter.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_filter_details.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_publish.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_summary.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_user_permissions.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sheet_user_settings.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/shortcut_data_item.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/shortcut_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sight.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sight_publish.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sort_criterion.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/sort_specifier.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/source.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/string_object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/summary_field.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/template.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/title_rich_text_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/token_paginated_result.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/update_request.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/user.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/user_model.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/user_plan.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/user_profile.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/version.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/web_content_widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/webhook.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/webhook_secret.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/webhook_stats.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/webhook_subscope.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/widget.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/widget_content.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/widget_hyperlink.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/workspace.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/object_value.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/passthrough.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/search.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/server.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/session.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/sharing.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/sheets.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/sights.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/templates.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/token.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/webhooks.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/workspaces.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet_python_sdk.egg-info/dependency_links.txt +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet_python_sdk.egg-info/requires.txt +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet_python_sdk.egg-info/top_level.txt +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/__init__.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/__init__.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/favorites/__init__.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/favorites/common_test_constants.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/favorites/test_is_favorite.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/mock_api_test_helper.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_automation_rules.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_columns.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_folders.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_rows.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_sharing.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_sheets.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_sights.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_api_workspaces.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_change_agent.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/test_mock_serialization.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/common_test_constants.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/test_deactivate_user.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/test_reactivate_user.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/mock_api/users/test_remove_user_from_plan.py +0 -0
- {smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/tests/test_util_serialize_dict.py +0 -0
|
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [x.x.x] - Unreleased
|
|
9
9
|
|
|
10
|
+
## [3.9.0] - 2026-04-30
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Support for POST /2.0/reports endpoint
|
|
15
|
+
- WireMock integration tests for POST /2.0/reports endpoint including request body serialization validation
|
|
16
|
+
- Support for POST /2.0/reports/{reportId}/columns endpoint
|
|
17
|
+
- New `add_report_columns()` method in Reports class to add columns to a report
|
|
18
|
+
- WireMock integration tests for POST /2.0/reports/{reportId}/columns endpoint
|
|
19
|
+
- Support for PUT /2.0/reports/{reportId}/definition endpoint
|
|
20
|
+
- New `update_report_definition()` method in Reports class to update report definitions
|
|
21
|
+
- WireMock integration tests for report definition update endpoint including nested filter validation
|
|
22
|
+
- Support for POST /2.0/reports/{reportId}/scope endpoint
|
|
23
|
+
- Support for DELETE /2.0/reports/{reportId}/scope endpoint
|
|
24
|
+
- WireMock integration tests for POST /2.0/reports/{reportId}/scope endpoint
|
|
25
|
+
- WireMock integration tests for DELETE /2.0/reports/{reportId}/scope endpoint
|
|
26
|
+
- Support for DELETE /2.0/reports/{reportId} endpoint
|
|
27
|
+
- Add `CONTRIBUTOR` seat type to `SeatType`, `UpgradeSeatType`, and `DowngradeSeatType` enums
|
|
28
|
+
- Add mock API tests for `CONTRIBUTOR` seat type in list users and downgrade user operations
|
|
29
|
+
- Add `displayContributorSeatType` query parameter to `list_users()` and `list_user_plans()` methods
|
|
30
|
+
- When `true`, VIEWER seat types to CONTRIBUTOR in the response
|
|
31
|
+
- When `false` or omitted, re-writes CONTRIBUTOR seat types to VIEWER in the response
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- Fix AttributeError and TypeError exception handling
|
|
36
|
+
|
|
10
37
|
## [3.8.0] - 2026-04-17
|
|
11
38
|
|
|
12
39
|
### Added
|
{smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_enums.rst
RENAMED
|
@@ -185,6 +185,38 @@ PublishAccessibleBy
|
|
|
185
185
|
:undoc-members:
|
|
186
186
|
:show-inheritance:
|
|
187
187
|
|
|
188
|
+
ReportAggregationType
|
|
189
|
+
-----------------------------------------------------
|
|
190
|
+
|
|
191
|
+
.. automodule:: smartsheet.models.enums.report_aggregation_type
|
|
192
|
+
:members:
|
|
193
|
+
:undoc-members:
|
|
194
|
+
:show-inheritance:
|
|
195
|
+
|
|
196
|
+
ReportAssetType
|
|
197
|
+
------------------------------------------------------
|
|
198
|
+
|
|
199
|
+
.. automodule:: smartsheet.models.enums.report_asset_type
|
|
200
|
+
:members:
|
|
201
|
+
:undoc-members:
|
|
202
|
+
:show-inheritance:
|
|
203
|
+
|
|
204
|
+
ReportBooleanOperator
|
|
205
|
+
-----------------------------------------------------
|
|
206
|
+
|
|
207
|
+
.. automodule:: smartsheet.models.enums.report_boolean_operator
|
|
208
|
+
:members:
|
|
209
|
+
:undoc-members:
|
|
210
|
+
:show-inheritance:
|
|
211
|
+
|
|
212
|
+
ReportFilterOperator
|
|
213
|
+
----------------------------------------------------
|
|
214
|
+
|
|
215
|
+
.. automodule:: smartsheet.models.enums.report_filter_operator
|
|
216
|
+
:members:
|
|
217
|
+
:undoc-members:
|
|
218
|
+
:show-inheritance:
|
|
219
|
+
|
|
188
220
|
ScheduleType
|
|
189
221
|
---------------------------------------------
|
|
190
222
|
|
{smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/docs-source/smartsheet_models.rst
RENAMED
|
@@ -553,6 +553,14 @@ Report
|
|
|
553
553
|
:undoc-members:
|
|
554
554
|
:show-inheritance:
|
|
555
555
|
|
|
556
|
+
ReportSummarizingCriterion
|
|
557
|
+
--------------------------
|
|
558
|
+
|
|
559
|
+
.. automodule:: smartsheet.models.report_summarizing_criterion
|
|
560
|
+
:members:
|
|
561
|
+
:undoc-members:
|
|
562
|
+
:show-inheritance:
|
|
563
|
+
|
|
556
564
|
ReportCell
|
|
557
565
|
----------
|
|
558
566
|
|
|
@@ -569,6 +577,54 @@ ReportColumn
|
|
|
569
577
|
:undoc-members:
|
|
570
578
|
:show-inheritance:
|
|
571
579
|
|
|
580
|
+
ReportColumnIdentifier
|
|
581
|
+
----------------------
|
|
582
|
+
|
|
583
|
+
.. automodule:: smartsheet.models.report_column_identifier
|
|
584
|
+
:members:
|
|
585
|
+
:undoc-members:
|
|
586
|
+
:show-inheritance:
|
|
587
|
+
|
|
588
|
+
ReportDefinition
|
|
589
|
+
----------------
|
|
590
|
+
|
|
591
|
+
.. automodule:: smartsheet.models.report_definition
|
|
592
|
+
:members:
|
|
593
|
+
:undoc-members:
|
|
594
|
+
:show-inheritance:
|
|
595
|
+
|
|
596
|
+
ReportFilterCriterion
|
|
597
|
+
---------------------
|
|
598
|
+
|
|
599
|
+
.. automodule:: smartsheet.models.report_filter_criterion
|
|
600
|
+
:members:
|
|
601
|
+
:undoc-members:
|
|
602
|
+
:show-inheritance:
|
|
603
|
+
|
|
604
|
+
ReportFilterExpression
|
|
605
|
+
----------------------
|
|
606
|
+
|
|
607
|
+
.. automodule:: smartsheet.models.report_filter_expression
|
|
608
|
+
:members:
|
|
609
|
+
:undoc-members:
|
|
610
|
+
:show-inheritance:
|
|
611
|
+
|
|
612
|
+
ReportGroupingCriterion
|
|
613
|
+
-----------------------
|
|
614
|
+
|
|
615
|
+
.. automodule:: smartsheet.models.report_grouping_criterion
|
|
616
|
+
:members:
|
|
617
|
+
:undoc-members:
|
|
618
|
+
:show-inheritance:
|
|
619
|
+
|
|
620
|
+
ReportScopeInclusion
|
|
621
|
+
------------
|
|
622
|
+
|
|
623
|
+
.. automodule:: smartsheet.models.report_scope_inclusion
|
|
624
|
+
:members:
|
|
625
|
+
:undoc-members:
|
|
626
|
+
:show-inheritance:
|
|
627
|
+
|
|
572
628
|
ReportPublish
|
|
573
629
|
-------------
|
|
574
630
|
|
|
@@ -585,6 +641,14 @@ ReportRow
|
|
|
585
641
|
:undoc-members:
|
|
586
642
|
:show-inheritance:
|
|
587
643
|
|
|
644
|
+
ReportSortingCriterion
|
|
645
|
+
----------------------
|
|
646
|
+
|
|
647
|
+
.. automodule:: smartsheet.models.report_sorting_criterion
|
|
648
|
+
:members:
|
|
649
|
+
:undoc-members:
|
|
650
|
+
:show-inheritance:
|
|
651
|
+
|
|
588
652
|
ReportWidgetContent
|
|
589
653
|
-------------------
|
|
590
654
|
|
|
@@ -79,11 +79,22 @@ from .predecessor import Predecessor
|
|
|
79
79
|
from .predecessor_list import PredecessorList
|
|
80
80
|
from .project_settings import ProjectSettings
|
|
81
81
|
from .recipient import Recipient
|
|
82
|
+
from .create_report_request import CreateReportRequest
|
|
83
|
+
from .create_report_result import CreateReportResult
|
|
82
84
|
from .report import Report
|
|
85
|
+
from .report_summarizing_criterion import ReportSummarizingCriterion
|
|
83
86
|
from .report_cell import ReportCell
|
|
84
87
|
from .report_column import ReportColumn
|
|
88
|
+
from .report_column_identifier import ReportColumnIdentifier
|
|
89
|
+
from .report_definition import ReportDefinition
|
|
90
|
+
from .report_destination import ReportDestination
|
|
91
|
+
from .report_filter_criterion import ReportFilterCriterion
|
|
92
|
+
from .report_filter_expression import ReportFilterExpression
|
|
93
|
+
from .report_grouping_criterion import ReportGroupingCriterion
|
|
85
94
|
from .report_publish import ReportPublish
|
|
86
95
|
from .report_row import ReportRow
|
|
96
|
+
from .report_sorting_criterion import ReportSortingCriterion
|
|
97
|
+
from .report_scope_inclusion import ReportScopeInclusion
|
|
87
98
|
from .result import Result
|
|
88
99
|
from .row import Row
|
|
89
100
|
from .row_email import RowEmail
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
from __future__ import absolute_import
|
|
19
|
+
|
|
20
|
+
from typing import Optional
|
|
21
|
+
|
|
22
|
+
from ..types import Boolean, String, TypedList, TypedObject, json
|
|
23
|
+
from ..util import deserialize, serialize
|
|
24
|
+
|
|
25
|
+
from .report_column import ReportColumn
|
|
26
|
+
from .report_scope_inclusion import ReportScopeInclusion
|
|
27
|
+
from .report_destination import ReportDestination
|
|
28
|
+
from .report_definition import ReportDefinition
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class CreateReportRequest:
|
|
32
|
+
"""Smartsheet CreateReportRequest data model."""
|
|
33
|
+
|
|
34
|
+
def __init__(self, props=None, base_obj=None):
|
|
35
|
+
"""Initialize the CreateReportRequest model."""
|
|
36
|
+
self._base = None
|
|
37
|
+
if base_obj is not None:
|
|
38
|
+
self._base = base_obj
|
|
39
|
+
|
|
40
|
+
self._name = String()
|
|
41
|
+
self._columns = TypedList(ReportColumn)
|
|
42
|
+
self._scope = TypedList(ReportScopeInclusion)
|
|
43
|
+
self._report_definition = TypedObject(ReportDefinition)
|
|
44
|
+
self._is_summary_report = Boolean()
|
|
45
|
+
self._destination = TypedObject(ReportDestination)
|
|
46
|
+
|
|
47
|
+
if props:
|
|
48
|
+
deserialize(self, props)
|
|
49
|
+
|
|
50
|
+
self.__initialized = True
|
|
51
|
+
|
|
52
|
+
@property
|
|
53
|
+
def name(self) -> Optional[str]:
|
|
54
|
+
return self._name.value
|
|
55
|
+
|
|
56
|
+
@name.setter
|
|
57
|
+
def name(self, value: str) -> None:
|
|
58
|
+
self._name.value = value
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def columns(self) -> TypedList:
|
|
62
|
+
return self._columns
|
|
63
|
+
|
|
64
|
+
@columns.setter
|
|
65
|
+
def columns(self, value) -> None:
|
|
66
|
+
self._columns.load(value)
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def scope(self) -> TypedList:
|
|
70
|
+
return self._scope
|
|
71
|
+
|
|
72
|
+
@scope.setter
|
|
73
|
+
def scope(self, value) -> None:
|
|
74
|
+
self._scope.load(value)
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
def report_definition(self):
|
|
78
|
+
return self._report_definition.value
|
|
79
|
+
|
|
80
|
+
@report_definition.setter
|
|
81
|
+
def report_definition(self, value) -> None:
|
|
82
|
+
self._report_definition.value = value
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
def is_summary_report(self) -> Optional[bool]:
|
|
86
|
+
return self._is_summary_report.value
|
|
87
|
+
|
|
88
|
+
@is_summary_report.setter
|
|
89
|
+
def is_summary_report(self, value: bool) -> None:
|
|
90
|
+
self._is_summary_report.value = value
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def destination(self):
|
|
94
|
+
return self._destination.value
|
|
95
|
+
|
|
96
|
+
@destination.setter
|
|
97
|
+
def destination(self, value) -> None:
|
|
98
|
+
self._destination.value = value
|
|
99
|
+
|
|
100
|
+
def to_dict(self):
|
|
101
|
+
return serialize(self)
|
|
102
|
+
|
|
103
|
+
def to_json(self):
|
|
104
|
+
return json.dumps(self.to_dict())
|
|
105
|
+
|
|
106
|
+
def __str__(self):
|
|
107
|
+
return self.to_json()
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
from __future__ import absolute_import
|
|
19
|
+
|
|
20
|
+
from typing import Optional
|
|
21
|
+
|
|
22
|
+
from smartsheet.models.enums.access_level import AccessLevel
|
|
23
|
+
from .report_column import ReportColumn
|
|
24
|
+
|
|
25
|
+
from ..types import Boolean, EnumeratedValue, Number, String, TypedList, json
|
|
26
|
+
from ..util import deserialize, serialize
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class CreateReportResult:
|
|
30
|
+
"""Smartsheet CreateReportResult data model."""
|
|
31
|
+
|
|
32
|
+
def __init__(self, props=None, base_obj=None):
|
|
33
|
+
"""Initialize the CreateReportResult model."""
|
|
34
|
+
self._base = None
|
|
35
|
+
if base_obj is not None:
|
|
36
|
+
self._base = base_obj
|
|
37
|
+
|
|
38
|
+
self._id = Number()
|
|
39
|
+
self._name = String()
|
|
40
|
+
self._access_level = EnumeratedValue(AccessLevel)
|
|
41
|
+
self._permalink = String()
|
|
42
|
+
self._is_summary_report = Boolean()
|
|
43
|
+
self._columns = TypedList(ReportColumn)
|
|
44
|
+
|
|
45
|
+
if props:
|
|
46
|
+
deserialize(self, props)
|
|
47
|
+
|
|
48
|
+
self.__initialized = True
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def id(self) -> Optional[int]:
|
|
52
|
+
return self._id.value
|
|
53
|
+
|
|
54
|
+
@id.setter
|
|
55
|
+
def id(self, value: int) -> None:
|
|
56
|
+
self._id.value = value
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
def name(self) -> Optional[str]:
|
|
60
|
+
return self._name.value
|
|
61
|
+
|
|
62
|
+
@name.setter
|
|
63
|
+
def name(self, value: str) -> None:
|
|
64
|
+
self._name.value = value
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
def access_level(self):
|
|
68
|
+
return self._access_level.value
|
|
69
|
+
|
|
70
|
+
@access_level.setter
|
|
71
|
+
def access_level(self, value) -> None:
|
|
72
|
+
self._access_level.set(value)
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
def permalink(self) -> Optional[str]:
|
|
76
|
+
return self._permalink.value
|
|
77
|
+
|
|
78
|
+
@permalink.setter
|
|
79
|
+
def permalink(self, value: str) -> None:
|
|
80
|
+
self._permalink.value = value
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def is_summary_report(self) -> Optional[bool]:
|
|
84
|
+
return self._is_summary_report.value
|
|
85
|
+
|
|
86
|
+
@is_summary_report.setter
|
|
87
|
+
def is_summary_report(self, value: bool) -> None:
|
|
88
|
+
self._is_summary_report.value = value
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
def columns(self) -> TypedList:
|
|
92
|
+
return self._columns
|
|
93
|
+
|
|
94
|
+
@columns.setter
|
|
95
|
+
def columns(self, value) -> None:
|
|
96
|
+
self._columns.load(value)
|
|
97
|
+
|
|
98
|
+
def to_dict(self):
|
|
99
|
+
return serialize(self)
|
|
100
|
+
|
|
101
|
+
def to_json(self):
|
|
102
|
+
return json.dumps(self.to_dict())
|
|
103
|
+
|
|
104
|
+
def __str__(self):
|
|
105
|
+
return self.to_json()
|
{smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/__init__.py
RENAMED
|
@@ -42,6 +42,11 @@ from .operator import Operator
|
|
|
42
42
|
from .paper_type import PaperType
|
|
43
43
|
from .predecessor_type import PredecessorType
|
|
44
44
|
from .publish_accessible_by import PublishAccessibleBy
|
|
45
|
+
from .report_aggregation_type import ReportAggregationType
|
|
46
|
+
from .report_asset_type import ReportAssetType
|
|
47
|
+
from .report_boolean_operator import ReportBooleanOperator
|
|
48
|
+
from .report_destination_type import ReportDestinationType
|
|
49
|
+
from .report_filter_operator import ReportFilterOperator
|
|
45
50
|
from .schedule_type import ScheduleType
|
|
46
51
|
from .share_scope import ShareScope
|
|
47
52
|
from .share_type import ShareType
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
from enum import Enum
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReportAggregationType(str, Enum):
|
|
21
|
+
SUM = 'SUM'
|
|
22
|
+
AVG = 'AVG'
|
|
23
|
+
MIN = 'MIN'
|
|
24
|
+
MAX = 'MAX'
|
|
25
|
+
COUNT = 'COUNT'
|
|
26
|
+
FIRST = 'FIRST'
|
|
27
|
+
LAST = 'LAST'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
from enum import Enum
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReportAssetType(str, Enum):
|
|
21
|
+
SHEET = 'sheet'
|
|
22
|
+
WORKSPACE = 'workspace'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
from enum import Enum
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReportBooleanOperator(str, Enum):
|
|
21
|
+
AND = 'AND'
|
|
22
|
+
OR = 'OR'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
from enum import Enum
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReportDestinationType(str, Enum):
|
|
21
|
+
WORKSPACE = 'workspace'
|
|
22
|
+
FOLDER = 'folder'
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# pylint: disable=C0111,R0902,R0904,R0912,R0913,R0915,E1101
|
|
2
|
+
# Smartsheet Python SDK.
|
|
3
|
+
#
|
|
4
|
+
# Copyright 2018 Smartsheet.com, Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
7
|
+
# not use this file except in compliance with the License. You may obtain
|
|
8
|
+
# a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
# License for the specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
from enum import Enum
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReportFilterOperator(str, Enum):
|
|
21
|
+
EQUAL = 'EQUAL'
|
|
22
|
+
NOT_EQUAL = 'NOT_EQUAL'
|
|
23
|
+
GREATER_THAN = 'GREATER_THAN'
|
|
24
|
+
LESS_THAN = 'LESS_THAN'
|
|
25
|
+
CONTAINS = 'CONTAINS'
|
|
26
|
+
BETWEEN = 'BETWEEN'
|
|
27
|
+
TODAY = 'TODAY'
|
|
28
|
+
PAST = 'PAST'
|
|
29
|
+
FUTURE = 'FUTURE'
|
|
30
|
+
LAST_N_DAYS = 'LAST_N_DAYS'
|
|
31
|
+
NEXT_N_DAYS = 'NEXT_N_DAYS'
|
|
32
|
+
IS_BLANK = 'IS_BLANK'
|
|
33
|
+
IS_NOT_BLANK = 'IS_NOT_BLANK'
|
|
34
|
+
IS_NUMBER = 'IS_NUMBER'
|
|
35
|
+
IS_NOT_NUMBER = 'IS_NOT_NUMBER'
|
|
36
|
+
IS_DATE = 'IS_DATE'
|
|
37
|
+
IS_NOT_DATE = 'IS_NOT_DATE'
|
|
38
|
+
IS_CHECKED = 'IS_CHECKED'
|
|
39
|
+
IS_UNCHECKED = 'IS_UNCHECKED'
|
|
40
|
+
IS_ONE_OF = 'IS_ONE_OF'
|
|
41
|
+
IS_NOT_ONE_OF = 'IS_NOT_ONE_OF'
|
|
42
|
+
LESS_THAN_OR_EQUAL = 'LESS_THAN_OR_EQUAL'
|
|
43
|
+
GREATER_THAN_OR_EQUAL = 'GREATER_THAN_OR_EQUAL'
|
|
44
|
+
DOES_NOT_CONTAIN = 'DOES_NOT_CONTAIN'
|
|
45
|
+
NOT_BETWEEN = 'NOT_BETWEEN'
|
|
46
|
+
NOT_TODAY = 'NOT_TODAY'
|
|
47
|
+
NOT_PAST = 'NOT_PAST'
|
|
48
|
+
NOT_FUTURE = 'NOT_FUTURE'
|
|
49
|
+
NOT_LAST_N_DAYS = 'NOT_LAST_N_DAYS'
|
|
50
|
+
NOT_NEXT_N_DAYS = 'NOT_NEXT_N_DAYS'
|
|
51
|
+
HAS_ANY_OF = 'HAS_ANY_OF'
|
|
52
|
+
HAS_NONE_OF = 'HAS_NONE_OF'
|
|
53
|
+
HAS_ALL_OF = 'HAS_ALL_OF'
|
|
54
|
+
NOT_ALL_OF = 'NOT_ALL_OF'
|
|
55
|
+
MULTI_IS_EQUAL = 'MULTI_IS_EQUAL'
|
|
56
|
+
MULTI_IS_NOT_EQUAL = 'MULTI_IS_NOT_EQUAL'
|
{smartsheet_python_sdk-3.8.0 → smartsheet_python_sdk-3.9.0}/smartsheet/models/enums/seat_type.py
RENAMED
|
@@ -5,11 +5,13 @@ class SeatType(str, Enum):
|
|
|
5
5
|
GUEST = 'GUEST'
|
|
6
6
|
MEMBER = 'MEMBER'
|
|
7
7
|
PROVISIONAL_MEMBER = 'PROVISIONAL_MEMBER'
|
|
8
|
+
CONTRIBUTOR = 'CONTRIBUTOR'
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
class DowngradeSeatType(str, Enum):
|
|
11
12
|
VIEWER = 'VIEWER'
|
|
12
13
|
GUEST = 'GUEST'
|
|
14
|
+
CONTRIBUTOR = 'CONTRIBUTOR'
|
|
13
15
|
|
|
14
16
|
|
|
15
17
|
class UpgradeSeatType(str, Enum):
|