@periskope/types 0.6.148 → 0.6.150
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/rules.types.d.ts +15 -7
- package/dist/rules.types.js +149 -54
- package/dist/supabase.types.d.ts +13 -18
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
- package/rules.types.ts +179 -61
- package/supabase.types.ts +2649 -2654
- package/types.ts +2 -0
package/types.ts
CHANGED
|
@@ -94,6 +94,7 @@ export type OrgMetadata = {
|
|
|
94
94
|
};
|
|
95
95
|
|
|
96
96
|
type AccessScopes = {
|
|
97
|
+
feature_flags: Record<string, boolean>;
|
|
97
98
|
integrations: boolean;
|
|
98
99
|
exports: boolean;
|
|
99
100
|
};
|
|
@@ -328,6 +329,7 @@ export type BroadcastMessagePayload = SendMessageContent & {
|
|
|
328
329
|
chat_ids: string[];
|
|
329
330
|
broadcast_id?: string;
|
|
330
331
|
variables?: BroadcastVariableType[];
|
|
332
|
+
delay?: number;
|
|
331
333
|
};
|
|
332
334
|
|
|
333
335
|
export type SingleMessagePayload = SendMessageContent & {
|