@vm0/cli 9.200.4 → 9.201.1
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/{chunk-IMHXYYPH.js → chunk-ZSWMGND5.js} +712 -257
- package/{chunk-IMHXYYPH.js.map → chunk-ZSWMGND5.js.map} +1 -1
- package/google-search-console.generated-5372VTTQ.js +88 -0
- package/google-search-console.generated-5372VTTQ.js.map +1 -0
- package/index.js +9 -9
- package/package.json +1 -1
- package/youtube.generated-7BWVJMSJ.js +409 -0
- package/youtube.generated-7BWVJMSJ.js.map +1 -0
- package/zero.js +402 -9
- package/zero.js.map +1 -1
- package/google-search-console.generated-MCALD4OF.js +0 -32
- package/google-search-console.generated-MCALD4OF.js.map +0 -1
- package/youtube.generated-E7FM5IYT.js +0 -40
- package/youtube.generated-E7FM5IYT.js.map +0 -1
|
@@ -80403,7 +80403,7 @@ if (DSN) {
|
|
|
80403
80403
|
init2({
|
|
80404
80404
|
dsn: DSN,
|
|
80405
80405
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
80406
|
-
release: "9.
|
|
80406
|
+
release: "9.201.1",
|
|
80407
80407
|
sendDefaultPii: false,
|
|
80408
80408
|
tracesSampleRate: 0,
|
|
80409
80409
|
shutdownTimeout: 500,
|
|
@@ -80422,7 +80422,7 @@ if (DSN) {
|
|
|
80422
80422
|
}
|
|
80423
80423
|
});
|
|
80424
80424
|
setContext("cli", {
|
|
80425
|
-
version: "9.
|
|
80425
|
+
version: "9.201.1",
|
|
80426
80426
|
command: process.argv.slice(2).join(" ")
|
|
80427
80427
|
});
|
|
80428
80428
|
setContext("runtime", {
|
|
@@ -122916,7 +122916,7 @@ var zeroWorkflowScheduleSchema = external_exports.discriminatedUnion("type", [
|
|
|
122916
122916
|
}),
|
|
122917
122917
|
external_exports.object({
|
|
122918
122918
|
type: external_exports.literal("once"),
|
|
122919
|
-
atTime: external_exports.string().
|
|
122919
|
+
atTime: external_exports.string().min(1),
|
|
122920
122920
|
timezone: external_exports.string().min(1)
|
|
122921
122921
|
})
|
|
122922
122922
|
]);
|
|
@@ -123345,6 +123345,62 @@ async function runWorkflow(workflowId) {
|
|
|
123345
123345
|
if (result.status === 200) return result.body;
|
|
123346
123346
|
handleError(result, `Failed to run workflow "${workflowId}"`);
|
|
123347
123347
|
}
|
|
123348
|
+
async function listWorkflowTriggers(workflowId) {
|
|
123349
|
+
const config4 = await getClientConfig();
|
|
123350
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123351
|
+
const result = await client.list({ params: { workflowId } });
|
|
123352
|
+
if (result.status === 200) return result.body;
|
|
123353
|
+
handleError(result, `Failed to list triggers for workflow "${workflowId}"`);
|
|
123354
|
+
}
|
|
123355
|
+
async function createWorkflowTrigger(workflowId, body) {
|
|
123356
|
+
const config4 = await getClientConfig();
|
|
123357
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123358
|
+
const result = await client.create({ params: { workflowId }, body });
|
|
123359
|
+
if (result.status === 201) return result.body;
|
|
123360
|
+
handleError(result, `Failed to add trigger to workflow "${workflowId}"`);
|
|
123361
|
+
}
|
|
123362
|
+
async function getWorkflowTrigger(id) {
|
|
123363
|
+
const config4 = await getClientConfig();
|
|
123364
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123365
|
+
const result = await client.get({ params: { id } });
|
|
123366
|
+
if (result.status === 200) return result.body;
|
|
123367
|
+
handleError(result, `Workflow trigger "${id}" not found`);
|
|
123368
|
+
}
|
|
123369
|
+
async function updateWorkflowTrigger(id, body) {
|
|
123370
|
+
const config4 = await getClientConfig();
|
|
123371
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123372
|
+
const result = await client.update({ params: { id }, body });
|
|
123373
|
+
if (result.status === 200) return result.body;
|
|
123374
|
+
handleError(result, `Failed to update workflow trigger "${id}"`);
|
|
123375
|
+
}
|
|
123376
|
+
async function deleteWorkflowTrigger(id) {
|
|
123377
|
+
const config4 = await getClientConfig();
|
|
123378
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123379
|
+
const result = await client.delete({ params: { id } });
|
|
123380
|
+
if (result.status === 204) return;
|
|
123381
|
+
handleError(result, `Workflow trigger "${id}" not found`);
|
|
123382
|
+
}
|
|
123383
|
+
async function enableWorkflowTrigger(id) {
|
|
123384
|
+
const config4 = await getClientConfig();
|
|
123385
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123386
|
+
const result = await client.enable({ params: { id } });
|
|
123387
|
+
if (result.status === 200) return result.body;
|
|
123388
|
+
handleError(result, `Failed to enable workflow trigger "${id}"`);
|
|
123389
|
+
}
|
|
123390
|
+
async function disableWorkflowTrigger(id) {
|
|
123391
|
+
const config4 = await getClientConfig();
|
|
123392
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123393
|
+
const result = await client.disable({ params: { id } });
|
|
123394
|
+
if (result.status === 200) return result.body;
|
|
123395
|
+
handleError(result, `Failed to disable workflow trigger "${id}"`);
|
|
123396
|
+
}
|
|
123397
|
+
async function runWorkflowTrigger(id) {
|
|
123398
|
+
const config4 = await getClientConfig();
|
|
123399
|
+
const client = initClient(zeroWorkflowTriggersContract, config4);
|
|
123400
|
+
const result = await client.run({ params: { id } });
|
|
123401
|
+
if (result.status === 200) return result.body;
|
|
123402
|
+
handleError(result, `Failed to run workflow trigger "${id}"`);
|
|
123403
|
+
}
|
|
123348
123404
|
|
|
123349
123405
|
// src/lib/api/domains/integrations-slack.ts
|
|
123350
123406
|
init_esm_shims();
|
|
@@ -128705,30 +128761,30 @@ var PRESENTATION_RESOURCE_ARCHIVE_SHA256 = {
|
|
|
128705
128761
|
designSystemBusinessData: "a606c4c022200d3e1be70d69afa0579fd6473441be97b8e13ccfadcfecfecdbd",
|
|
128706
128762
|
designSystemBotaneOrganic: "b0ed1fa2b7daa5d543ae3b187edea17f95b0594d2a408d4cc197510caafc26ef",
|
|
128707
128763
|
playfulEditorial: "c97ad47460cc43ca0a172c4ac7ccc471c4801d3e98b3f1f202b0f46eaee1eaaf",
|
|
128708
|
-
aplocoto: "
|
|
128709
|
-
botaneOrganic: "
|
|
128710
|
-
businessData: "
|
|
128711
|
-
presentationDeckTools: "
|
|
128764
|
+
aplocoto: "28a6fbda2f740dbf1cffa52cc0b636746eaf6ebe95aa37d47568980a5564816f",
|
|
128765
|
+
botaneOrganic: "25feaef1ffd584ae8c09a48826a05ca86696b3731085fa7d06fc12a52eb8ddb6",
|
|
128766
|
+
businessData: "229516a65ebd66d48c789bb626da24f96a8658d313c72229c0d2cabe262248f1",
|
|
128767
|
+
presentationDeckTools: "a0674e9238ce0819281fa01f39dd650ccda215b6498578decaaf2042ab8c4531",
|
|
128712
128768
|
designSystemCrayon: "c2b891a40b672aa8f45bd72d7343309d097dd3aeb6653444fe10c5d4b62bbaca",
|
|
128713
|
-
templateCrayon: "
|
|
128769
|
+
templateCrayon: "05b88b0490718c329f0cffd38384c7e08af222dcbdc4d58e6c4702bc92669595",
|
|
128714
128770
|
designSystemCreativeAgency: "86f6fa6e022dd0125eb5cd9c57e6643126f471ee7705e910296ebc9f7eabf0da",
|
|
128715
|
-
templateCreativeAgency: "
|
|
128771
|
+
templateCreativeAgency: "ec6aa675adf8486662cb653327fc2ec46a6622365ffeed06d4dba6b85bb73fa3",
|
|
128716
128772
|
designSystemDataReport: "86f667797087d0abe40a85ebe277138eab88863b1e85a112bb2d9a8707c09393",
|
|
128717
|
-
templateDataReport: "
|
|
128773
|
+
templateDataReport: "256556de59fe261fb86a63767e83c339b98c3c2ca0872f5a0d99a3fe4fdb9282",
|
|
128718
128774
|
designSystemEditorialMagazine: "221830d9da5e8baf7f59c9929f40f0ec97fcb3353f3e92961c6b1ae397b93520",
|
|
128719
|
-
templateEditorialMagazine: "
|
|
128775
|
+
templateEditorialMagazine: "f5f9500a31980be2e66362d5d6dc475c9435e5dec2b660c6356213596f77a8d2",
|
|
128720
128776
|
designSystemLandingConsulting: "c1306603a1e4d547730d1b4d1827e48f5d1251d1a7df4446f8845e54eeb6ab83",
|
|
128721
|
-
templateLandingConsulting: "
|
|
128777
|
+
templateLandingConsulting: "4c3209355a076aef28aea8d70ad5a2b74f5decdd05e4ecfb8a8192148bf8ff7a",
|
|
128722
128778
|
designSystemLumina: "45890f99d5c781c2be1d7266d6ec92bae8760f70c74201f20a04f32e4a0ed1de",
|
|
128723
|
-
templateLumina: "
|
|
128779
|
+
templateLumina: "599f4cbd8118a2347dd1a84435c6fdb1105b1d906ba49d2e3595fca54a77bee2",
|
|
128724
128780
|
designSystemMosaicGeometric: "54cc95abeb0162d1ef2e6eb2ef2eefd0aefdac59d9dc179d53c661b91e7462f2",
|
|
128725
|
-
templateMosaicGeometric: "
|
|
128781
|
+
templateMosaicGeometric: "112a0aabe92a20bd25427286d6a674725b926ab324e6c06b35574f1e511b911d",
|
|
128726
128782
|
designSystemPlayfulPop: "0199f0a05ab40c9f9ef5c5b2bddb3b62b86a9e9577d33b852758759fd17ff431",
|
|
128727
|
-
templatePlayfulPop: "
|
|
128783
|
+
templatePlayfulPop: "10944b1b02421f7b2e792c4563a7e4e52ee752cb50b34cb31054afd94311906d",
|
|
128728
128784
|
designSystemNocturne: "bc82f6665394cc99039fe34523e5c6095a9bbf5a2a3a81dee128540a43812dec",
|
|
128729
|
-
templateNocturne: "
|
|
128785
|
+
templateNocturne: "8fe867f43313ed8c99c0cd774ce61bef7b097f4912b7e3ef4bd5d228d05d2bde",
|
|
128730
128786
|
designSystemNeoBrutalism: "a9bbb1cfc4a86259b9ad8f33d9eaa433eedd75b26ce0a6d4f65fa965d66a75c9",
|
|
128731
|
-
templateNeoBrutalism: "
|
|
128787
|
+
templateNeoBrutalism: "cec2dde23a09f38c8a538e5cddcce9853e726cef1ee7bcfde46cd405f7dcd465",
|
|
128732
128788
|
colorSystemBauhausPrimary: "f42a1d62462f24b1a411889f8011b07bd3f1bb1db82a339cc59cf5ab5be2f475",
|
|
128733
128789
|
colorSystemBerryPop: "dfb63401d8991e2cc54acb2489eee937bce7e890991a2cc3a102447f39ed5539",
|
|
128734
128790
|
colorSystemCarnival: "70d3721484929f0c841da5b0ecdb81889e81b5f37280607889c532cee1183f48",
|
|
@@ -156331,42 +156387,87 @@ var googleSearchConsoleFirewall = {
|
|
|
156331
156387
|
base: "https://searchconsole.googleapis.com",
|
|
156332
156388
|
auth: {
|
|
156333
156389
|
headers: {
|
|
156334
|
-
|
|
156390
|
+
Authorization: "Bearer ${{ secrets.GOOGLE_SEARCH_CONSOLE_TOKEN }}"
|
|
156335
156391
|
}
|
|
156336
156392
|
},
|
|
156337
156393
|
permissions: [
|
|
156338
156394
|
{
|
|
156339
|
-
name: "
|
|
156340
|
-
description: "
|
|
156395
|
+
name: "mobile-friendly-tests.run",
|
|
156396
|
+
description: "Run mobile-friendly tests for URLs.",
|
|
156397
|
+
rules: [
|
|
156398
|
+
"POST /v1/urlTestingTools/mobileFriendlyTest:run"
|
|
156399
|
+
]
|
|
156400
|
+
},
|
|
156401
|
+
{
|
|
156402
|
+
name: "search-analytics.query",
|
|
156403
|
+
description: "Query Search Console search analytics data.",
|
|
156404
|
+
rules: [
|
|
156405
|
+
"POST /webmasters/v3/sites/{siteUrl}/searchAnalytics/query"
|
|
156406
|
+
]
|
|
156407
|
+
},
|
|
156408
|
+
{
|
|
156409
|
+
name: "sitemaps.delete",
|
|
156410
|
+
description: "Delete submitted sitemaps.",
|
|
156341
156411
|
rules: [
|
|
156342
|
-
"POST /v1/urlInspection/index:inspect",
|
|
156343
|
-
"GET /webmasters/v3/sites",
|
|
156344
|
-
"GET /webmasters/v3/sites/{siteUrl}",
|
|
156345
|
-
"PUT /webmasters/v3/sites/{siteUrl}",
|
|
156346
|
-
"DELETE /webmasters/v3/sites/{siteUrl}",
|
|
156347
|
-
"POST /webmasters/v3/sites/{siteUrl}/searchAnalytics/query",
|
|
156348
|
-
"GET /webmasters/v3/sites/{siteUrl}/sitemaps",
|
|
156349
|
-
"GET /webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}",
|
|
156350
|
-
"PUT /webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}",
|
|
156351
156412
|
"DELETE /webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}"
|
|
156352
156413
|
]
|
|
156353
156414
|
},
|
|
156354
156415
|
{
|
|
156355
|
-
name: "
|
|
156356
|
-
description: "
|
|
156416
|
+
name: "sitemaps.read",
|
|
156417
|
+
description: "List and read submitted sitemaps.",
|
|
156357
156418
|
rules: [
|
|
156358
|
-
"POST /v1/urlInspection/index:inspect",
|
|
156359
|
-
"GET /webmasters/v3/sites",
|
|
156360
|
-
"GET /webmasters/v3/sites/{siteUrl}",
|
|
156361
|
-
"POST /webmasters/v3/sites/{siteUrl}/searchAnalytics/query",
|
|
156362
156419
|
"GET /webmasters/v3/sites/{siteUrl}/sitemaps",
|
|
156363
156420
|
"GET /webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}"
|
|
156364
156421
|
]
|
|
156422
|
+
},
|
|
156423
|
+
{
|
|
156424
|
+
name: "sitemaps.write",
|
|
156425
|
+
description: "Submit sitemaps.",
|
|
156426
|
+
rules: [
|
|
156427
|
+
"PUT /webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}"
|
|
156428
|
+
]
|
|
156429
|
+
},
|
|
156430
|
+
{
|
|
156431
|
+
name: "sites.delete",
|
|
156432
|
+
description: "Remove sites from Search Console.",
|
|
156433
|
+
rules: [
|
|
156434
|
+
"DELETE /webmasters/v3/sites/{siteUrl}"
|
|
156435
|
+
]
|
|
156436
|
+
},
|
|
156437
|
+
{
|
|
156438
|
+
name: "sites.read",
|
|
156439
|
+
description: "List and read Search Console sites.",
|
|
156440
|
+
rules: [
|
|
156441
|
+
"GET /webmasters/v3/sites",
|
|
156442
|
+
"GET /webmasters/v3/sites/{siteUrl}"
|
|
156443
|
+
]
|
|
156444
|
+
},
|
|
156445
|
+
{
|
|
156446
|
+
name: "sites.write",
|
|
156447
|
+
description: "Add sites to Search Console.",
|
|
156448
|
+
rules: [
|
|
156449
|
+
"PUT /webmasters/v3/sites/{siteUrl}"
|
|
156450
|
+
]
|
|
156451
|
+
},
|
|
156452
|
+
{
|
|
156453
|
+
name: "url-inspection.inspect",
|
|
156454
|
+
description: "Inspect URL indexing status.",
|
|
156455
|
+
rules: [
|
|
156456
|
+
"POST /v1/urlInspection/index:inspect"
|
|
156457
|
+
]
|
|
156365
156458
|
}
|
|
156366
156459
|
]
|
|
156367
156460
|
}
|
|
156368
156461
|
]
|
|
156369
156462
|
};
|
|
156463
|
+
var googleSearchConsoleDefaultAllowed = [
|
|
156464
|
+
"mobile-friendly-tests.run",
|
|
156465
|
+
"search-analytics.query",
|
|
156466
|
+
"sitemaps.read",
|
|
156467
|
+
"sites.read",
|
|
156468
|
+
"url-inspection.inspect"
|
|
156469
|
+
];
|
|
156470
|
+
var googleSearchConsoleDefaultUnknownPolicy = "deny";
|
|
156370
156471
|
|
|
156371
156472
|
// ../../packages/connectors/src/firewalls/google-sheets.generated.ts
|
|
156372
156473
|
init_esm_shims();
|
|
@@ -164380,193 +164481,498 @@ var youtubeFirewall = {
|
|
|
164380
164481
|
base: "https://youtube.googleapis.com/youtube",
|
|
164381
164482
|
auth: {
|
|
164382
164483
|
headers: {
|
|
164383
|
-
|
|
164484
|
+
Authorization: "Bearer ${{ secrets.YOUTUBE_TOKEN }}"
|
|
164384
164485
|
}
|
|
164385
164486
|
},
|
|
164386
164487
|
permissions: [
|
|
164387
164488
|
{
|
|
164388
|
-
name: "
|
|
164389
|
-
description: "
|
|
164489
|
+
name: "abuse-reports.create",
|
|
164490
|
+
description: "Create YouTube abuse reports.",
|
|
164390
164491
|
rules: [
|
|
164391
|
-
"POST /v3/abuseReports"
|
|
164392
|
-
"GET /v3/activities",
|
|
164393
|
-
"POST /v3/channelBanners/insert",
|
|
164394
|
-
"GET /v3/channelSections",
|
|
164395
|
-
"POST /v3/channelSections",
|
|
164396
|
-
"PUT /v3/channelSections",
|
|
164397
|
-
"DELETE /v3/channelSections",
|
|
164398
|
-
"GET /v3/channels",
|
|
164399
|
-
"PUT /v3/channels",
|
|
164400
|
-
"GET /v3/i18nLanguages",
|
|
164401
|
-
"GET /v3/i18nRegions",
|
|
164402
|
-
"GET /v3/liveBroadcasts",
|
|
164403
|
-
"POST /v3/liveBroadcasts",
|
|
164404
|
-
"PUT /v3/liveBroadcasts",
|
|
164405
|
-
"DELETE /v3/liveBroadcasts",
|
|
164406
|
-
"POST /v3/liveBroadcasts/bind",
|
|
164407
|
-
"POST /v3/liveBroadcasts/cuepoint",
|
|
164408
|
-
"POST /v3/liveBroadcasts/transition",
|
|
164409
|
-
"POST /v3/liveChat/bans",
|
|
164410
|
-
"DELETE /v3/liveChat/bans",
|
|
164411
|
-
"GET /v3/liveChat/messages",
|
|
164412
|
-
"POST /v3/liveChat/messages",
|
|
164413
|
-
"DELETE /v3/liveChat/messages",
|
|
164414
|
-
"GET /v3/liveChat/messages/stream",
|
|
164415
|
-
"POST /v3/liveChat/messages/transition",
|
|
164416
|
-
"GET /v3/liveChat/moderators",
|
|
164417
|
-
"POST /v3/liveChat/moderators",
|
|
164418
|
-
"DELETE /v3/liveChat/moderators",
|
|
164419
|
-
"GET /v3/liveStreams",
|
|
164420
|
-
"POST /v3/liveStreams",
|
|
164421
|
-
"PUT /v3/liveStreams",
|
|
164422
|
-
"DELETE /v3/liveStreams",
|
|
164423
|
-
"GET /v3/playlistImages",
|
|
164424
|
-
"POST /v3/playlistImages",
|
|
164425
|
-
"PUT /v3/playlistImages",
|
|
164426
|
-
"DELETE /v3/playlistImages",
|
|
164427
|
-
"GET /v3/playlistItems",
|
|
164428
|
-
"POST /v3/playlistItems",
|
|
164429
|
-
"PUT /v3/playlistItems",
|
|
164430
|
-
"DELETE /v3/playlistItems",
|
|
164431
|
-
"GET /v3/playlists",
|
|
164432
|
-
"POST /v3/playlists",
|
|
164433
|
-
"PUT /v3/playlists",
|
|
164434
|
-
"DELETE /v3/playlists",
|
|
164435
|
-
"GET /v3/search",
|
|
164436
|
-
"GET /v3/subscriptions",
|
|
164437
|
-
"POST /v3/subscriptions",
|
|
164438
|
-
"DELETE /v3/subscriptions",
|
|
164439
|
-
"GET /v3/superChatEvents",
|
|
164440
|
-
"POST /v3/thumbnails/set",
|
|
164441
|
-
"GET /v3/videoAbuseReportReasons",
|
|
164442
|
-
"GET /v3/videoCategories",
|
|
164443
|
-
"GET /v3/videoTrainability",
|
|
164444
|
-
"GET /v3/videos",
|
|
164445
|
-
"POST /v3/videos",
|
|
164446
|
-
"PUT /v3/videos",
|
|
164447
|
-
"DELETE /v3/videos",
|
|
164448
|
-
"GET /v3/videos/getRating",
|
|
164449
|
-
"POST /v3/videos/rate",
|
|
164450
|
-
"POST /v3/videos/reportAbuse",
|
|
164451
|
-
"POST /v3/watermarks/set",
|
|
164452
|
-
"POST /v3/watermarks/unset"
|
|
164492
|
+
"POST /v3/abuseReports"
|
|
164453
164493
|
]
|
|
164454
164494
|
},
|
|
164455
164495
|
{
|
|
164456
|
-
name: "
|
|
164457
|
-
description: "
|
|
164496
|
+
name: "activities.read",
|
|
164497
|
+
description: "Read YouTube channel activities.",
|
|
164498
|
+
rules: [
|
|
164499
|
+
"GET /v3/activities"
|
|
164500
|
+
]
|
|
164501
|
+
},
|
|
164502
|
+
{
|
|
164503
|
+
name: "captions.delete",
|
|
164504
|
+
description: "Delete YouTube captions.",
|
|
164505
|
+
rules: [
|
|
164506
|
+
"DELETE /v3/captions"
|
|
164507
|
+
]
|
|
164508
|
+
},
|
|
164509
|
+
{
|
|
164510
|
+
name: "captions.download",
|
|
164511
|
+
description: "Download YouTube captions.",
|
|
164512
|
+
rules: [
|
|
164513
|
+
"GET /v3/captions/{id}"
|
|
164514
|
+
]
|
|
164515
|
+
},
|
|
164516
|
+
{
|
|
164517
|
+
name: "captions.read",
|
|
164518
|
+
description: "Read YouTube captions.",
|
|
164519
|
+
rules: [
|
|
164520
|
+
"GET /v3/captions"
|
|
164521
|
+
]
|
|
164522
|
+
},
|
|
164523
|
+
{
|
|
164524
|
+
name: "captions.write",
|
|
164525
|
+
description: "Create and update YouTube captions.",
|
|
164458
164526
|
rules: [
|
|
164459
|
-
"POST /v3/abuseReports",
|
|
164460
|
-
"GET /v3/activities",
|
|
164461
|
-
"GET /v3/captions",
|
|
164462
164527
|
"POST /v3/captions",
|
|
164463
|
-
"PUT /v3/captions"
|
|
164464
|
-
|
|
164465
|
-
|
|
164466
|
-
|
|
164467
|
-
|
|
164528
|
+
"PUT /v3/captions"
|
|
164529
|
+
]
|
|
164530
|
+
},
|
|
164531
|
+
{
|
|
164532
|
+
name: "channel-banners.upload",
|
|
164533
|
+
description: "Upload YouTube channel banners.",
|
|
164534
|
+
rules: [
|
|
164535
|
+
"POST /v3/channelBanners/insert"
|
|
164536
|
+
]
|
|
164537
|
+
},
|
|
164538
|
+
{
|
|
164539
|
+
name: "channel-sections.delete",
|
|
164540
|
+
description: "Delete YouTube channel sections.",
|
|
164541
|
+
rules: [
|
|
164542
|
+
"DELETE /v3/channelSections"
|
|
164543
|
+
]
|
|
164544
|
+
},
|
|
164545
|
+
{
|
|
164546
|
+
name: "channel-sections.read",
|
|
164547
|
+
description: "Read YouTube channel sections.",
|
|
164548
|
+
rules: [
|
|
164549
|
+
"GET /v3/channelSections"
|
|
164550
|
+
]
|
|
164551
|
+
},
|
|
164552
|
+
{
|
|
164553
|
+
name: "channel-sections.write",
|
|
164554
|
+
description: "Create and update YouTube channel sections.",
|
|
164555
|
+
rules: [
|
|
164468
164556
|
"POST /v3/channelSections",
|
|
164469
|
-
"PUT /v3/channelSections"
|
|
164470
|
-
|
|
164471
|
-
|
|
164472
|
-
|
|
164473
|
-
|
|
164557
|
+
"PUT /v3/channelSections"
|
|
164558
|
+
]
|
|
164559
|
+
},
|
|
164560
|
+
{
|
|
164561
|
+
name: "channels.read",
|
|
164562
|
+
description: "Read YouTube channels.",
|
|
164563
|
+
rules: [
|
|
164564
|
+
"GET /v3/channels"
|
|
164565
|
+
]
|
|
164566
|
+
},
|
|
164567
|
+
{
|
|
164568
|
+
name: "channels.write",
|
|
164569
|
+
description: "Update YouTube channels.",
|
|
164570
|
+
rules: [
|
|
164571
|
+
"PUT /v3/channels"
|
|
164572
|
+
]
|
|
164573
|
+
},
|
|
164574
|
+
{
|
|
164575
|
+
name: "comment-threads.read",
|
|
164576
|
+
description: "Read YouTube comment threads.",
|
|
164577
|
+
rules: [
|
|
164578
|
+
"GET /v3/commentThreads"
|
|
164579
|
+
]
|
|
164580
|
+
},
|
|
164581
|
+
{
|
|
164582
|
+
name: "comment-threads.write",
|
|
164583
|
+
description: "Create and update YouTube comment threads.",
|
|
164584
|
+
rules: [
|
|
164474
164585
|
"POST /v3/commentThreads",
|
|
164475
|
-
"
|
|
164476
|
-
|
|
164477
|
-
|
|
164478
|
-
|
|
164586
|
+
"PUT /v3/commentThreads"
|
|
164587
|
+
]
|
|
164588
|
+
},
|
|
164589
|
+
{
|
|
164590
|
+
name: "comments.delete",
|
|
164591
|
+
description: "Delete YouTube comments.",
|
|
164592
|
+
rules: [
|
|
164593
|
+
"DELETE /v3/comments"
|
|
164594
|
+
]
|
|
164595
|
+
},
|
|
164596
|
+
{
|
|
164597
|
+
name: "comments.moderate",
|
|
164598
|
+
description: "Moderate YouTube comments.",
|
|
164599
|
+
rules: [
|
|
164479
164600
|
"POST /v3/comments/markAsSpam",
|
|
164480
|
-
"POST /v3/comments/setModerationStatus"
|
|
164481
|
-
|
|
164482
|
-
|
|
164483
|
-
|
|
164484
|
-
|
|
164485
|
-
|
|
164486
|
-
|
|
164601
|
+
"POST /v3/comments/setModerationStatus"
|
|
164602
|
+
]
|
|
164603
|
+
},
|
|
164604
|
+
{
|
|
164605
|
+
name: "comments.read",
|
|
164606
|
+
description: "Read YouTube comments.",
|
|
164607
|
+
rules: [
|
|
164608
|
+
"GET /v3/comments"
|
|
164609
|
+
]
|
|
164610
|
+
},
|
|
164611
|
+
{
|
|
164612
|
+
name: "comments.write",
|
|
164613
|
+
description: "Create and update YouTube comments.",
|
|
164614
|
+
rules: [
|
|
164615
|
+
"POST /v3/comments",
|
|
164616
|
+
"PUT /v3/comments"
|
|
164617
|
+
]
|
|
164618
|
+
},
|
|
164619
|
+
{
|
|
164620
|
+
name: "i18n-languages.read",
|
|
164621
|
+
description: "Read YouTube supported interface languages.",
|
|
164622
|
+
rules: [
|
|
164623
|
+
"GET /v3/i18nLanguages"
|
|
164624
|
+
]
|
|
164625
|
+
},
|
|
164626
|
+
{
|
|
164627
|
+
name: "i18n-regions.read",
|
|
164628
|
+
description: "Read YouTube supported regions.",
|
|
164629
|
+
rules: [
|
|
164630
|
+
"GET /v3/i18nRegions"
|
|
164631
|
+
]
|
|
164632
|
+
},
|
|
164633
|
+
{
|
|
164634
|
+
name: "live-broadcasts.control",
|
|
164635
|
+
description: "Bind, cue, and transition YouTube live broadcasts.",
|
|
164636
|
+
rules: [
|
|
164487
164637
|
"POST /v3/liveBroadcasts/bind",
|
|
164488
164638
|
"POST /v3/liveBroadcasts/cuepoint",
|
|
164489
|
-
"POST /v3/liveBroadcasts/transition"
|
|
164639
|
+
"POST /v3/liveBroadcasts/transition"
|
|
164640
|
+
]
|
|
164641
|
+
},
|
|
164642
|
+
{
|
|
164643
|
+
name: "live-broadcasts.create",
|
|
164644
|
+
description: "Create YouTube live broadcasts.",
|
|
164645
|
+
rules: [
|
|
164646
|
+
"POST /v3/liveBroadcasts"
|
|
164647
|
+
]
|
|
164648
|
+
},
|
|
164649
|
+
{
|
|
164650
|
+
name: "live-broadcasts.delete",
|
|
164651
|
+
description: "Delete YouTube live broadcasts.",
|
|
164652
|
+
rules: [
|
|
164653
|
+
"DELETE /v3/liveBroadcasts"
|
|
164654
|
+
]
|
|
164655
|
+
},
|
|
164656
|
+
{
|
|
164657
|
+
name: "live-broadcasts.read",
|
|
164658
|
+
description: "Read YouTube live broadcasts.",
|
|
164659
|
+
rules: [
|
|
164660
|
+
"GET /v3/liveBroadcasts"
|
|
164661
|
+
]
|
|
164662
|
+
},
|
|
164663
|
+
{
|
|
164664
|
+
name: "live-broadcasts.write",
|
|
164665
|
+
description: "Update YouTube live broadcasts.",
|
|
164666
|
+
rules: [
|
|
164667
|
+
"PUT /v3/liveBroadcasts"
|
|
164668
|
+
]
|
|
164669
|
+
},
|
|
164670
|
+
{
|
|
164671
|
+
name: "live-chat-bans.write",
|
|
164672
|
+
description: "Create and delete YouTube live chat bans.",
|
|
164673
|
+
rules: [
|
|
164490
164674
|
"POST /v3/liveChat/bans",
|
|
164491
|
-
"DELETE /v3/liveChat/bans"
|
|
164675
|
+
"DELETE /v3/liveChat/bans"
|
|
164676
|
+
]
|
|
164677
|
+
},
|
|
164678
|
+
{
|
|
164679
|
+
name: "live-chat-messages.delete",
|
|
164680
|
+
description: "Delete YouTube live chat messages.",
|
|
164681
|
+
rules: [
|
|
164682
|
+
"DELETE /v3/liveChat/messages"
|
|
164683
|
+
]
|
|
164684
|
+
},
|
|
164685
|
+
{
|
|
164686
|
+
name: "live-chat-messages.read",
|
|
164687
|
+
description: "Read YouTube live chat messages.",
|
|
164688
|
+
rules: [
|
|
164492
164689
|
"GET /v3/liveChat/messages",
|
|
164690
|
+
"GET /v3/liveChat/messages/stream"
|
|
164691
|
+
]
|
|
164692
|
+
},
|
|
164693
|
+
{
|
|
164694
|
+
name: "live-chat-messages.write",
|
|
164695
|
+
description: "Create and transition YouTube live chat messages.",
|
|
164696
|
+
rules: [
|
|
164493
164697
|
"POST /v3/liveChat/messages",
|
|
164494
|
-
"
|
|
164495
|
-
|
|
164496
|
-
|
|
164497
|
-
|
|
164698
|
+
"POST /v3/liveChat/messages/transition"
|
|
164699
|
+
]
|
|
164700
|
+
},
|
|
164701
|
+
{
|
|
164702
|
+
name: "live-chat-moderators.read",
|
|
164703
|
+
description: "Read YouTube live chat moderators.",
|
|
164704
|
+
rules: [
|
|
164705
|
+
"GET /v3/liveChat/moderators"
|
|
164706
|
+
]
|
|
164707
|
+
},
|
|
164708
|
+
{
|
|
164709
|
+
name: "live-chat-moderators.write",
|
|
164710
|
+
description: "Create and delete YouTube live chat moderators.",
|
|
164711
|
+
rules: [
|
|
164498
164712
|
"POST /v3/liveChat/moderators",
|
|
164499
|
-
"DELETE /v3/liveChat/moderators"
|
|
164500
|
-
|
|
164501
|
-
|
|
164502
|
-
|
|
164503
|
-
|
|
164504
|
-
|
|
164713
|
+
"DELETE /v3/liveChat/moderators"
|
|
164714
|
+
]
|
|
164715
|
+
},
|
|
164716
|
+
{
|
|
164717
|
+
name: "live-streams.create",
|
|
164718
|
+
description: "Create YouTube live streams.",
|
|
164719
|
+
rules: [
|
|
164720
|
+
"POST /v3/liveStreams"
|
|
164721
|
+
]
|
|
164722
|
+
},
|
|
164723
|
+
{
|
|
164724
|
+
name: "live-streams.delete",
|
|
164725
|
+
description: "Delete YouTube live streams.",
|
|
164726
|
+
rules: [
|
|
164727
|
+
"DELETE /v3/liveStreams"
|
|
164728
|
+
]
|
|
164729
|
+
},
|
|
164730
|
+
{
|
|
164731
|
+
name: "live-streams.read",
|
|
164732
|
+
description: "Read YouTube live streams.",
|
|
164733
|
+
rules: [
|
|
164734
|
+
"GET /v3/liveStreams"
|
|
164735
|
+
]
|
|
164736
|
+
},
|
|
164737
|
+
{
|
|
164738
|
+
name: "live-streams.write",
|
|
164739
|
+
description: "Update YouTube live streams.",
|
|
164740
|
+
rules: [
|
|
164741
|
+
"PUT /v3/liveStreams"
|
|
164742
|
+
]
|
|
164743
|
+
},
|
|
164744
|
+
{
|
|
164745
|
+
name: "members.read",
|
|
164746
|
+
description: "Read YouTube channel members.",
|
|
164747
|
+
rules: [
|
|
164748
|
+
"GET /v3/members"
|
|
164749
|
+
]
|
|
164750
|
+
},
|
|
164751
|
+
{
|
|
164752
|
+
name: "membership-levels.read",
|
|
164753
|
+
description: "Read YouTube channel membership levels.",
|
|
164754
|
+
rules: [
|
|
164755
|
+
"GET /v3/membershipsLevels"
|
|
164756
|
+
]
|
|
164757
|
+
},
|
|
164758
|
+
{
|
|
164759
|
+
name: "playlist-images.delete",
|
|
164760
|
+
description: "Delete YouTube playlist images.",
|
|
164761
|
+
rules: [
|
|
164762
|
+
"DELETE /v3/playlistImages"
|
|
164763
|
+
]
|
|
164764
|
+
},
|
|
164765
|
+
{
|
|
164766
|
+
name: "playlist-images.read",
|
|
164767
|
+
description: "Read YouTube playlist images.",
|
|
164768
|
+
rules: [
|
|
164769
|
+
"GET /v3/playlistImages"
|
|
164770
|
+
]
|
|
164771
|
+
},
|
|
164772
|
+
{
|
|
164773
|
+
name: "playlist-images.write",
|
|
164774
|
+
description: "Create and update YouTube playlist images.",
|
|
164775
|
+
rules: [
|
|
164505
164776
|
"POST /v3/playlistImages",
|
|
164506
|
-
"PUT /v3/playlistImages"
|
|
164507
|
-
|
|
164508
|
-
|
|
164777
|
+
"PUT /v3/playlistImages"
|
|
164778
|
+
]
|
|
164779
|
+
},
|
|
164780
|
+
{
|
|
164781
|
+
name: "playlist-items.delete",
|
|
164782
|
+
description: "Delete YouTube playlist items.",
|
|
164783
|
+
rules: [
|
|
164784
|
+
"DELETE /v3/playlistItems"
|
|
164785
|
+
]
|
|
164786
|
+
},
|
|
164787
|
+
{
|
|
164788
|
+
name: "playlist-items.read",
|
|
164789
|
+
description: "Read YouTube playlist items.",
|
|
164790
|
+
rules: [
|
|
164791
|
+
"GET /v3/playlistItems"
|
|
164792
|
+
]
|
|
164793
|
+
},
|
|
164794
|
+
{
|
|
164795
|
+
name: "playlist-items.write",
|
|
164796
|
+
description: "Create and update YouTube playlist items.",
|
|
164797
|
+
rules: [
|
|
164509
164798
|
"POST /v3/playlistItems",
|
|
164510
|
-
"PUT /v3/playlistItems"
|
|
164511
|
-
|
|
164512
|
-
|
|
164799
|
+
"PUT /v3/playlistItems"
|
|
164800
|
+
]
|
|
164801
|
+
},
|
|
164802
|
+
{
|
|
164803
|
+
name: "playlists.delete",
|
|
164804
|
+
description: "Delete YouTube playlists.",
|
|
164805
|
+
rules: [
|
|
164806
|
+
"DELETE /v3/playlists"
|
|
164807
|
+
]
|
|
164808
|
+
},
|
|
164809
|
+
{
|
|
164810
|
+
name: "playlists.read",
|
|
164811
|
+
description: "Read YouTube playlists.",
|
|
164812
|
+
rules: [
|
|
164813
|
+
"GET /v3/playlists"
|
|
164814
|
+
]
|
|
164815
|
+
},
|
|
164816
|
+
{
|
|
164817
|
+
name: "playlists.write",
|
|
164818
|
+
description: "Create and update YouTube playlists.",
|
|
164819
|
+
rules: [
|
|
164513
164820
|
"POST /v3/playlists",
|
|
164514
|
-
"PUT /v3/playlists"
|
|
164515
|
-
"DELETE /v3/playlists",
|
|
164516
|
-
"GET /v3/search",
|
|
164517
|
-
"GET /v3/subscriptions",
|
|
164518
|
-
"POST /v3/subscriptions",
|
|
164519
|
-
"DELETE /v3/subscriptions",
|
|
164520
|
-
"GET /v3/superChatEvents",
|
|
164521
|
-
"POST /v3/thumbnails/set",
|
|
164522
|
-
"GET /v3/videoAbuseReportReasons",
|
|
164523
|
-
"GET /v3/videoCategories",
|
|
164524
|
-
"GET /v3/videoTrainability",
|
|
164525
|
-
"GET /v3/videos",
|
|
164526
|
-
"POST /v3/videos",
|
|
164527
|
-
"PUT /v3/videos",
|
|
164528
|
-
"DELETE /v3/videos",
|
|
164529
|
-
"GET /v3/videos/getRating",
|
|
164530
|
-
"POST /v3/videos/rate",
|
|
164531
|
-
"POST /v3/videos/reportAbuse",
|
|
164532
|
-
"POST /v3/watermarks/set",
|
|
164533
|
-
"POST /v3/watermarks/unset"
|
|
164821
|
+
"PUT /v3/playlists"
|
|
164534
164822
|
]
|
|
164535
164823
|
},
|
|
164536
164824
|
{
|
|
164537
|
-
name: "
|
|
164538
|
-
description: "
|
|
164825
|
+
name: "search.read",
|
|
164826
|
+
description: "Search YouTube resources.",
|
|
164827
|
+
rules: [
|
|
164828
|
+
"GET /v3/search"
|
|
164829
|
+
]
|
|
164830
|
+
},
|
|
164831
|
+
{
|
|
164832
|
+
name: "subscriptions.delete",
|
|
164833
|
+
description: "Delete YouTube subscriptions.",
|
|
164834
|
+
rules: [
|
|
164835
|
+
"DELETE /v3/subscriptions"
|
|
164836
|
+
]
|
|
164837
|
+
},
|
|
164838
|
+
{
|
|
164839
|
+
name: "subscriptions.read",
|
|
164840
|
+
description: "Read YouTube subscriptions.",
|
|
164841
|
+
rules: [
|
|
164842
|
+
"GET /v3/subscriptions"
|
|
164843
|
+
]
|
|
164844
|
+
},
|
|
164845
|
+
{
|
|
164846
|
+
name: "subscriptions.write",
|
|
164847
|
+
description: "Create YouTube subscriptions.",
|
|
164848
|
+
rules: [
|
|
164849
|
+
"POST /v3/subscriptions"
|
|
164850
|
+
]
|
|
164851
|
+
},
|
|
164852
|
+
{
|
|
164853
|
+
name: "super-chat-events.read",
|
|
164854
|
+
description: "Read YouTube Super Chat events.",
|
|
164855
|
+
rules: [
|
|
164856
|
+
"GET /v3/superChatEvents"
|
|
164857
|
+
]
|
|
164858
|
+
},
|
|
164859
|
+
{
|
|
164860
|
+
name: "tests.create",
|
|
164861
|
+
description: "Create YouTube API test resources.",
|
|
164862
|
+
rules: [
|
|
164863
|
+
"POST /v3/tests"
|
|
164864
|
+
]
|
|
164865
|
+
},
|
|
164866
|
+
{
|
|
164867
|
+
name: "third-party-links.delete",
|
|
164868
|
+
description: "Delete YouTube third-party links.",
|
|
164869
|
+
rules: [
|
|
164870
|
+
"DELETE /v3/thirdPartyLinks"
|
|
164871
|
+
]
|
|
164872
|
+
},
|
|
164873
|
+
{
|
|
164874
|
+
name: "third-party-links.read",
|
|
164875
|
+
description: "Read YouTube third-party links.",
|
|
164876
|
+
rules: [
|
|
164877
|
+
"GET /v3/thirdPartyLinks"
|
|
164878
|
+
]
|
|
164879
|
+
},
|
|
164880
|
+
{
|
|
164881
|
+
name: "third-party-links.write",
|
|
164882
|
+
description: "Create and update YouTube third-party links.",
|
|
164883
|
+
rules: [
|
|
164884
|
+
"POST /v3/thirdPartyLinks",
|
|
164885
|
+
"PUT /v3/thirdPartyLinks"
|
|
164886
|
+
]
|
|
164887
|
+
},
|
|
164888
|
+
{
|
|
164889
|
+
name: "thumbnails.set",
|
|
164890
|
+
description: "Set YouTube video thumbnails.",
|
|
164891
|
+
rules: [
|
|
164892
|
+
"POST /v3/thumbnails/set"
|
|
164893
|
+
]
|
|
164894
|
+
},
|
|
164895
|
+
{
|
|
164896
|
+
name: "video-abuse-report-reasons.read",
|
|
164897
|
+
description: "Read YouTube video abuse report reasons.",
|
|
164898
|
+
rules: [
|
|
164899
|
+
"GET /v3/videoAbuseReportReasons"
|
|
164900
|
+
]
|
|
164901
|
+
},
|
|
164902
|
+
{
|
|
164903
|
+
name: "video-categories.read",
|
|
164904
|
+
description: "Read YouTube video categories.",
|
|
164905
|
+
rules: [
|
|
164906
|
+
"GET /v3/videoCategories"
|
|
164907
|
+
]
|
|
164908
|
+
},
|
|
164909
|
+
{
|
|
164910
|
+
name: "video-trainability.read",
|
|
164911
|
+
description: "Read YouTube video trainability state.",
|
|
164912
|
+
rules: [
|
|
164913
|
+
"GET /v3/videoTrainability"
|
|
164914
|
+
]
|
|
164915
|
+
},
|
|
164916
|
+
{
|
|
164917
|
+
name: "videos.create",
|
|
164918
|
+
description: "Upload YouTube videos.",
|
|
164919
|
+
rules: [
|
|
164920
|
+
"POST /v3/videos"
|
|
164921
|
+
]
|
|
164922
|
+
},
|
|
164923
|
+
{
|
|
164924
|
+
name: "videos.delete",
|
|
164925
|
+
description: "Delete YouTube videos.",
|
|
164926
|
+
rules: [
|
|
164927
|
+
"DELETE /v3/videos"
|
|
164928
|
+
]
|
|
164929
|
+
},
|
|
164930
|
+
{
|
|
164931
|
+
name: "videos.rate",
|
|
164932
|
+
description: "Rate YouTube videos.",
|
|
164933
|
+
rules: [
|
|
164934
|
+
"POST /v3/videos/rate"
|
|
164935
|
+
]
|
|
164936
|
+
},
|
|
164937
|
+
{
|
|
164938
|
+
name: "videos.rating.read",
|
|
164939
|
+
description: "Read YouTube video ratings.",
|
|
164940
|
+
rules: [
|
|
164941
|
+
"GET /v3/videos/getRating"
|
|
164942
|
+
]
|
|
164943
|
+
},
|
|
164944
|
+
{
|
|
164945
|
+
name: "videos.read",
|
|
164946
|
+
description: "Read YouTube videos.",
|
|
164539
164947
|
rules: [
|
|
164540
|
-
"GET /v3/activities",
|
|
164541
|
-
"GET /v3/channelSections",
|
|
164542
|
-
"GET /v3/channels",
|
|
164543
|
-
"GET /v3/i18nLanguages",
|
|
164544
|
-
"GET /v3/i18nRegions",
|
|
164545
|
-
"GET /v3/liveBroadcasts",
|
|
164546
|
-
"GET /v3/liveChat/messages",
|
|
164547
|
-
"GET /v3/liveChat/messages/stream",
|
|
164548
|
-
"GET /v3/liveChat/moderators",
|
|
164549
|
-
"GET /v3/liveStreams",
|
|
164550
|
-
"GET /v3/playlistImages",
|
|
164551
|
-
"GET /v3/playlistItems",
|
|
164552
|
-
"GET /v3/playlists",
|
|
164553
|
-
"GET /v3/search",
|
|
164554
|
-
"GET /v3/subscriptions",
|
|
164555
|
-
"GET /v3/superChatEvents",
|
|
164556
|
-
"POST /v3/tests",
|
|
164557
|
-
"GET /v3/videoAbuseReportReasons",
|
|
164558
|
-
"GET /v3/videoCategories",
|
|
164559
|
-
"GET /v3/videoTrainability",
|
|
164560
164948
|
"GET /v3/videos"
|
|
164561
164949
|
]
|
|
164562
164950
|
},
|
|
164563
164951
|
{
|
|
164564
|
-
name: "
|
|
164565
|
-
description: "
|
|
164952
|
+
name: "videos.report-abuse",
|
|
164953
|
+
description: "Report YouTube video abuse.",
|
|
164954
|
+
rules: [
|
|
164955
|
+
"POST /v3/videos/reportAbuse"
|
|
164956
|
+
]
|
|
164957
|
+
},
|
|
164958
|
+
{
|
|
164959
|
+
name: "videos.write",
|
|
164960
|
+
description: "Update YouTube videos.",
|
|
164961
|
+
rules: [
|
|
164962
|
+
"PUT /v3/videos"
|
|
164963
|
+
]
|
|
164964
|
+
},
|
|
164965
|
+
{
|
|
164966
|
+
name: "watermarks.delete",
|
|
164967
|
+
description: "Remove YouTube channel watermarks.",
|
|
164968
|
+
rules: [
|
|
164969
|
+
"POST /v3/watermarks/unset"
|
|
164970
|
+
]
|
|
164971
|
+
},
|
|
164972
|
+
{
|
|
164973
|
+
name: "watermarks.set",
|
|
164974
|
+
description: "Set YouTube channel watermarks.",
|
|
164566
164975
|
rules: [
|
|
164567
|
-
"POST /v3/channelBanners/insert",
|
|
164568
|
-
"POST /v3/thumbnails/set",
|
|
164569
|
-
"POST /v3/videos",
|
|
164570
164976
|
"POST /v3/watermarks/set"
|
|
164571
164977
|
]
|
|
164572
164978
|
}
|
|
@@ -164576,43 +164982,51 @@ var youtubeFirewall = {
|
|
|
164576
164982
|
base: "https://youtube.googleapis.com/upload/youtube",
|
|
164577
164983
|
auth: {
|
|
164578
164984
|
headers: {
|
|
164579
|
-
|
|
164985
|
+
Authorization: "Bearer ${{ secrets.YOUTUBE_TOKEN }}"
|
|
164580
164986
|
}
|
|
164581
164987
|
},
|
|
164582
164988
|
permissions: [
|
|
164583
164989
|
{
|
|
164584
|
-
name: "
|
|
164585
|
-
description: "
|
|
164990
|
+
name: "captions.write",
|
|
164991
|
+
description: "Create and update YouTube captions.",
|
|
164586
164992
|
rules: [
|
|
164587
|
-
"POST /v3/
|
|
164588
|
-
"
|
|
164589
|
-
"PUT /v3/playlistImages",
|
|
164590
|
-
"POST /v3/thumbnails/set",
|
|
164591
|
-
"POST /v3/videos",
|
|
164592
|
-
"POST /v3/watermarks/set"
|
|
164993
|
+
"POST /v3/captions",
|
|
164994
|
+
"PUT /v3/captions"
|
|
164593
164995
|
]
|
|
164594
164996
|
},
|
|
164595
164997
|
{
|
|
164596
|
-
name: "
|
|
164597
|
-
description: "
|
|
164998
|
+
name: "channel-banners.upload",
|
|
164999
|
+
description: "Upload YouTube channel banners.",
|
|
165000
|
+
rules: [
|
|
165001
|
+
"POST /v3/channelBanners/insert"
|
|
165002
|
+
]
|
|
165003
|
+
},
|
|
165004
|
+
{
|
|
165005
|
+
name: "playlist-images.write",
|
|
165006
|
+
description: "Create and update YouTube playlist images.",
|
|
164598
165007
|
rules: [
|
|
164599
|
-
"POST /v3/captions",
|
|
164600
|
-
"PUT /v3/captions",
|
|
164601
|
-
"POST /v3/channelBanners/insert",
|
|
164602
165008
|
"POST /v3/playlistImages",
|
|
164603
|
-
"PUT /v3/playlistImages"
|
|
164604
|
-
|
|
164605
|
-
|
|
164606
|
-
|
|
165009
|
+
"PUT /v3/playlistImages"
|
|
165010
|
+
]
|
|
165011
|
+
},
|
|
165012
|
+
{
|
|
165013
|
+
name: "thumbnails.set",
|
|
165014
|
+
description: "Set YouTube video thumbnails.",
|
|
165015
|
+
rules: [
|
|
165016
|
+
"POST /v3/thumbnails/set"
|
|
165017
|
+
]
|
|
165018
|
+
},
|
|
165019
|
+
{
|
|
165020
|
+
name: "videos.create",
|
|
165021
|
+
description: "Upload YouTube videos.",
|
|
165022
|
+
rules: [
|
|
165023
|
+
"POST /v3/videos"
|
|
164607
165024
|
]
|
|
164608
165025
|
},
|
|
164609
165026
|
{
|
|
164610
|
-
name: "
|
|
164611
|
-
description: "
|
|
165027
|
+
name: "watermarks.set",
|
|
165028
|
+
description: "Set YouTube channel watermarks.",
|
|
164612
165029
|
rules: [
|
|
164613
|
-
"POST /v3/channelBanners/insert",
|
|
164614
|
-
"POST /v3/thumbnails/set",
|
|
164615
|
-
"POST /v3/videos",
|
|
164616
165030
|
"POST /v3/watermarks/set"
|
|
164617
165031
|
]
|
|
164618
165032
|
}
|
|
@@ -164622,43 +165036,51 @@ var youtubeFirewall = {
|
|
|
164622
165036
|
base: "https://youtube.googleapis.com/resumable/upload/youtube",
|
|
164623
165037
|
auth: {
|
|
164624
165038
|
headers: {
|
|
164625
|
-
|
|
165039
|
+
Authorization: "Bearer ${{ secrets.YOUTUBE_TOKEN }}"
|
|
164626
165040
|
}
|
|
164627
165041
|
},
|
|
164628
165042
|
permissions: [
|
|
164629
165043
|
{
|
|
164630
|
-
name: "
|
|
164631
|
-
description: "
|
|
165044
|
+
name: "captions.write",
|
|
165045
|
+
description: "Create and update YouTube captions.",
|
|
164632
165046
|
rules: [
|
|
164633
|
-
"POST /v3/
|
|
164634
|
-
"
|
|
164635
|
-
"PUT /v3/playlistImages",
|
|
164636
|
-
"POST /v3/thumbnails/set",
|
|
164637
|
-
"POST /v3/videos",
|
|
164638
|
-
"POST /v3/watermarks/set"
|
|
165047
|
+
"POST /v3/captions",
|
|
165048
|
+
"PUT /v3/captions"
|
|
164639
165049
|
]
|
|
164640
165050
|
},
|
|
164641
165051
|
{
|
|
164642
|
-
name: "
|
|
164643
|
-
description: "
|
|
165052
|
+
name: "channel-banners.upload",
|
|
165053
|
+
description: "Upload YouTube channel banners.",
|
|
165054
|
+
rules: [
|
|
165055
|
+
"POST /v3/channelBanners/insert"
|
|
165056
|
+
]
|
|
165057
|
+
},
|
|
165058
|
+
{
|
|
165059
|
+
name: "playlist-images.write",
|
|
165060
|
+
description: "Create and update YouTube playlist images.",
|
|
164644
165061
|
rules: [
|
|
164645
|
-
"POST /v3/captions",
|
|
164646
|
-
"PUT /v3/captions",
|
|
164647
|
-
"POST /v3/channelBanners/insert",
|
|
164648
165062
|
"POST /v3/playlistImages",
|
|
164649
|
-
"PUT /v3/playlistImages"
|
|
164650
|
-
|
|
164651
|
-
|
|
164652
|
-
|
|
165063
|
+
"PUT /v3/playlistImages"
|
|
165064
|
+
]
|
|
165065
|
+
},
|
|
165066
|
+
{
|
|
165067
|
+
name: "thumbnails.set",
|
|
165068
|
+
description: "Set YouTube video thumbnails.",
|
|
165069
|
+
rules: [
|
|
165070
|
+
"POST /v3/thumbnails/set"
|
|
164653
165071
|
]
|
|
164654
165072
|
},
|
|
164655
165073
|
{
|
|
164656
|
-
name: "
|
|
164657
|
-
description: "
|
|
165074
|
+
name: "videos.create",
|
|
165075
|
+
description: "Upload YouTube videos.",
|
|
165076
|
+
rules: [
|
|
165077
|
+
"POST /v3/videos"
|
|
165078
|
+
]
|
|
165079
|
+
},
|
|
165080
|
+
{
|
|
165081
|
+
name: "watermarks.set",
|
|
165082
|
+
description: "Set YouTube channel watermarks.",
|
|
164658
165083
|
rules: [
|
|
164659
|
-
"POST /v3/channelBanners/insert",
|
|
164660
|
-
"POST /v3/thumbnails/set",
|
|
164661
|
-
"POST /v3/videos",
|
|
164662
165084
|
"POST /v3/watermarks/set"
|
|
164663
165085
|
]
|
|
164664
165086
|
}
|
|
@@ -164666,6 +165088,33 @@ var youtubeFirewall = {
|
|
|
164666
165088
|
}
|
|
164667
165089
|
]
|
|
164668
165090
|
};
|
|
165091
|
+
var youtubeDefaultAllowed = [
|
|
165092
|
+
"activities.read",
|
|
165093
|
+
"captions.download",
|
|
165094
|
+
"captions.read",
|
|
165095
|
+
"channel-sections.read",
|
|
165096
|
+
"channels.read",
|
|
165097
|
+
"comment-threads.read",
|
|
165098
|
+
"comments.read",
|
|
165099
|
+
"i18n-languages.read",
|
|
165100
|
+
"i18n-regions.read",
|
|
165101
|
+
"live-broadcasts.read",
|
|
165102
|
+
"live-chat-messages.read",
|
|
165103
|
+
"live-chat-moderators.read",
|
|
165104
|
+
"live-streams.read",
|
|
165105
|
+
"playlist-images.read",
|
|
165106
|
+
"playlist-items.read",
|
|
165107
|
+
"playlists.read",
|
|
165108
|
+
"search.read",
|
|
165109
|
+
"subscriptions.read",
|
|
165110
|
+
"super-chat-events.read",
|
|
165111
|
+
"video-abuse-report-reasons.read",
|
|
165112
|
+
"video-categories.read",
|
|
165113
|
+
"video-trainability.read",
|
|
165114
|
+
"videos.rating.read",
|
|
165115
|
+
"videos.read"
|
|
165116
|
+
];
|
|
165117
|
+
var youtubeDefaultUnknownPolicy = "deny";
|
|
164669
165118
|
|
|
164670
165119
|
// ../../packages/connectors/src/firewalls/zapier.generated.ts
|
|
164671
165120
|
init_esm_shims();
|
|
@@ -165361,11 +165810,13 @@ var DEFAULT_ALLOWED = {
|
|
|
165361
165810
|
"google-docs": googleDocsDefaultAllowed,
|
|
165362
165811
|
"google-drive": googleDriveDefaultAllowed,
|
|
165363
165812
|
"google-meet": googleMeetDefaultAllowed,
|
|
165813
|
+
"google-search-console": googleSearchConsoleDefaultAllowed,
|
|
165364
165814
|
"google-sheets": googleSheetsDefaultAllowed,
|
|
165365
165815
|
gmail: gmailDefaultAllowed,
|
|
165366
165816
|
maskdb: maskdbDefaultAllowed,
|
|
165367
165817
|
slack: slackDefaultAllowed,
|
|
165368
|
-
stripe: stripeDefaultAllowed
|
|
165818
|
+
stripe: stripeDefaultAllowed,
|
|
165819
|
+
youtube: youtubeDefaultAllowed
|
|
165369
165820
|
};
|
|
165370
165821
|
var DEFAULT_UNKNOWN_POLICY = {
|
|
165371
165822
|
cloudflare: cloudflareDefaultUnknownPolicy,
|
|
@@ -165375,9 +165826,11 @@ var DEFAULT_UNKNOWN_POLICY = {
|
|
|
165375
165826
|
"google-docs": googleDocsDefaultUnknownPolicy,
|
|
165376
165827
|
"google-drive": googleDriveDefaultUnknownPolicy,
|
|
165377
165828
|
"google-meet": googleMeetDefaultUnknownPolicy,
|
|
165829
|
+
"google-search-console": googleSearchConsoleDefaultUnknownPolicy,
|
|
165378
165830
|
"google-sheets": googleSheetsDefaultUnknownPolicy,
|
|
165379
165831
|
gmail: gmailDefaultUnknownPolicy,
|
|
165380
|
-
maskdb: maskdbDefaultUnknownPolicy
|
|
165832
|
+
maskdb: maskdbDefaultUnknownPolicy,
|
|
165833
|
+
youtube: youtubeDefaultUnknownPolicy
|
|
165381
165834
|
};
|
|
165382
165835
|
function getDefaultFirewallPolicies(type) {
|
|
165383
165836
|
const allowed = DEFAULT_ALLOWED[type];
|
|
@@ -165750,7 +166203,7 @@ var PLAYFUL_POP_PREVIEW_HTMLS = [
|
|
|
165750
166203
|
var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
165751
166204
|
{
|
|
165752
166205
|
slug: "playful-launch-presentation",
|
|
165753
|
-
title: "Playful launch
|
|
166206
|
+
title: "Playful launch",
|
|
165754
166207
|
prompt: "/gen presentation with design system `playful-editorial` and template `html-ppt-playful-launch`, create a 15-slide launch deck for SproutPop, a playful habit-building app for remote teams introducing a shared 30-day wellness challenge. Present it to people and culture leaders with cover, agenda, launch story, audience pain points, product vision, feature tour, rollout timeline, activation moments, team, early metrics, testimonials, pricing, and next steps. Make it saturated, joyful, idea-led, and structured.",
|
|
165755
166208
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/d0f6b313-9899-4143-a6da-26781fd7b946/aplocoto.html",
|
|
165756
166209
|
previewImage: PLAYFUL_LAUNCH_CDN_PREVIEW_IMAGES[0],
|
|
@@ -165762,7 +166215,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165762
166215
|
},
|
|
165763
166216
|
{
|
|
165764
166217
|
slug: "botane-organic-deck",
|
|
165765
|
-
title: "Botane organic
|
|
166218
|
+
title: "Botane organic",
|
|
165766
166219
|
prompt: "/gen presentation with design system `botane-organic` and template `html-ppt-botane-organic`, create a 15-slide brand story deck for Moss & Moon, a coastal wellness retreat launching a seasonal herb garden, tea bar, and slow-living membership program. Present it to hospitality partners with cover, agenda, origin story, guest philosophy, retreat spaces, treatment menu, garden-to-table process, photography gallery, sustainability metrics, member testimonials, packages, and contact. Make it calm, editorial, rounded, and organic.",
|
|
165767
166220
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/449e7efe-c73d-497d-962c-d77c576d0768/botane-organic.html",
|
|
165768
166221
|
previewImage: BOTANE_ORGANIC_PREVIEW_IMAGES[0],
|
|
@@ -165774,7 +166227,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165774
166227
|
},
|
|
165775
166228
|
{
|
|
165776
166229
|
slug: "business-data-presentation",
|
|
165777
|
-
title: "Business data
|
|
166230
|
+
title: "Business data",
|
|
165778
166231
|
prompt: "/gen presentation with design system `business-data` and template `html-ppt-business-data`, create a 15-slide executive data readout for HarborCart, an omnichannel grocery retailer reviewing 2026 growth, loyalty behavior, basket mix, and store-to-delivery conversion. Present it to the leadership team with cover, agenda, business context, KPI scorecard, regional segments, channel comparison, customer cohorts, operational drivers, forecast, strategic bets, risks, recommendations, and appendix contact. Make it number-first, chart-led, confident, modern, and readable.",
|
|
165779
166232
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/8a570cf6-d398-40a6-8de5-3857f1fa21a2/business-data.html",
|
|
165780
166233
|
previewImage: BUSINESS_DATA_CDN_PREVIEW_IMAGES[0],
|
|
@@ -165786,7 +166239,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165786
166239
|
},
|
|
165787
166240
|
{
|
|
165788
166241
|
slug: "crayon-learning-deck",
|
|
165789
|
-
title: "Crayon learning
|
|
166242
|
+
title: "Crayon learning",
|
|
165790
166243
|
prompt: "/gen presentation with design system `crayon` and template `html-ppt-crayon`, create a 15-slide parent-night deck for Rainbow Lab, a summer art-and-science camp where kids build storybooks, cardboard cities, and tiny robots. Present it to families with cover, agenda, camp promise, learning goals, weekly themes, instructor team, sample day, workshop stations, student gallery, safety plan, progress metrics, parent quotes, pricing, and registration steps. Make it bright, rounded, joyful, and crayon-like.",
|
|
165791
166244
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/4aa31138-3cfa-4ed2-997a-aeb37b51e258/crayon.html",
|
|
165792
166245
|
previewImage: CRAYON_PREVIEW_IMAGES[0],
|
|
@@ -165799,7 +166252,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165799
166252
|
},
|
|
165800
166253
|
{
|
|
165801
166254
|
slug: "creative-agency-presentation",
|
|
165802
|
-
title: "Creative agency
|
|
166255
|
+
title: "Creative agency",
|
|
165803
166256
|
prompt: "/gen presentation with design system `creative-agency` and template `html-ppt-creative-agency`, create a 15-slide rebrand pitch for Northstar Studio proposing a new identity, website, and launch campaign for a boutique hotel group expanding into three coastal cities. Present it to the client board with cover, agenda, brand challenge, strategic insight, creative direction, visual territories, service scope, project process, case-study gallery, launch roadmap, impact metrics, client quotes, investment, and contact. Make it minimal, editorial, sharp, and agency-grade.",
|
|
165804
166257
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/128e103c-8eed-4436-8da8-7d99d1a71021/creative-agency.html",
|
|
165805
166258
|
previewImage: CREATIVE_AGENCY_PREVIEW_IMAGES[0],
|
|
@@ -165812,7 +166265,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165812
166265
|
},
|
|
165813
166266
|
{
|
|
165814
166267
|
slug: "data-report-presentation",
|
|
165815
|
-
title: "Data report
|
|
166268
|
+
title: "Data report",
|
|
165816
166269
|
prompt: "/gen presentation with design system `data-report` and template `html-ppt-data-report`, create a 15-slide research findings deck for MetroPulse, a city mobility study comparing bike-share, buses, rideshare, and commuter rail across 12 neighborhoods. Present it to urban planning stakeholders with cover, contents, study context, methodology, demand trends, neighborhood segments, mode comparison, peak-hour bottlenecks, equity impact, emissions estimate, 12-month forecast, recommendations, summary, and contact. Make it chart-led, sharp, vivid, and number-first.",
|
|
165817
166270
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/8ee4af44-fedf-4472-9754-b237b8d8ab4f/data-report.html",
|
|
165818
166271
|
previewImage: DATA_REPORT_PREVIEW_IMAGES[0],
|
|
@@ -165825,7 +166278,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165825
166278
|
},
|
|
165826
166279
|
{
|
|
165827
166280
|
slug: "editorial-magazine-deck",
|
|
165828
|
-
title: "Editorial magazine
|
|
166281
|
+
title: "Editorial magazine",
|
|
165829
166282
|
prompt: "/gen presentation with design system `editorial-magazine` and template `html-ppt-editorial-magazine`, create a 15-slide media kit for Field Notes Quarterly, an independent culture magazine pitching its autumn issue on craft, travel, food, and design to premium sponsors. Include cover, editor letter, issue theme, audience profile, editorial departments, contributor roster, feature previews, photography gallery, distribution plan, partnership formats, audience metrics, sponsor examples, rate card, production timeline, and contact. Make it restrained, paper-forward, serif, and magazine-like.",
|
|
165830
166283
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/ecb06a73-8d96-4565-951e-5ee3688af8c9/editorial-magazine.html",
|
|
165831
166284
|
previewImage: EDITORIAL_MAGAZINE_PREVIEW_IMAGES[0],
|
|
@@ -165838,7 +166291,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165838
166291
|
},
|
|
165839
166292
|
{
|
|
165840
166293
|
slug: "landing-consulting-deck",
|
|
165841
|
-
title: "Landing consulting
|
|
166294
|
+
title: "Landing consulting",
|
|
165842
166295
|
prompt: "/gen presentation with design system `landing-consulting` and template `html-ppt-landing-consulting`, create a 15-slide growth proposal for ScaleBridge advising a B2B fintech SaaS team on reducing onboarding drop-off and improving trial-to-paid conversion. Present it to the revenue leadership team with cover, agenda, opportunity size, diagnosis, desired outcomes, engagement model, workstreams, sprint process, benchmark gallery, proof metrics, client testimonials, pricing tiers, decision timeline, and contact. Make it landing-page-like, sharp, high-contrast, and conversion-oriented.",
|
|
165843
166296
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/675da276-43e2-4925-9744-ee0ce44fd3d3/landing-consulting.html",
|
|
165844
166297
|
previewImage: LANDING_CONSULTING_PREVIEW_IMAGES[0],
|
|
@@ -165877,7 +166330,7 @@ var PRESENTATION_TEMPLATE_PICKER_ITEMS = [
|
|
|
165877
166330
|
},
|
|
165878
166331
|
{
|
|
165879
166332
|
slug: "playful-pop-deck",
|
|
165880
|
-
title: "Playful pop
|
|
166333
|
+
title: "Playful pop",
|
|
165881
166334
|
prompt: "/gen presentation with design system `playful-pop` and template `html-ppt-playful-pop`, create a 15-slide campus launch deck for FizzPop, a sparkling tea brand planning a colorful back-to-school sampling tour, creator challenge, and limited-edition flavor drop. Present it to retail and student ambassador partners with cover, agenda, brand world, audience insight, campaign idea, flavor lineup, activation map, event flow, content plan, gallery, reach metrics, partner testimonials, budget, and contact. Make it neon, bouncy, rounded, and pop-art playful.",
|
|
165882
166335
|
embedUrl: "https://cdn.vm0.io/artifacts/user_3EWY21Oe3f15kfs3yYmbGgDb3NV/71a868cb-6e9b-4e9e-a99d-66a75c112b01/playful-pop.html",
|
|
165883
166336
|
previewImage: PLAYFUL_POP_PREVIEW_IMAGES[0],
|
|
@@ -171669,11 +172122,6 @@ var FEATURE_SWITCHES = {
|
|
|
171669
172122
|
description: "Reveal activity debug surfaces, activity log navigation, appended system prompts, and Debug preferences",
|
|
171670
172123
|
enabled: false
|
|
171671
172124
|
},
|
|
171672
|
-
["computerUse" /* ComputerUse */]: {
|
|
171673
|
-
maintainer: "lancy@vm0.ai",
|
|
171674
|
-
description: "Enable remote desktop host registration",
|
|
171675
|
-
enabled: false
|
|
171676
|
-
},
|
|
171677
172125
|
["banking" /* Banking */]: {
|
|
171678
172126
|
maintainer: "linghan@vm0.ai",
|
|
171679
172127
|
description: "Enable the managed Zero Banking gateway and banking:read ZERO_TOKEN capability for Finicity-backed accounts, balances, and transactions.",
|
|
@@ -171805,11 +172253,10 @@ var import_yaml = __toESM(require_dist(), 1);
|
|
|
171805
172253
|
// ../../packages/core/src/instructions-frontmatter.ts
|
|
171806
172254
|
init_esm_shims();
|
|
171807
172255
|
|
|
171808
|
-
// ../../packages/core/src/firewalls/index.ts
|
|
171809
|
-
init_esm_shims();
|
|
171810
|
-
|
|
171811
172256
|
// ../../packages/core/src/timezone.ts
|
|
171812
172257
|
init_esm_shims();
|
|
172258
|
+
var MINUTE_MS = 6e4;
|
|
172259
|
+
var HOUR_MS = 60 * MINUTE_MS;
|
|
171813
172260
|
|
|
171814
172261
|
// ../../packages/core/src/model-display-name.ts
|
|
171815
172262
|
init_esm_shims();
|
|
@@ -173396,6 +173843,14 @@ export {
|
|
|
173396
173843
|
deleteWorkflow,
|
|
173397
173844
|
copyWorkflow,
|
|
173398
173845
|
runWorkflow,
|
|
173846
|
+
listWorkflowTriggers,
|
|
173847
|
+
createWorkflowTrigger,
|
|
173848
|
+
getWorkflowTrigger,
|
|
173849
|
+
updateWorkflowTrigger,
|
|
173850
|
+
deleteWorkflowTrigger,
|
|
173851
|
+
enableWorkflowTrigger,
|
|
173852
|
+
disableWorkflowTrigger,
|
|
173853
|
+
runWorkflowTrigger,
|
|
173399
173854
|
createGoal,
|
|
173400
173855
|
editGoal,
|
|
173401
173856
|
getGoal,
|
|
@@ -173539,4 +173994,4 @@ undici/lib/web/fetch/body.js:
|
|
|
173539
173994
|
undici/lib/web/websocket/frame.js:
|
|
173540
173995
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
173541
173996
|
*/
|
|
173542
|
-
//# sourceMappingURL=chunk-
|
|
173997
|
+
//# sourceMappingURL=chunk-ZSWMGND5.js.map
|