@liaisongroup/assist-api-js-client 1.5.113 → 1.5.115
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/openapi.d.ts +2 -1
- package/dist/openapi.json +3 -3
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2098,13 +2098,14 @@ declare namespace Components {
|
|
|
2098
2098
|
*/
|
|
2099
2099
|
password_required?: boolean;
|
|
2100
2100
|
/**
|
|
2101
|
-
* Can be set to true to send an invitation email to the user upon creation
|
|
2101
|
+
* Can be set to true to send an invitation email to the user upon creation - this email does not contain instructions on how to setup an account - it is purely to inform the user that an account has been created for them.
|
|
2102
2102
|
*
|
|
2103
2103
|
*/
|
|
2104
2104
|
send_invitation?: boolean;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* The URL the set password email should send the user to in order to set their password.
|
|
2107
2107
|
* The API will append a token to the URL as a query parameter (e.g. `https://localhost:3000/set-password?token=123456`).
|
|
2108
|
+
* Setting this value triggers the "Set password" email to be sent to the user.
|
|
2108
2109
|
*
|
|
2109
2110
|
* example:
|
|
2110
2111
|
* https://localhost:3000/set-password
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.344",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -14699,12 +14699,12 @@
|
|
|
14699
14699
|
"send_invitation": {
|
|
14700
14700
|
"type": "boolean",
|
|
14701
14701
|
"default": false,
|
|
14702
|
-
"description": "Can be set to true to send an invitation email to the user upon creation
|
|
14702
|
+
"description": "Can be set to true to send an invitation email to the user upon creation - this email does not contain instructions on how to setup an account - it is purely to inform the user that an account has been created for them.\n"
|
|
14703
14703
|
},
|
|
14704
14704
|
"set_password_destination_url": {
|
|
14705
14705
|
"type": "string",
|
|
14706
14706
|
"format": "uri",
|
|
14707
|
-
"description": "The URL the set password email should send the user to in order to set their password.\nThe API will append a token to the URL as a query parameter (e.g. `https://localhost:3000/set-password?token=123456`).\n",
|
|
14707
|
+
"description": "The URL the set password email should send the user to in order to set their password.\nThe API will append a token to the URL as a query parameter (e.g. `https://localhost:3000/set-password?token=123456`).\nSetting this value triggers the \"Set password\" email to be sent to the user.\n",
|
|
14708
14708
|
"example": "https://localhost:3000/set-password"
|
|
14709
14709
|
},
|
|
14710
14710
|
"active": {
|
package/package.json
CHANGED