fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-16 22:49:10 +01:00
parent 16a9ddd02d
commit d024d5d954
2 changed files with 14 additions and 5 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/interfaces',
version: '1.0.34',
version: '1.0.35',
description: 'interfaces for working with containers'
}

View File

@ -6,10 +6,19 @@ export interface IRequest_SendLetter extends plugins.typedrequestInterfaces.impl
> {
method: 'sendLetter';
request: {
title: string;
from: plugins.tsclass.business.IAddress;
to: plugins.tsclass.business.IAddress;
body: string;
/**
* will be used in logs
*/
description: string;
/**
* if you send any PDF / invoice that you have not made sure to be letterxpress compliant
* we strongly recommend using a cover page
*/
needsCover: boolean;
title?: string;
from?: plugins.tsclass.business.IAddress;
to?: plugins.tsclass.business.IAddress;
coverBody?: string;
service: ('Einschreiben')[];
pdfAttachments?: Array<{
name: string;