@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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
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
|
|
3295
|
-
* (`unigraph` / `ensv2`)
|
|
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
|
|
3295
|
-
* (`unigraph` / `ensv2`)
|
|
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 */)
|
|
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 */}'
|
|
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) {
|