@moxi.gmbh/moxi-typescriptmodels 0.0.591 → 0.0.601
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 +15 -20
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -271,6 +271,17 @@ export interface EncryptValue {
|
|
|
271
271
|
value?: any;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
+
export interface EuropeanHealthInsurance {
|
|
275
|
+
acronym?: any;
|
|
276
|
+
email?: any;
|
|
277
|
+
english?: any;
|
|
278
|
+
fax?: any;
|
|
279
|
+
hasEhic?: boolean;
|
|
280
|
+
ikNumber?: any;
|
|
281
|
+
name?: any;
|
|
282
|
+
phone?: any;
|
|
283
|
+
}
|
|
284
|
+
|
|
274
285
|
export interface ExecuteStatement extends AdminJsonType {
|
|
275
286
|
"@type": "executeStatement";
|
|
276
287
|
destination?: Destination;
|
|
@@ -287,10 +298,6 @@ export interface FindAccount {
|
|
|
287
298
|
term?: any;
|
|
288
299
|
}
|
|
289
300
|
|
|
290
|
-
export interface FindInsurers {
|
|
291
|
-
term?: any;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
301
|
export interface FindMyRideOffers {
|
|
295
302
|
direction?: Direction;
|
|
296
303
|
term?: any;
|
|
@@ -371,6 +378,9 @@ export interface GetDistrict {
|
|
|
371
378
|
stateNutsCode?: any;
|
|
372
379
|
}
|
|
373
380
|
|
|
381
|
+
export interface GetInsurers {
|
|
382
|
+
}
|
|
383
|
+
|
|
374
384
|
export interface GetIsoStates {
|
|
375
385
|
}
|
|
376
386
|
|
|
@@ -433,17 +443,7 @@ export interface InstantRange {
|
|
|
433
443
|
}
|
|
434
444
|
|
|
435
445
|
export interface Insurer {
|
|
436
|
-
|
|
437
|
-
insurerId?: InsurerId;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
export interface InsurerId {
|
|
441
|
-
type?: any;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
export interface InsurerInfo {
|
|
445
|
-
code?: any;
|
|
446
|
-
name?: any;
|
|
446
|
+
ikNumber?: any;
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
export interface Invite {
|
|
@@ -820,11 +820,6 @@ export interface UpdateUserInfo extends EditUser {
|
|
|
820
820
|
info?: UserInfo;
|
|
821
821
|
}
|
|
822
822
|
|
|
823
|
-
export interface UpsertInsurer {
|
|
824
|
-
info?: InsurerInfo;
|
|
825
|
-
insurerId?: InsurerId;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
823
|
export interface UserCommand {
|
|
829
824
|
userId?: string;
|
|
830
825
|
}
|
package/package.json
CHANGED