@glissandoo/lib 1.0.37 → 1.0.38
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.
|
@@ -12,6 +12,7 @@ export default class Communication extends Model<CommunicationData> {
|
|
|
12
12
|
get owner(): DocumentReference;
|
|
13
13
|
get ownerInfo(): import("../User/types").UserTinyData | import("../Group/types").GroupTinyData;
|
|
14
14
|
get allowAnswer(): boolean;
|
|
15
|
+
get templateId(): string | null;
|
|
15
16
|
get recipients(): string[];
|
|
16
17
|
get recipientsInfo(): Record<string, import("./types").CommunicationRecipientData>;
|
|
17
18
|
get listRecipients(): (import("./types").CommunicationRecipientData & {
|
|
@@ -39,6 +39,7 @@ export interface CommunicationData {
|
|
|
39
39
|
allowAnswers: boolean;
|
|
40
40
|
attachmentsPath: string[];
|
|
41
41
|
imagesPath: string[];
|
|
42
|
+
templateId: string | null;
|
|
42
43
|
recipients: string[];
|
|
43
44
|
recipientsInfo: Record<string, CommunicationRecipientData>;
|
|
44
45
|
thumbnailType: CommunicationThumbnailType | null;
|