destinationServiceId in Sent
This commit is contained in:
parent
af4ad55c68
commit
f90c2b7479
20 changed files with 322 additions and 104 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue