@lilaquadrat/interfaces 1.28.0 → 1.29.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.29.0](https://github.com/lilaquadrat/interfaces/compare/v1.28.1...v1.29.0) (2025-06-19)
6
+
7
+
8
+ ### Features
9
+
10
+ * **loggingentry, project:** updated project for features and ai. added loggingentry ([155c2eb](https://github.com/lilaquadrat/interfaces/commit/155c2eb5f61577cc40450b869bd98813b3fcd8c9))
11
+
12
+ ### [1.28.1](https://github.com/lilaquadrat/interfaces/compare/v1.28.0...v1.28.1) (2025-04-30)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **CompareElement:** update elements type to support nested string arrays ([75d480a](https://github.com/lilaquadrat/interfaces/commit/75d480a9675ab021a115533ece3b9d46abfe0033))
18
+
5
19
  ## [1.28.0](https://github.com/lilaquadrat/interfaces/compare/v1.27.0...v1.28.0) (2025-04-26)
6
20
 
7
21
 
@@ -1,5 +1,5 @@
1
1
  export interface CompareElement {
2
- elements?: string[];
2
+ elements?: string[][];
3
3
  headline?: string;
4
4
  description?: string;
5
5
  }
@@ -0,0 +1,5 @@
1
+ export interface LoggingEntry<T> {
2
+ date: Date;
3
+ type: string;
4
+ metadata: T;
5
+ }
@@ -1,5 +1,3 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  import { Readable } from 'stream';
4
2
  export interface MulterFile {
5
3
  /** Name of the form field associated with this file. */
@@ -1,12 +1,13 @@
1
1
  import { Auth0ProjectSettings } from "./Auth0ProjectSettings";
2
- import { ShopifyProjectSettings } from "./ShopifyProjectSettings";
3
2
  export interface Project {
4
3
  name: string;
5
4
  description?: string;
5
+ aiDescription?: string;
6
+ aiTone?: string;
6
7
  license?: string;
7
8
  company: string;
8
9
  tags?: string[];
9
10
  apps?: string[];
11
+ features?: string[];
10
12
  auth0?: Auth0ProjectSettings;
11
- shopify?: ShopifyProjectSettings;
12
13
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  export interface ShareClientInterface {
3
2
  createFolder(basePath: string, folder: string): Promise<boolean>;
4
3
  removeFolder(path: string): Promise<boolean>;
@@ -121,6 +121,7 @@ export * from './ListParticipantsDetails';
121
121
  export * from './ListString';
122
122
  export * from './Location';
123
123
  export * from './LocationModule';
124
+ export * from './LoggingEntry';
124
125
  export * from './MailFrom';
125
126
  export * from './Me';
126
127
  export * from './MePermissions';
@@ -1,5 +1,5 @@
1
1
  export interface CompareElement {
2
- elements?: string[];
2
+ elements?: string[][];
3
3
  headline?: string;
4
4
  description?: string;
5
5
  }
@@ -0,0 +1,5 @@
1
+ export interface LoggingEntry<T> {
2
+ date: Date;
3
+ type: string;
4
+ metadata: T;
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=LoggingEntry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LoggingEntry.js","sourceRoot":"","sources":["../../src/LoggingEntry.ts"],"names":[],"mappings":""}
@@ -1,5 +1,3 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  import { Readable } from 'stream';
4
2
  export interface MulterFile {
5
3
  /** Name of the form field associated with this file. */
@@ -1,12 +1,13 @@
1
1
  import { Auth0ProjectSettings } from "./Auth0ProjectSettings";
2
- import { ShopifyProjectSettings } from "./ShopifyProjectSettings";
3
2
  export interface Project {
4
3
  name: string;
5
4
  description?: string;
5
+ aiDescription?: string;
6
+ aiTone?: string;
6
7
  license?: string;
7
8
  company: string;
8
9
  tags?: string[];
9
10
  apps?: string[];
11
+ features?: string[];
10
12
  auth0?: Auth0ProjectSettings;
11
- shopify?: ShopifyProjectSettings;
12
13
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  export interface ShareClientInterface {
3
2
  createFolder(basePath: string, folder: string): Promise<boolean>;
4
3
  removeFolder(path: string): Promise<boolean>;
@@ -121,6 +121,7 @@ export * from './ListParticipantsDetails';
121
121
  export * from './ListString';
122
122
  export * from './Location';
123
123
  export * from './LocationModule';
124
+ export * from './LoggingEntry';
124
125
  export * from './MailFrom';
125
126
  export * from './Me';
126
127
  export * from './MePermissions';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.28.0",
3
+ "version": "1.29.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
@@ -38,6 +38,5 @@
38
38
  "commitizen": {
39
39
  "path": "./node_modules/cz-conventional-changelog"
40
40
  }
41
- },
42
- "packageManager": "yarn@1.22.22"
41
+ }
43
42
  }
@@ -1,5 +1,5 @@
1
1
  export interface CompareElement {
2
- elements?: string[]
2
+ elements?: string[][]
3
3
  headline?: string
4
4
  description?: string
5
5
  }
@@ -0,0 +1,5 @@
1
+ export interface LoggingEntry<T> {
2
+ date: Date
3
+ type: string
4
+ metadata: T
5
+ }
package/src/Project.ts CHANGED
@@ -1,16 +1,18 @@
1
1
  import {Auth0ProjectSettings} from "./Auth0ProjectSettings"
2
- import {ShopifyProjectSettings} from "./ShopifyProjectSettings"
3
2
 
4
3
  export interface Project {
5
4
 
6
5
  name: string
7
6
  description?: string
7
+ aiDescription?: string
8
+ aiTone?: string
8
9
  license?: string
9
10
  company: string
10
11
  tags?: string[]
11
12
  apps?: string[]
12
13
 
14
+ features?: string[]
15
+
13
16
  auth0?: Auth0ProjectSettings
14
- shopify?: ShopifyProjectSettings
15
17
 
16
18
  }