@dlghq/dialog-types
Advanced tools
Comparing version 1.33.0 to 1.33.1
{ | ||
"name": "@dlghq/dialog-types", | ||
"version": "1.33.0", | ||
"version": "1.33.1", | ||
"description": "Flow types for dialog projects", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -6,7 +6,4 @@ /* | ||
import type { Field, Binding } from './utils'; | ||
import type { | ||
Field, | ||
Binding | ||
} from './utils'; | ||
import type { | ||
MessageMedia, | ||
@@ -30,3 +27,2 @@ MessageMediaImage, | ||
Binding, | ||
MessageMedia, | ||
@@ -47,11 +43,3 @@ MessageMediaImage, | ||
export type AvatarPlaceholder = | ||
| 'empty' | ||
| 'lblue' | ||
| 'blue' | ||
| 'purple' | ||
| 'red' | ||
| 'orange' | ||
| 'yellow' | ||
| 'green'; | ||
export type AvatarPlaceholder = 'empty' | 'lblue' | 'blue' | 'purple' | 'red' | 'orange' | 'yellow' | 'green'; | ||
@@ -254,2 +242,6 @@ export type AuthError = { | ||
export type MessageContentDeleted = { | ||
type: 'deleted' | ||
}; | ||
export type MessageContent = | ||
@@ -265,3 +257,4 @@ | MessageContentText | ||
| MessageContentLocation | ||
| MessageContentUnsupported; | ||
| MessageContentUnsupported | ||
| MessageContentDeleted; | ||
@@ -280,9 +273,3 @@ export type MessageReaction = { | ||
export type MessageState = | ||
| 'pending' | ||
| 'sent' | ||
| 'received' | ||
| 'read' | ||
| 'error' | ||
| 'unknown'; | ||
export type MessageState = 'pending' | 'sent' | 'received' | 'read' | 'error' | 'unknown'; | ||
@@ -300,5 +287,3 @@ export type MessageAttachmenReply = { | ||
export type MessageAttachment = | ||
| MessageAttachmenReply | ||
| MessageAttachmenForward; | ||
export type MessageAttachment = MessageAttachmenReply | MessageAttachmenForward; | ||
@@ -305,0 +290,0 @@ export type Message = { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23570
548