@moxi.gmbh/moxi-typescriptmodels 0.0.271 → 0.0.281
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 -4
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export interface AccountCommand {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export interface AccountInfo {
|
|
30
|
+
address?: AddressInfo;
|
|
30
31
|
ikNumber?: any;
|
|
31
32
|
name?: any;
|
|
32
33
|
}
|
|
@@ -156,8 +157,8 @@ export interface CreateRideCommand extends RidePlannerCommand {
|
|
|
156
157
|
}
|
|
157
158
|
|
|
158
159
|
export interface CreateTeam extends AccountCommand {
|
|
160
|
+
info?: TeamInfo;
|
|
159
161
|
teamId?: string;
|
|
160
|
-
teamName?: any;
|
|
161
162
|
}
|
|
162
163
|
|
|
163
164
|
export interface CreateUser extends UserCommand {
|
|
@@ -669,7 +670,12 @@ export interface SubscriptionInfo extends TimedPermission {
|
|
|
669
670
|
}
|
|
670
671
|
|
|
671
672
|
export interface Team {
|
|
673
|
+
info?: TeamInfo;
|
|
672
674
|
teamId?: string;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
export interface TeamInfo {
|
|
678
|
+
address?: AddressInfo;
|
|
673
679
|
teamName?: any;
|
|
674
680
|
}
|
|
675
681
|
|
|
@@ -720,7 +726,7 @@ export interface UpdateRideConfirmation extends FleetModifyCommand {
|
|
|
720
726
|
}
|
|
721
727
|
|
|
722
728
|
export interface UpdateTeam extends TeamUpdate {
|
|
723
|
-
|
|
729
|
+
info?: TeamInfo;
|
|
724
730
|
}
|
|
725
731
|
|
|
726
732
|
export interface UpdateUserInfo extends EditUser {
|
|
@@ -737,11 +743,9 @@ export interface UserCommand {
|
|
|
737
743
|
}
|
|
738
744
|
|
|
739
745
|
export interface UserInfo {
|
|
740
|
-
address?: AddressInfo;
|
|
741
746
|
firstName?: any;
|
|
742
747
|
language?: any;
|
|
743
748
|
lastName?: any;
|
|
744
|
-
publicProfile?: boolean;
|
|
745
749
|
telephoneNumber?: any;
|
|
746
750
|
}
|
|
747
751
|
|
package/package.json
CHANGED