-
Notifications
You must be signed in to change notification settings - Fork 19
/
manifest.lkml
34 lines (32 loc) · 1.25 KB
/
manifest.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
project_name: "dashboard-summarization"
application: dashboard-summarization {
label: "Dashboard Insights Powered by Vertex AI"
url: "http://localhost:8080/bundle.js"
mount_points: {
dashboard_vis: yes
dashboard_tile: yes
standalone: yes
}
entitlements: {
local_storage: yes
use_form_submit: yes
core_api_methods: ["me","run_inline_query","all_lookml_models","dashboard","dashboard_dashboard_elements"]
external_api_urls: [
"YOUR_CLOUD_RUN_URL","http://localhost:5000","http://localhost:3000","https://*.googleapis.com","https://slack.com/api/*","https://slack.com/*"
]
oauth2_urls: [
"https://accounts.google.com/o/oauth2/v2/auth",
"https://www.googleapis.com/auth/chat.spaces",
"https://www.googleapis.com/auth/drive.metadata.readonly",
"https://www.googleapis.com/auth/spreadsheets.readonly",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/chat.spaces.readonly",
"https://www.googleapis.com/auth/chat.bot",
"https://www.googleapis.com/auth/chat.messages",
"https://www.googleapis.com/auth/chat.messages.create",
"https://slack.com/oauth/v2/authorize"
]
scoped_user_attributes: []
global_user_attributes: []
}
}