@commandgarden/cli 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +0 -0
- package/node_modules/@commandgarden/app/dist/client/assets/Slides-0sL-MDMf.js +31 -0
- package/node_modules/@commandgarden/app/dist/client/assets/{index-tVkaaa2g.js → index-Bzw5cF_s.js} +160 -120
- package/node_modules/@commandgarden/app/dist/client/assets/index-DrFywqdr.css +1 -0
- package/node_modules/@commandgarden/app/dist/client/index.html +19 -19
- package/node_modules/@commandgarden/app/dist/server/store.js +35 -35
- package/node_modules/@commandgarden/app/package.json +42 -42
- package/node_modules/@commandgarden/chrome/dist/content-script.js.map +1 -1
- package/node_modules/@commandgarden/chrome/dist/manifest.json +16 -16
- package/node_modules/@commandgarden/chrome/dist/popup.html +218 -218
- package/node_modules/@commandgarden/chrome/dist/popup.js.map +1 -1
- package/node_modules/@commandgarden/chrome/dist/service-worker.js.map +1 -1
- package/node_modules/@commandgarden/chrome/package.json +25 -25
- package/node_modules/@commandgarden/daemon/connectors/ado-git-commits.eval.js +100 -100
- package/node_modules/@commandgarden/daemon/connectors/ado-git-commits.yaml +70 -70
- package/node_modules/@commandgarden/daemon/connectors/gcs-kb-content.yaml +58 -58
- package/node_modules/@commandgarden/daemon/connectors/gcs-kb-pages.yaml +47 -47
- package/node_modules/@commandgarden/daemon/connectors/jira-my-tickets.eval.js +115 -115
- package/node_modules/@commandgarden/daemon/connectors/jira-my-tickets.yaml +54 -54
- package/node_modules/@commandgarden/daemon/connectors/lib/msal-token.js +20 -20
- package/node_modules/@commandgarden/daemon/connectors/outlook-my-meetings.eval.js +198 -198
- package/node_modules/@commandgarden/daemon/connectors/outlook-my-meetings.yaml +42 -42
- package/node_modules/@commandgarden/daemon/connectors/saba-pending-training.eval.js +94 -94
- package/node_modules/@commandgarden/daemon/connectors/saba-pending-training.yaml +34 -34
- package/node_modules/@commandgarden/daemon/connectors/socket-security-news.yaml +63 -63
- package/node_modules/@commandgarden/daemon/connectors/teams-room-availability.eval.js +437 -437
- package/node_modules/@commandgarden/daemon/connectors/teams-room-availability.yaml +53 -53
- package/node_modules/@commandgarden/daemon/connectors/teams-rooms-availability.eval.js +547 -547
- package/node_modules/@commandgarden/daemon/connectors/teams-rooms-availability.yaml +48 -48
- package/node_modules/@commandgarden/daemon/connectors/timetracking-projects.eval.js +52 -52
- package/node_modules/@commandgarden/daemon/connectors/timetracking-projects.yaml +42 -42
- package/node_modules/@commandgarden/daemon/connectors/timetracking-report.eval.js +81 -81
- package/node_modules/@commandgarden/daemon/connectors/timetracking-report.yaml +52 -52
- package/node_modules/@commandgarden/daemon/connectors/tldrsec-newsletter.eval.js +27 -27
- package/node_modules/@commandgarden/daemon/connectors/tldrsec-newsletter.yaml +38 -38
- package/node_modules/@commandgarden/daemon/connectors/tokenmaster-clients-list.yaml +55 -55
- package/node_modules/@commandgarden/daemon/dist/audit-store.js +8 -8
- package/node_modules/@commandgarden/daemon/package.json +32 -32
- package/node_modules/@commandgarden/shared/package.json +32 -32
- package/package.json +58 -58
- package/node_modules/@commandgarden/app/dist/client/assets/index-Dm4TTmUS.css +0 -1
- package/node_modules/@commandgarden/app/dist/server/daemon-client.test.js +0 -47
- package/node_modules/@commandgarden/app/dist/server/routes/routes.test.js +0 -137
- package/node_modules/@commandgarden/app/dist/server/store.test.js +0 -59
- package/node_modules/@commandgarden/chrome/dist/fetch-interceptor.js +0 -44
- package/node_modules/@commandgarden/daemon/dist/cdp-client.d.ts +0 -24
- package/node_modules/@commandgarden/daemon/dist/cdp-client.d.ts.map +0 -1
- package/node_modules/@commandgarden/daemon/dist/cdp-client.js +0 -150
- package/node_modules/@commandgarden/daemon/dist/cdp-client.js.map +0 -1
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
site: teams
|
|
2
|
-
name: room-availability
|
|
3
|
-
version: "1.0"
|
|
4
|
-
description: "Meeting-room free/busy timeline for one room on a given day (Teams/Outlook calendar)"
|
|
5
|
-
access: read
|
|
6
|
-
cdp: true
|
|
7
|
-
|
|
8
|
-
domains:
|
|
9
|
-
- "outlook.cloud.microsoft.mcas.ms"
|
|
10
|
-
capabilities:
|
|
11
|
-
- navigate
|
|
12
|
-
- js_evaluate
|
|
13
|
-
|
|
14
|
-
args:
|
|
15
|
-
- name: room
|
|
16
|
-
type: string
|
|
17
|
-
required: false
|
|
18
|
-
help: "Room name or mailbox email (e.g. 'MBTMY The Vista' or 'RES-RERE-M6VJ7ZUW@mercedes-benz.com'). Required unless 'rooms' is given."
|
|
19
|
-
- name: rooms
|
|
20
|
-
type: string
|
|
21
|
-
required: false
|
|
22
|
-
help: "Comma-separated list of room names to check simultaneously (e.g. for a floor-plan view). Takes precedence over 'room' if both are given."
|
|
23
|
-
- name: date
|
|
24
|
-
type: string
|
|
25
|
-
required: false
|
|
26
|
-
help: "Day to check in YYYY-MM-DD format (default: today)"
|
|
27
|
-
pattern: "^\\d{4}-\\d{2}-\\d{2}$"
|
|
28
|
-
|
|
29
|
-
columns:
|
|
30
|
-
- name: room
|
|
31
|
-
type: string
|
|
32
|
-
- name: capacity
|
|
33
|
-
type: number
|
|
34
|
-
- name: date
|
|
35
|
-
type: string
|
|
36
|
-
- name: state
|
|
37
|
-
type: string
|
|
38
|
-
- name: start
|
|
39
|
-
type: string
|
|
40
|
-
- name: end
|
|
41
|
-
type: string
|
|
42
|
-
- name: durationMin
|
|
43
|
-
type: number
|
|
44
|
-
|
|
45
|
-
pipeline:
|
|
46
|
-
- step: navigate
|
|
47
|
-
url: "https://outlook.cloud.microsoft.mcas.ms/calendar/deeplink/compose"
|
|
48
|
-
- step: wait
|
|
49
|
-
selector: "body"
|
|
50
|
-
timeout: 30000
|
|
51
|
-
- step: js_evaluate
|
|
52
|
-
file: teams-room-availability.eval.js
|
|
53
|
-
|
|
1
|
+
site: teams
|
|
2
|
+
name: room-availability
|
|
3
|
+
version: "1.0"
|
|
4
|
+
description: "Meeting-room free/busy timeline for one room on a given day (Teams/Outlook calendar)"
|
|
5
|
+
access: read
|
|
6
|
+
cdp: true
|
|
7
|
+
|
|
8
|
+
domains:
|
|
9
|
+
- "outlook.cloud.microsoft.mcas.ms"
|
|
10
|
+
capabilities:
|
|
11
|
+
- navigate
|
|
12
|
+
- js_evaluate
|
|
13
|
+
|
|
14
|
+
args:
|
|
15
|
+
- name: room
|
|
16
|
+
type: string
|
|
17
|
+
required: false
|
|
18
|
+
help: "Room name or mailbox email (e.g. 'MBTMY The Vista' or 'RES-RERE-M6VJ7ZUW@mercedes-benz.com'). Required unless 'rooms' is given."
|
|
19
|
+
- name: rooms
|
|
20
|
+
type: string
|
|
21
|
+
required: false
|
|
22
|
+
help: "Comma-separated list of room names to check simultaneously (e.g. for a floor-plan view). Takes precedence over 'room' if both are given."
|
|
23
|
+
- name: date
|
|
24
|
+
type: string
|
|
25
|
+
required: false
|
|
26
|
+
help: "Day to check in YYYY-MM-DD format (default: today)"
|
|
27
|
+
pattern: "^\\d{4}-\\d{2}-\\d{2}$"
|
|
28
|
+
|
|
29
|
+
columns:
|
|
30
|
+
- name: room
|
|
31
|
+
type: string
|
|
32
|
+
- name: capacity
|
|
33
|
+
type: number
|
|
34
|
+
- name: date
|
|
35
|
+
type: string
|
|
36
|
+
- name: state
|
|
37
|
+
type: string
|
|
38
|
+
- name: start
|
|
39
|
+
type: string
|
|
40
|
+
- name: end
|
|
41
|
+
type: string
|
|
42
|
+
- name: durationMin
|
|
43
|
+
type: number
|
|
44
|
+
|
|
45
|
+
pipeline:
|
|
46
|
+
- step: navigate
|
|
47
|
+
url: "https://outlook.cloud.microsoft.mcas.ms/calendar/deeplink/compose"
|
|
48
|
+
- step: wait
|
|
49
|
+
selector: "body"
|
|
50
|
+
timeout: 30000
|
|
51
|
+
- step: js_evaluate
|
|
52
|
+
file: teams-room-availability.eval.js
|
|
53
|
+
|