@periskope/types 0.6.159 → 0.6.160
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 +1 -11
- package/index.ts +3 -3
- package/package.json +1 -1
- package/rules.types.ts +1531 -1531
- package/supabase.types.ts +2 -12
- package/types.ts +773 -773
package/dist/supabase.types.d.ts
CHANGED
|
@@ -2165,7 +2165,7 @@ export type Database = {
|
|
|
2165
2165
|
column_name: string;
|
|
2166
2166
|
org_id_input: string;
|
|
2167
2167
|
chat_id_input: string[];
|
|
2168
|
-
column_value_input?:
|
|
2168
|
+
column_value_input?: string;
|
|
2169
2169
|
key_input?: string;
|
|
2170
2170
|
value_input?: Json;
|
|
2171
2171
|
};
|
|
@@ -2276,7 +2276,6 @@ export type Database = {
|
|
|
2276
2276
|
owner_id: string | null;
|
|
2277
2277
|
path_tokens: string[] | null;
|
|
2278
2278
|
updated_at: string | null;
|
|
2279
|
-
user_metadata: Json | null;
|
|
2280
2279
|
version: string | null;
|
|
2281
2280
|
};
|
|
2282
2281
|
Insert: {
|
|
@@ -2290,7 +2289,6 @@ export type Database = {
|
|
|
2290
2289
|
owner_id?: string | null;
|
|
2291
2290
|
path_tokens?: string[] | null;
|
|
2292
2291
|
updated_at?: string | null;
|
|
2293
|
-
user_metadata?: Json | null;
|
|
2294
2292
|
version?: string | null;
|
|
2295
2293
|
};
|
|
2296
2294
|
Update: {
|
|
@@ -2304,7 +2302,6 @@ export type Database = {
|
|
|
2304
2302
|
owner_id?: string | null;
|
|
2305
2303
|
path_tokens?: string[] | null;
|
|
2306
2304
|
updated_at?: string | null;
|
|
2307
|
-
user_metadata?: Json | null;
|
|
2308
2305
|
version?: string | null;
|
|
2309
2306
|
};
|
|
2310
2307
|
Relationships: [
|
|
@@ -2326,7 +2323,6 @@ export type Database = {
|
|
|
2326
2323
|
key: string;
|
|
2327
2324
|
owner_id: string | null;
|
|
2328
2325
|
upload_signature: string;
|
|
2329
|
-
user_metadata: Json | null;
|
|
2330
2326
|
version: string;
|
|
2331
2327
|
};
|
|
2332
2328
|
Insert: {
|
|
@@ -2337,7 +2333,6 @@ export type Database = {
|
|
|
2337
2333
|
key: string;
|
|
2338
2334
|
owner_id?: string | null;
|
|
2339
2335
|
upload_signature: string;
|
|
2340
|
-
user_metadata?: Json | null;
|
|
2341
2336
|
version: string;
|
|
2342
2337
|
};
|
|
2343
2338
|
Update: {
|
|
@@ -2348,7 +2343,6 @@ export type Database = {
|
|
|
2348
2343
|
key?: string;
|
|
2349
2344
|
owner_id?: string | null;
|
|
2350
2345
|
upload_signature?: string;
|
|
2351
|
-
user_metadata?: Json | null;
|
|
2352
2346
|
version?: string;
|
|
2353
2347
|
};
|
|
2354
2348
|
Relationships: [
|
|
@@ -2485,10 +2479,6 @@ export type Database = {
|
|
|
2485
2479
|
updated_at: string;
|
|
2486
2480
|
}[];
|
|
2487
2481
|
};
|
|
2488
|
-
operation: {
|
|
2489
|
-
Args: Record<PropertyKey, never>;
|
|
2490
|
-
Returns: string;
|
|
2491
|
-
};
|
|
2492
2482
|
search: {
|
|
2493
2483
|
Args: {
|
|
2494
2484
|
prefix: string;
|
package/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './rules.types';
|
|
2
|
-
export * from './supabase.types';
|
|
3
|
-
export * from './types';
|
|
1
|
+
export * from './rules.types';
|
|
2
|
+
export * from './supabase.types';
|
|
3
|
+
export * from './types';
|