@pulsecharterconnect/types 0.2.107 → 0.2.108
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/types/Case.d.ts
CHANGED
|
@@ -61,8 +61,6 @@ export type TransportationRequestAdditionalDetail = {
|
|
|
61
61
|
numberOfPassengers: number;
|
|
62
62
|
organTransportList: OrganTransport[];
|
|
63
63
|
specialInstructions?: string;
|
|
64
|
-
organProcurementOrganizationId?: string;
|
|
65
|
-
organProcurementOrganizationContactId?: string;
|
|
66
64
|
};
|
|
67
65
|
export interface ICreateCaseDto {
|
|
68
66
|
unosId: string;
|
|
@@ -36,12 +36,18 @@ export interface ICommunicationsChannelDto extends ICommunicationsChannel {
|
|
|
36
36
|
messageCount: number;
|
|
37
37
|
usersCount: number;
|
|
38
38
|
}
|
|
39
|
+
export interface ICommunicationsMessageReaction {
|
|
40
|
+
emoji: string;
|
|
41
|
+
count: number;
|
|
42
|
+
participantIds: string[];
|
|
43
|
+
}
|
|
39
44
|
export interface ICommunicationsMessage {
|
|
40
45
|
id: string;
|
|
41
46
|
messageText: string;
|
|
42
47
|
timestamp: number;
|
|
43
48
|
sender?: Participant;
|
|
44
49
|
readByParticipantIds: string[];
|
|
50
|
+
reactions?: ICommunicationsMessageReaction[];
|
|
45
51
|
}
|
|
46
52
|
export interface ICommunicationsGetMessagesDto {
|
|
47
53
|
messages: ICommunicationsMessage[];
|