@moxi.gmbh/moxi-typescriptmodels 0.1.851-test-server → 0.1.871-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 +33 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -27,6 +27,10 @@ export interface AccountCommand {
|
|
|
27
27
|
accountId?: string;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
export interface AccountFilter {
|
|
31
|
+
activeServices?: Service[];
|
|
32
|
+
}
|
|
33
|
+
|
|
30
34
|
export interface AccountInfo {
|
|
31
35
|
address?: AddressInfo;
|
|
32
36
|
defaultLanguage?: string;
|
|
@@ -348,10 +352,29 @@ export interface FetchRouteResult {
|
|
|
348
352
|
duration?: number;
|
|
349
353
|
}
|
|
350
354
|
|
|
355
|
+
/**
|
|
356
|
+
* @deprecated
|
|
357
|
+
*/
|
|
351
358
|
export interface FindAccount {
|
|
352
359
|
term?: string;
|
|
353
360
|
}
|
|
354
361
|
|
|
362
|
+
export interface FindAccounts {
|
|
363
|
+
filter?: AccountFilter;
|
|
364
|
+
term?: string;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export interface FindMyAcceptedRides {
|
|
368
|
+
accountId?: string;
|
|
369
|
+
descending?: boolean;
|
|
370
|
+
filter?: RideFilter;
|
|
371
|
+
maxSize?: number;
|
|
372
|
+
term?: string;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* @deprecated
|
|
377
|
+
*/
|
|
355
378
|
export interface FindMyRideOffers {
|
|
356
379
|
accountId?: string;
|
|
357
380
|
descending?: boolean;
|
|
@@ -476,9 +499,19 @@ export interface GetIsoStates {
|
|
|
476
499
|
export interface GetMonopolyAccounts {
|
|
477
500
|
}
|
|
478
501
|
|
|
502
|
+
export interface GetMyAcceptedRides {
|
|
503
|
+
accountId?: string;
|
|
504
|
+
maxSize?: number;
|
|
505
|
+
timeRange?: InstantRange;
|
|
506
|
+
}
|
|
507
|
+
|
|
479
508
|
export interface GetMyAccounts {
|
|
509
|
+
filter?: AccountFilter;
|
|
480
510
|
}
|
|
481
511
|
|
|
512
|
+
/**
|
|
513
|
+
* @deprecated
|
|
514
|
+
*/
|
|
482
515
|
export interface GetMyRideOffers {
|
|
483
516
|
accountId?: string;
|
|
484
517
|
maxSize?: number;
|
package/package.json
CHANGED