Skip to content

Commit b999efb

Browse files
DropboxBotScott Erickson
and
Scott Erickson
authored
Automated Spec Update (#807)
* Automated Spec Update 2026d2d9a589c1679f82507e4699252a2c3764ba Change Notes: team_log Namespace: - Update Comments common: - Update EmailAddress regex Co-authored-by: Scott Erickson <serickson@dropbox.com> * Update package.json Co-authored-by: DropboxBot <DropboxBot@users.noreply.github.com> Co-authored-by: Scott Erickson <serickson@dropbox.com>
1 parent 2445e18 commit b999efb

File tree

5 files changed

+14
-16
lines changed

5 files changed

+14
-16
lines changed

lib/types.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -8180,18 +8180,16 @@ is only present when needed to discriminate between multiple possible subtypes.
81808180
*/
81818181

81828182
/**
8183-
* Email ingest policy
8183+
* Policy for deciding whether a team can use Email to my Dropbox feature
81848184
* @typedef {Object} TeamLogEmailIngestPolicy
81858185
* @property {('disabled'|'enabled'|'other')} .tag - Tag identifying the union variant.
81868186
*/
81878187

81888188
/**
8189-
* Changed email to my dropbox policy for team.
8189+
* Changed email to my Dropbox policy for team.
81908190
* @typedef {Object} TeamLogEmailIngestPolicyChangedDetails
8191-
* @property {TeamLogEmailIngestPolicy} new_value - New email to my dropbox
8192-
* policy.
8193-
* @property {TeamLogEmailIngestPolicy} previous_value - Previous email to my
8194-
* dropbox policy.
8191+
* @property {TeamLogEmailIngestPolicy} new_value - To.
8192+
* @property {TeamLogEmailIngestPolicy} previous_value - From.
81958193
*/
81968194

81978195
/**
@@ -10738,7 +10736,7 @@ is only present when needed to discriminate between multiple possible subtypes.
1073810736
* directory restrictions list
1073910737
* @property {TeamLogEmailIngestPolicyChangedType} [email_ingest_policy_changed]
1074010738
* - Available if .tag is email_ingest_policy_changed. (team_policies) Changed
10741-
* email to my dropbox policy for team
10739+
* email to my Dropbox policy for team
1074210740
* @property {TeamLogEmmAddExceptionType} [emm_add_exception] - Available if
1074310741
* .tag is emm_add_exception. (team_policies) Added members to EMM exception
1074410742
* list

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dropbox",
3-
"version": "10.9.0",
3+
"version": "10.10.0",
44
"registry": "npm",
55
"description": "The Dropbox JavaScript SDK is a lightweight, promise based interface to the Dropbox v2 API that works in both nodejs and browser environments.",
66
"main": "cjs/index.js",

types/dropbox_types.d.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -17525,20 +17525,20 @@
1752517525
}
1752617526

1752717527
/**
17528-
* Email ingest policy
17528+
* Policy for deciding whether a team can use Email to my Dropbox feature
1752917529
*/
1753017530
export type EmailIngestPolicy = EmailIngestPolicyDisabled | EmailIngestPolicyEnabled | EmailIngestPolicyOther;
1753117531

1753217532
/**
17533-
* Changed email to my dropbox policy for team.
17533+
* Changed email to my Dropbox policy for team.
1753417534
*/
1753517535
export interface EmailIngestPolicyChangedDetails {
1753617536
/**
17537-
* New email to my dropbox policy.
17537+
* To.
1753817538
*/
1753917539
new_value: EmailIngestPolicy;
1754017540
/**
17541-
* Previous email to my dropbox policy.
17541+
* From.
1754217542
*/
1754317543
previous_value: EmailIngestPolicy;
1754417544
}
@@ -22437,7 +22437,7 @@
2243722437
}
2243822438

2243922439
/**
22440-
* (team_policies) Changed email to my dropbox policy for team
22440+
* (team_policies) Changed email to my Dropbox policy for team
2244122441
*/
2244222442
export interface EventTypeEmailIngestPolicyChanged extends EmailIngestPolicyChangedType {
2244322443
'.tag': 'email_ingest_policy_changed';
@@ -25844,7 +25844,7 @@
2584425844
}
2584525845

2584625846
/**
25847-
* (team_policies) Changed email to my dropbox policy for team
25847+
* (team_policies) Changed email to my Dropbox policy for team
2584825848
*/
2584925849
export interface EventTypeArgEmailIngestPolicyChanged {
2585025850
'.tag': 'email_ingest_policy_changed';

0 commit comments

Comments
 (0)