@ensnode/ensnode-sdk 0.0.0-next-20260702173520 → 0.0.0-next-20260707063203
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 +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/internal.cjs +113 -93
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +58 -3
- package/dist/internal.d.ts +58 -3
- package/dist/internal.js +109 -89
- package/dist/internal.js.map +1 -1
- package/dist/{namespace-specific-value-W7LwQOxx.d.cts → namespace-specific-value-D_ZkcwDQ.d.cts} +18 -0
- package/dist/{namespace-specific-value-W7LwQOxx.d.ts → namespace-specific-value-D_ZkcwDQ.d.ts} +18 -0
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -621,7 +621,10 @@ var makeEnsRainbowPublicConfigSchema = (valueLabel = "EnsRainbowPublicConfig") =
|
|
|
621
621
|
)
|
|
622
622
|
}),
|
|
623
623
|
versionInfo: import_v42.z.object({
|
|
624
|
-
|
|
624
|
+
commit: import_v42.z.optional(
|
|
625
|
+
import_v42.z.string().nonempty(`${valueLabel}.versionInfo.commit must be a non-empty string.`)
|
|
626
|
+
),
|
|
627
|
+
ensRainbow: import_v42.z.string().nonempty(`${valueLabel}.versionInfo.ensRainbow must be a non-empty string.`)
|
|
625
628
|
})
|
|
626
629
|
});
|
|
627
630
|
|
|
@@ -733,6 +736,7 @@ var makeNonEmptyStringSchema = (valueLabel = "Value") => import_v43.z.string().n
|
|
|
733
736
|
var makeEnsIndexerVersionInfoSchema = (valueLabel = "Value") => import_v43.z.object(
|
|
734
737
|
{
|
|
735
738
|
ponder: makeNonEmptyStringSchema(),
|
|
739
|
+
commit: import_v43.z.optional(makeNonEmptyStringSchema()),
|
|
736
740
|
ensDb: makeNonEmptyStringSchema(),
|
|
737
741
|
ensIndexer: makeNonEmptyStringSchema(),
|
|
738
742
|
ensNormalize: makeNonEmptyStringSchema()
|
|
@@ -835,6 +839,7 @@ var TheGraphFallbackSchema = import_v45.z.discriminatedUnion("canFallback", [
|
|
|
835
839
|
|
|
836
840
|
// src/ensapi/config/zod-schemas.ts
|
|
837
841
|
var makeEnsApiVersionInfoSchema = (valueLabel = "ENS API version info") => import_v46.z.object({
|
|
842
|
+
commit: import_v46.z.optional(import_v46.z.string().nonempty(`${valueLabel}.commit must be a non-empty string`)),
|
|
838
843
|
ensApi: import_v46.z.string().nonempty(`${valueLabel}.ensApi must be a non-empty string`),
|
|
839
844
|
ensNormalize: import_v46.z.string().nonempty(`${valueLabel}.ensNormalize must be a non-empty string`)
|
|
840
845
|
});
|