@lilaquadrat/interfaces 1.37.0 → 1.39.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.39.0](https://github.com/lilaquadrat/interfaces/compare/v1.38.0...v1.39.0) (2026-03-31)
6
+
7
+
8
+ ### Features
9
+
10
+ * **Hosting:** update HostingSettings and HostingWithSettings interfaces to use ipv4 and ipv6 ([79524ec](https://github.com/lilaquadrat/interfaces/commit/79524ec88b97166128fb42bfa805e93407d049e7))
11
+
12
+ ## [1.38.0](https://github.com/lilaquadrat/interfaces/compare/v1.37.0...v1.38.0) (2026-03-24)
13
+
14
+
15
+ ### Features
16
+
17
+ * **Design:** add Design and DesignFile interfaces ([2062d7a](https://github.com/lilaquadrat/interfaces/commit/2062d7a74424a6542af6ca4f0b169ae799a37953))
18
+
5
19
  ## [1.37.0](https://github.com/lilaquadrat/interfaces/compare/v1.36.0...v1.37.0) (2026-02-21)
6
20
 
7
21
 
@@ -0,0 +1,7 @@
1
+ import { DesignFile } from "./DesignFile";
2
+ export interface Design {
3
+ company: string;
4
+ project: string;
5
+ files: DesignFile[];
6
+ target: 'app' | 'server';
7
+ }
@@ -0,0 +1,4 @@
1
+ export interface DesignFile {
2
+ prefix?: string;
3
+ filename: string;
4
+ }
@@ -1,5 +1,6 @@
1
1
  export interface HostingSettings {
2
2
  id: string;
3
3
  baseDomain: string;
4
- ipAdresses: string[];
4
+ ipv4: string;
5
+ ipv6: string;
5
6
  }
@@ -1,6 +1,7 @@
1
1
  import { Hosting } from "./Hosting";
2
2
  export interface HostingWithSettings extends Hosting {
3
3
  settings: {
4
- ip: string;
4
+ ipv4: string;
5
+ ipv6: string;
5
6
  };
6
7
  }
@@ -63,8 +63,10 @@ export * from './DataObject';
63
63
  export * from './DatabaseQuery';
64
64
  export * from './DatabaseQueryOptions';
65
65
  export * from './DatabaseQuerySites';
66
+ export * from './Design';
66
67
  export * from './DesignCustomModule';
67
68
  export * from './DesignEvent';
69
+ export * from './DesignFile';
68
70
  export * from './DesignModule';
69
71
  export * from './Domain';
70
72
  export * from './DomainConf';
@@ -0,0 +1,7 @@
1
+ import { DesignFile } from "./DesignFile";
2
+ export interface Design {
3
+ company: string;
4
+ project: string;
5
+ files: DesignFile[];
6
+ target: 'app' | 'server';
7
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Design.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Design.js","sourceRoot":"","sources":["../../src/Design.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ export interface DesignFile {
2
+ prefix?: string;
3
+ filename: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=DesignFile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DesignFile.js","sourceRoot":"","sources":["../../src/DesignFile.ts"],"names":[],"mappings":""}
@@ -1,5 +1,6 @@
1
1
  export interface HostingSettings {
2
2
  id: string;
3
3
  baseDomain: string;
4
- ipAdresses: string[];
4
+ ipv4: string;
5
+ ipv6: string;
5
6
  }
@@ -1,6 +1,7 @@
1
1
  import { Hosting } from "./Hosting";
2
2
  export interface HostingWithSettings extends Hosting {
3
3
  settings: {
4
- ip: string;
4
+ ipv4: string;
5
+ ipv6: string;
5
6
  };
6
7
  }
@@ -63,8 +63,10 @@ export * from './DataObject';
63
63
  export * from './DatabaseQuery';
64
64
  export * from './DatabaseQueryOptions';
65
65
  export * from './DatabaseQuerySites';
66
+ export * from './Design';
66
67
  export * from './DesignCustomModule';
67
68
  export * from './DesignEvent';
69
+ export * from './DesignFile';
68
70
  export * from './DesignModule';
69
71
  export * from './Domain';
70
72
  export * from './DomainConf';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.37.0",
3
+ "version": "1.39.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
package/src/Design.ts ADDED
@@ -0,0 +1,8 @@
1
+ import { DesignFile } from "./DesignFile"
2
+
3
+ export interface Design {
4
+ company: string
5
+ project: string
6
+ files: DesignFile[]
7
+ target: 'app' | 'server'
8
+ }
@@ -0,0 +1,4 @@
1
+ export interface DesignFile {
2
+ prefix?: string
3
+ filename: string
4
+ }
@@ -1,5 +1,6 @@
1
1
  export interface HostingSettings {
2
2
  id: string,
3
3
  baseDomain: string,
4
- ipAdresses: string[]
4
+ ipv4: string,
5
+ ipv6: string,
5
6
  }
@@ -2,6 +2,7 @@ import { Hosting } from "./Hosting"
2
2
 
3
3
  export interface HostingWithSettings extends Hosting {
4
4
  settings: {
5
- ip: string
5
+ ipv4: string
6
+ ipv6: string
6
7
  }
7
8
  }