@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.
- package/common.d.ts +8 -6
- 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
|
-
|
|
290
|
+
businessLicenseDocument?: Document;
|
|
291
291
|
creationDate?: string;
|
|
292
292
|
hasLiabilityInsurance?: boolean;
|
|
293
|
-
|
|
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