@marianmeres/collection-types 1.17.0 → 1.18.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/linked.d.ts CHANGED
@@ -110,7 +110,7 @@ export interface LinkedQueryConfig {
110
110
  */
111
111
  entity?: string;
112
112
  /**
113
- * Target type filter (e.g., "product-image").
113
+ * Target type filter (e.g., "custom").
114
114
  * If specified, adds `type:eq:<value>` to conditions.
115
115
  */
116
116
  type?: string;
package/dist/product.d.ts CHANGED
@@ -13,8 +13,8 @@ export interface ProductData {
13
13
  slug?: string;
14
14
  short_description?: MaybeLocalized<string>;
15
15
  description?: MaybeLocalized<string>;
16
- /** Whether product has an associated image */
17
- has_image?: boolean;
16
+ /** Whether product has an associated image (computed, auto-synced) */
17
+ _has_image?: boolean;
18
18
  custom?: Record<string, unknown>;
19
19
  category?: never;
20
20
  /** Index signature for Model<T> compatibility */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/collection-types",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
4
4
  "type": "module",
5
5
  "main": "dist/mod.js",
6
6
  "types": "dist/mod.d.ts",