@lilaquadrat/interfaces 1.39.0 → 1.40.1

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,15 @@
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.40.1](https://github.com/lilaquadrat/interfaces/compare/v1.40.0...v1.40.1) (2026-04-14)
6
+
7
+ ## [1.40.0](https://github.com/lilaquadrat/interfaces/compare/v1.39.0...v1.40.0) (2026-04-04)
8
+
9
+
10
+ ### Features
11
+
12
+ * **PublishMethod:** add excludeTags and excludeCategories properties to interface ([8f63ef7](https://github.com/lilaquadrat/interfaces/commit/8f63ef7204c6a53816a84a45e39fda775dfd3ecb))
13
+
5
14
  ## [1.39.0](https://github.com/lilaquadrat/interfaces/compare/v1.38.0...v1.39.0) (2026-03-31)
6
15
 
7
16
 
@@ -5,11 +5,9 @@ export interface MailFrom {
5
5
  status: 'active' | 'inactive';
6
6
  dnsCheck: boolean;
7
7
  dns: {
8
- mx: string;
9
- spf: string;
8
+ serverIp: string;
10
9
  dkim: string;
11
- dmarc: string;
12
- txt: string;
10
+ text: string;
13
11
  };
14
12
  restrictedTo: string[];
15
13
  }
@@ -9,5 +9,7 @@ export interface PublishMethod {
9
9
  availableForContentGroups: PublishContentGroup[];
10
10
  contextData: ObjectIdString[];
11
11
  affectedStates?: Content['state'][];
12
+ excludeTags?: string[];
13
+ excludeCategories?: string[];
12
14
  [key: string]: any;
13
15
  }
@@ -5,11 +5,9 @@ export interface MailFrom {
5
5
  status: 'active' | 'inactive';
6
6
  dnsCheck: boolean;
7
7
  dns: {
8
- mx: string;
9
- spf: string;
8
+ serverIp: string;
10
9
  dkim: string;
11
- dmarc: string;
12
- txt: string;
10
+ text: string;
13
11
  };
14
12
  restrictedTo: string[];
15
13
  }
@@ -9,5 +9,7 @@ export interface PublishMethod {
9
9
  availableForContentGroups: PublishContentGroup[];
10
10
  contextData: ObjectIdString[];
11
11
  affectedStates?: Content['state'][];
12
+ excludeTags?: string[];
13
+ excludeCategories?: string[];
12
14
  [key: string]: any;
13
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.39.0",
3
+ "version": "1.40.1",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
package/src/MailFrom.ts CHANGED
@@ -5,11 +5,9 @@ export interface MailFrom {
5
5
  status: 'active' | 'inactive',
6
6
  dnsCheck: boolean,
7
7
  dns: {
8
- mx: string,
9
- spf: string,
10
- dkim: string,
11
- dmarc: string,
12
- txt: string
8
+ serverIp: string
9
+ dkim: string
10
+ text: string
13
11
  }
14
12
  restrictedTo: string[];
15
13
  }
@@ -18,6 +18,10 @@ export interface PublishMethod {
18
18
 
19
19
  affectedStates?: Content['state'][]
20
20
 
21
+ excludeTags?: string[]
22
+
23
+ excludeCategories?: string[]
24
+
21
25
  [key: string]: any
22
26
 
23
27
  }