@@ -6258,6 +6258,8 @@ export enum EventType {
62586258 GroupMemberAddComplete = "group.member.add.complete" ,
62596259 GroupMemberRemove = "group.member.remove" ,
62606260 GroupMemberRemoveComplete = "group.member.remove.complete" ,
6261+ GroupMemberUpdate = "group.member.update" ,
6262+ GroupMemberUpdateComplete = "group.member.update.complete" ,
62616263 GroupUpdate = "group.update" ,
62626264 GroupUpdateComplete = "group.update.complete" ,
62636265 UserAction = "user.action" ,
@@ -6719,7 +6721,7 @@ export interface Group {
67196721}
67206722
67216723/**
6722- * Models the Group Created Event (and can be converted to JSON) .
6724+ * Models the Group Created Event.
67236725 *
67246726 * @author Daniel DeGroff
67256727 */
@@ -6728,7 +6730,7 @@ export interface GroupCreateCompleteEvent extends BaseEvent {
67286730}
67296731
67306732/**
6731- * Models the Group Create Event (and can be converted to JSON) .
6733+ * Models the Group Create Event.
67326734 *
67336735 * @author Daniel DeGroff
67346736 */
@@ -6737,7 +6739,7 @@ export interface GroupCreateEvent extends BaseEvent {
67376739}
67386740
67396741/**
6740- * Models the Group Create Event (and can be converted to JSON) .
6742+ * Models the Group Create Complete Event .
67416743 *
67426744 * @author Daniel DeGroff
67436745 */
@@ -6746,7 +6748,7 @@ export interface GroupDeleteCompleteEvent extends BaseEvent {
67466748}
67476749
67486750/**
6749- * Models the Group Create Event (and can be converted to JSON) .
6751+ * Models the Group Delete Event.
67506752 *
67516753 * @author Daniel DeGroff
67526754 */
@@ -6769,7 +6771,7 @@ export interface GroupMember {
67696771}
67706772
67716773/**
6772- * Models the Group Create Event (and can be converted to JSON) .
6774+ * Models the Group Member Add Complete Event .
67736775 *
67746776 * @author Daniel DeGroff
67756777 */
@@ -6779,7 +6781,7 @@ export interface GroupMemberAddCompleteEvent extends BaseEvent {
67796781}
67806782
67816783/**
6782- * Models the Group Create Event (and can be converted to JSON) .
6784+ * Models the Group Member Add Event .
67836785 *
67846786 * @author Daniel DeGroff
67856787 */
@@ -6789,7 +6791,7 @@ export interface GroupMemberAddEvent extends BaseEvent {
67896791}
67906792
67916793/**
6792- * Models the Group Create Event (and can be converted to JSON) .
6794+ * Models the Group Member Remove Complete Event .
67936795 *
67946796 * @author Daniel DeGroff
67956797 */
@@ -6799,7 +6801,7 @@ export interface GroupMemberRemoveCompleteEvent extends BaseEvent {
67996801}
68006802
68016803/**
6802- * Models the Group Create Event (and can be converted to JSON) .
6804+ * Models the Group Member Remove Event .
68036805 *
68046806 * @author Daniel DeGroff
68056807 */
@@ -6838,6 +6840,26 @@ export interface GroupMemberSearchResponse {
68386840 total ?: number ;
68396841}
68406842
6843+ /**
6844+ * Models the Group Member Update Complete Event.
6845+ *
6846+ * @author Daniel DeGroff
6847+ */
6848+ export interface GroupMemberUpdateCompleteEvent extends BaseEvent {
6849+ group ?: Group ;
6850+ members ?: Array < GroupMember > ;
6851+ }
6852+
6853+ /**
6854+ * Models the Group Member Update Event.
6855+ *
6856+ * @author Daniel DeGroff
6857+ */
6858+ export interface GroupMemberUpdateEvent extends BaseEvent {
6859+ group ?: Group ;
6860+ members ?: Array < GroupMember > ;
6861+ }
6862+
68416863/**
68426864 * Group API request object.
68436865 *
@@ -6859,7 +6881,7 @@ export interface GroupResponse {
68596881}
68606882
68616883/**
6862- * Models the Group Create Event (and can be converted to JSON) .
6884+ * Models the Group Update Complete Event .
68636885 *
68646886 * @author Daniel DeGroff
68656887 */
@@ -6869,7 +6891,7 @@ export interface GroupUpdateCompleteEvent extends BaseEvent {
68696891}
68706892
68716893/**
6872- * Models the Group Create Event (and can be converted to JSON) .
6894+ * Models the Group Update Event.
68736895 *
68746896 * @author Daniel DeGroff
68756897 */
@@ -7296,7 +7318,7 @@ export interface JWTConfiguration extends Enableable {
72967318}
72977319
72987320/**
7299- * Models the JWT public key Refresh Token Revoke Event (and can be converted to JSON) . This event might be for a single
7321+ * Models the JWT public key Refresh Token Revoke Event. This event might be for a single
73007322 * token, a user or an entire application.
73017323 *
73027324 * @author Brian Pontarelli
@@ -7333,7 +7355,7 @@ export interface JWTRefreshResponse {
73337355}
73347356
73357357/**
7336- * Models the Refresh Token Revoke Event (and can be converted to JSON) . This event might be for a single token, a user
7358+ * Models the Refresh Token Revoke Event. This event might be for a single token, a user
73377359 * or an entire application.
73387360 *
73397361 * @author Brian Pontarelli
@@ -9521,7 +9543,7 @@ export interface UserAction {
95219543}
95229544
95239545/**
9524- * Models the user action event (and can be converted to JSON) .
9546+ * Models the user action Event .
95259547 *
95269548 * @author Brian Pontarelli
95279549 */
@@ -9648,7 +9670,7 @@ export interface UserActionResponse {
96489670}
96499671
96509672/**
9651- * Models the User Bulk Create Event (and can be converted to JSON) .
9673+ * Models the User Bulk Create Event.
96529674 *
96539675 * @author Brian Pontarelli
96549676 */
@@ -9724,7 +9746,7 @@ export interface UserConsentResponse {
97249746}
97259747
97269748/**
9727- * Models the User Created Event (and can be converted to JSON) .
9749+ * Models the User Created Event.
97289750 * <p>
97299751 * This is different than the user.create event in that it will be sent after the user has been created. This event cannot be made transactional.
97309752 *
@@ -9735,7 +9757,7 @@ export interface UserCreateCompleteEvent extends BaseEvent {
97359757}
97369758
97379759/**
9738- * Models the User Create Event (and can be converted to JSON) .
9760+ * Models the User Create Event.
97399761 *
97409762 * @author Brian Pontarelli
97419763 */
@@ -9744,7 +9766,7 @@ export interface UserCreateEvent extends BaseEvent {
97449766}
97459767
97469768/**
9747- * Models the User Deactivate Event (and can be converted to JSON) .
9769+ * Models the User Deactivate Event.
97489770 *
97499771 * @author Brian Pontarelli
97509772 */
@@ -9819,7 +9841,7 @@ export interface UserEmailUpdateEvent extends BaseEvent {
98199841}
98209842
98219843/**
9822- * Models the User Email Verify Event (and can be converted to JSON) .
9844+ * Models the User Email Verify Event.
98239845 *
98249846 * @author Trevor Smith
98259847 */
@@ -9967,7 +9989,7 @@ export interface UserPasswordUpdateEvent extends BaseEvent {
99679989}
99689990
99699991/**
9970- * Models the User Reactivate Event (and can be converted to JSON) .
9992+ * Models the User Reactivate Event.
99719993 *
99729994 * @author Brian Pontarelli
99739995 */
@@ -9999,9 +10021,10 @@ export interface UserRegistration {
999910021}
1000010022
1000110023/**
10002- * Models the User Created Registration Event (and can be converted to JSON) .
10024+ * Models the User Created Registration Event.
1000310025 * <p>
10004- * This is different than the user.registration.create event in that it will be sent after the user has been created. This event cannot be made transactional.
10026+ * This is different than the user.registration.create event in that it will be sent after the user has been created. This event cannot be made
10027+ * transactional.
1000510028 *
1000610029 * @author Daniel DeGroff
1000710030 */
@@ -10012,7 +10035,7 @@ export interface UserRegistrationCreateCompleteEvent extends BaseEvent {
1001210035}
1001310036
1001410037/**
10015- * Models the User Create Registration Event (and can be converted to JSON) .
10038+ * Models the User Create Registration Event.
1001610039 *
1001710040 * @author Daniel DeGroff
1001810041 */
@@ -10023,7 +10046,7 @@ export interface UserRegistrationCreateEvent extends BaseEvent {
1002310046}
1002410047
1002510048/**
10026- * Models the User Deleted Registration Event (and can be converted to JSON) .
10049+ * Models the User Deleted Registration Event.
1002710050 * <p>
1002810051 * This is different than user.registration.delete in that it is sent after the TX has been committed. This event cannot be transactional.
1002910052 *
@@ -10036,7 +10059,7 @@ export interface UserRegistrationDeleteCompleteEvent extends BaseEvent {
1003610059}
1003710060
1003810061/**
10039- * Models the User Delete Registration Event (and can be converted to JSON) .
10062+ * Models the User Delete Registration Event.
1004010063 *
1004110064 * @author Daniel DeGroff
1004210065 */
@@ -10047,7 +10070,7 @@ export interface UserRegistrationDeleteEvent extends BaseEvent {
1004710070}
1004810071
1004910072/**
10050- * Models the User Update Registration Event (and can be converted to JSON) .
10073+ * Models the User Update Registration Event.
1005110074 * <p>
1005210075 * This is different than user.registration.update in that it is sent after this event completes, this cannot be transactional.
1005310076 *
@@ -10061,7 +10084,7 @@ export interface UserRegistrationUpdateCompleteEvent extends BaseEvent {
1006110084}
1006210085
1006310086/**
10064- * Models the User Update Registration Event (and can be converted to JSON) .
10087+ * Models the User Update Registration Event.
1006510088 *
1006610089 * @author Daniel DeGroff
1006710090 */
@@ -10073,7 +10096,7 @@ export interface UserRegistrationUpdateEvent extends BaseEvent {
1007310096}
1007410097
1007510098/**
10076- * Models the User Registration Verified Event (and can be converted to JSON) .
10099+ * Models the User Registration Verified Event.
1007710100 *
1007810101 * @author Trevor Smith
1007910102 */
@@ -10166,7 +10189,7 @@ export interface UserUpdateCompleteEvent extends BaseEvent {
1016610189}
1016710190
1016810191/**
10169- * Models the User Update Event (and can be converted to JSON) .
10192+ * Models the User Update Event.
1017010193 *
1017110194 * @author Brian Pontarelli
1017210195 */
0 commit comments