@moxi.gmbh/moxi-typescriptmodels 0.0.581 → 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 +18 -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 {
|
|
@@ -577,6 +577,9 @@ export interface RejectInviteUser extends UserUpdate {
|
|
|
577
577
|
accountId?: string;
|
|
578
578
|
}
|
|
579
579
|
|
|
580
|
+
export interface RemoveAccount extends AccountUpdate {
|
|
581
|
+
}
|
|
582
|
+
|
|
580
583
|
export interface RemoveTeam extends TeamUpdate {
|
|
581
584
|
}
|
|
582
585
|
|
|
@@ -817,11 +820,6 @@ export interface UpdateUserInfo extends EditUser {
|
|
|
817
820
|
info?: UserInfo;
|
|
818
821
|
}
|
|
819
822
|
|
|
820
|
-
export interface UpsertInsurer {
|
|
821
|
-
info?: InsurerInfo;
|
|
822
|
-
insurerId?: InsurerId;
|
|
823
|
-
}
|
|
824
|
-
|
|
825
823
|
export interface UserCommand {
|
|
826
824
|
userId?: string;
|
|
827
825
|
}
|
package/package.json
CHANGED