@periskope/types 0.6.29 → 0.6.30
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/supabase.types.d.ts +3 -0
- package/package.json +1 -1
- package/supabase.types.ts +3 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -185,6 +185,7 @@ export interface Database {
|
|
|
185
185
|
timestamp: string | null;
|
|
186
186
|
to: string | null;
|
|
187
187
|
token: string | null;
|
|
188
|
+
unique_id: string | null;
|
|
188
189
|
updated_at: string | null;
|
|
189
190
|
vcards: string[] | null;
|
|
190
191
|
};
|
|
@@ -232,6 +233,7 @@ export interface Database {
|
|
|
232
233
|
timestamp?: string | null;
|
|
233
234
|
to?: string | null;
|
|
234
235
|
token?: string | null;
|
|
236
|
+
unique_id?: string | null;
|
|
235
237
|
updated_at?: string | null;
|
|
236
238
|
vcards?: string[] | null;
|
|
237
239
|
};
|
|
@@ -279,6 +281,7 @@ export interface Database {
|
|
|
279
281
|
timestamp?: string | null;
|
|
280
282
|
to?: string | null;
|
|
281
283
|
token?: string | null;
|
|
284
|
+
unique_id?: string | null;
|
|
282
285
|
updated_at?: string | null;
|
|
283
286
|
vcards?: string[] | null;
|
|
284
287
|
};
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -184,6 +184,7 @@ export interface Database {
|
|
|
184
184
|
timestamp: string | null
|
|
185
185
|
to: string | null
|
|
186
186
|
token: string | null
|
|
187
|
+
unique_id: string | null
|
|
187
188
|
updated_at: string | null
|
|
188
189
|
vcards: string[] | null
|
|
189
190
|
}
|
|
@@ -231,6 +232,7 @@ export interface Database {
|
|
|
231
232
|
timestamp?: string | null
|
|
232
233
|
to?: string | null
|
|
233
234
|
token?: string | null
|
|
235
|
+
unique_id?: string | null
|
|
234
236
|
updated_at?: string | null
|
|
235
237
|
vcards?: string[] | null
|
|
236
238
|
}
|
|
@@ -278,6 +280,7 @@ export interface Database {
|
|
|
278
280
|
timestamp?: string | null
|
|
279
281
|
to?: string | null
|
|
280
282
|
token?: string | null
|
|
283
|
+
unique_id?: string | null
|
|
281
284
|
updated_at?: string | null
|
|
282
285
|
vcards?: string[] | null
|
|
283
286
|
}
|