@@ -604,7 +604,7 @@ export type TextMessage = MessageCommon & {
604
604
export type ImageMessage = MessageCommon & {
605
605
type : "image" ;
606
606
/**
607
- * Image URL (Max: 1000 characters)
607
+ * Image URL (Max: 2000 characters)
608
608
*
609
609
* - **HTTPS**
610
610
* - JPEG
@@ -613,7 +613,7 @@ export type ImageMessage = MessageCommon & {
613
613
*/
614
614
originalContentUrl : string ;
615
615
/**
616
- * Preview image URL (Max: 1000 characters)
616
+ * Preview image URL (Max: 2000 characters)
617
617
*
618
618
* - **HTTPS**
619
619
* - JPEG
@@ -629,7 +629,7 @@ export type ImageMessage = MessageCommon & {
629
629
export type VideoMessage = MessageCommon & {
630
630
type : "video" ;
631
631
/**
632
- * URL of video file (Max: 1000 characters)
632
+ * URL of video file (Max: 2000 characters)
633
633
*
634
634
* - **HTTPS**
635
635
* - mp4
@@ -640,7 +640,7 @@ export type VideoMessage = MessageCommon & {
640
640
*/
641
641
originalContentUrl : string ;
642
642
/**
643
- * URL of preview image (Max: 1000 characters)
643
+ * URL of preview image (Max: 2000 characters)
644
644
*
645
645
* - **HTTPS**
646
646
* - JPEG
@@ -656,7 +656,7 @@ export type VideoMessage = MessageCommon & {
656
656
export type AudioMessage = MessageCommon & {
657
657
type : "audio" ;
658
658
/**
659
- * URL of audio file (Max: 1000 characters)
659
+ * URL of audio file (Max: 2000 characters)
660
660
*
661
661
* - **HTTPS**
662
662
* - m4a
@@ -714,7 +714,7 @@ export type ImageMapMessage = MessageCommon & {
714
714
type : "imagemap" ;
715
715
/**
716
716
* [Base URL](https://developers.line.biz/en/reference/messaging-api/#base-url) of image
717
- * (Max: 1000 characters, **HTTPS**)
717
+ * (Max: 2000 characters, **HTTPS**)
718
718
*/
719
719
baseUrl : string ;
720
720
/**
@@ -727,7 +727,7 @@ export type ImageMapMessage = MessageCommon & {
727
727
*/
728
728
video ?: {
729
729
/**
730
- * URL of video file (Max: 1000 characters)
730
+ * URL of video file (Max: 2000 characters)
731
731
*
732
732
* - **HTTPS**
733
733
* - mp4
@@ -738,7 +738,7 @@ export type ImageMapMessage = MessageCommon & {
738
738
*/
739
739
originalContentUrl : string ;
740
740
/**
741
- * URL of preview image (Max: 1000 characters)
741
+ * URL of preview image (Max: 2000 characters)
742
742
*
743
743
* - **HTTPS**
744
744
* - JPEG
@@ -1293,7 +1293,7 @@ export type FlexFiller = {
1293
1293
export type FlexIcon = {
1294
1294
type : "icon" ;
1295
1295
/**
1296
- * Image URL
1296
+ * Image URL (Max character limit: 2000)
1297
1297
*
1298
1298
* Protocol: HTTPS
1299
1299
* Image format: JPEG or PNG
@@ -1346,7 +1346,7 @@ export type FlexIcon = {
1346
1346
export type FlexImage = {
1347
1347
type : "image" ;
1348
1348
/**
1349
- * Image URL
1349
+ * Image URL (Max character limit: 2000)
1350
1350
*
1351
1351
* - Protocol: HTTPS
1352
1352
* - Image format: JPEG or PNG
@@ -1695,7 +1695,7 @@ export type TemplateContent =
1695
1695
export type TemplateButtons = {
1696
1696
type : "buttons" ;
1697
1697
/**
1698
- * Image URL (Max: 1000 characters)
1698
+ * Image URL (Max: 2000 characters)
1699
1699
*
1700
1700
* - HTTPS
1701
1701
* - JPEG or PNG
@@ -1809,7 +1809,7 @@ export type TemplateCarousel = {
1809
1809
1810
1810
export type TemplateColumn = {
1811
1811
/**
1812
- * Image URL (Max: 1000 characters)
1812
+ * Image URL (Max: 2000 characters)
1813
1813
*
1814
1814
* - HTTPS
1815
1815
* - JPEG or PNG
@@ -1858,7 +1858,7 @@ export type TemplateImageCarousel = {
1858
1858
1859
1859
export type TemplateImageColumn = {
1860
1860
/**
1861
- * Image URL (Max: 1000 characters)
1861
+ * Image URL (Max: 2000 characters)
1862
1862
*
1863
1863
* - HTTPS
1864
1864
* - JPEG or PNG
0 commit comments