@laioutr/app-hygraph 1.7.1 → 1.8.0

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/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laioutr/app-hygraph",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "configKey": "@laioutr/app-hygraph",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.1",
package/dist/module.mjs CHANGED
@@ -3,7 +3,7 @@ import { defu } from 'defu';
3
3
  import { registerLaioutrApp } from '@laioutr-core/kit';
4
4
 
5
5
  const name = "@laioutr/app-hygraph";
6
- const version = "1.7.1";
6
+ const version = "1.8.0";
7
7
 
8
8
  const module = defineNuxtModule({
9
9
  meta: {
@@ -1,2 +1,8 @@
1
1
  export declare const blogCollectionToken: any;
2
2
  export declare const blogPostsToken: any;
3
+ /**
4
+ * Ids that the `blog/collection/posts` link should resolve via the topic
5
+ * relation (`topics_some`) instead of the blog-collection relation. Set by the
6
+ * "Blog Posts by Topic" query, which exposes a topic as a BlogCollection entity.
7
+ */
8
+ export declare const blogPostsTopicSourceToken: any;
@@ -1,3 +1,4 @@
1
1
  import { createPassthroughToken } from "#imports";
2
2
  export const blogCollectionToken = createPassthroughToken("hygraph/blog-collection");
3
3
  export const blogPostsToken = createPassthroughToken("hygraph/blog-posts");
4
+ export const blogPostsTopicSourceToken = createPassthroughToken("hygraph/blog-posts-topic-source");