···11+export * as OrgTangledTempAccountBeginSignup from "./types/org/tangled/temp/account/beginSignup.js";
22+export * as OrgTangledTempAccountCompleteSignup from "./types/org/tangled/temp/account/completeSignup.js";
33+export * as OrgTangledTempAccountDeleteEmail from "./types/org/tangled/temp/account/deleteEmail.js";
44+export * as OrgTangledTempAccountDismissNewsletter from "./types/org/tangled/temp/account/dismissNewsletter.js";
55+export * as OrgTangledTempAccountListEmails from "./types/org/tangled/temp/account/listEmails.js";
66+export * as OrgTangledTempAccountSetPrimaryEmail from "./types/org/tangled/temp/account/setPrimaryEmail.js";
77+export * as OrgTangledTempAccountSubscribeNewsletter from "./types/org/tangled/temp/account/subscribeNewsletter.js";
88+export * as OrgTangledTempFocusBeginSession from "./types/org/tangled/temp/focus/beginSession.js";
99+export * as OrgTangledTempFocusEndSession from "./types/org/tangled/temp/focus/endSession.js";
1010+export * as OrgTangledTempFocusNextItem from "./types/org/tangled/temp/focus/nextItem.js";
1111+export * as OrgTangledTempNotificationDeleteNotification from "./types/org/tangled/temp/notification/deleteNotification.js";
1212+export * as OrgTangledTempNotificationGetPreferences from "./types/org/tangled/temp/notification/getPreferences.js";
1313+export * as OrgTangledTempNotificationGetUnreadCount from "./types/org/tangled/temp/notification/getUnreadCount.js";
1414+export * as OrgTangledTempNotificationListNotifications from "./types/org/tangled/temp/notification/listNotifications.js";
1515+export * as OrgTangledTempNotificationMarkAllRead from "./types/org/tangled/temp/notification/markAllRead.js";
1616+export * as OrgTangledTempNotificationUpdatePreferences from "./types/org/tangled/temp/notification/updatePreferences.js";
1717+export * as OrgTangledTempNotificationUpdateSeen from "./types/org/tangled/temp/notification/updateSeen.js";
1818+export * as OrgTangledTempRepoCreateWebhook from "./types/org/tangled/temp/repo/createWebhook.js";
1919+export * as OrgTangledTempRepoDeleteWebhook from "./types/org/tangled/temp/repo/deleteWebhook.js";
2020+export * as OrgTangledTempRepoDisableSite from "./types/org/tangled/temp/repo/disableSite.js";
2121+export * as OrgTangledTempRepoGetSiteConfig from "./types/org/tangled/temp/repo/getSiteConfig.js";
2222+export * as OrgTangledTempRepoListWebhookDeliveries from "./types/org/tangled/temp/repo/listWebhookDeliveries.js";
2323+export * as OrgTangledTempRepoListWebhooks from "./types/org/tangled/temp/repo/listWebhooks.js";
2424+export * as OrgTangledTempRepoRetryWebhookDelivery from "./types/org/tangled/temp/repo/retryWebhookDelivery.js";
2525+export * as OrgTangledTempRepoToggleWebhook from "./types/org/tangled/temp/repo/toggleWebhook.js";
2626+export * as OrgTangledTempRepoUpdateSiteConfig from "./types/org/tangled/temp/repo/updateSiteConfig.js";
2727+export * as OrgTangledTempRepoUpdateWebhook from "./types/org/tangled/temp/repo/updateWebhook.js";
2828+export * as OrgTangledTempSearchSearchCode from "./types/org/tangled/temp/search/searchCode.js";
2929+export * as OrgTangledTempSiteClaimDomain from "./types/org/tangled/temp/site/claimDomain.js";
3030+export * as OrgTangledTempSiteGetDomainClaim from "./types/org/tangled/temp/site/getDomainClaim.js";
3131+export * as OrgTangledTempSiteReleaseDomain from "./types/org/tangled/temp/site/releaseDomain.js";
132export * as ShTangledActorDefs from "./types/sh/tangled/actor/defs.js";
233export * as ShTangledActorGetProfile from "./types/sh/tangled/actor/getProfile.js";
334export * as ShTangledActorGetProfiles from "./types/sh/tangled/actor/getProfiles.js";
···11+import type {} from "@atcute/lexicons";
22+import * as v from "@atcute/lexicons/validations";
33+import type {} from "@atcute/lexicons/ambient";
44+55+const _mainSchema = /*#__PURE__*/ v.procedure(
66+ "org.tangled.temp.focus.beginSession",
77+ {
88+ params: null,
99+ input: null,
1010+ output: {
1111+ type: "lex",
1212+ schema: /*#__PURE__*/ v.object({
1313+ /**
1414+ * AT-URI of the issue to navigate to, if the item is an issue.
1515+ */
1616+ issueAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
1717+ /**
1818+ * ID of the first notification to address. Absent if the queue is empty.
1919+ */
2020+ notificationId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()),
2121+ /**
2222+ * AT-URI of the pull to navigate to, if the item is a pull.
2323+ */
2424+ pullAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
2525+ /**
2626+ * DID of the repository the item belongs to. Absent if the queue is empty.
2727+ */
2828+ repoDid: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.didString()),
2929+ }),
3030+ },
3131+ },
3232+);
3333+3434+type main$schematype = typeof _mainSchema;
3535+3636+export interface mainSchema extends main$schematype {}
3737+3838+export const mainSchema = _mainSchema as mainSchema;
3939+4040+export interface $params {}
4141+export interface $output extends v.InferXRPCBodyInput<mainSchema["output"]> {}
4242+4343+declare module "@atcute/lexicons/ambient" {
4444+ interface XRPCProcedures {
4545+ "org.tangled.temp.focus.beginSession": mainSchema;
4646+ }
4747+}
···11+import type {} from "@atcute/lexicons";
22+import * as v from "@atcute/lexicons/validations";
33+import type {} from "@atcute/lexicons/ambient";
44+55+const _mainSchema = /*#__PURE__*/ v.procedure(
66+ "org.tangled.temp.focus.nextItem",
77+ {
88+ params: null,
99+ input: {
1010+ type: "lex",
1111+ schema: /*#__PURE__*/ v.object({
1212+ /**
1313+ * ID of the notification just addressed, to be marked read.
1414+ */
1515+ currentId: /*#__PURE__*/ v.integer(),
1616+ }),
1717+ },
1818+ output: {
1919+ type: "lex",
2020+ schema: /*#__PURE__*/ v.object({
2121+ /**
2222+ * AT-URI of the issue to navigate to, if the item is an issue.
2323+ */
2424+ issueAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
2525+ /**
2626+ * ID of the next notification to address. Absent when focus mode has ended.
2727+ */
2828+ notificationId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()),
2929+ /**
3030+ * AT-URI of the pull to navigate to, if the item is a pull.
3131+ */
3232+ pullAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
3333+ /**
3434+ * DID of the repository the next item belongs to. Absent when focus mode has ended.
3535+ */
3636+ repoDid: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.didString()),
3737+ }),
3838+ },
3939+ },
4040+);
4141+4242+type main$schematype = typeof _mainSchema;
4343+4444+export interface mainSchema extends main$schematype {}
4545+4646+export const mainSchema = _mainSchema as mainSchema;
4747+4848+export interface $params {}
4949+export interface $input extends v.InferXRPCBodyInput<mainSchema["input"]> {}
5050+export interface $output extends v.InferXRPCBodyInput<mainSchema["output"]> {}
5151+5252+declare module "@atcute/lexicons/ambient" {
5353+ interface XRPCProcedures {
5454+ "org.tangled.temp.focus.nextItem": mainSchema;
5555+ }
5656+}
···77 /*#__PURE__*/ v.literal("sh.tangled.query.enrichResponse#linkDescriptor"),
88 ),
99 /**
1010- * Link source: collection whose records are linked, a colon, then an index-backed path (subject or .repo).
1010+ * Collection whose records are linked, a colon, then an index-backed path (subject or .repo).
1111 */
1212 source: /*#__PURE__*/ v.string(),
1313 /**
···55const _mainSchema = /*#__PURE__*/ v.query("sh.tangled.repo.countForks", {
66 params: /*#__PURE__*/ v.object({
77 /**
88- * Repo DID to count forks of. Repos that never got a DID cannot be counted.
88+ * Repo DID to count forks of.
99 */
1010 subject: /*#__PURE__*/ v.didString(),
1111 }),
···55const _mainSchema = /*#__PURE__*/ v.query("sh.tangled.repo.getRepoByName", {
66 params: /*#__PURE__*/ v.object({
77 /**
88- * Name of the repo as it appears in its url. Repos without a name are reachable by their rkey.
88+ * Name of the repo as it appears in its url.
99 */
1010 name: /*#__PURE__*/ v.string(),
1111 /**