@koloseum/types 0.2.0 → 0.2.1

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.
@@ -198,7 +198,7 @@ export interface CompanyInformationObject {
198
198
  dateOfRegistration: string;
199
199
  tradeName?: string;
200
200
  website?: string;
201
- phone?: string;
201
+ phone: string;
202
202
  email?: string;
203
203
  }
204
204
  export interface CompanyInformationFormattingObject {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koloseum/types",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "author": "Koloseum Technologies Limited",
5
5
  "type": "module",
6
6
  "description": "Type definitions for use across web apps (TypeScript)",
@@ -17,6 +17,7 @@
17
17
  },
18
18
  "exports": {
19
19
  "./database": "./dist/database.d.ts",
20
+ "./database-generated": "./dist/database-generated.d.ts",
20
21
  "./general": "./dist/general.d.ts",
21
22
  "./public-auth": "./dist/public/auth.d.ts"
22
23
  },