forked from
tokono.ma/diffuse
A music player that connects to your cloud/distributed storage.
1/**
2 * @example TYPE is the ATProto type string for facets
3 * ```js
4 * import { TYPE } from "~/common/facets/constants.js";
5 *
6 * if (TYPE !== "sh.diffuse.output.facet") throw new Error(`expected "sh.diffuse.output.facet", got "${TYPE}"`);
7 * ```
8 */
9export const TYPE = /** @type {const} */ ("sh.diffuse.output.facet");
10
11export const STARTING_SET_DISABLED = [
12 "facets/misc/scrobble/index.html",
13];
14
15export const STARTING_SET_URIS = [
16 // INTERACTIVE
17 "facets/connect/index.html",
18 "facets/data/sources/index.html",
19 "facets/themes/blur/artwork-controller/facet/index.html",
20
21 // PRELUDES
22 "facets/data/metadata-bundle/index.html",
23 "facets/data/artwork-bundle/index.html",
24 "facets/data/input-bundle/index.html",
25 "facets/data/output-bundle/index.html",
26 "facets/data/process-tracks/prelude/index.html",
27 "facets/misc/scrobble/index.html",
28 "facets/playback/auto-queue/prelude/index.html",
29 "facets/playback/preload/prelude/index.html",
30];