@moxi.gmbh/moxi-typescriptmodels 0.39.4 → 0.40.0
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-with-namespaces.d.ts +23 -0
- package/common.d.ts +15 -0
- package/package.json +1 -1
|
@@ -2266,6 +2266,16 @@ export namespace com.moxi.api.ride.intensivecare {
|
|
|
2266
2266
|
|
|
2267
2267
|
}
|
|
2268
2268
|
|
|
2269
|
+
export namespace com.moxi.api.ride.intensivecare {
|
|
2270
|
+
|
|
2271
|
+
export interface DoctorCompanion {
|
|
2272
|
+
doctorCompanionName?: string;
|
|
2273
|
+
doctorCompanionNecessary?: boolean;
|
|
2274
|
+
doctorProvidedByHospital?: boolean;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2269
2279
|
export namespace com.moxi.api.ride.intensivecare {
|
|
2270
2280
|
|
|
2271
2281
|
export interface Equipment {
|
|
@@ -2332,17 +2342,20 @@ export namespace com.moxi.api.ride.intensivecare {
|
|
|
2332
2342
|
|
|
2333
2343
|
export interface IntensiveCareInfo {
|
|
2334
2344
|
ageCategory?: com.moxi.api.ride.intensivecare.AgeCategory;
|
|
2345
|
+
babyIncubatorNecessary?: boolean;
|
|
2335
2346
|
babyPod?: boolean;
|
|
2336
2347
|
babyWeighs3to8kg?: boolean;
|
|
2337
2348
|
breathing?: com.moxi.api.ride.intensivecare.Breathing;
|
|
2338
2349
|
circulation?: com.moxi.api.ride.intensivecare.Circulation;
|
|
2339
2350
|
consciousness?: com.moxi.api.ride.intensivecare.Consciousness;
|
|
2340
2351
|
diagnosis?: string;
|
|
2352
|
+
doctorCompanion?: com.moxi.api.ride.intensivecare.DoctorCompanion;
|
|
2341
2353
|
equipment?: com.moxi.api.ride.intensivecare.Equipment;
|
|
2342
2354
|
infection?: com.moxi.api.ride.intensivecare.Infection;
|
|
2343
2355
|
monitoring?: com.moxi.api.ride.intensivecare.Monitoring;
|
|
2344
2356
|
otherRemarks?: string;
|
|
2345
2357
|
overweightCategory?: com.moxi.api.ride.intensivecare.OverweightCategory;
|
|
2358
|
+
patientDimensions?: com.moxi.api.ride.intensivecare.PatientDimensions;
|
|
2346
2359
|
ventilation?: com.moxi.api.ride.intensivecare.Ventilation;
|
|
2347
2360
|
}
|
|
2348
2361
|
|
|
@@ -2445,6 +2458,16 @@ export namespace com.moxi.api.ride.intensivecare {
|
|
|
2445
2458
|
|
|
2446
2459
|
}
|
|
2447
2460
|
|
|
2461
|
+
export namespace com.moxi.api.ride.intensivecare {
|
|
2462
|
+
|
|
2463
|
+
export interface PatientDimensions {
|
|
2464
|
+
dimensions?: com.moxi.api.ride.common.PersonDimensions;
|
|
2465
|
+
heavyWeight?: boolean;
|
|
2466
|
+
weightInKg?: number;
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2448
2471
|
export namespace com.moxi.api.ride.intensivecare {
|
|
2449
2472
|
|
|
2450
2473
|
/**
|
package/common.d.ts
CHANGED
|
@@ -441,6 +441,12 @@ export interface DistrictInfo {
|
|
|
441
441
|
type?: string;
|
|
442
442
|
}
|
|
443
443
|
|
|
444
|
+
export interface DoctorCompanion {
|
|
445
|
+
doctorCompanionName?: string;
|
|
446
|
+
doctorCompanionNecessary?: boolean;
|
|
447
|
+
doctorProvidedByHospital?: boolean;
|
|
448
|
+
}
|
|
449
|
+
|
|
444
450
|
export interface Document {
|
|
445
451
|
id?: string;
|
|
446
452
|
name?: string;
|
|
@@ -975,17 +981,20 @@ export interface IntensiveCareHelicopterFilter extends DrivePermissionFilter {
|
|
|
975
981
|
|
|
976
982
|
export interface IntensiveCareInfo {
|
|
977
983
|
ageCategory?: AgeCategory;
|
|
984
|
+
babyIncubatorNecessary?: boolean;
|
|
978
985
|
babyPod?: boolean;
|
|
979
986
|
babyWeighs3to8kg?: boolean;
|
|
980
987
|
breathing?: Breathing;
|
|
981
988
|
circulation?: Circulation;
|
|
982
989
|
consciousness?: Consciousness;
|
|
983
990
|
diagnosis?: string;
|
|
991
|
+
doctorCompanion?: DoctorCompanion;
|
|
984
992
|
equipment?: Equipment;
|
|
985
993
|
infection?: Infection;
|
|
986
994
|
monitoring?: Monitoring;
|
|
987
995
|
otherRemarks?: string;
|
|
988
996
|
overweightCategory?: OverweightCategory;
|
|
997
|
+
patientDimensions?: PatientDimensions;
|
|
989
998
|
ventilation?: Ventilation;
|
|
990
999
|
}
|
|
991
1000
|
|
|
@@ -1184,6 +1193,12 @@ export interface PaginationResult {
|
|
|
1184
1193
|
totalPages?: number;
|
|
1185
1194
|
}
|
|
1186
1195
|
|
|
1196
|
+
export interface PatientDimensions {
|
|
1197
|
+
dimensions?: PersonDimensions;
|
|
1198
|
+
heavyWeight?: boolean;
|
|
1199
|
+
weightInKg?: number;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1187
1202
|
export interface Person {
|
|
1188
1203
|
address?: AddressInfo;
|
|
1189
1204
|
birthDay?: string;
|
package/package.json
CHANGED