···11-export * as HostPluralFrontAnnotation from './types/host/plural/front/annotation.js'
22-export * as HostPluralFrontLog from './types/host/plural/front/log.js'
33-export * as HostPluralSystemKey from './types/host/plural/system/key.js'
44-export * as HostPluralSystemLink from './types/host/plural/system/link.js'
55-export * as HostPluralSystemMember from './types/host/plural/system/member.js'
66-export * as HostPluralSystemProfile from './types/host/plural/system/profile.js'
77-export * as HostPluralSystemReference from './types/host/plural/system/reference.js'
11+export * as CatVt3eBbellSchedulingCancelDeletion from "./types/cat/vt3e/bbell/scheduling/cancelDeletion.js";
22+export * as CatVt3eBbellSchedulingCancelPost from "./types/cat/vt3e/bbell/scheduling/cancelPost.js";
33+export * as CatVt3eBbellSchedulingDefs from "./types/cat/vt3e/bbell/scheduling/defs.js";
44+export * as CatVt3eBbellSchedulingListDeletions from "./types/cat/vt3e/bbell/scheduling/listDeletions.js";
55+export * as CatVt3eBbellSchedulingListPosts from "./types/cat/vt3e/bbell/scheduling/listPosts.js";
66+export * as CatVt3eBbellSchedulingScheduleDeletion from "./types/cat/vt3e/bbell/scheduling/scheduleDeletion.js";
77+export * as CatVt3eBbellSchedulingSchedulePost from "./types/cat/vt3e/bbell/scheduling/schedulePost.js";
88+export * as CatVt3eBbellServerDefs from "./types/cat/vt3e/bbell/server/defs.js";
99+export * as CatVt3eBbellServerDeleteSession from "./types/cat/vt3e/bbell/server/deleteSession.js";
1010+export * as CatVt3eBbellServerDescribeServer from "./types/cat/vt3e/bbell/server/describeServer.js";
1111+export * as CatVt3eBbellServerGetSession from "./types/cat/vt3e/bbell/server/getSession.js";
1212+export * as HostPluralFrontAnnotation from "./types/host/plural/front/annotation.js";
1313+export * as HostPluralFrontLog from "./types/host/plural/front/log.js";
1414+export * as HostPluralSystemKey from "./types/host/plural/system/key.js";
1515+export * as HostPluralSystemLink from "./types/host/plural/system/link.js";
1616+export * as HostPluralSystemMember from "./types/host/plural/system/member.js";
1717+export * as HostPluralSystemProfile from "./types/host/plural/system/profile.js";
1818+export * as HostPluralSystemReference from "./types/host/plural/system/reference.js";
···11+import type {} from "@atcute/lexicons";
22+import * as v from "@atcute/lexicons/validations";
33+import * as AppBskyFeedPost from "@atcute/bluesky/types/app/feed/post";
44+55+const _scheduledPostSchema = /*#__PURE__*/ v.object({
66+ $type: /*#__PURE__*/ v.optional(
77+ /*#__PURE__*/ v.literal("cat.vt3e.bbell.scheduling.defs#scheduledPost"),
88+ ),
99+ /**
1010+ * the time the post was scheduled
1111+ */
1212+ createdAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.datetimeString()),
1313+ id: /*#__PURE__*/ v.string(),
1414+ /**
1515+ * the post to be published
1616+ */
1717+ get post() {
1818+ return AppBskyFeedPost.mainSchema;
1919+ },
2020+ /**
2121+ * the time the post will be published at
2222+ */
2323+ scheduledAt: /*#__PURE__*/ v.datetimeString(),
2424+ /**
2525+ * the status of the post, e.g. "scheduled", "published", "failed"
2626+ */
2727+ status: /*#__PURE__*/ v.string(),
2828+});
2929+const _selfDeletingPostSchema = /*#__PURE__*/ v.object({
3030+ $type: /*#__PURE__*/ v.optional(
3131+ /*#__PURE__*/ v.literal("cat.vt3e.bbell.scheduling.defs#selfDeletingPost"),
3232+ ),
3333+ /**
3434+ * the time the deletion was scheduled at
3535+ */
3636+ createdAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.datetimeString()),
3737+ /**
3838+ * the time the post will be deleted at
3939+ */
4040+ deletesAt: /*#__PURE__*/ v.datetimeString(),
4141+ id: /*#__PURE__*/ v.string(),
4242+ /**
4343+ * the status of the deletion, e.g. "scheduled", "deleted", "failed"
4444+ */
4545+ status: /*#__PURE__*/ v.string(),
4646+ /**
4747+ * the uri of the post to be deleted
4848+ */
4949+ uri: /*#__PURE__*/ v.resourceUriString(),
5050+});
5151+5252+type scheduledPost$schematype = typeof _scheduledPostSchema;
5353+type selfDeletingPost$schematype = typeof _selfDeletingPostSchema;
5454+5555+export interface scheduledPostSchema extends scheduledPost$schematype {}
5656+export interface selfDeletingPostSchema extends selfDeletingPost$schematype {}
5757+5858+export const scheduledPostSchema = _scheduledPostSchema as scheduledPostSchema;
5959+export const selfDeletingPostSchema =
6060+ _selfDeletingPostSchema as selfDeletingPostSchema;
6161+6262+export interface ScheduledPost extends v.InferInput<
6363+ typeof scheduledPostSchema
6464+> {}
6565+export interface SelfDeletingPost extends v.InferInput<
6666+ typeof selfDeletingPostSchema
6767+> {}