···11+// Generated index of all lexicon types
22+// Do not edit manually - regenerate with: npm run gen:types
33+44+import type { AStatusUpdate } from './a-status-update';
55+import type { ComWhtwndBlogEntry } from './com-whtwnd-blog-entry';
66+import type { SocialGrainGalleryItem } from './social-grain-gallery-item';
77+import type { SocialGrainGallery } from './social-grain-gallery';
88+import type { SocialGrainPhotoExif } from './social-grain-photo-exif';
99+import type { SocialGrainPhoto } from './social-grain-photo';
1010+1111+// Union type for all generated lexicon records
1212+export type GeneratedLexiconUnion = AStatusUpdate | ComWhtwndBlogEntry | SocialGrainGalleryItem | SocialGrainGallery | SocialGrainPhotoExif | SocialGrainPhoto;
1313+1414+// Type map for component registry
1515+export type GeneratedLexiconTypeMap = {
1616+ 'AStatusUpdate': AStatusUpdate;
1717+ 'ComWhtwndBlogEntry': ComWhtwndBlogEntry;
1818+ 'SocialGrainGalleryItem': SocialGrainGalleryItem;
1919+ 'SocialGrainGallery': SocialGrainGallery;
2020+ 'SocialGrainPhotoExif': SocialGrainPhotoExif;
2121+ 'SocialGrainPhoto': SocialGrainPhoto;
2222+};
+17
src/lib/generated/social-grain-gallery-item.ts
···11+// Generated from lexicon schema: social.grain.gallery.item
22+// Do not edit manually - regenerate with: npm run gen:types
33+44+export interface SocialGrainGalleryItemRecord {
55+ createdAt: string;
66+ gallery: string;
77+ item: string;
88+ position?: number;
99+}
1010+1111+export interface SocialGrainGalleryItem {
1212+ $type: 'social.grain.gallery.item';
1313+ value: SocialGrainGalleryItemRecord;
1414+}
1515+1616+// Helper type for discriminated unions
1717+export type SocialGrainGalleryItemUnion = SocialGrainGalleryItem;
+19
src/lib/generated/social-grain-gallery.ts
···11+// Generated from lexicon schema: social.grain.gallery
22+// Do not edit manually - regenerate with: npm run gen:types
33+44+export interface SocialGrainGalleryRecord {
55+ title: string;
66+ description?: string;
77+ facets?: any[];
88+ labels?: any;
99+ updatedAt?: string;
1010+ createdAt: string;
1111+}
1212+1313+export interface SocialGrainGallery {
1414+ $type: 'social.grain.gallery';
1515+ value: SocialGrainGalleryRecord;
1616+}
1717+1818+// Helper type for discriminated unions
1919+export type SocialGrainGalleryUnion = SocialGrainGallery;