@@ -247,6 +247,7 @@ type Paragraph struct {
247
247
Text []RichText `json:"text,omitempty"`
248
248
RichText []RichText `json:"rich_text"`
249
249
Children Blocks `json:"children,omitempty"`
250
+ Color string `json:"color,omitempty"`
250
251
}
251
252
252
253
type Heading1Block struct {
@@ -257,6 +258,7 @@ type Heading1Block struct {
257
258
type Heading struct {
258
259
RichText []RichText `json:"rich_text"`
259
260
Children Blocks `json:"children,omitempty"`
261
+ Color string `json:"color,omitempty"`
260
262
}
261
263
262
264
type Heading2Block struct {
@@ -280,6 +282,7 @@ type Callout struct {
280
282
RichText []RichText `json:"rich_text"`
281
283
Icon * Icon `json:"icon,omitempty"`
282
284
Children Blocks `json:"children,omitempty"`
285
+ Color string `json:"color,omitempty"`
283
286
}
284
287
285
288
type QuoteBlock struct {
@@ -292,6 +295,7 @@ type Quote struct {
292
295
Text []RichText `json:"text,omitempty"`
293
296
RichText []RichText `json:"rich_text"`
294
297
Children Blocks `json:"children,omitempty"`
298
+ Color string `json:"color,omitempty"`
295
299
}
296
300
297
301
type TableBlock struct {
@@ -325,6 +329,7 @@ type ListItem struct {
325
329
Text []RichText `json:"text,omitempty"`
326
330
RichText []RichText `json:"rich_text"`
327
331
Children Blocks `json:"children,omitempty"`
332
+ Color string `json:"color,omitempty"`
328
333
}
329
334
330
335
type NumberedListItemBlock struct {
@@ -343,6 +348,7 @@ type ToDo struct {
343
348
RichText []RichText `json:"rich_text,omitempty"`
344
349
Children Blocks `json:"children,omitempty"`
345
350
Checked bool `json:"checked"`
351
+ Color string `json:"color,omitempty"`
346
352
}
347
353
348
354
type ToggleBlock struct {
@@ -359,6 +365,7 @@ type Toggle struct {
359
365
Text []RichText `json:"text,omitempty"`
360
366
RichText []RichText `json:"rich_text"`
361
367
Children Blocks `json:"children,omitempty"`
368
+ Color string `json:"color,omitempty"`
362
369
}
363
370
364
371
type ChildPageBlock struct {
@@ -476,6 +483,7 @@ type TableOfContentsBlock struct {
476
483
477
484
type TableOfContents struct {
478
485
// empty
486
+ Color string `json:"color,omitempty"`
479
487
}
480
488
481
489
type DividerBlock struct {
0 commit comments