Skip to content

Commit 48b0d70

Browse files
committed
Updated to latest spec.
Change log: - Updated documentation. - Added removed_member_policy field to FolderPolicy. - Added group_type field to GroupInfo. - Added owner_team and parent_shared_folder_id field to SharedFolderMetadataBase. - Added not_mountable to MountFolderError. - Added not_unmountable to UnmountFolderError. - Added validation for member external id and email address. - Added shared_link_create_policy field to TeamSharingPolicies. - Added team_license_limit to MembersSuspendError and MembersUnsuspendError.
1 parent bf0d3af commit 48b0d70

File tree

14 files changed

+1078
-358
lines changed

14 files changed

+1078
-358
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '6.0'
62+
version = '6.1'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '6.0'
64+
release = '6.1'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

dropbox/async.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
# Auto-generated by BabelAPI, do not modify.
23
try:
34
from . import babel_validators as bv
@@ -313,7 +314,8 @@ def is_other(self):
313314
def __repr__(self):
314315
return 'PollError(%r, %r)' % (self._tag, self._value)
315316

316-
LaunchResultBase._async_job_id_validator = bv.String(min_length=1)
317+
AsyncJobId_validator = bv.String(min_length=1)
318+
LaunchResultBase._async_job_id_validator = AsyncJobId_validator
317319
LaunchResultBase._tagmap = {
318320
'async_job_id': LaunchResultBase._async_job_id_validator,
319321
}
@@ -326,7 +328,7 @@ def __repr__(self):
326328

327329
LaunchEmptyResult.complete = LaunchEmptyResult('complete')
328330

329-
PollArg._async_job_id_validator = bv.String(min_length=1)
331+
PollArg._async_job_id_validator = AsyncJobId_validator
330332
PollArg._all_field_names_ = set(['async_job_id'])
331333
PollArg._all_fields_ = [('async_job_id', PollArg._async_job_id_validator)]
332334

dropbox/auth.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
# Auto-generated by BabelAPI, do not modify.
23
try:
34
from . import babel_validators as bv

0 commit comments

Comments
 (0)