@lilaquadrat/interfaces 1.10.0 → 1.12.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.12.0](https://github.com/lilaquadrat/interfaces/compare/v1.11.0...v1.12.0) (2024-05-17)
6
+
7
+
8
+ ### Features
9
+
10
+ * **designmodule:** extended DesignModul with additionalData ([84db2dc](https://github.com/lilaquadrat/interfaces/commit/84db2dc97d3c497b4429ab8143183aafeba4ef40))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **responseerror:** fixed response error, change to correct array format ([66f2dac](https://github.com/lilaquadrat/interfaces/commit/66f2dac1e84f7721655ed58a699a3fc44cdbd3c6))
16
+
17
+ ## [1.11.0](https://github.com/lilaquadrat/interfaces/compare/v1.10.0...v1.11.0) (2024-04-24)
18
+
19
+
20
+ ### Features
21
+
22
+ * **customer model:** added setEmailConfirmationCode ([7c9b8e7](https://github.com/lilaquadrat/interfaces/commit/7c9b8e7f913d9854cfd0d2f4959572156c3c9f66))
23
+
5
24
  ## [1.10.0](https://github.com/lilaquadrat/interfaces/compare/v1.9.0...v1.10.0) (2024-04-19)
6
25
 
7
26
 
@@ -1 +1 @@
1
- export type CustomersModelActions = 'createPersonMinimal' | 'createPersonExternal' | 'createPersonExternalWithAddress' | 'createCompanyMinimal' | 'changePersonMinimal' | 'changeCompanyMinimal' | 'connectPersonAccount' | 'disconnectPersonAccount' | 'confirmEmail';
1
+ export type CustomersModelActions = 'createPersonMinimal' | 'createPersonExternal' | 'createPersonExternalWithAddress' | 'createCompanyMinimal' | 'changePersonMinimal' | 'changeCompanyMinimal' | 'connectPersonAccount' | 'disconnectPersonAccount' | 'confirmEmail' | 'setEmailConfirmationCode';
@@ -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
  }
@@ -1 +1 @@
1
- export type CustomersModelActions = 'createPersonMinimal' | 'createPersonExternal' | 'createPersonExternalWithAddress' | 'createCompanyMinimal' | 'changePersonMinimal' | 'changeCompanyMinimal' | 'connectPersonAccount' | 'disconnectPersonAccount' | 'confirmEmail';
1
+ export type CustomersModelActions = 'createPersonMinimal' | 'createPersonExternal' | 'createPersonExternalWithAddress' | 'createCompanyMinimal' | 'changePersonMinimal' | 'changeCompanyMinimal' | 'connectPersonAccount' | 'disconnectPersonAccount' | 'confirmEmail' | 'setEmailConfirmationCode';
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
@@ -1,3 +1,3 @@
1
1
  export type CustomersModelActions = 'createPersonMinimal' | 'createPersonExternal'
2
2
  | 'createPersonExternalWithAddress' | 'createCompanyMinimal' | 'changePersonMinimal' | 'changeCompanyMinimal'
3
- | 'connectPersonAccount' | 'disconnectPersonAccount' | 'confirmEmail'
3
+ | 'connectPersonAccount' | 'disconnectPersonAccount' | 'confirmEmail' | 'setEmailConfirmationCode'
@@ -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
  }