···1515export interface InputSchema {
1616 /** Unique identifier of the gallery to delete */
1717 uri: string;
1818+ /** If true, will also delete any associated items in the gallery. */
1919+ cascade: boolean;
1820}
19212022export interface OutputSchema {
···1515export interface InputSchema {
1616 /** AT URI of the photo to delete. */
1717 uri: string;
1818+ /** If true, will also delete any associated EXIF data and gallery items. */
1919+ cascade: boolean;
1820}
19212022export interface OutputSchema {
+5
lexicons/social/grain/gallery/deleteGallery.json
···1515 "type": "string",
1616 "format": "at-uri",
1717 "description": "Unique identifier of the gallery to delete"
1818+ },
1919+ "cascade": {
2020+ "type": "boolean",
2121+ "default": true,
2222+ "description": "If true, will also delete any associated items in the gallery."
1823 }
1924 }
2025 }
+5
lexicons/social/grain/photo/deletePhoto.json
···1515 "type": "string",
1616 "format": "at-uri",
1717 "description": "AT URI of the photo to delete."
1818+ },
1919+ "cascade": {
2020+ "type": "boolean",
2121+ "default": true,
2222+ "description": "If true, will also delete any associated EXIF data and gallery items."
1823 }
1924 }
2025 }