fluncle 0.200.0 → 0.201.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/bin/fluncle.mjs +33 -23
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -561,7 +561,7 @@ function parseVersion(version) {
|
|
|
561
561
|
var currentVersion;
|
|
562
562
|
var init_version = __esm(() => {
|
|
563
563
|
init_output();
|
|
564
|
-
currentVersion = "0.
|
|
564
|
+
currentVersion = "0.201.0".trim() ? "0.201.0".trim() : "0.1.0";
|
|
565
565
|
});
|
|
566
566
|
|
|
567
567
|
// src/update-notifier.ts
|
|
@@ -1400,10 +1400,12 @@ async function resyncYoutube(mixtapeId) {
|
|
|
1400
1400
|
}
|
|
1401
1401
|
async function authYoutubeCommand() {
|
|
1402
1402
|
const response = await adminApiGet("/api/v1/admin/youtube/auth/start");
|
|
1403
|
-
console.log(`Open this
|
|
1403
|
+
console.log(`Open this link in the browser you're logged into /admin with:
|
|
1404
1404
|
|
|
1405
1405
|
${response.authUrl}
|
|
1406
1406
|
|
|
1407
|
+
It hands you off to Google. Signed out? Log in there and it resumes on its own.
|
|
1408
|
+
The link is good for 10 minutes; run this again if it expires.
|
|
1407
1409
|
After approving access, Google returns to the Fluncle admin callback and stores the refresh token server-side.`);
|
|
1408
1410
|
}
|
|
1409
1411
|
async function initiate(mixtapeId, contentLength, contentType) {
|
|
@@ -1571,10 +1573,12 @@ async function resyncMixcloud(mixtapeId) {
|
|
|
1571
1573
|
}
|
|
1572
1574
|
async function authMixcloudCommand() {
|
|
1573
1575
|
const response = await adminApiGet("/api/v1/admin/mixcloud/auth/start");
|
|
1574
|
-
console.log(`Open this
|
|
1576
|
+
console.log(`Open this link in the browser you're logged into /admin with:
|
|
1575
1577
|
|
|
1576
1578
|
${response.authUrl}
|
|
1577
1579
|
|
|
1580
|
+
It hands you off to Mixcloud. Signed out? Log in there and it resumes on its own.
|
|
1581
|
+
The link is good for 10 minutes; run this again if it expires.
|
|
1578
1582
|
After approving access, Mixcloud returns to the Fluncle admin callback and stores the access token server-side.`);
|
|
1579
1583
|
}
|
|
1580
1584
|
function mixtapeDescription(note, logId) {
|
|
@@ -2448,7 +2452,7 @@ function parseVersion2(version) {
|
|
|
2448
2452
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2449
2453
|
var init_version2 = __esm(() => {
|
|
2450
2454
|
init_output();
|
|
2451
|
-
currentVersion2 = "0.
|
|
2455
|
+
currentVersion2 = "0.201.0".trim() ? "0.201.0".trim() : "0.1.0";
|
|
2452
2456
|
});
|
|
2453
2457
|
|
|
2454
2458
|
// ../../packages/registry/src/index.ts
|
|
@@ -2517,18 +2521,6 @@ var init_src = __esm(() => {
|
|
|
2517
2521
|
url: `${SITE}/mix`,
|
|
2518
2522
|
weights: { web: "secondary" }
|
|
2519
2523
|
},
|
|
2520
|
-
{
|
|
2521
|
-
exposedContent: [
|
|
2522
|
-
"the feed-first Stories surface — full-bleed findings",
|
|
2523
|
-
"/stories/:logId — one finding as a Story"
|
|
2524
|
-
],
|
|
2525
|
-
kind: "web_route",
|
|
2526
|
-
name: "web.stories",
|
|
2527
|
-
probeConfig: { cadenceMs: PROBE_CADENCE_MS, kind: "http", timeoutMs: PROBE_TIMEOUT_MS },
|
|
2528
|
-
route: "/stories",
|
|
2529
|
-
url: `${SITE}/stories`,
|
|
2530
|
-
weights: { web: "secondary" }
|
|
2531
|
-
},
|
|
2532
2524
|
{
|
|
2533
2525
|
exposedContent: ["who Fluncle is, what the Galaxy is, how to read a Log ID"],
|
|
2534
2526
|
kind: "web_route",
|
|
@@ -3113,7 +3105,7 @@ var init_src = __esm(() => {
|
|
|
3113
3105
|
exposedContent: ["the XML sitemap index of every public page"],
|
|
3114
3106
|
kind: "discovery",
|
|
3115
3107
|
name: "discovery.sitemap",
|
|
3116
|
-
operatorNotes: "A sitemap INDEX, not a flat urlset: the URLs live in children at /sitemap/<kind>-<n>.xml, ONE CHILD PER ENTITY TYPE (pages/findings/artists/labels/albums/galaxies/logbook), each auto-paged under Google's 50,000-URL ceiling so a breach cannot happen rather than merely not having happened yet. robots.txt still names this one URL — a crawler discovers the children from here. Splitting per entity type is also the diagnostic: Search Console reports coverage PER sitemap, so each entity type gets its own submitted/indexed count.",
|
|
3108
|
+
operatorNotes: "A sitemap INDEX, not a flat urlset: the URLs live in children at /sitemap/<kind>-<n>.xml, ONE CHILD PER ENTITY TYPE (pages/findings/artists/labels/albums/galaxies/logbook/docs), each auto-paged under Google's 50,000-URL ceiling so a breach cannot happen rather than merely not having happened yet. robots.txt still names this one URL — a crawler discovers the children from here. Splitting per entity type is also the diagnostic: Search Console reports coverage PER sitemap, so each entity type gets its own submitted/indexed count.",
|
|
3117
3109
|
probeConfig: { cadenceMs: PROBE_CADENCE_MS, kind: "http", timeoutMs: PROBE_TIMEOUT_MS },
|
|
3118
3110
|
route: "/sitemap.xml",
|
|
3119
3111
|
url: `${SITE}/sitemap.xml`,
|
|
@@ -3122,7 +3114,7 @@ var init_src = __esm(() => {
|
|
|
3122
3114
|
{
|
|
3123
3115
|
apiFormat: "application/xml",
|
|
3124
3116
|
exposedContent: [
|
|
3125
|
-
"one child sitemap, per entity type: the pages / findings / artists / labels / albums / galaxies / logbook URLs, auto-paged"
|
|
3117
|
+
"one child sitemap, per entity type: the pages / findings / artists / labels / albums / galaxies / logbook / docs URLs, auto-paged"
|
|
3126
3118
|
],
|
|
3127
3119
|
kind: "discovery",
|
|
3128
3120
|
name: "discovery.sitemap-shard",
|
|
@@ -3153,6 +3145,16 @@ var init_src = __esm(() => {
|
|
|
3153
3145
|
url: `${SITE}/llms.txt`,
|
|
3154
3146
|
weights: { web: "primary" }
|
|
3155
3147
|
},
|
|
3148
|
+
{
|
|
3149
|
+
apiFormat: "text/markdown",
|
|
3150
|
+
exposedContent: ["one developer-doc page as clean Markdown, at `/docs.md/<slug>`"],
|
|
3151
|
+
kind: "discovery",
|
|
3152
|
+
name: "discovery.docs-markdown",
|
|
3153
|
+
operatorNotes: 'The Markdown twin of every /docs page — front-matter-free, the title as the H1, the description as the lede, then the precompiled body (`includeProcessedMarkdown` in source.config.ts → `page.data.getText("processed")`). It is the endpoint behind the page-actions affordance ("View as Markdown", "Copy page", and the Open in ChatGPT/Claude/Cursor links, which carry this URL so the assistant pulls the clean Markdown), and each /docs page advertises it as `<link rel="alternate" type="text/markdown">` (routes/-docs-head.ts). A machine-FETCHED document rather than a page, so it is catalogued as `discovery` next to llms.txt. No probeConfig: the route is slug-parameterized, so there is no fixed URL to GET-probe (the `discovery.oembed` / `web.artist` precedent) — the post-deploy probe skips it for the same reason it skips /artist/:slug/fresh.xml. Source: apps/web/src/routes/docs[.]md.$.ts (a pure splat, mounted at /docs.md/$).',
|
|
3154
|
+
route: "/docs.md/:slug",
|
|
3155
|
+
url: `${SITE}/docs.md/cli`,
|
|
3156
|
+
weights: { web: "tertiary" }
|
|
3157
|
+
},
|
|
3156
3158
|
{
|
|
3157
3159
|
apiFormat: "text/markdown",
|
|
3158
3160
|
exposedContent: ["the entire archive in one ingestible markdown document, every finding"],
|
|
@@ -5054,10 +5056,12 @@ async function resyncYoutube2(mixtapeId) {
|
|
|
5054
5056
|
}
|
|
5055
5057
|
async function authYoutubeCommand2() {
|
|
5056
5058
|
const response = await adminApiGet("/api/v1/admin/youtube/auth/start");
|
|
5057
|
-
console.log(`Open this
|
|
5059
|
+
console.log(`Open this link in the browser you're logged into /admin with:
|
|
5058
5060
|
|
|
5059
5061
|
${response.authUrl}
|
|
5060
5062
|
|
|
5063
|
+
It hands you off to Google. Signed out? Log in there and it resumes on its own.
|
|
5064
|
+
The link is good for 10 minutes; run this again if it expires.
|
|
5061
5065
|
After approving access, Google returns to the Fluncle admin callback and stores the refresh token server-side.`);
|
|
5062
5066
|
}
|
|
5063
5067
|
async function initiate2(mixtapeId, contentLength, contentType) {
|
|
@@ -6394,11 +6398,13 @@ __export(exports_auth, {
|
|
|
6394
6398
|
});
|
|
6395
6399
|
async function authSpotifyCommand() {
|
|
6396
6400
|
const response = await adminApiGet("/api/v1/admin/spotify/auth/start");
|
|
6397
|
-
console.log(`Open this
|
|
6401
|
+
console.log(`Open this link in the browser you're logged into /admin with:
|
|
6398
6402
|
|
|
6399
6403
|
${response.authUrl}
|
|
6400
6404
|
|
|
6401
|
-
|
|
6405
|
+
It hands you off to Spotify. Signed out? Log in there and it resumes on its own.
|
|
6406
|
+
The link is good for 10 minutes; run this again if it expires.
|
|
6407
|
+
After approving access, Spotify returns to the Fluncle admin callback and stores auth server-side.`);
|
|
6402
6408
|
}
|
|
6403
6409
|
var init_auth = __esm(() => {
|
|
6404
6410
|
init_api();
|
|
@@ -6475,10 +6481,12 @@ async function resyncMixcloud2(mixtapeId) {
|
|
|
6475
6481
|
}
|
|
6476
6482
|
async function authMixcloudCommand2() {
|
|
6477
6483
|
const response = await adminApiGet("/api/v1/admin/mixcloud/auth/start");
|
|
6478
|
-
console.log(`Open this
|
|
6484
|
+
console.log(`Open this link in the browser you're logged into /admin with:
|
|
6479
6485
|
|
|
6480
6486
|
${response.authUrl}
|
|
6481
6487
|
|
|
6488
|
+
It hands you off to Mixcloud. Signed out? Log in there and it resumes on its own.
|
|
6489
|
+
The link is good for 10 minutes; run this again if it expires.
|
|
6482
6490
|
After approving access, Mixcloud returns to the Fluncle admin callback and stores the access token server-side.`);
|
|
6483
6491
|
}
|
|
6484
6492
|
function mixtapeDescription2(note, logId) {
|
|
@@ -6554,10 +6562,12 @@ __export(exports_auth_tiktok, {
|
|
|
6554
6562
|
});
|
|
6555
6563
|
async function authTikTokCommand() {
|
|
6556
6564
|
const response = await adminApiGet("/api/v1/admin/tiktok/auth/start");
|
|
6557
|
-
console.log(`Open this
|
|
6565
|
+
console.log(`Open this link in the browser you're logged into /admin with:
|
|
6558
6566
|
|
|
6559
6567
|
${response.authUrl}
|
|
6560
6568
|
|
|
6569
|
+
It hands you off to TikTok. Signed out? Log in there and it resumes on its own.
|
|
6570
|
+
The link is good for 10 minutes; run this again if it expires.
|
|
6561
6571
|
After approving access, TikTok returns to the Fluncle admin callback and stores the refresh token server-side.`);
|
|
6562
6572
|
}
|
|
6563
6573
|
var init_auth_tiktok = __esm(() => {
|
package/package.json
CHANGED