@moxi.gmbh/moxi-typescriptmodels 0.1.2741-test-server → 0.1.2771-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.
@@ -405,6 +405,7 @@ export namespace com.moxi.api.authentication {
405
405
  export namespace com.moxi.api.authentication {
406
406
 
407
407
  export interface SignInUser {
408
+ activateOneTimePassword?: boolean;
408
409
  password?: string;
409
410
  userId?: string;
410
411
  }
@@ -414,6 +415,7 @@ export namespace com.moxi.api.authentication {
414
415
  export namespace com.moxi.api.authentication {
415
416
 
416
417
  export interface SignUpUser {
418
+ activateOneTimePassword?: boolean;
417
419
  email?: string;
418
420
  info?: com.moxi.api.user.common.UserInfo;
419
421
  inviteToken?: string;
package/common.d.ts CHANGED
@@ -1563,11 +1563,13 @@ export interface SetUserRole extends UserUpdate {
1563
1563
  }
1564
1564
 
1565
1565
  export interface SignInUser {
1566
+ activateOneTimePassword?: boolean;
1566
1567
  password?: string;
1567
1568
  userId?: string;
1568
1569
  }
1569
1570
 
1570
1571
  export interface SignUpUser {
1572
+ activateOneTimePassword?: boolean;
1571
1573
  email?: string;
1572
1574
  info?: UserInfo;
1573
1575
  inviteToken?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.1.2741-test-server",
3
+ "version": "0.1.2771-test-server",
4
4
  "types": "common.d.ts"
5
5
  }