@moxi.gmbh/moxi-typescriptmodels 0.1.881-test-server → 0.1.901-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 +9 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export interface AccountInfo {
|
|
|
36
36
|
defaultLanguage?: string;
|
|
37
37
|
notificationEmails?: string[];
|
|
38
38
|
phoneNumber?: PhoneNumber;
|
|
39
|
+
zoneId?: ZoneId;
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
export interface AccountOrTeamId {
|
|
@@ -914,6 +915,8 @@ export interface RidePlannerCommand extends RideCommand {
|
|
|
914
915
|
|
|
915
916
|
export interface RideStatisticsQuery {
|
|
916
917
|
dateRange?: DateRange;
|
|
918
|
+
queryTimezone?: ZoneId;
|
|
919
|
+
zoneId?: ZoneId;
|
|
917
920
|
}
|
|
918
921
|
|
|
919
922
|
export interface RideTypeSpecificFilter {
|
|
@@ -954,6 +957,9 @@ export interface SendSlack {
|
|
|
954
957
|
message?: string;
|
|
955
958
|
}
|
|
956
959
|
|
|
960
|
+
export interface Serializable {
|
|
961
|
+
}
|
|
962
|
+
|
|
957
963
|
export interface SetSettings extends AccountUpdate {
|
|
958
964
|
settings?: any;
|
|
959
965
|
}
|
|
@@ -1114,6 +1120,9 @@ export interface UserUpdate extends UserCommand {
|
|
|
1114
1120
|
export interface UserUpdateAfterSignup extends UserUpdate {
|
|
1115
1121
|
}
|
|
1116
1122
|
|
|
1123
|
+
export interface ZoneId extends Serializable {
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1117
1126
|
export interface ZonedTimeRange {
|
|
1118
1127
|
end?: Date;
|
|
1119
1128
|
start?: Date;
|
package/package.json
CHANGED