-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #864 from tableau/development
Merging Development to Main branch
- Loading branch information
Showing
85 changed files
with
3,411 additions
and
1,843 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,55 @@ | ||
from .namespace import NEW_NAMESPACE as DEFAULT_NAMESPACE | ||
from .models import ConnectionCredentials, ConnectionItem, DataAlertItem, DatasourceItem,\ | ||
GroupItem, JobItem, BackgroundJobItem, PaginationItem, ProjectItem, ScheduleItem,\ | ||
SiteItem, TableauAuth, PersonalAccessTokenAuth, UserItem, ViewItem, WorkbookItem, UnpopulatedPropertyError,\ | ||
HourlyInterval, DailyInterval, WeeklyInterval, MonthlyInterval, IntervalItem, TaskItem,\ | ||
SubscriptionItem, Target, PermissionsRule, Permission, DatabaseItem, TableItem, ColumnItem, FlowItem, \ | ||
WebhookItem, PersonalAccessTokenAuth | ||
from .server import RequestOptions, CSVRequestOptions, ImageRequestOptions, PDFRequestOptions, Filter, Sort, \ | ||
Server, ServerResponseError, MissingRequiredFieldError, NotSignedInError, Pager | ||
from .models import ( | ||
ConnectionCredentials, | ||
ConnectionItem, | ||
DataAlertItem, | ||
DatasourceItem, | ||
DQWItem, | ||
GroupItem, | ||
JobItem, | ||
BackgroundJobItem, | ||
PaginationItem, | ||
ProjectItem, | ||
ScheduleItem, | ||
SiteItem, | ||
TableauAuth, | ||
PersonalAccessTokenAuth, | ||
UserItem, | ||
ViewItem, | ||
WorkbookItem, | ||
UnpopulatedPropertyError, | ||
HourlyInterval, | ||
DailyInterval, | ||
WeeklyInterval, | ||
MonthlyInterval, | ||
IntervalItem, | ||
TaskItem, | ||
SubscriptionItem, | ||
Target, | ||
PermissionsRule, | ||
Permission, | ||
DatabaseItem, | ||
TableItem, | ||
ColumnItem, | ||
FlowItem, | ||
WebhookItem, | ||
PersonalAccessTokenAuth, | ||
) | ||
from .server import ( | ||
RequestOptions, | ||
CSVRequestOptions, | ||
ImageRequestOptions, | ||
PDFRequestOptions, | ||
Filter, | ||
Sort, | ||
Server, | ||
ServerResponseError, | ||
MissingRequiredFieldError, | ||
NotSignedInError, | ||
Pager, | ||
) | ||
from ._version import get_versions | ||
__version__ = get_versions()['version'] | ||
|
||
__version__ = get_versions()["version"] | ||
__VERSION__ = __version__ | ||
del get_versions |
Oops, something went wrong.