Skip to content

Commit

Permalink
add unknown external plugins, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nhanphan committed Jun 18, 2024
1 parent eaeac48 commit 11e7467
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions clients/js/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,17 @@ export type DasApiCoreAssetFields = {
*/
external_plugins?: Record<string, any>[];
/**
* Plugins on asset that were unknown at the time of indexing.
* Plugins on the asset/collection that were unknown at the time of indexing.
* Contact your DAS provider to update their core indexing version if this field is being populated.
* If you have a newer version of mpl-core-das installed, that library will also try to deserialize the plugin
* If you have an up-to-date version of mpl-core-das installed, that library will also try to deserialize the plugin
*/
unknown_plugins?: Record<string, any>[];
/**
* External plugin adapters on the asset/collection that were unknown at the time of indexing.
* Contact your DAS provider to update their core indexing version if this field is being populated.
* If you have an up-to-date version of mpl-core-das installed, that library will also try to deserialize the plugin
*/
unknown_external_plugins?: Record<string, any>[];
/**
* Additional fields that are indexed for Core assets or collections
*/
Expand Down

0 comments on commit 11e7467

Please sign in to comment.