@liaisongroup/assist-api-js-client 1.5.96 → 1.5.97
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 +4 -2
- package/dist/openapi.json +15 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -3730,7 +3730,8 @@ declare namespace Paths {
|
|
|
3730
3730
|
/**
|
|
3731
3731
|
* A message indicating that the password has been reset.
|
|
3732
3732
|
*/
|
|
3733
|
-
message
|
|
3733
|
+
message: string;
|
|
3734
|
+
token: Components.Schemas.AccessToken;
|
|
3734
3735
|
}
|
|
3735
3736
|
export type $410 = Components.Schemas.SimpleErrors;
|
|
3736
3737
|
export type $422 = Components.Schemas.SimpleErrors;
|
|
@@ -3754,7 +3755,8 @@ declare namespace Paths {
|
|
|
3754
3755
|
/**
|
|
3755
3756
|
* A message indicating that the password has been set.
|
|
3756
3757
|
*/
|
|
3757
|
-
message
|
|
3758
|
+
message: string;
|
|
3759
|
+
token: Components.Schemas.AccessToken;
|
|
3758
3760
|
}
|
|
3759
3761
|
export type $410 = Components.Schemas.SimpleErrors;
|
|
3760
3762
|
export type $422 = Components.Schemas.SimpleErrors;
|
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.326",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -975,10 +975,17 @@
|
|
|
975
975
|
"application/json": {
|
|
976
976
|
"schema": {
|
|
977
977
|
"type": "object",
|
|
978
|
+
"required": [
|
|
979
|
+
"message",
|
|
980
|
+
"token"
|
|
981
|
+
],
|
|
978
982
|
"properties": {
|
|
979
983
|
"message": {
|
|
980
984
|
"type": "string",
|
|
981
985
|
"description": "A message indicating that the password has been reset."
|
|
986
|
+
},
|
|
987
|
+
"token": {
|
|
988
|
+
"$ref": "#/components/schemas/AccessToken"
|
|
982
989
|
}
|
|
983
990
|
}
|
|
984
991
|
}
|
|
@@ -1063,10 +1070,17 @@
|
|
|
1063
1070
|
"application/json": {
|
|
1064
1071
|
"schema": {
|
|
1065
1072
|
"type": "object",
|
|
1073
|
+
"required": [
|
|
1074
|
+
"message",
|
|
1075
|
+
"token"
|
|
1076
|
+
],
|
|
1066
1077
|
"properties": {
|
|
1067
1078
|
"message": {
|
|
1068
1079
|
"type": "string",
|
|
1069
1080
|
"description": "A message indicating that the password has been set."
|
|
1081
|
+
},
|
|
1082
|
+
"token": {
|
|
1083
|
+
"$ref": "#/components/schemas/AccessToken"
|
|
1070
1084
|
}
|
|
1071
1085
|
}
|
|
1072
1086
|
}
|
package/package.json
CHANGED