@moxi.gmbh/moxi-typescriptmodels 0.33.3 → 0.35.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 +40 -0
- package/common.d.ts +24 -0
- package/package.json +1 -1
|
@@ -334,6 +334,26 @@ export namespace com.moxi.api.authentication {
|
|
|
334
334
|
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
+
export namespace com.moxi.api.authentication {
|
|
338
|
+
|
|
339
|
+
export interface GetMicrosoftSSOPublicKey {
|
|
340
|
+
publicKeyId?: string;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export namespace com.moxi.api.authentication.GetMicrosoftSSOPublicKey {
|
|
346
|
+
|
|
347
|
+
export interface KeyDocument {
|
|
348
|
+
algorithm?: string;
|
|
349
|
+
exponent?: string;
|
|
350
|
+
keyType?: string;
|
|
351
|
+
modulus?: string;
|
|
352
|
+
publicKeyId?: string;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
}
|
|
356
|
+
|
|
337
357
|
export namespace com.moxi.api.authentication {
|
|
338
358
|
|
|
339
359
|
export interface ImpersonateUser {
|
|
@@ -428,6 +448,24 @@ export namespace com.moxi.api.authentication {
|
|
|
428
448
|
|
|
429
449
|
}
|
|
430
450
|
|
|
451
|
+
export namespace com.moxi.api.authentication {
|
|
452
|
+
|
|
453
|
+
export interface SignInUserViaMicrosoftSSO {
|
|
454
|
+
ssoCode?: string;
|
|
455
|
+
userId?: string;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
export namespace com.moxi.api.authentication.SignInUserViaMicrosoftSSO {
|
|
461
|
+
|
|
462
|
+
export interface UsefulJwtInfo {
|
|
463
|
+
email?: string;
|
|
464
|
+
name?: string;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
}
|
|
468
|
+
|
|
431
469
|
export namespace com.moxi.api.authentication {
|
|
432
470
|
|
|
433
471
|
export interface SignUpUser {
|
|
@@ -3092,6 +3130,7 @@ export namespace com.moxi.api.user {
|
|
|
3092
3130
|
export interface CreateUser extends com.moxi.api.user.UserCommand {
|
|
3093
3131
|
email?: string;
|
|
3094
3132
|
info?: com.moxi.api.user.common.UserInfo;
|
|
3133
|
+
withMicrosoftSso?: boolean;
|
|
3095
3134
|
}
|
|
3096
3135
|
|
|
3097
3136
|
}
|
|
@@ -3216,6 +3255,7 @@ export namespace com.moxi.api.user.common {
|
|
|
3216
3255
|
info?: com.moxi.api.user.common.UserInfo;
|
|
3217
3256
|
userId?: string;
|
|
3218
3257
|
userRole?: com.moxi.api.permissions.common.UserRole;
|
|
3258
|
+
withMicrosoftSso?: boolean;
|
|
3219
3259
|
}
|
|
3220
3260
|
|
|
3221
3261
|
}
|
package/common.d.ts
CHANGED
|
@@ -397,6 +397,7 @@ export interface CreateToken extends TokenCommand {
|
|
|
397
397
|
export interface CreateUser extends UserCommand {
|
|
398
398
|
email?: string;
|
|
399
399
|
info?: UserInfo;
|
|
400
|
+
withMicrosoftSso?: boolean;
|
|
400
401
|
}
|
|
401
402
|
|
|
402
403
|
export interface CriticalAccountInfo {
|
|
@@ -751,6 +752,10 @@ export interface GetInsurers {
|
|
|
751
752
|
export interface GetIsoStates {
|
|
752
753
|
}
|
|
753
754
|
|
|
755
|
+
export interface GetMicrosoftSSOPublicKey {
|
|
756
|
+
publicKeyId?: string;
|
|
757
|
+
}
|
|
758
|
+
|
|
754
759
|
export interface GetMonopolyAccounts {
|
|
755
760
|
}
|
|
756
761
|
|
|
@@ -1031,6 +1036,14 @@ export interface IsoState {
|
|
|
1031
1036
|
nutsCode?: string;
|
|
1032
1037
|
}
|
|
1033
1038
|
|
|
1039
|
+
export interface KeyDocument {
|
|
1040
|
+
algorithm?: string;
|
|
1041
|
+
exponent?: string;
|
|
1042
|
+
keyType?: string;
|
|
1043
|
+
modulus?: string;
|
|
1044
|
+
publicKeyId?: string;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1034
1047
|
export interface MarketplaceOverviewFilter extends WebsocketFilter {
|
|
1035
1048
|
queryFilter?: FindRidesAndSeriesInMarketplace;
|
|
1036
1049
|
screen: "marketplace";
|
|
@@ -1766,6 +1779,11 @@ export interface SignInUser {
|
|
|
1766
1779
|
userId?: string;
|
|
1767
1780
|
}
|
|
1768
1781
|
|
|
1782
|
+
export interface SignInUserViaMicrosoftSSO {
|
|
1783
|
+
ssoCode?: string;
|
|
1784
|
+
userId?: string;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1769
1787
|
export interface SignUpUser {
|
|
1770
1788
|
email?: string;
|
|
1771
1789
|
info?: UserInfo;
|
|
@@ -1931,6 +1949,11 @@ export interface UpdateUserInfo extends UserEdit {
|
|
|
1931
1949
|
info?: UserInfo;
|
|
1932
1950
|
}
|
|
1933
1951
|
|
|
1952
|
+
export interface UsefulJwtInfo {
|
|
1953
|
+
email?: string;
|
|
1954
|
+
name?: string;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1934
1957
|
export interface UserAndTokenUpcaster {
|
|
1935
1958
|
}
|
|
1936
1959
|
|
|
@@ -1961,6 +1984,7 @@ export interface UserProfile {
|
|
|
1961
1984
|
info?: UserInfo;
|
|
1962
1985
|
userId?: string;
|
|
1963
1986
|
userRole?: UserRole;
|
|
1987
|
+
withMicrosoftSso?: boolean;
|
|
1964
1988
|
}
|
|
1965
1989
|
|
|
1966
1990
|
export interface UserSortItem {
|
package/package.json
CHANGED