@commandgarden/cli 2.1.0 → 2.2.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 +13 -8
- package/node_modules/@commandgarden/app/dist/client/assets/{index-JB_Cdl_F.css → index-Cglxej9D.css} +1 -1
- package/node_modules/@commandgarden/app/dist/client/assets/index-Cju0_G1Y.js +397 -0
- package/node_modules/@commandgarden/app/dist/client/index.html +19 -19
- package/node_modules/@commandgarden/app/dist/server/routes/connectors.js +1 -0
- package/node_modules/@commandgarden/app/dist/server/store.js +31 -31
- 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 +143 -143
- 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 +186 -186
- package/node_modules/@commandgarden/daemon/connectors/outlook-my-meetings.yaml +41 -41
- package/node_modules/@commandgarden/daemon/connectors/saba-pending-training.eval.js +94 -0
- package/node_modules/@commandgarden/daemon/connectors/saba-pending-training.yaml +34 -0
- package/node_modules/@commandgarden/daemon/connectors/socket-security-news.yaml +63 -63
- package/node_modules/@commandgarden/daemon/connectors/teams-room-availability.eval.js +341 -341
- package/node_modules/@commandgarden/daemon/connectors/teams-room-availability.yaml +46 -46
- 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 -57
- package/node_modules/@commandgarden/app/dist/client/assets/index-GpK1-Tyq.js +0 -255
- 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,63 +1,63 @@
|
|
|
1
|
-
site: socket
|
|
2
|
-
name: security-news
|
|
3
|
-
version: "1.0"
|
|
4
|
-
description: "Latest security news from Socket.dev blog"
|
|
5
|
-
access: read
|
|
6
|
-
|
|
7
|
-
domains:
|
|
8
|
-
- "socket.dev"
|
|
9
|
-
capabilities:
|
|
10
|
-
- navigate
|
|
11
|
-
- cookie_read
|
|
12
|
-
|
|
13
|
-
args:
|
|
14
|
-
- name: tag
|
|
15
|
-
type: string
|
|
16
|
-
required: false
|
|
17
|
-
default: ""
|
|
18
|
-
help: "Filter by tag (e.g. 'Research', 'Security News')"
|
|
19
|
-
|
|
20
|
-
columns:
|
|
21
|
-
- name: title
|
|
22
|
-
type: string
|
|
23
|
-
- name: summary
|
|
24
|
-
type: string
|
|
25
|
-
- name: url
|
|
26
|
-
type: string
|
|
27
|
-
- name: date
|
|
28
|
-
type: string
|
|
29
|
-
- name: author
|
|
30
|
-
type: string
|
|
31
|
-
- name: tags
|
|
32
|
-
type: string
|
|
33
|
-
|
|
34
|
-
pipeline:
|
|
35
|
-
- step: navigate
|
|
36
|
-
url: "https://socket.dev/"
|
|
37
|
-
- step: wait
|
|
38
|
-
selector: "body"
|
|
39
|
-
timeout: 30000
|
|
40
|
-
- step: fetch
|
|
41
|
-
url: "https://socket.dev/api/blog/feed.json"
|
|
42
|
-
method: "GET"
|
|
43
|
-
headers:
|
|
44
|
-
Accept: "application/json"
|
|
45
|
-
as: "feed"
|
|
46
|
-
- step: transform
|
|
47
|
-
type: json_unwrap
|
|
48
|
-
input: feed
|
|
49
|
-
as: _data
|
|
50
|
-
options:
|
|
51
|
-
path: "items"
|
|
52
|
-
- step: map
|
|
53
|
-
fields:
|
|
54
|
-
title: "${{ row.title }}"
|
|
55
|
-
summary: "${{ row.summary }}"
|
|
56
|
-
url: "${{ row.url }}"
|
|
57
|
-
date: "${{ row.date_published }}"
|
|
58
|
-
author: "${{ row.author.name }}"
|
|
59
|
-
tags: "${{ row.tags }}"
|
|
60
|
-
- step: filter # empty tag = show all (contains '' is always true)
|
|
61
|
-
field: tags
|
|
62
|
-
operator: contains
|
|
63
|
-
value: "${{ args.tag | default('') }}"
|
|
1
|
+
site: socket
|
|
2
|
+
name: security-news
|
|
3
|
+
version: "1.0"
|
|
4
|
+
description: "Latest security news from Socket.dev blog"
|
|
5
|
+
access: read
|
|
6
|
+
|
|
7
|
+
domains:
|
|
8
|
+
- "socket.dev"
|
|
9
|
+
capabilities:
|
|
10
|
+
- navigate
|
|
11
|
+
- cookie_read
|
|
12
|
+
|
|
13
|
+
args:
|
|
14
|
+
- name: tag
|
|
15
|
+
type: string
|
|
16
|
+
required: false
|
|
17
|
+
default: ""
|
|
18
|
+
help: "Filter by tag (e.g. 'Research', 'Security News')"
|
|
19
|
+
|
|
20
|
+
columns:
|
|
21
|
+
- name: title
|
|
22
|
+
type: string
|
|
23
|
+
- name: summary
|
|
24
|
+
type: string
|
|
25
|
+
- name: url
|
|
26
|
+
type: string
|
|
27
|
+
- name: date
|
|
28
|
+
type: string
|
|
29
|
+
- name: author
|
|
30
|
+
type: string
|
|
31
|
+
- name: tags
|
|
32
|
+
type: string
|
|
33
|
+
|
|
34
|
+
pipeline:
|
|
35
|
+
- step: navigate
|
|
36
|
+
url: "https://socket.dev/"
|
|
37
|
+
- step: wait
|
|
38
|
+
selector: "body"
|
|
39
|
+
timeout: 30000
|
|
40
|
+
- step: fetch
|
|
41
|
+
url: "https://socket.dev/api/blog/feed.json"
|
|
42
|
+
method: "GET"
|
|
43
|
+
headers:
|
|
44
|
+
Accept: "application/json"
|
|
45
|
+
as: "feed"
|
|
46
|
+
- step: transform
|
|
47
|
+
type: json_unwrap
|
|
48
|
+
input: feed
|
|
49
|
+
as: _data
|
|
50
|
+
options:
|
|
51
|
+
path: "items"
|
|
52
|
+
- step: map
|
|
53
|
+
fields:
|
|
54
|
+
title: "${{ row.title }}"
|
|
55
|
+
summary: "${{ row.summary }}"
|
|
56
|
+
url: "${{ row.url }}"
|
|
57
|
+
date: "${{ row.date_published }}"
|
|
58
|
+
author: "${{ row.author.name }}"
|
|
59
|
+
tags: "${{ row.tags }}"
|
|
60
|
+
- step: filter # empty tag = show all (contains '' is always true)
|
|
61
|
+
field: tags
|
|
62
|
+
operator: contains
|
|
63
|
+
value: "${{ args.tag | default('') }}"
|