@ensnode/ensnode-sdk 0.0.0-next-20260409132909 → 0.0.0-next-20260410141209

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
@@ -2775,15 +2775,11 @@ type RegistrarActionsResponseOk = {
2775
2775
  * The {@link UnixTimestamp} of when the data used to build the list of {@link NamedRegistrarAction} was accurate as of.
2776
2776
  *
2777
2777
  * @remarks
2778
- * **Note:** This value represents the `slowestChainIndexingCursor` from the latest omnichain indexing status
2778
+ * **Note:** This value represents the `omnichainIndexingCursor` from the latest omnichain indexing status
2779
2779
  * snapshot captured by ENSApi. The state returned in the response is guaranteed to be accurate as of this
2780
2780
  * timestamp but may be from a timestamp higher than this value.
2781
- *
2782
- * **Temporary:** This field is currently optional to maintain backward compatibility with ENS Awards
2783
- * using older snapshot NPM packages. This will be changed to required in a future release.
2784
- * See: https://github.com/namehash/ensnode/issues/1497
2785
2781
  */
2786
- accurateAsOf?: UnixTimestamp;
2782
+ accurateAsOf: UnixTimestamp;
2787
2783
  };
2788
2784
  /**
2789
2785
  * A response when Registrar Actions are unavailable.
package/dist/index.d.ts CHANGED
@@ -2775,15 +2775,11 @@ type RegistrarActionsResponseOk = {
2775
2775
  * The {@link UnixTimestamp} of when the data used to build the list of {@link NamedRegistrarAction} was accurate as of.
2776
2776
  *
2777
2777
  * @remarks
2778
- * **Note:** This value represents the `slowestChainIndexingCursor` from the latest omnichain indexing status
2778
+ * **Note:** This value represents the `omnichainIndexingCursor` from the latest omnichain indexing status
2779
2779
  * snapshot captured by ENSApi. The state returned in the response is guaranteed to be accurate as of this
2780
2780
  * timestamp but may be from a timestamp higher than this value.
2781
- *
2782
- * **Temporary:** This field is currently optional to maintain backward compatibility with ENS Awards
2783
- * using older snapshot NPM packages. This will be changed to required in a future release.
2784
- * See: https://github.com/namehash/ensnode/issues/1497
2785
2781
  */
2786
- accurateAsOf?: UnixTimestamp;
2782
+ accurateAsOf: UnixTimestamp;
2787
2783
  };
2788
2784
  /**
2789
2785
  * A response when Registrar Actions are unavailable.
package/dist/index.js CHANGED
@@ -2652,7 +2652,7 @@ var makeRegistrarActionsResponseOkSchema = (valueLabel = "Registrar Actions Resp
2652
2652
  responseCode: z16.literal(RegistrarActionsResponseCodes.Ok),
2653
2653
  registrarActions: z16.array(makeNamedRegistrarActionSchema(valueLabel)),
2654
2654
  pageContext: makeResponsePageContextSchema(`${valueLabel}.pageContext`),
2655
- accurateAsOf: makeUnixTimestampSchema(`${valueLabel}.accurateAsOf`).optional()
2655
+ accurateAsOf: makeUnixTimestampSchema(`${valueLabel}.accurateAsOf`)
2656
2656
  });
2657
2657
  var makeRegistrarActionsResponseErrorSchema = (_valueLabel = "Registrar Actions Response Error") => z16.strictObject({
2658
2658
  responseCode: z16.literal(RegistrarActionsResponseCodes.Error),