We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3259cf0 commit b47c825Copy full SHA for b47c825
1 file changed
yarn-project/blob-sink/src/types/api.ts
@@ -1,6 +1,7 @@
1
import { z } from 'zod';
2
3
export interface PostBlobSidecarRequest {
4
+ // eslint-disable-next-line camelcase
5
block_id: string;
6
blobs: Array<{
7
index: number;
@@ -18,6 +19,7 @@ export const blockIdSchema = z.coerce
18
19
.max(66);
20
21
export const postBlobSidecarSchema = z.object({
22
23
block_id: blockIdSchema,
24
blobs: z.array(
25
z.object({
0 commit comments