@ensnode/ensnode-sdk 0.0.0-next-20260630105521 → 0.0.0-next-20260702165053

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -3291,10 +3291,8 @@ declare function validateIndexingMetadataContextInitialized(maybeIndexingMetadat
3291
3291
  /**
3292
3292
  * Check if provided EnsIndexerPublicConfig supports the Omnigraph API.
3293
3293
  *
3294
- * The Omnigraph API is served whenever the config indexes data it can expose: the ENS data model
3295
- * (`unigraph` / `ensv2`) or the highly-ENS-adjacent EFP protocol (`efp`). EFP qualifies on its own
3296
- * so an EFP-only config can still query the `efp` namespace (the ENS query fields are present but
3297
- * return no data without `unigraph`).
3294
+ * The Omnigraph API is served whenever the config indexes the ENS data model
3295
+ * (`unigraph` / `ensv2`).
3298
3296
  */
3299
3297
  declare function hasOmnigraphApiConfigSupport(config: EnsIndexerPublicConfig): PrerequisiteResult;
3300
3298
  /**
package/dist/index.d.ts CHANGED
@@ -3291,10 +3291,8 @@ declare function validateIndexingMetadataContextInitialized(maybeIndexingMetadat
3291
3291
  /**
3292
3292
  * Check if provided EnsIndexerPublicConfig supports the Omnigraph API.
3293
3293
  *
3294
- * The Omnigraph API is served whenever the config indexes data it can expose: the ENS data model
3295
- * (`unigraph` / `ensv2`) or the highly-ENS-adjacent EFP protocol (`efp`). EFP qualifies on its own
3296
- * so an EFP-only config can still query the `efp` namespace (the ENS query fields are present but
3297
- * return no data without `unigraph`).
3294
+ * The Omnigraph API is served whenever the config indexes the ENS data model
3295
+ * (`unigraph` / `ensv2`).
3298
3296
  */
3299
3297
  declare function hasOmnigraphApiConfigSupport(config: EnsIndexerPublicConfig): PrerequisiteResult;
3300
3298
  /**
package/dist/index.js CHANGED
@@ -4156,11 +4156,11 @@ function hasBackfillCompleted(indexingStatus) {
4156
4156
 
4157
4157
  // src/omnigraph-api/prerequisites.ts
4158
4158
  function hasOmnigraphApiConfigSupport(config) {
4159
- const supported = config.plugins.includes("unigraph" /* Unigraph */) || config.plugins.includes("ensv2" /* ENSv2 */) || config.plugins.includes("efp" /* EFP */);
4159
+ const supported = config.plugins.includes("unigraph" /* Unigraph */) || config.plugins.includes("ensv2" /* ENSv2 */);
4160
4160
  if (supported) return { supported };
4161
4161
  return {
4162
4162
  supported: false,
4163
- reason: `The connected ENSNode's Config must have one of the '${"unigraph" /* Unigraph */}', '${"ensv2" /* ENSv2 */}', or '${"efp" /* EFP */}' plugins enabled.`
4163
+ reason: `The connected ENSNode's Config must have one of the '${"unigraph" /* Unigraph */}' or '${"ensv2" /* ENSv2 */}' plugins enabled.`
4164
4164
  };
4165
4165
  }
4166
4166
  function hasOmnigraphApiIndexingStatusSupport(indexingStatus) {