PinataCloud / pinata

The new Pinata SDK
https://docs.pinata.cloud/sdk
MIT License
8 stars 4 forks source link

Update `FileListItem` Type #26

Closed stevedylandev closed 2 months ago

stevedylandev commented 2 months ago

The property group_id can also be null

export type FileListItem = {
  id: string;
  name: string | null;
  cid: "pending" | string;
  size: number;
  number_of_files: number;
  mime_type: string;
  group_id: string | null;
  created_at: string;
};
stevedylandev commented 2 months ago

Resolved with PR #28