@lilaquadrat/interfaces 1.6.0 → 1.8.0

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.8.0](https://github.com/lilaquadrat/interfaces/compare/v1.7.0...v1.8.0) (2024-03-26)
6
+
7
+
8
+ ### Features
9
+
10
+ * **editorbase:** added version to editorBase ([b0b7c56](https://github.com/lilaquadrat/interfaces/commit/b0b7c56bb8d1d75cfc88b725deaad9f64b273747))
11
+
12
+ ## [1.7.0](https://github.com/lilaquadrat/interfaces/compare/v1.6.0...v1.7.0) (2024-03-18)
13
+
14
+
15
+ ### Features
16
+
17
+ * **mailfrom:** added support for mailFrom ([c0eb5f8](https://github.com/lilaquadrat/interfaces/commit/c0eb5f87a85cbace9551d84f37f4afb11c357339))
18
+
5
19
  ## [1.6.0](https://github.com/lilaquadrat/interfaces/compare/v1.5.0...v1.6.0) (2024-03-11)
6
20
 
7
21
 
@@ -4,4 +4,5 @@ export interface EditorBase {
4
4
  type: 'app' | 'server';
5
5
  date: Date;
6
6
  custom?: boolean;
7
+ version: string;
7
8
  }
@@ -0,0 +1,5 @@
1
+ export interface MailFrom {
2
+ email: string;
3
+ displayName: string;
4
+ restrictedTo: string[];
5
+ }
@@ -1,4 +1,5 @@
1
1
  import { PublishMethod } from "./PublishMethod";
2
2
  export interface PublishMethodEmail extends PublishMethod {
3
3
  type: 'email';
4
+ mailFrom: string;
4
5
  }
@@ -74,6 +74,7 @@ export * from './ListParticipantWithUser';
74
74
  export * from './ListParticipants';
75
75
  export * from './ListParticipantsDetails';
76
76
  export * from './Location';
77
+ export * from './MailFrom';
77
78
  export * from './Me';
78
79
  export * from './MePermissions';
79
80
  export * from './MePermissionsProject';
@@ -4,4 +4,5 @@ export interface EditorBase {
4
4
  type: 'app' | 'server';
5
5
  date: Date;
6
6
  custom?: boolean;
7
+ version: string;
7
8
  }
@@ -0,0 +1,5 @@
1
+ export interface MailFrom {
2
+ email: string;
3
+ displayName: string;
4
+ restrictedTo: string[];
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=MailFrom.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MailFrom.js","sourceRoot":"","sources":["../../src/MailFrom.ts"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
1
  import { PublishMethod } from "./PublishMethod";
2
2
  export interface PublishMethodEmail extends PublishMethod {
3
3
  type: 'email';
4
+ mailFrom: string;
4
5
  }
@@ -74,6 +74,7 @@ export * from './ListParticipantWithUser';
74
74
  export * from './ListParticipants';
75
75
  export * from './ListParticipantsDetails';
76
76
  export * from './Location';
77
+ export * from './MailFrom';
77
78
  export * from './Me';
78
79
  export * from './MePermissions';
79
80
  export * from './MePermissionsProject';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.6.0",
3
+ "version": "1.8.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
package/src/EditorBase.ts CHANGED
@@ -4,4 +4,5 @@ export interface EditorBase {
4
4
  type: 'app' | 'server'
5
5
  date: Date
6
6
  custom?: boolean
7
+ version: string
7
8
  }
@@ -0,0 +1,7 @@
1
+ export interface MailFrom {
2
+
3
+ email: string
4
+ displayName: string
5
+ restrictedTo: string[]
6
+
7
+ }
@@ -4,4 +4,6 @@ export interface PublishMethodEmail extends PublishMethod {
4
4
 
5
5
  type: 'email'
6
6
 
7
+ mailFrom: string
8
+
7
9
  }