@@ -240,6 +240,63 @@ export interface AdminRole extends Struct.CollectionTypeSchema {
240240 } ;
241241}
242242
243+ export interface AdminSession extends Struct . CollectionTypeSchema {
244+ collectionName : 'strapi_sessions' ;
245+ info : {
246+ description : 'Session Manager storage' ;
247+ displayName : 'Session' ;
248+ name : 'Session' ;
249+ pluralName : 'sessions' ;
250+ singularName : 'session' ;
251+ } ;
252+ options : {
253+ draftAndPublish : false ;
254+ } ;
255+ pluginOptions : {
256+ 'content-manager' : {
257+ visible : false ;
258+ } ;
259+ 'content-type-builder' : {
260+ visible : false ;
261+ } ;
262+ i18n : {
263+ localized : false ;
264+ } ;
265+ } ;
266+ attributes : {
267+ absoluteExpiresAt : Schema . Attribute . DateTime & Schema . Attribute . Private ;
268+ childId : Schema . Attribute . String & Schema . Attribute . Private ;
269+ createdAt : Schema . Attribute . DateTime ;
270+ createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
271+ Schema . Attribute . Private ;
272+ deviceId : Schema . Attribute . String &
273+ Schema . Attribute . Required &
274+ Schema . Attribute . Private ;
275+ expiresAt : Schema . Attribute . DateTime &
276+ Schema . Attribute . Required &
277+ Schema . Attribute . Private ;
278+ locale : Schema . Attribute . String & Schema . Attribute . Private ;
279+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::session' > &
280+ Schema . Attribute . Private ;
281+ origin : Schema . Attribute . String &
282+ Schema . Attribute . Required &
283+ Schema . Attribute . Private ;
284+ publishedAt : Schema . Attribute . DateTime ;
285+ sessionId : Schema . Attribute . String &
286+ Schema . Attribute . Required &
287+ Schema . Attribute . Private &
288+ Schema . Attribute . Unique ;
289+ status : Schema . Attribute . String & Schema . Attribute . Private ;
290+ type : Schema . Attribute . String & Schema . Attribute . Private ;
291+ updatedAt : Schema . Attribute . DateTime ;
292+ updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
293+ Schema . Attribute . Private ;
294+ userId : Schema . Attribute . String &
295+ Schema . Attribute . Required &
296+ Schema . Attribute . Private ;
297+ } ;
298+ }
299+
243300export interface AdminTransferToken extends Struct . CollectionTypeSchema {
244301 collectionName : 'strapi_transfer_tokens' ;
245302 info : {
@@ -1560,6 +1617,7 @@ declare module '@strapi/strapi' {
15601617 'admin::audit-log' : AdminAuditLog ;
15611618 'admin::permission' : AdminPermission ;
15621619 'admin::role' : AdminRole ;
1620+ 'admin::session' : AdminSession ;
15631621 'admin::transfer-token' : AdminTransferToken ;
15641622 'admin::transfer-token-permission' : AdminTransferTokenPermission ;
15651623 'admin::user' : AdminUser ;
0 commit comments