@turndown/library 0.0.55 → 0.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -183,7 +183,7 @@ export interface InvitationValidationResponse {
|
|
|
183
183
|
companyId: string;
|
|
184
184
|
companyName: string;
|
|
185
185
|
email: string;
|
|
186
|
-
role:
|
|
186
|
+
role: AccountType;
|
|
187
187
|
invitedBy: string;
|
|
188
188
|
invitedByName: string;
|
|
189
189
|
expiresAt: string;
|
|
@@ -196,14 +196,14 @@ export interface AcceptInvitationRequest {
|
|
|
196
196
|
export interface AcceptInvitationResponse {
|
|
197
197
|
companyId: string;
|
|
198
198
|
companyName: string;
|
|
199
|
-
role:
|
|
199
|
+
role: AccountType;
|
|
200
200
|
}
|
|
201
201
|
export interface GetPendingInvitationsResponse {
|
|
202
202
|
id: string;
|
|
203
203
|
token: string;
|
|
204
204
|
companyId: string;
|
|
205
205
|
companyName: string;
|
|
206
|
-
role:
|
|
206
|
+
role: AccountType;
|
|
207
207
|
invitedBy: string;
|
|
208
208
|
invitedByName: string;
|
|
209
209
|
expiresAt: string;
|