Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add UpdateLiffView for liff.yml #69

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion liff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,35 @@ components:
description: |+
`true` to use the LIFF app in modular mode.
When in modular mode, the action button in the header is not displayed.
UpdateLiffView:
externalDocs:
url: https://developers.line.biz/en/reference/liff-server/#update-liff-app
type: object
properties:
type:
description: |+
Size of the LIFF app view. Specify one of these values:
- compact
- tall
- full
type: string
enum:
- compact
- tall
- full
url:
type: string
format: uri
description: |+
Endpoint URL. This is the URL of the web app that implements the LIFF app
(e.g. https://example.com).
Used when the LIFF app is launched using the LIFF URL.
The URL scheme must be https. URL fragments (#URL-fragment) can't be specified.
moduleMode:
type: boolean
description: |+
`true` to use the LIFF app in modular mode.
When in modular mode, the action button in the header is not displayed.
LiffFeatures:
type: object
properties:
Expand Down Expand Up @@ -255,7 +284,7 @@ components:
type: object
properties:
view:
$ref: "#/components/schemas/LiffView"
$ref: "#/components/schemas/UpdateLiffView"
description:
type: string
description: |+
Expand Down
Loading