From 11e7467711398ab1863be93afc622f7d5277f307 Mon Sep 17 00:00:00 2001 From: Nhan Phan Date: Tue, 18 Jun 2024 10:49:03 -0700 Subject: [PATCH] add unknown external plugins, bump version --- clients/js/src/types.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/clients/js/src/types.ts b/clients/js/src/types.ts index d941833..11e199e 100644 --- a/clients/js/src/types.ts +++ b/clients/js/src/types.ts @@ -233,11 +233,17 @@ export type DasApiCoreAssetFields = { */ external_plugins?: Record[]; /** - * 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[]; + /** + * 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[]; /** * Additional fields that are indexed for Core assets or collections */