@omnia/fx-models 8.0.92-dev → 8.0.93-dev
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/auth/PasswordAuthData.d.ts +1 -4
- package/auth/PasswordAuthOption.d.ts +1 -0
- package/auth/PostProcessingAuthData.d.ts +10 -0
- package/auth/PostProcessingAuthData.js +11 -0
- package/auth/PostProcessingAuthOption.d.ts +4 -0
- package/auth/PostProcessingAuthOption.js +2 -0
- package/auth/PostProcessingAuthResult.d.ts +3 -0
- package/auth/PostProcessingAuthResult.js +2 -0
- package/auth/UserCredentialInfo.d.ts +4 -0
- package/auth/UserCredentialInfo.js +2 -0
- package/auth/index.d.ts +4 -0
- package/auth/index.js +4 -0
- package/package.json +1 -1
@@ -1,4 +1,5 @@
|
|
1
1
|
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
|
+
import { UserCredentialInfo } from "./UserCredentialInfo";
|
2
3
|
import { AuthenticationMetaData } from "./common";
|
3
4
|
export declare class PasswordAuthData implements AuthenticationMetaData {
|
4
5
|
omniaServiceId: GuidValue;
|
@@ -6,7 +7,3 @@ export declare class PasswordAuthData implements AuthenticationMetaData {
|
|
6
7
|
userCredentialInfo: UserCredentialInfo;
|
7
8
|
constructor();
|
8
9
|
}
|
9
|
-
export interface UserCredentialInfo {
|
10
|
-
userName: string;
|
11
|
-
password: string;
|
12
|
-
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
|
+
import { UserCredentialInfo } from "./UserCredentialInfo";
|
3
|
+
import { AuthenticationMetaData } from "./common";
|
4
|
+
export declare class PostProcessingAuthData implements AuthenticationMetaData {
|
5
|
+
omniaServiceId: GuidValue;
|
6
|
+
authenticationTypeId: GuidValue;
|
7
|
+
userCredentialInfo: UserCredentialInfo;
|
8
|
+
newPassword?: string;
|
9
|
+
constructor();
|
10
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PostProcessingAuthData = void 0;
|
4
|
+
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
|
5
|
+
class PostProcessingAuthData {
|
6
|
+
constructor() {
|
7
|
+
this.omniaServiceId = new models_1.Guid("bb000000-0000-bbbb-0000-0000000000bb");
|
8
|
+
this.authenticationTypeId = new models_1.Guid("023d9174-ae05-4983-8024-277569c49b41");
|
9
|
+
}
|
10
|
+
}
|
11
|
+
exports.PostProcessingAuthData = PostProcessingAuthData;
|
package/auth/index.d.ts
CHANGED
@@ -10,3 +10,7 @@ export * from "./PasswordAuthResult";
|
|
10
10
|
export * from "./PasswordAuthOption";
|
11
11
|
export * from "./AnonymousAccessType";
|
12
12
|
export * from "./LoginProvider";
|
13
|
+
export * from "./PostProcessingAuthData";
|
14
|
+
export * from "./PostProcessingAuthOption";
|
15
|
+
export * from "./PostProcessingAuthResult";
|
16
|
+
export * from "./UserCredentialInfo";
|
package/auth/index.js
CHANGED
@@ -13,3 +13,7 @@ tslib_1.__exportStar(require("./PasswordAuthResult"), exports);
|
|
13
13
|
tslib_1.__exportStar(require("./PasswordAuthOption"), exports);
|
14
14
|
tslib_1.__exportStar(require("./AnonymousAccessType"), exports);
|
15
15
|
tslib_1.__exportStar(require("./LoginProvider"), exports);
|
16
|
+
tslib_1.__exportStar(require("./PostProcessingAuthData"), exports);
|
17
|
+
tslib_1.__exportStar(require("./PostProcessingAuthOption"), exports);
|
18
|
+
tslib_1.__exportStar(require("./PostProcessingAuthResult"), exports);
|
19
|
+
tslib_1.__exportStar(require("./UserCredentialInfo"), exports);
|