@moxi.gmbh/moxi-typescriptmodels 0.1.201-test-server → 0.1.201
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 +11 -14
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -185,9 +185,6 @@ export interface CheckIfUserSignedUp {
|
|
|
185
185
|
userId?: string;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
export interface Comparable<T> {
|
|
189
|
-
}
|
|
190
|
-
|
|
191
188
|
export interface ConfirmAccount extends AccountCommand {
|
|
192
189
|
}
|
|
193
190
|
|
|
@@ -245,7 +242,7 @@ export interface CriticalAccountInfo {
|
|
|
245
242
|
name?: string;
|
|
246
243
|
}
|
|
247
244
|
|
|
248
|
-
export interface DateRange
|
|
245
|
+
export interface DateRange {
|
|
249
246
|
end?: string;
|
|
250
247
|
start?: string;
|
|
251
248
|
}
|
|
@@ -291,6 +288,11 @@ export interface DrivePermissionInfo {
|
|
|
291
288
|
regions?: Region[];
|
|
292
289
|
}
|
|
293
290
|
|
|
291
|
+
export interface DrivePermissionInfoRequest {
|
|
292
|
+
filter?: RideTypeSpecificFilterUnion;
|
|
293
|
+
regions?: Region[];
|
|
294
|
+
}
|
|
295
|
+
|
|
294
296
|
export interface EmailMessage {
|
|
295
297
|
attachments?: Attachment[];
|
|
296
298
|
bccs?: string[];
|
|
@@ -548,7 +550,7 @@ export interface ImpersonateUser {
|
|
|
548
550
|
userId?: string;
|
|
549
551
|
}
|
|
550
552
|
|
|
551
|
-
export interface InstantRange
|
|
553
|
+
export interface InstantRange {
|
|
552
554
|
end?: string;
|
|
553
555
|
start?: string;
|
|
554
556
|
}
|
|
@@ -601,7 +603,7 @@ export interface NutsSubState {
|
|
|
601
603
|
name?: string;
|
|
602
604
|
}
|
|
603
605
|
|
|
604
|
-
export interface OffsetTimeRange
|
|
606
|
+
export interface OffsetTimeRange {
|
|
605
607
|
end?: Date;
|
|
606
608
|
start?: Date;
|
|
607
609
|
}
|
|
@@ -674,14 +676,9 @@ export interface ReportIssue {
|
|
|
674
676
|
issue?: string;
|
|
675
677
|
}
|
|
676
678
|
|
|
677
|
-
export interface Request {
|
|
678
|
-
filter?: RideTypeSpecificFilterUnion;
|
|
679
|
-
regions?: Region[];
|
|
680
|
-
}
|
|
681
|
-
|
|
682
679
|
export interface RequestDrivePermission extends AccountUpdate {
|
|
683
680
|
drivePermissionId?: string;
|
|
684
|
-
info?:
|
|
681
|
+
info?: DrivePermissionInfoRequest;
|
|
685
682
|
}
|
|
686
683
|
|
|
687
684
|
export interface RequestSubscription extends AccountUpdate {
|
|
@@ -962,7 +959,7 @@ export interface TeamUpdate extends AccountUpdate {
|
|
|
962
959
|
teamId?: string;
|
|
963
960
|
}
|
|
964
961
|
|
|
965
|
-
export interface TimeRange
|
|
962
|
+
export interface TimeRange {
|
|
966
963
|
end?: string;
|
|
967
964
|
start?: string;
|
|
968
965
|
}
|
|
@@ -1056,7 +1053,7 @@ export interface UserUpdate extends UserCommand {
|
|
|
1056
1053
|
export interface UserUpdateAfterSignup extends UserUpdate {
|
|
1057
1054
|
}
|
|
1058
1055
|
|
|
1059
|
-
export interface ZonedTimeRange
|
|
1056
|
+
export interface ZonedTimeRange {
|
|
1060
1057
|
end?: Date;
|
|
1061
1058
|
start?: Date;
|
|
1062
1059
|
}
|
package/package.json
CHANGED