@epilot/customer-portal-client 0.8.21 → 0.8.23
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.
- package/dist/definition.js +1 -1
- package/dist/openapi.d.ts +6 -3
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -759,7 +759,10 @@ declare namespace Components {
|
|
|
759
759
|
* Default 360 user to notify upon an internal notification
|
|
760
760
|
*/
|
|
761
761
|
default_user_to_notify?: {
|
|
762
|
-
|
|
762
|
+
/**
|
|
763
|
+
* Default admin users for pending user notification to notify
|
|
764
|
+
*/
|
|
765
|
+
onPendingUser?: AdminUser[];
|
|
763
766
|
};
|
|
764
767
|
/**
|
|
765
768
|
* Allow portal user self-registration without a mapped contact
|
|
@@ -1104,9 +1107,9 @@ declare namespace Components {
|
|
|
1104
1107
|
*/
|
|
1105
1108
|
default_user_to_notify?: {
|
|
1106
1109
|
/**
|
|
1107
|
-
* Default admin
|
|
1110
|
+
* Default admin users for pending user notification to notify
|
|
1108
1111
|
*/
|
|
1109
|
-
onPendingUser?: AdminUser;
|
|
1112
|
+
onPendingUser?: AdminUser[];
|
|
1110
1113
|
};
|
|
1111
1114
|
/**
|
|
1112
1115
|
* Allow portal user self-registration without a mapped contact
|