Skip to content

Commit e92f866

Browse files
github-actions[bot]github-actions
and
github-actions
authored
Codes are generated by openapi (#698)
Co-authored-by: github-actions <[email protected]>
1 parent ec6b03b commit e92f866

File tree

5 files changed

+25
-1
lines changed

5 files changed

+25
-1
lines changed

lib/webhook/.openapi-generator/FILES

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ model/emoji.ts
2222
model/event.ts
2323
model/eventMode.ts
2424
model/fileMessageContent.ts
25+
model/followDetail.ts
2526
model/followEvent.ts
2627
model/groupSource.ts
2728
model/imageMessageContent.ts

lib/webhook/model/followDetail.ts

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* Webhook Type Definition
3+
* Webhook event definition of the LINE Messaging API
4+
*
5+
* The version of the OpenAPI document: 1.0.0
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+
export type FollowDetail = {
14+
/**
15+
* Whether a user has added your LINE Official Account as a friend or unblocked.
16+
*/
17+
isUnblocked: boolean /**/;
18+
};

lib/webhook/model/followEvent.ts

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import { DeliveryContext } from "./deliveryContext";
1414
import { Event } from "./event";
1515
import { EventMode } from "./eventMode";
16+
import { FollowDetail } from "./followDetail";
1617
import { Source } from "./source";
1718

1819
/**
@@ -26,6 +27,9 @@ export type FollowEvent = EventBase & {
2627
* Reply token used to send reply message to this event
2728
*/
2829
replyToken: string /**/;
30+
/**
31+
*/
32+
follow: FollowDetail /**/;
2933
};
3034

3135
export namespace FollowEvent {}

lib/webhook/model/models.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export * from "./emoji";
1818
export * from "./event";
1919
export * from "./eventMode";
2020
export * from "./fileMessageContent";
21+
export * from "./followDetail";
2122
export * from "./followEvent";
2223
export * from "./groupSource";
2324
export * from "./imageMessageContent";

line-openapi

0 commit comments

Comments
 (0)