@koloseum/types 0.1.4 → 0.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koloseum/types",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "author": "Koloseum Technologies Limited",
5
5
  "description": "Type definitions for use across web apps (TypeScript)",
6
6
  "keywords": [
@@ -86,13 +86,13 @@ export type Database = MergeDeep<
86
86
  };
87
87
  lounge_company_verification_attempts: {
88
88
  Row: {
89
- company_data: Omit<CompanyVerificationDataObject, "companyNumber" | "countryCode">;
89
+ company_data: Omit<CompanyVerificationDataObject, "companyNumber" | "countryCode"> | null;
90
90
  };
91
91
  Insert: {
92
- company_data: Omit<CompanyVerificationDataObject, "companyNumber" | "countryCode">;
92
+ company_data: Omit<CompanyVerificationDataObject, "companyNumber" | "countryCode"> | null;
93
93
  };
94
94
  Update: {
95
- company_data?: Omit<CompanyVerificationDataObject, "companyNumber" | "countryCode">;
95
+ company_data?: Omit<CompanyVerificationDataObject, "companyNumber" | "countryCode"> | null;
96
96
  };
97
97
  };
98
98
  lounge_staff: {
@@ -303,10 +303,7 @@ export interface RawCompanyVerificationDataObject {
303
303
  persons: CompanyPerson[];
304
304
  }
305
305
 
306
- export type CompanyVerificationLogDataObject = Omit<
307
- CompanyVerificationDataObject,
308
- "attemptId" | "companyName" | "companyType" | "dateOfRegistration" | "dateOfDissolution" | "persons"
309
- >;
306
+ export type CompanyVerificationLogDataObject = Omit<CompanyVerificationDataObject, "attemptId" | "companyNumber" | "countryCode">;
310
307
 
311
308
  export type CompanyVerificationDataObject = Omit<RawCompanyVerificationDataObject, "attemptId">;
312
309