@distinctagency/cms-client 1.6.0 → 1.7.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/index.d.mts CHANGED
@@ -112,6 +112,8 @@ interface MediaItem {
112
112
  mime_type: string | null;
113
113
  size: number | null;
114
114
  created_by: string | null;
115
+ content_hash: string | null;
116
+ blurhash: string | null;
115
117
  created_at: string;
116
118
  orphaned_since: string | null;
117
119
  folder_id: string | null;
package/dist/index.d.ts CHANGED
@@ -112,6 +112,8 @@ interface MediaItem {
112
112
  mime_type: string | null;
113
113
  size: number | null;
114
114
  created_by: string | null;
115
+ content_hash: string | null;
116
+ blurhash: string | null;
115
117
  created_at: string;
116
118
  orphaned_since: string | null;
117
119
  folder_id: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@distinctagency/cms-client",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Client library for Distinct CMS — query content, products, and manage orders",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -26,9 +26,9 @@
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@supabase/supabase-js": ">=2.0.0",
29
+ "next": ">=14.0.0",
29
30
  "react": ">=18.0.0",
30
- "react-dom": ">=18.0.0",
31
- "next": ">=14.0.0"
31
+ "react-dom": ">=18.0.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "tsup": "^8.5.1",