Skip to content

Commit e9fab8b

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

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";

lib/messaging-api/model/flexMargin.ts

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";

lib/messaging-api/model/flexOffset.ts

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";
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 text component. You can specify the size in pixels or with a keyword. FlexTextFontSize just provides only keywords.
15+
*/
16+
17+
export type FlexTextFontSize =
18+
| "xxs"
19+
| "xs"
20+
| "sm"
21+
| "md"
22+
| "lg"
23+
| "xl"
24+
| "xxl"
25+
| "3xl"
26+
| "4xl"
27+
| "5xl";

lib/messaging-api/model/models.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ export * from "./filter";
2828
export * from "./flexBlockStyle";
2929
export * from "./flexBox";
3030
export * from "./flexBoxBackground";
31+
export * from "./flexBoxBorderWidth";
32+
export * from "./flexBoxCornerRadius";
3133
export * from "./flexBoxLinearGradient";
34+
export * from "./flexBoxPadding";
35+
export * from "./flexBoxSpacing";
3236
export * from "./flexBubble";
3337
export * from "./flexBubbleStyles";
3438
export * from "./flexButton";
@@ -37,11 +41,17 @@ export * from "./flexComponent";
3741
export * from "./flexContainer";
3842
export * from "./flexFiller";
3943
export * from "./flexIcon";
44+
export * from "./flexIconSize";
4045
export * from "./flexImage";
46+
export * from "./flexImageSize";
47+
export * from "./flexMargin";
4148
export * from "./flexMessage";
49+
export * from "./flexOffset";
4250
export * from "./flexSeparator";
4351
export * from "./flexSpan";
52+
export * from "./flexSpanSize";
4453
export * from "./flexText";
54+
export * from "./flexTextFontSize";
4555
export * from "./flexVideo";
4656
export * from "./genderDemographic";
4757
export * from "./genderDemographicFilter";
@@ -118,6 +128,8 @@ export * from "./stickerMessage";
118128
export * from "./subscriptionPeriodDemographic";
119129
export * from "./subscriptionPeriodDemographicFilter";
120130
export * from "./template";
131+
export * from "./templateImageAspectRatio";
132+
export * from "./templateImageSize";
121133
export * from "./templateMessage";
122134
export * from "./testWebhookEndpointRequest";
123135
export * from "./testWebhookEndpointResponse";
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+
* Aspect ratio of the image. This is only for the `imageAspectRatio` in ButtonsTemplate. Specify one of the following values: `rectangle`: 1.51:1 `square`: 1:1
15+
*/
16+
17+
export type TemplateImageAspectRatio = "rectangle" | "square";
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+
* Size of the image. This is only for the `imageSize` in ButtonsTemplate. Specify one of the following values: `cover`: The image fills the entire image area. Parts of the image that do not fit in the area are not displayed. `contain`: The entire image is displayed in the image area. A background is displayed in the unused areas to the left and right of vertical images and in the areas above and below horizontal images.
15+
*/
16+
17+
export type TemplateImageSize = "cover" | "contain";

0 commit comments

Comments
 (0)