@@ -34,10 +34,6 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
3434 minLength : 1 ;
3535 } > &
3636 Schema . Attribute . DefaultTo < '' > ;
37- encryptedKey : Schema . Attribute . Text &
38- Schema . Attribute . SetMinMaxLength < {
39- minLength : 1 ;
40- } > ;
4137 expiresAt : Schema . Attribute . DateTime ;
4238 lastUsedAt : Schema . Attribute . DateTime ;
4339 lifespan : Schema . Attribute . BigInteger ;
@@ -203,63 +199,6 @@ export interface AdminRole extends Struct.CollectionTypeSchema {
203199 } ;
204200}
205201
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-
263202export interface AdminTransferToken extends Struct . CollectionTypeSchema {
264203 collectionName : 'strapi_transfer_tokens' ;
265204 info : {
@@ -994,7 +933,6 @@ declare module '@strapi/strapi' {
994933 'admin::api-token-permission' : AdminApiTokenPermission ;
995934 'admin::permission' : AdminPermission ;
996935 'admin::role' : AdminRole ;
997- 'admin::session' : AdminSession ;
998936 'admin::transfer-token' : AdminTransferToken ;
999937 'admin::transfer-token-permission' : AdminTransferTokenPermission ;
1000938 'admin::user' : AdminUser ;
0 commit comments