@periskope/types 0.6.338 → 0.6.340
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 +5 -5
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/supabase.types.js +2 -1
- package/dist/types.d.ts +2 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +1 -0
- package/package.json +1 -1
- package/src/supabase.types.ts +3665 -3663
- package/src/types.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/src/types.ts
CHANGED
|
@@ -82,7 +82,6 @@ export type OrgPreferences = {
|
|
|
82
82
|
auto_read_muted_chats?: boolean;
|
|
83
83
|
member_permissions?: Record<string, boolean>;
|
|
84
84
|
show_active_phone_only_messages_right?: boolean;
|
|
85
|
-
disable_contacts_fetching?: boolean;
|
|
86
85
|
};
|
|
87
86
|
|
|
88
87
|
type OrgPreferenceKey = keyof OrgPreferences;
|
|
@@ -869,6 +868,7 @@ export enum IntegrationLogType {
|
|
|
869
868
|
PHONE_UPDATED = 'org.phone.updated',
|
|
870
869
|
PHONE_QR_UPDATED = 'org.phone.qr',
|
|
871
870
|
NOTE_CREATED = 'note.created',
|
|
871
|
+
CHAT_CUSTOM_PROPERTIES_UPDATED = 'chat.custom_properties.updated'
|
|
872
872
|
}
|
|
873
873
|
|
|
874
874
|
export type IntegrationLogMetadataType<T extends IntegrationLogType> =
|