@moxi.gmbh/moxi-typescriptmodels 0.1.2131-test-server → 0.1.2141-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 +8 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -474,6 +474,14 @@ export interface FindAccounts {
|
|
|
474
474
|
term?: string;
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
+
export interface FindDuplicateRides {
|
|
478
|
+
desiredStartTime?: string;
|
|
479
|
+
hourRange?: number;
|
|
480
|
+
patientBirthDay?: string;
|
|
481
|
+
patientFirstName?: string;
|
|
482
|
+
patientLastName?: string;
|
|
483
|
+
}
|
|
484
|
+
|
|
477
485
|
export interface FindMyRides extends AbstractFindMyRides {
|
|
478
486
|
}
|
|
479
487
|
|
package/package.json
CHANGED