module Network.Pushbullet.Types ( -- * Pagination Paginated(..) , Cursor -- * Pushes , Push(..) , PushData(..) , PushTarget(..) , simpleNewPush , ExistingPushes(..) -- * Ephemerals , Ephemeral(..) -- * Devices , Device(..) , DeviceId(..) , Nickname(..) , DeviceIcon(..) , HasSms(..) , ExistingDevices(..) , newDevice -- * Users , User(..) , UserId(..) -- * Permanents , Permanent(..) , PermanentK(..) -- ** SMS , SmsThreads(..) , SmsThread(..) , SmsThreadId(..) , SmsThreadRecipient(..) , SmsMessages(..) , SmsMessage(..) , SmsId(..) , SmsDirection(..) , SmsMessageType(..) -- * Misc -- -- ** Data , EmailAddress(..) , ChannelTag(..) , ClientId(..) , MimeType(..) , Url(..) , Guid(..) , TrivialObject(..) , Status(..) , PushbulletTime(..) , PhoneNumber(..) , Name(..) -- ** Type-level stuff , EqT -- * Lenses -- ** Device , deviceId , deviceActive , deviceCreated , deviceModified , deviceIcon , deviceNickname , deviceGeneratedNickname , deviceManufacturer , deviceModel , deviceAppVersion , deviceFingerprint , deviceKeyFingerprint -- ** User , userCreated , userEmail , userEmailNormalized , userId , userImageUrl , userMaxUploadSize , userModified , userName -- ** SMS , smsDirection , smsTime , smsBody , smsId , smsSent , smsType , recipientName , recipientAddress , recipientNumber , threadId , threadRecipients , threadLatest -- ** Ephemerals , ephSmsSourceUser , ephSmsTargetDevice , ephSmsConversation , ephSmsMessage -- ** Clipboard , ephClipBody , ephClipSourceUser , ephClipSourceDevice -- ** Pagination , pageData , pageCursor ) where import Network.Pushbullet.Types.Device import Network.Pushbullet.Types.Ephemeral import Network.Pushbullet.Types.Misc import Network.Pushbullet.Types.Pagination import Network.Pushbullet.Types.Permanent import Network.Pushbullet.Types.Push import Network.Pushbullet.Types.SMS import Network.Pushbullet.Types.Status import Network.Pushbullet.Types.Time import Network.Pushbullet.Types.User