nexus icon indicating copy to clipboard operation
nexus copied to clipboard

Improve type-safety in data storage

Open Dinika opened this issue 2 years ago • 0 comments

  1. Improve the type interface for the files object in DataPanel to include path:
            files.push({
              ...item,
              // @ts-ignore
              path: getPathForChildResource(resource, item),
              _self: resource._self ?? item._self,
              resourceId: resource['@id'],
            });
  1. Remove @ts-ignore comments. (except the ones for "Error". We have to update ts for that).
  2. Add "distribution" as a field of "Resource" in nexus sdk

Dinika avatar May 26 '23 14:05 Dinika