@plutocms/supabase 0.0.1-alpha.12 → 0.0.1-alpha.13

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@plutocms/supabase",
3
3
  "type": "module",
4
- "version": "0.0.1-alpha.12",
4
+ "version": "0.0.1-alpha.13",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "build": "nuxt build",
@@ -71,7 +71,7 @@ export type Database = {
71
71
  }
72
72
  Relationships: []
73
73
  }
74
- product_categories: {
74
+ product_category: {
75
75
  Row: {
76
76
  description: string | null
77
77
  id: number
@@ -97,22 +97,31 @@ export type Database = {
97
97
  alt: string | null
98
98
  created_at: string
99
99
  id: number
100
+ mime_type: string | null
100
101
  name: string
101
102
  product_id: number | null
103
+ size: number | null
104
+ storage_path: string | null
102
105
  }
103
106
  Insert: {
104
107
  alt?: string | null
105
108
  created_at?: string
106
109
  id?: never
110
+ mime_type?: string | null
107
111
  name: string
108
112
  product_id?: number | null
113
+ size?: number | null
114
+ storage_path?: string | null
109
115
  }
110
116
  Update: {
111
117
  alt?: string | null
112
118
  created_at?: string
113
119
  id?: never
120
+ mime_type?: string | null
114
121
  name?: string
115
122
  product_id?: number | null
123
+ size?: number | null
124
+ storage_path?: string | null
116
125
  }
117
126
  Relationships: [
118
127
  {
@@ -173,7 +182,7 @@ export type Database = {
173
182
  foreignKeyName: "products_category_fkey"
174
183
  columns: ["category"]
175
184
  isOneToOne: false
176
- referencedRelation: "product_categories"
185
+ referencedRelation: "product_category"
177
186
  referencedColumns: ["id"]
178
187
  },
179
188
  ]