@xuulu/xuulu-types 1.0.34 → 1.0.35

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.
@@ -1,9 +1,15 @@
1
1
  import { CompanyResponse } from "../../companies/responses";
2
2
  import { UsersResponse } from "../../users/responses";
3
+ export type SigninRequest = {
4
+ email: string;
5
+ password: string;
6
+ };
3
7
  export type SignupRequest = {
4
8
  company: Omit<CompanyResponse, "id">;
5
9
  user: Omit<UsersResponse, "id" | "roleId" | "settings">;
6
10
  password: string;
7
11
  confirmPassword: string;
8
12
  agreeTermsAndConditions: boolean;
13
+ planId: string;
14
+ allowExtraEmails: boolean;
9
15
  };
@@ -1,9 +1,15 @@
1
1
  import { CompanyResponse } from "../../companies/responses";
2
2
  import { UsersResponse } from "../../users/responses";
3
+ export type SigninRequest = {
4
+ email: string;
5
+ password: string;
6
+ };
3
7
  export type SignupRequest = {
4
8
  company: Omit<CompanyResponse, "id">;
5
9
  user: Omit<UsersResponse, "id" | "roleId" | "settings">;
6
10
  password: string;
7
11
  confirmPassword: string;
8
12
  agreeTermsAndConditions: boolean;
13
+ planId: string;
14
+ allowExtraEmails: boolean;
9
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuulu/xuulu-types",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json"
@@ -1,10 +1,17 @@
1
1
  import { CompanyResponse } from "../../companies/responses";
2
2
  import { UsersResponse } from "../../users/responses";
3
3
 
4
+ export type SigninRequest = {
5
+ email: string;
6
+ password: string;
7
+ };
8
+
4
9
  export type SignupRequest = {
5
10
  company: Omit<CompanyResponse, "id">;
6
11
  user: Omit<UsersResponse, "id" | "roleId" | "settings">;
7
12
  password: string;
8
13
  confirmPassword: string;
9
14
  agreeTermsAndConditions: boolean;
15
+ planId: string;
16
+ allowExtraEmails: boolean
10
17
  };