@moxi.gmbh/moxi-typescriptmodels 0.1.691-test-server → 0.1.711-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
|
@@ -217,10 +217,19 @@ export interface CreateAccount extends AccountCommand {
|
|
|
217
217
|
requestService?: StandaloneService;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
+
export interface CreateOptimizationPlan {
|
|
221
|
+
accountOrTeamId?: AccountOrTeamId;
|
|
222
|
+
timeRange?: InstantRange;
|
|
223
|
+
}
|
|
224
|
+
|
|
220
225
|
export interface CreateRideCommand extends RidePlannerCommand {
|
|
221
226
|
owner?: AccountOrTeamId;
|
|
222
227
|
}
|
|
223
228
|
|
|
229
|
+
export interface CreateSqueezeInPlan {
|
|
230
|
+
accountOrTeamId?: AccountOrTeamId;
|
|
231
|
+
}
|
|
232
|
+
|
|
224
233
|
export interface CreateTeam extends AccountCommand {
|
|
225
234
|
info?: TeamInfo;
|
|
226
235
|
teamId?: string;
|
package/package.json
CHANGED