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"];
|
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> & {
|
export type List = FromSchema<typeof listSchema> & {
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -7,3 +7,15 @@
|
|||||||
# Type Alias: List
|
# Type Alias: List
|
||||||
|
|
||||||
> **List** = `FromSchema`\<*typeof* `listSchema`\> & `object`
|
> **List** = `FromSchema`\<*typeof* `listSchema`\> & `object`
|
||||||
|
|
||||||
|
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
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@remotestorage/module-places",
|
"name": "@remotestorage/module-places",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@remotestorage/module-places",
|
"name": "@remotestorage/module-places",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"latlon-geohash": "^2.0.0",
|
"latlon-geohash": "^2.0.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@remotestorage/module-places",
|
"name": "@remotestorage/module-places",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"description": "Manage favorite/saved places",
|
"description": "Manage favorite/saved places",
|
||||||
"homepage": "https://gitea.kosmos.org/raucao/remotestorage-module-places#remotestoragemodule-places",
|
"homepage": "https://gitea.kosmos.org/raucao/remotestorage-module-places#remotestoragemodule-places",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
Reference in New Issue
Block a user