@serve.zone/interfaces 1.0.31 → 1.0.34

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.31',
6
+ version: '1.0.34',
7
7
  description: 'interfaces for working with containers'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHdDQUF3QztDQUN0RCxDQUFBIn0=
@@ -1 +1,21 @@
1
- export {};
1
+ import * as plugins from '../plugins.js';
2
+ export interface IRequest_SendLetter extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_SendLetter> {
3
+ method: 'sendLetter';
4
+ request: {
5
+ title: string;
6
+ from: plugins.tsclass.business.IAddress;
7
+ to: plugins.tsclass.business.IAddress;
8
+ body: string;
9
+ service: ('Einschreiben')[];
10
+ pdfAttachments?: Array<{
11
+ name: string;
12
+ binaryAttachmentString: string;
13
+ }>;
14
+ };
15
+ response: {
16
+ /**
17
+ * this process id allows status retrieval of the letter
18
+ */
19
+ processId: string;
20
+ };
21
+ }
@@ -1,2 +1,2 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGV0dGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvcGxhdGZvcm1zZXJ2aWNlL2xldHRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
1
+ import * as plugins from '../plugins.js';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGV0dGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvcGxhdGZvcm1zZXJ2aWNlL2xldHRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssT0FBTyxNQUFNLGVBQWUsQ0FBQyJ9
@@ -1,6 +1,6 @@
1
1
  import * as plugins from '../plugins.js';
2
2
  export type TTemplates = 'default' | 'linkaction' | 'notification';
3
- export interface IRequestSendEmail extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequestSendEmail> {
3
+ export interface IRequest_SendEmail extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_SendEmail> {
4
4
  method: 'sendEmail';
5
5
  request: {
6
6
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "1.0.31",
3
+ "version": "1.0.34",
4
4
  "private": false,
5
5
  "description": "interfaces for working with containers",
6
6
  "main": "dist_ts/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '1.0.31',
6
+ version: '1.0.34',
7
7
  description: 'interfaces for working with containers'
8
8
  }
@@ -0,0 +1,25 @@
1
+ import * as plugins from '../plugins.js';
2
+
3
+ export interface IRequest_SendLetter extends plugins.typedrequestInterfaces.implementsTR<
4
+ plugins.typedrequestInterfaces.ITypedRequest,
5
+ IRequest_SendLetter
6
+ > {
7
+ method: 'sendLetter';
8
+ request: {
9
+ title: string;
10
+ from: plugins.tsclass.business.IAddress;
11
+ to: plugins.tsclass.business.IAddress;
12
+ body: string;
13
+ service: ('Einschreiben')[];
14
+ pdfAttachments?: Array<{
15
+ name: string;
16
+ binaryAttachmentString: string;
17
+ }>
18
+ };
19
+ response: {
20
+ /**
21
+ * this process id allows status retrieval of the letter
22
+ */
23
+ processId: string;
24
+ };
25
+ }
@@ -2,9 +2,9 @@ import * as plugins from '../plugins.js';
2
2
 
3
3
  export type TTemplates = 'default' | 'linkaction' | 'notification';
4
4
 
5
- export interface IRequestSendEmail extends plugins.typedrequestInterfaces.implementsTR<
5
+ export interface IRequest_SendEmail extends plugins.typedrequestInterfaces.implementsTR<
6
6
  plugins.typedrequestInterfaces.ITypedRequest,
7
- IRequestSendEmail
7
+ IRequest_SendEmail
8
8
  > {
9
9
  method: 'sendEmail';
10
10
  request: {