[packanges/ckan][xs] - fix type (#1016)

This commit is contained in:
Luccas Mateus 2023-08-24 16:04:44 -03:00 committed by GitHub
parent 11f9253709
commit 91217f3256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
'@portaljs/ckan': patch
---
remove optional from id in resource interface

View File

@ -41,7 +41,7 @@ export interface Resource {
description?: string;
format?: string;
hash?: string;
id?: string;
id: string;
last_modified?: string;
metadata_modified?: string;
mimetype?: string;