@opens/gateways 1.15.10 → 1.15.11
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.
|
@@ -154,9 +154,9 @@ interface ManagedUser {
|
|
|
154
154
|
type GetManagedUsersResponse = ManagedUser[];
|
|
155
155
|
/** Request payload for updating a company user. */
|
|
156
156
|
interface UpdateCompanyUserRequest {
|
|
157
|
-
username
|
|
158
|
-
occupation
|
|
159
|
-
email
|
|
157
|
+
username?: string;
|
|
158
|
+
occupation?: string;
|
|
159
|
+
email?: string;
|
|
160
160
|
two_auth_mail?: boolean;
|
|
161
161
|
two_auth_otp?: boolean;
|
|
162
162
|
}
|
|
@@ -154,9 +154,9 @@ interface ManagedUser {
|
|
|
154
154
|
type GetManagedUsersResponse = ManagedUser[];
|
|
155
155
|
/** Request payload for updating a company user. */
|
|
156
156
|
interface UpdateCompanyUserRequest {
|
|
157
|
-
username
|
|
158
|
-
occupation
|
|
159
|
-
email
|
|
157
|
+
username?: string;
|
|
158
|
+
occupation?: string;
|
|
159
|
+
email?: string;
|
|
160
160
|
two_auth_mail?: boolean;
|
|
161
161
|
two_auth_otp?: boolean;
|
|
162
162
|
}
|
package/package.json
CHANGED