@periskope/types 0.6.160 → 0.6.162
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 +11 -1
- package/dist/types.d.ts +1 -1
- package/index.ts +3 -3
- package/package.json +1 -1
- package/rules.types.ts +1531 -1531
- package/supabase.types.ts +12 -2
- 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?: unknown;
|
|
2169
2169
|
key_input?: string;
|
|
2170
2170
|
value_input?: Json;
|
|
2171
2171
|
};
|
|
@@ -2276,6 +2276,7 @@ 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;
|
|
2279
2280
|
version: string | null;
|
|
2280
2281
|
};
|
|
2281
2282
|
Insert: {
|
|
@@ -2289,6 +2290,7 @@ export type Database = {
|
|
|
2289
2290
|
owner_id?: string | null;
|
|
2290
2291
|
path_tokens?: string[] | null;
|
|
2291
2292
|
updated_at?: string | null;
|
|
2293
|
+
user_metadata?: Json | null;
|
|
2292
2294
|
version?: string | null;
|
|
2293
2295
|
};
|
|
2294
2296
|
Update: {
|
|
@@ -2302,6 +2304,7 @@ export type Database = {
|
|
|
2302
2304
|
owner_id?: string | null;
|
|
2303
2305
|
path_tokens?: string[] | null;
|
|
2304
2306
|
updated_at?: string | null;
|
|
2307
|
+
user_metadata?: Json | null;
|
|
2305
2308
|
version?: string | null;
|
|
2306
2309
|
};
|
|
2307
2310
|
Relationships: [
|
|
@@ -2323,6 +2326,7 @@ export type Database = {
|
|
|
2323
2326
|
key: string;
|
|
2324
2327
|
owner_id: string | null;
|
|
2325
2328
|
upload_signature: string;
|
|
2329
|
+
user_metadata: Json | null;
|
|
2326
2330
|
version: string;
|
|
2327
2331
|
};
|
|
2328
2332
|
Insert: {
|
|
@@ -2333,6 +2337,7 @@ export type Database = {
|
|
|
2333
2337
|
key: string;
|
|
2334
2338
|
owner_id?: string | null;
|
|
2335
2339
|
upload_signature: string;
|
|
2340
|
+
user_metadata?: Json | null;
|
|
2336
2341
|
version: string;
|
|
2337
2342
|
};
|
|
2338
2343
|
Update: {
|
|
@@ -2343,6 +2348,7 @@ export type Database = {
|
|
|
2343
2348
|
key?: string;
|
|
2344
2349
|
owner_id?: string | null;
|
|
2345
2350
|
upload_signature?: string;
|
|
2351
|
+
user_metadata?: Json | null;
|
|
2346
2352
|
version?: string;
|
|
2347
2353
|
};
|
|
2348
2354
|
Relationships: [
|
|
@@ -2479,6 +2485,10 @@ export type Database = {
|
|
|
2479
2485
|
updated_at: string;
|
|
2480
2486
|
}[];
|
|
2481
2487
|
};
|
|
2488
|
+
operation: {
|
|
2489
|
+
Args: Record<PropertyKey, never>;
|
|
2490
|
+
Returns: string;
|
|
2491
|
+
};
|
|
2482
2492
|
search: {
|
|
2483
2493
|
Args: {
|
|
2484
2494
|
prefix: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export type OrgPreferences = {
|
|
|
45
45
|
mask_phone_numbers?: boolean;
|
|
46
46
|
show_sender_names?: boolean;
|
|
47
47
|
closed_chats?: Record<string, number>;
|
|
48
|
+
auto_read_muted_chats?: boolean;
|
|
48
49
|
};
|
|
49
50
|
type OrgPreferenceKey = keyof OrgPreferences;
|
|
50
51
|
export type OrgPreferencesValue = {
|
|
@@ -170,7 +171,6 @@ export type MessageType = Merge<OverrideProperties<Tables<'tbl_chat_messages'>,
|
|
|
170
171
|
}>, {
|
|
171
172
|
reactions?: ReactionType[];
|
|
172
173
|
message_payload?: SingleMessagePayload;
|
|
173
|
-
show_unread?: number;
|
|
174
174
|
highlight?: number;
|
|
175
175
|
}>;
|
|
176
176
|
export type MessageFlagType = {
|
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';
|