This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ext-mapping-upsert.cql
53 lines (50 loc) · 2.01 KB
/
ext-mapping-upsert.cql
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ludwig prod
INSERT INTO "spore"."embeds_by_id" (
"id", "sourceType", "sourceId", "orgId",
"componentInstanceId",
"defaultLayoutConfigSteps",
"maxExtensionVersion",
"minExtensionVersion",
"slug", "status", "data"
)
VALUES
(
06248540-1cd2-11ed-8713-8d10b2748059, 'youtubeLive',
'UCrPseYLGpNygVi34QpGNqpA', 8e35b570-6c2f-11ec-bade-b32a8d305590, 3c263440-1cd2-11ed-8713-8d10b2748059,
'[{"action":"querySelector","value":"body"},{"action":"appendSubject","value":null}]',
NULL, '3.3.0', 'ea-mogul-menu',
'experimental', '{"iframeUrl": "https://new.ludwig.social/mogul-menu"}'
);
# ludwig channel-points prod
INSERT INTO "spore"."embeds_by_id" (
"id", "sourceType", "sourceId", "orgId",
"componentInstanceId",
"defaultLayoutConfigSteps",
"maxExtensionVersion",
"minExtensionVersion",
"slug", "status", "data"
)
VALUES
(
ba0dc230-2897-11ed-b4d3-09601920a412, 'youtubeLive',
'UCrPseYLGpNygVi34QpGNqpA', 8e35b570-6c2f-11ec-bade-b32a8d305590, da5a7f10-2897-11ed-b4d3-09601920a412,
'[{"action": "querySelector","value": "#chatframe"},{"action": "getIframeDocument"},{"action": "querySelector","value": "#picker-buttons"},{"action": "appendSubject"}]',
NULL, '3.3.0', 'channel-points',
'experimental', '{"iframeUrl": "https://new.ludwig.social/channel-points" }'
);
INSERT INTO "spore"."embeds_by_id" (
"id", "sourceType", "sourceId", "orgId",
"componentInstanceId",
"defaultLayoutConfigSteps",
"maxExtensionVersion",
"minExtensionVersion",
"slug", "status", "data"
)
VALUES
(
ba07f880-360e-11ed-86ac-d144e8711ee9, 'youtubeLive',
'UCrPseYLGpNygVi34QpGNqpA', 8e35b570-6c2f-11ec-bade-b32a8d305590, bf2c31a0-360e-11ed-86ac-d144e8711ee9,
'[{"action": "querySelector","value": "#chatframe"},{"action": "getIframeDocument"},{"action": "querySelector","value": "yt-live-chat-banner-manager"},{"action": "appendSubject"}]',
NULL, '3.3.0', 'activity-banner',
'experimental', '{"iframeUrl": "https://new.ludwig.social/activity-banner" }'
);