Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generator/dropbox-api-spec
6 changes: 6 additions & 0 deletions lib/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -15729,6 +15729,8 @@ possible subtypes.
* Added member to Replay project.
* @typedef {Object} TeamLogMediaHubProjectTeamAddDetails
* @property {TeamLogMediaHubProjectLogInfo} [project] - Replay project.
* @property {string} [invitee] - The email address of the Replay project member
* targeted by the event.
*/

/**
Expand All @@ -15740,6 +15742,8 @@ possible subtypes.
* Removed member from Replay project.
* @typedef {Object} TeamLogMediaHubProjectTeamDeleteDetails
* @property {TeamLogMediaHubProjectLogInfo} [project] - Replay project.
* @property {string} [invitee] - The email address of the Replay project member
* targeted by the event.
*/

/**
Expand All @@ -15754,6 +15758,8 @@ possible subtypes.
* project role.
* @property {TeamLogMediaHubProjectRole} new_role - New Media Hub project role.
* @property {TeamLogMediaHubProjectLogInfo} [project] - Replay project.
* @property {string} [invitee] - The email address of the Replay project member
* targeted by the event.
*/

/**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dropbox",
"version": "10.45.0",
"version": "10.46.0",
"registry": "npm",
"description": "The Dropbox JavaScript SDK is a lightweight, promise based interface to the Dropbox v2 API that works in both nodejs and browser environments.",
"main": "cjs/index.js",
Expand Down
12 changes: 12 additions & 0 deletions types/dropbox_types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36631,6 +36631,10 @@
* Replay project.
*/
project?: MediaHubProjectLogInfo;
/**
* The email address of the Replay project member targeted by the event.
*/
invitee?: EmailAddress;
}

export interface MediaHubProjectTeamAddType {
Expand All @@ -36645,6 +36649,10 @@
* Replay project.
*/
project?: MediaHubProjectLogInfo;
/**
* The email address of the Replay project member targeted by the event.
*/
invitee?: EmailAddress;
}

export interface MediaHubProjectTeamDeleteType {
Expand All @@ -36667,6 +36675,10 @@
* Replay project.
*/
project?: MediaHubProjectLogInfo;
/**
* The email address of the Replay project member targeted by the event.
*/
invitee?: EmailAddress;
}

export interface MediaHubProjectTeamRoleChangedType {
Expand Down