destinationServiceId in Sent
This commit is contained in:
@@ -170,7 +170,8 @@ export enum ResolvedSendStatus {
|
||||
}
|
||||
|
||||
export type StoryMessageRecipientsType = Array<{
|
||||
destinationUuid: string;
|
||||
destinationAci?: string;
|
||||
destinationPni?: string;
|
||||
distributionListIds: Array<string>;
|
||||
isAllowedToReply: boolean;
|
||||
}>;
|
||||
|
@@ -8,6 +8,17 @@ import { strictAssert } from '../util/assert';
|
||||
export type UUIDStringType =
|
||||
`${string}-${string}-${string}-${string}-${string}`;
|
||||
|
||||
export type TaggedUUIDStringType = Readonly<
|
||||
| {
|
||||
aci: UUIDStringType;
|
||||
pni?: undefined;
|
||||
}
|
||||
| {
|
||||
aci?: undefined;
|
||||
pni: UUIDStringType;
|
||||
}
|
||||
>;
|
||||
|
||||
export enum UUIDKind {
|
||||
ACI = 'ACI',
|
||||
PNI = 'PNI',
|
||||
|
Reference in New Issue
Block a user