@lilaquadrat/interfaces 1.11.0 → 1.13.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,25 @@
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.13.0](https://github.com/lilaquadrat/interfaces/compare/v1.12.0...v1.13.0) (2024-10-15)
6
+
7
+
8
+ ### Features
9
+
10
+ * **shareclientoptions:** added support for accountName ([8ca9aa7](https://github.com/lilaquadrat/interfaces/commit/8ca9aa7212613e6cba2877af8c2952c98778a312))
11
+
12
+ ## [1.12.0](https://github.com/lilaquadrat/interfaces/compare/v1.11.0...v1.12.0) (2024-05-17)
13
+
14
+
15
+ ### Features
16
+
17
+ * **designmodule:** extended DesignModul with additionalData ([84db2dc](https://github.com/lilaquadrat/interfaces/commit/84db2dc97d3c497b4429ab8143183aafeba4ef40))
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **responseerror:** fixed response error, change to correct array format ([66f2dac](https://github.com/lilaquadrat/interfaces/commit/66f2dac1e84f7721655ed58a699a3fc44cdbd3c6))
23
+
5
24
  ## [1.11.0](https://github.com/lilaquadrat/interfaces/compare/v1.10.0...v1.11.0) (2024-04-24)
6
25
 
7
26
 
@@ -10,5 +10,6 @@ export interface DesignModule {
10
10
  modes: EditorMode[];
11
11
  };
12
12
  variants: AvailableVariant[];
13
+ additionalData?: Record<string, unknown>;
13
14
  component: () => void;
14
15
  }
@@ -1,5 +1,5 @@
1
1
  import { ErrorObject } from 'ajv/dist/types';
2
2
  export interface ResponseError {
3
- errors?: ErrorObject<string, Record<string, any>, unknown>[];
3
+ errors?: ErrorObject[];
4
4
  message: string;
5
5
  }
@@ -3,4 +3,5 @@ export interface ShareClientOptions {
3
3
  container?: string;
4
4
  shareName?: string;
5
5
  baseFolder?: string;
6
+ accountName?: string;
6
7
  }
@@ -10,5 +10,6 @@ export interface DesignModule {
10
10
  modes: EditorMode[];
11
11
  };
12
12
  variants: AvailableVariant[];
13
+ additionalData?: Record<string, unknown>;
13
14
  component: () => void;
14
15
  }
@@ -1,5 +1,5 @@
1
1
  import { ErrorObject } from 'ajv/dist/types';
2
2
  export interface ResponseError {
3
- errors?: ErrorObject<string, Record<string, any>, unknown>[];
3
+ errors?: ErrorObject[];
4
4
  message: string;
5
5
  }
@@ -3,4 +3,5 @@ export interface ShareClientOptions {
3
3
  container?: string;
4
4
  shareName?: string;
5
5
  baseFolder?: string;
6
+ accountName?: string;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.11.0",
3
+ "version": "1.13.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
@@ -11,5 +11,6 @@ export interface DesignModule {
11
11
  modes: EditorMode[]
12
12
  },
13
13
  variants: AvailableVariant[],
14
+ additionalData?: Record<string, unknown>
14
15
  component: () => void
15
16
  }
@@ -1,6 +1,6 @@
1
1
  import { ErrorObject } from 'ajv/dist/types';
2
2
 
3
3
  export interface ResponseError {
4
- errors?: ErrorObject<string, Record<string, any>, unknown>[]
4
+ errors?: ErrorObject[]
5
5
  message: string
6
6
  }
@@ -1,7 +1,8 @@
1
1
 
2
2
  export interface ShareClientOptions {
3
- connectionString: string;
4
- container?: string;
5
- shareName?: string;
6
- baseFolder?: string;
3
+ connectionString: string
4
+ container?: string
5
+ shareName?: string
6
+ baseFolder?: string
7
+ accountName?: string
7
8
  }