1.2.1
This commit is contained in:
13
dist/places.d.ts
vendored
13
dist/places.d.ts
vendored
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user