astro-loader-pocketbase 2.8.0-next.5 → 2.8.0-next.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-loader-pocketbase",
3
- "version": "2.8.0-next.5",
3
+ "version": "2.8.0-next.6",
4
4
  "description": "A content loader for Astro that uses the PocketBase API",
5
5
  "keywords": [
6
6
  "astro",
@@ -47,11 +47,11 @@
47
47
  "@commitlint/config-conventional": "^19.8.1",
48
48
  "@types/node": "^22.14.1",
49
49
  "@vitest/coverage-v8": "^3.2.4",
50
- "astro": "^5.13.2",
50
+ "astro": "^5.13.5",
51
51
  "globals": "^16.3.0",
52
52
  "husky": "^9.1.7",
53
53
  "lint-staged": "^16.1.5",
54
- "oxlint": "^1.12.0",
54
+ "oxlint": "^1.14.0",
55
55
  "prettier": "^3.6.2",
56
56
  "prettier-plugin-organize-imports": "^4.2.0",
57
57
  "prettier-plugin-packagejson": "^2.5.19",
@@ -20,8 +20,6 @@ export interface ExperimentalPocketBaseLiveLoaderCollectionFilter {
20
20
  * Additional filter to apply to the collection.
21
21
  * This will be added to the filter supplied in the {@link ExperimentalPocketBaseLiveLoaderOptions}.
22
22
  *
23
- * Valid syntax can be found in the [PocketBase documentation](https://pocketbase.io/docs/api-records/#listsearch-records)
24
- *
25
23
  * Example:
26
24
  * ```ts
27
25
  * // config:
@@ -30,6 +28,8 @@ export interface ExperimentalPocketBaseLiveLoaderCollectionFilter {
30
28
  * // request
31
29
  * `?filter=(${loaderFilter})&&(release >= @now && deleted = false)`
32
30
  * ```
31
+ *
32
+ * @see {@link https://pocketbase.io/docs/api-records/#listsearch-records PocketBase documentation} for valid syntax
33
33
  */
34
34
  filter?: string;
35
35
  /**
@@ -44,8 +44,6 @@ export interface ExperimentalPocketBaseLiveLoaderCollectionFilter {
44
44
  /**
45
45
  * Sort order in which the entries should be returned.
46
46
  *
47
- * Valid syntax can be found in the [PocketBase documentation](https://pocketbase.io/docs/api-records/#listsearch-records)
48
- *
49
47
  * Example:
50
48
  * ```ts
51
49
  * // config:
@@ -54,6 +52,8 @@ export interface ExperimentalPocketBaseLiveLoaderCollectionFilter {
54
52
  * // request
55
53
  * `?sort=-created,id`
56
54
  * ```
55
+ *
56
+ * @see {@link https://pocketbase.io/docs/api-records/#listsearch-records PocketBase documentation} for valid syntax
57
57
  */
58
58
  sort?: string;
59
59
  }