@absolutejs/auth 0.66.0 → 0.67.1
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/index.js +7164 -5185
- package/dist/index.js.map +527 -142
- package/dist/manifest.d.ts +8 -7
- package/dist/manifest.js +7236 -5258
- package/dist/manifest.js.map +528 -143
- package/dist/manifest.json +16 -16
- package/dist/server.js +7328 -5349
- package/dist/server.js.map +527 -142
- package/package.json +4 -4
package/dist/manifest.json
CHANGED
|
@@ -253,52 +253,52 @@
|
|
|
253
253
|
"type": "object",
|
|
254
254
|
"properties": {
|
|
255
255
|
"cleanupIntervalMs": {
|
|
256
|
+
"type": "number",
|
|
256
257
|
"description": "How often expired sessions are swept, in milliseconds.",
|
|
257
258
|
"minimum": 1000,
|
|
258
259
|
"title": "Session cleanup interval",
|
|
259
|
-
"x-group": "advanced"
|
|
260
|
-
"type": "number"
|
|
260
|
+
"x-group": "advanced"
|
|
261
261
|
},
|
|
262
262
|
"cookieSecure": {
|
|
263
|
+
"type": "boolean",
|
|
263
264
|
"description": "Only send the sign-in cookie over HTTPS. Leave off in local development.",
|
|
264
265
|
"title": "HTTPS-only cookies",
|
|
265
|
-
"x-group": "advanced"
|
|
266
|
-
"type": "boolean"
|
|
266
|
+
"x-group": "advanced"
|
|
267
267
|
},
|
|
268
268
|
"maxSessions": {
|
|
269
|
+
"type": "integer",
|
|
269
270
|
"description": "How many devices someone can stay signed in on at once.",
|
|
270
271
|
"minimum": 1,
|
|
271
272
|
"title": "Signed-in devices per person",
|
|
272
|
-
"x-group": "sessions"
|
|
273
|
-
"type": "integer"
|
|
273
|
+
"x-group": "sessions"
|
|
274
274
|
},
|
|
275
275
|
"providersConfiguration": {
|
|
276
|
-
"description": "Which services people can sign in with. Each needs a client id and secret from that provider.",
|
|
277
|
-
"title": "Sign-in providers",
|
|
278
|
-
"x-group": "providers",
|
|
279
276
|
"type": "object",
|
|
280
277
|
"patternProperties": {
|
|
281
|
-
"
|
|
278
|
+
"^.*$": {
|
|
282
279
|
"type": "object",
|
|
283
280
|
"properties": {
|
|
284
281
|
"scope": {
|
|
285
|
-
"description": "Extra permissions to request from the provider.",
|
|
286
|
-
"title": "Permissions",
|
|
287
282
|
"type": "array",
|
|
288
283
|
"items": {
|
|
289
284
|
"type": "string"
|
|
290
|
-
}
|
|
285
|
+
},
|
|
286
|
+
"description": "Extra permissions to request from the provider.",
|
|
287
|
+
"title": "Permissions"
|
|
291
288
|
}
|
|
292
289
|
}
|
|
293
290
|
}
|
|
294
|
-
}
|
|
291
|
+
},
|
|
292
|
+
"description": "Which services people can sign in with. Each needs a client id and secret from that provider.",
|
|
293
|
+
"title": "Sign-in providers",
|
|
294
|
+
"x-group": "providers"
|
|
295
295
|
},
|
|
296
296
|
"sessionDurationMs": {
|
|
297
|
+
"type": "number",
|
|
297
298
|
"description": "How long someone stays signed in, in milliseconds. Default is 7 days.",
|
|
298
299
|
"minimum": 60000,
|
|
299
300
|
"title": "Stay signed in for",
|
|
300
|
-
"x-group": "sessions"
|
|
301
|
-
"type": "number"
|
|
301
|
+
"x-group": "sessions"
|
|
302
302
|
}
|
|
303
303
|
}
|
|
304
304
|
},
|