@moxi.gmbh/moxi-typescriptmodels 0.1.2306-test-server → 0.1.2311-test-server

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.
Files changed (2) hide show
  1. package/common.d.ts +8 -6
  2. package/package.json +1 -1
package/common.d.ts CHANGED
@@ -287,10 +287,10 @@ export interface CleaningAndSlack {
287
287
  }
288
288
 
289
289
  export interface CompanyInfo {
290
- businessLicenseDocumentId?: string;
290
+ businessLicenseDocument?: Document;
291
291
  creationDate?: string;
292
292
  hasLiabilityInsurance?: boolean;
293
- publicLiabilityPolicyDocumentId?: string;
293
+ publicLiabilityPolicyDocument?: Document;
294
294
  registrationNumber?: string;
295
295
  }
296
296
 
@@ -396,6 +396,12 @@ export interface DistrictInfo {
396
396
  type?: string;
397
397
  }
398
398
 
399
+ export interface Document {
400
+ id?: string;
401
+ name?: string;
402
+ size?: number;
403
+ }
404
+
399
405
  export interface DownloadableFile {
400
406
  base64Data?: string;
401
407
  fileName?: string;
@@ -1595,10 +1601,6 @@ export interface UpdateAccountPermission extends AccountPermissionCommand {
1595
1601
  accountPermission?: AccountPermission;
1596
1602
  }
1597
1603
 
1598
- export interface UpdateCompanyInfo extends AccountUpdate {
1599
- companyInfo?: CompanyInfo;
1600
- }
1601
-
1602
1604
  export interface UpdatePosition {
1603
1605
  clientSegment?: number[];
1604
1606
  lastIndex?: number;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.1.2306-test-server",
3
+ "version": "0.1.2311-test-server",
4
4
  "types": "common.d.ts"
5
5
  }