@smartytalent/mcp-tools 0.7.2 → 0.7.3
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/tools.json +8 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -1330,6 +1330,14 @@
|
|
|
1330
1330
|
"type": "string",
|
|
1331
1331
|
"description": "The admin-consent link an operator sends to the customer's IT. Built server-side so the app registration id is never hardcoded in a client. Absent if the platform Microsoft provider cannot be read."
|
|
1332
1332
|
},
|
|
1333
|
+
"sessionsRevoked": {
|
|
1334
|
+
"type": "integer",
|
|
1335
|
+
"description": "POST response, present ONLY on the transition to required=true: how many accounts were signed out everywhere. The PreAuthentication gate stops new password sign-ins but never fires on token refresh, and a refresh token lives 30 days - so without this sweep the switch would take a month to take effect for anyone already signed in. Nobody is exempt, including the break-glass roles: they keep their password and simply sign in again."
|
|
1336
|
+
},
|
|
1337
|
+
"sessionsFailed": {
|
|
1338
|
+
"type": "integer",
|
|
1339
|
+
"description": "POST response, alongside sessionsRevoked: accounts the sweep could not sign out. Non-zero means the door is partially open - those sessions keep working until their refresh token expires - and the operator is the only one positioned to see it, which is why it is returned rather than only logged."
|
|
1340
|
+
},
|
|
1333
1341
|
"idpDeleted": {
|
|
1334
1342
|
"type": "boolean",
|
|
1335
1343
|
"description": "DELETE response only: whether the customer's Cognito identity provider was actually removed. False when it was already gone, so a retry of the teardown reads as success rather than an error."
|