@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/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 & {