@moxi.gmbh/moxi-typescriptmodels 0.0.311 → 0.0.331
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 +15 -5
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -10,11 +10,13 @@ export interface AcceptUserAgreement extends UserUpdate {
|
|
|
10
10
|
export interface Account {
|
|
11
11
|
accountId?: string;
|
|
12
12
|
activeServices?: Service[];
|
|
13
|
-
|
|
13
|
+
confirmed?: boolean;
|
|
14
|
+
criticalInfo?: CriticalAccountInfo;
|
|
14
15
|
drivePermissions?: DrivePermission[];
|
|
16
|
+
info?: AccountInfo;
|
|
15
17
|
subscriptions?: Subscription[];
|
|
16
18
|
teams?: Team[];
|
|
17
|
-
|
|
19
|
+
unconfirmedCriticalInfo?: CriticalAccountInfo;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
export interface AccountCommand {
|
|
@@ -23,8 +25,7 @@ export interface AccountCommand {
|
|
|
23
25
|
|
|
24
26
|
export interface AccountInfo {
|
|
25
27
|
address?: AddressInfo;
|
|
26
|
-
|
|
27
|
-
name?: any;
|
|
28
|
+
notificationEmails?: any[];
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
export interface AccountOrTeamId {
|
|
@@ -143,6 +144,7 @@ export interface ConfirmablePermission {
|
|
|
143
144
|
|
|
144
145
|
export interface CreateAccount extends AccountCommand {
|
|
145
146
|
autoConfirm?: boolean;
|
|
147
|
+
criticalInfo?: CriticalAccountInfo;
|
|
146
148
|
info?: AccountInfo;
|
|
147
149
|
owner?: string;
|
|
148
150
|
requestService?: Service;
|
|
@@ -162,6 +164,11 @@ export interface CreateUser extends UserCommand {
|
|
|
162
164
|
info?: UserInfo;
|
|
163
165
|
}
|
|
164
166
|
|
|
167
|
+
export interface CriticalAccountInfo {
|
|
168
|
+
ikNumber?: any;
|
|
169
|
+
name?: any;
|
|
170
|
+
}
|
|
171
|
+
|
|
165
172
|
export interface DateRange {
|
|
166
173
|
end?: string;
|
|
167
174
|
start?: string;
|
|
@@ -321,10 +328,11 @@ export interface GetAccount {
|
|
|
321
328
|
}
|
|
322
329
|
|
|
323
330
|
export interface GetAccountsOfPotentialDrivers {
|
|
324
|
-
districtNutsCode?: any;
|
|
325
331
|
equipment?: Equipment;
|
|
326
332
|
fleetCompanyType?: FleetCompanyType;
|
|
333
|
+
fromDistrict?: any;
|
|
327
334
|
specificities?: Specificity[];
|
|
335
|
+
toDistrict?: any;
|
|
328
336
|
transportType?: TransportType;
|
|
329
337
|
}
|
|
330
338
|
|
|
@@ -682,6 +690,7 @@ export interface Team {
|
|
|
682
690
|
|
|
683
691
|
export interface TeamInfo {
|
|
684
692
|
address?: AddressInfo;
|
|
693
|
+
notificationEmails?: any[];
|
|
685
694
|
teamName?: any;
|
|
686
695
|
}
|
|
687
696
|
|
|
@@ -714,6 +723,7 @@ export interface ToggleAdminEndpoint extends AdminJsonType {
|
|
|
714
723
|
|
|
715
724
|
export interface UpdateAccountInfo extends AccountUpdate {
|
|
716
725
|
autoConfirm?: boolean;
|
|
726
|
+
criticalInfo?: CriticalAccountInfo;
|
|
717
727
|
info?: AccountInfo;
|
|
718
728
|
}
|
|
719
729
|
|
package/package.json
CHANGED