@moxi.gmbh/moxi-typescriptmodels 0.0.1181 → 0.0.1201
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 +4 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -325,12 +325,14 @@ export interface FindAccount {
|
|
|
325
325
|
export interface FindMyRideOffers {
|
|
326
326
|
accountId?: string;
|
|
327
327
|
filter?: RideFilter;
|
|
328
|
+
maxSize?: number;
|
|
328
329
|
term?: string;
|
|
329
330
|
}
|
|
330
331
|
|
|
331
332
|
export interface FindMyRides {
|
|
332
333
|
accountId?: string;
|
|
333
334
|
filter?: RideFilter;
|
|
335
|
+
maxSize?: number;
|
|
334
336
|
term?: string;
|
|
335
337
|
}
|
|
336
338
|
|
|
@@ -343,11 +345,13 @@ export interface FindMyUsers {
|
|
|
343
345
|
export interface FindPotentialRides {
|
|
344
346
|
accountId?: string;
|
|
345
347
|
filter?: RideFilter;
|
|
348
|
+
maxSize?: number;
|
|
346
349
|
term?: string;
|
|
347
350
|
}
|
|
348
351
|
|
|
349
352
|
export interface FindRides {
|
|
350
353
|
filter?: RideFilter;
|
|
354
|
+
maxSize?: number;
|
|
351
355
|
term?: string;
|
|
352
356
|
}
|
|
353
357
|
|
package/package.json
CHANGED