Skip to content

Commit c1d650f

Browse files
authored
Add TASK_UPDATE, FILE_VERSION_RESTORE and ADVANCED_FOLDER_SETTINGS_UPDATE events (#902)
1 parent ce6c4e5 commit c1d650f

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ __New Features and Enhancements:__
1010
- Add configurable permissions support for `GroupMembership` ([#875](https://github.com/box/box-java-sdk/pull/875))
1111
- Add `SHIELD_JUSTIFICATION_APPROVAL` event type ([#898](https://github.com/box/box-java-sdk/pull/898))
1212
- Add ability to get files under retention for assignment and file versions under retention for assignment ([#899](https://github.com/box/box-java-sdk/pull/899))
13+
- Add `TASK_UPDATE`, `FILE_VERSION_RESTORE` and `ADVANCED_FOLDER_SETTINGS_UPDATE` event types ([#902](https://github.com/box/box-java-sdk/pull/902))
1314

1415
__Bug Fixes:__
1516

src/main/java/com/box/sdk/BoxEvent.java

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,21 @@ public enum Type {
765765
/**
766766
* A Shield justification is approved.
767767
*/
768-
SHIELD_JUSTIFICATION_APPROVAL;
768+
SHIELD_JUSTIFICATION_APPROVAL,
769+
770+
/**
771+
* A task's comment is edited.
772+
*/
773+
TASK_UPDATE,
774+
775+
/**
776+
* A file is retored to previous version.
777+
*/
778+
FILE_VERSION_RESTORE,
779+
780+
/**
781+
* Advanced settings of a folder are updated.
782+
*/
783+
ADVANCED_FOLDER_SETTINGS_UPDATE;
769784
}
770785
}

0 commit comments

Comments
 (0)