Strapi cli exports api tokens and admin users

I can actually see in the code base export command these lines:

      entities: [
        {
          filter(entity) {
            return !DEFAULT_IGNORED_CONTENT_TYPES.includes(entity.type);
          },
        },
      ],

And the ignored types are:

const DEFAULT_IGNORED_CONTENT_TYPES = [
  'admin::permission',
  'admin::user',
  'admin::role',
  'admin::api-token',
  'admin::api-token-permission',
  'admin::transfer-token',
  'admin::transfer-token-permission',
  'admin::audit-log',
];

my export command is:

strapi export --no-encrypt --only content

All the supposed entities in the ignore array are still exported!