Workers + R2 listing objects

Hi folks
I have recently started working on workers using R2 buckets; After a while reading docs and looking into stuff, today I was writing a worker for my R2 bucket as docs described.

Long story short, I think I’m missing something, When I call .list() on my bucket I see 0 Objects, Although I have uploaded lots of files into my R2 using rclone.
I dig in a little bit and found out if I upload using R2 .put() in workers, then I’ll be able to see only that newly uploaded files, but not my already uploaded files.
At this point, I assume that I’m missing something due to my lack of knowledge about ObjectStorages.

How can I list the files and access them with Workers?

Thanks.