@@ -203,6 +203,63 @@ export interface AdminRole extends Struct.CollectionTypeSchema {
203203 } ;
204204}
205205
206+ export interface AdminSession extends Struct . CollectionTypeSchema {
207+ collectionName : 'strapi_sessions' ;
208+ info : {
209+ description : 'Session Manager storage' ;
210+ displayName : 'Session' ;
211+ name : 'Session' ;
212+ pluralName : 'sessions' ;
213+ singularName : 'session' ;
214+ } ;
215+ options : {
216+ draftAndPublish : false ;
217+ } ;
218+ pluginOptions : {
219+ 'content-manager' : {
220+ visible : false ;
221+ } ;
222+ 'content-type-builder' : {
223+ visible : false ;
224+ } ;
225+ i18n : {
226+ localized : false ;
227+ } ;
228+ } ;
229+ attributes : {
230+ absoluteExpiresAt : Schema . Attribute . DateTime & Schema . Attribute . Private ;
231+ childId : Schema . Attribute . String & Schema . Attribute . Private ;
232+ createdAt : Schema . Attribute . DateTime ;
233+ createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
234+ Schema . Attribute . Private ;
235+ deviceId : Schema . Attribute . String &
236+ Schema . Attribute . Required &
237+ Schema . Attribute . Private ;
238+ expiresAt : Schema . Attribute . DateTime &
239+ Schema . Attribute . Required &
240+ Schema . Attribute . Private ;
241+ locale : Schema . Attribute . String & Schema . Attribute . Private ;
242+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::session' > &
243+ Schema . Attribute . Private ;
244+ origin : Schema . Attribute . String &
245+ Schema . Attribute . Required &
246+ Schema . Attribute . Private ;
247+ publishedAt : Schema . Attribute . DateTime ;
248+ sessionId : Schema . Attribute . String &
249+ Schema . Attribute . Required &
250+ Schema . Attribute . Private &
251+ Schema . Attribute . Unique ;
252+ status : Schema . Attribute . String & Schema . Attribute . Private ;
253+ type : Schema . Attribute . String & Schema . Attribute . Private ;
254+ updatedAt : Schema . Attribute . DateTime ;
255+ updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
256+ Schema . Attribute . Private ;
257+ userId : Schema . Attribute . String &
258+ Schema . Attribute . Required &
259+ Schema . Attribute . Private ;
260+ } ;
261+ }
262+
206263export interface AdminTransferToken extends Struct . CollectionTypeSchema {
207264 collectionName : 'strapi_transfer_tokens' ;
208265 info : {
@@ -1457,6 +1514,7 @@ declare module '@strapi/strapi' {
14571514 'admin::api-token-permission' : AdminApiTokenPermission ;
14581515 'admin::permission' : AdminPermission ;
14591516 'admin::role' : AdminRole ;
1517+ 'admin::session' : AdminSession ;
14601518 'admin::transfer-token' : AdminTransferToken ;
14611519 'admin::transfer-token-permission' : AdminTransferTokenPermission ;
14621520 'admin::user' : AdminUser ;
0 commit comments