Skip to content

Commit e9fab8b

Browse files
github-actions[bot]github-actions
andauthored
Codes are generated by openapi (line#635)
Co-authored-by: github-actions <[email protected]>
1 parent ee52dff commit e9fab8b

File tree

14 files changed

+282
-0
lines changed

14 files changed

+282
-0
lines changed

lib/messaging-api/.openapi-generator/FILES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ model/filter.ts
3333
model/flexBlockStyle.ts
3434
model/flexBox.ts
3535
model/flexBoxBackground.ts
36+
model/flexBoxBorderWidth.ts
37+
model/flexBoxCornerRadius.ts
3638
model/flexBoxLinearGradient.ts
39+
model/flexBoxPadding.ts
40+
model/flexBoxSpacing.ts
3741
model/flexBubble.ts
3842
model/flexBubbleStyles.ts
3943
model/flexButton.ts
@@ -42,11 +46,17 @@ model/flexComponent.ts
4246
model/flexContainer.ts
4347
model/flexFiller.ts
4448
model/flexIcon.ts
49+
model/flexIconSize.ts
4550
model/flexImage.ts
51+
model/flexImageSize.ts
52+
model/flexMargin.ts
4653
model/flexMessage.ts
54+
model/flexOffset.ts
4755
model/flexSeparator.ts
4856
model/flexSpan.ts
57+
model/flexSpanSize.ts
4958
model/flexText.ts
59+
model/flexTextFontSize.ts
5060
model/flexVideo.ts
5161
model/genderDemographic.ts
5262
model/genderDemographicFilter.ts
@@ -124,6 +134,8 @@ model/stickerMessage.ts
124134
model/subscriptionPeriodDemographic.ts
125135
model/subscriptionPeriodDemographicFilter.ts
126136
model/template.ts
137+
model/templateImageAspectRatio.ts
138+
model/templateImageSize.ts
127139
model/templateMessage.ts
128140
model/testWebhookEndpointRequest.ts
129141
model/testWebhookEndpointResponse.ts
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* Width of box border. This is only for `borderWidth` in FlexBox. A value of none means that borders are not rendered; the other values are listed in order of increasing width.
15+
*/
16+
17+
export type FlexBoxBorderWidth =
18+
| "none"
19+
| "light"
20+
| "normal"
21+
| "medium"
22+
| "semi-bold"
23+
| "bold";
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* Radius at the time of rounding the corners of the box. This is only for `cornerRadius` in FlexBox. A value of none means that corners are not rounded; the other values are listed in order of increasing radius.
15+
*/
16+
17+
export type FlexBoxCornerRadius =
18+
| "none"
19+
| "xs"
20+
| "sm"
21+
| "md"
22+
| "lg"
23+
| "xl"
24+
| "xxl";
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* Padding can be specified in pixels, percentage (to the parent box width) or with a keyword. FlexBoxPadding just provides only keywords.
15+
*/
16+
17+
export type FlexBoxPadding = "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* You can specify the minimum space between two components with the `spacing` property of the parent box component, in pixels or with a keyword. FlexBoxSpacing just provides only keywords.
15+
*/
16+
17+
export type FlexBoxSpacing = "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* You can set the width of an Flex icon component with the `size` property, in pixels, as a percentage, or with a keyword. FlexIconSize just provides only keywords.
15+
*/
16+
17+
export type FlexIconSize =
18+
| "xxs"
19+
| "xs"
20+
| "sm"
21+
| "md"
22+
| "lg"
23+
| "xl"
24+
| "xxl"
25+
| "3xl"
26+
| "4xl"
27+
| "5xl";
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* You can set the width of an Flex image component with the `size` property, in pixels, as a percentage, or with a keyword. FlexImageSize just provides only keywords.
15+
*/
16+
17+
export type FlexImageSize =
18+
| "xxs"
19+
| "xs"
20+
| "sm"
21+
| "md"
22+
| "lg"
23+
| "xl"
24+
| "xxl"
25+
| "3xl"
26+
| "4xl"
27+
| "5xl"
28+
| "full";
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* You can specify the minimum space before a child component with the `margin` property of the child component, in pixels or with a keyword. FlexMargin just provides only keywords.
15+
*/
16+
17+
export type FlexMargin = "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* You can specify the offset of a component with the `offset*` property, in pixels or with a keyword. You can also specify the percentage to the box width for `offsetStart` and `offsetEnd` and to the box height for `offsetTop` and `offsetBottom`. FlexOffset just provides only keywords.
15+
*/
16+
17+
export type FlexOffset = "none" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* LINE Messaging API
3+
* This document describes LINE Messaging API.
4+
*
5+
* The version of the OpenAPI document: 0.0.1
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
13+
/**
14+
* Font size in the `size` property of the Flex span component. You can specify the size in pixels or with a keyword. FlexSpanSize just provides only keywords.
15+
*/
16+
17+
export type FlexSpanSize =
18+
| "xxs"
19+
| "xs"
20+
| "sm"
21+
| "md"
22+
| "lg"
23+
| "xl"
24+
| "xxl"
25+
| "3xl"
26+
| "4xl"
27+
| "5xl";

0 commit comments

Comments
 (0)