This commit is contained in:
2026-03-13 16:59:06 +04:00
parent a966df95f0
commit 6b434adde4
4 changed files with 28 additions and 3 deletions

13
dist/places.d.ts vendored
View File

@@ -96,6 +96,19 @@ declare const listSchema: {
};
readonly required: readonly ["id", "title", "placeRefs", "createdAt"];
};
/**
* Represents a List object.
*
* Core properties enforced by schema:
* - `id`: Unique identifier (slug)
* - `title`: Human readable title
* - `placeRefs`: Array of place references containing `id` and `geohash`
* - `createdAt`: ISO date string
*
* Optional properties:
* - `color`: Hex color code
* - `updatedAt`: ISO date string
*/
export type List = FromSchema<typeof listSchema> & {
[key: string]: any;
};