@omnia/fx-models 8.0.93-dev → 8.0.94-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.
@@ -13,7 +13,7 @@ export interface ResolvedIdentityCreationRequestSettings {
|
|
13
13
|
export interface UserRequestFormDisplaySetting {
|
14
14
|
userTypeId: GuidValue;
|
15
15
|
userTypeDisplayName: MultilingualString;
|
16
|
-
propertyBindings: Array<
|
16
|
+
propertyBindings: Array<PropertyBindingDisplay>;
|
17
17
|
}
|
18
18
|
export declare enum ConfirmEmailStatus {
|
19
19
|
Incomplete = 0,
|
@@ -62,6 +62,11 @@ export declare class IdentityCreationRequestSettings {
|
|
62
62
|
notifiedIdentities: Array<Identity>;
|
63
63
|
userRequestFormSettings: Array<UserRequestFormSetting>;
|
64
64
|
}
|
65
|
+
export declare class PropertyBindingDisplay {
|
66
|
+
propertyDefinitionId: GuidValue;
|
67
|
+
propertyDisplayName: MultilingualString;
|
68
|
+
setting: PropertyBindingSetting;
|
69
|
+
}
|
65
70
|
export declare class UserRequestFormSetting {
|
66
71
|
userTypeId: GuidValue;
|
67
72
|
propertyBindings: Array<PropertyBindingSetting>;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.BusinessProfileIdentityCreationRequestSettings = exports.IdentityCreationRequestQuery = exports.IdentityPropertyBindingSetting = exports.PropertyBindingSetting = exports.UserRequestFormSetting = exports.IdentityCreationRequestSettings = exports.ApprovalState = exports.ConfirmEmailStatus = void 0;
|
3
|
+
exports.BusinessProfileIdentityCreationRequestSettings = exports.IdentityCreationRequestQuery = exports.IdentityPropertyBindingSetting = exports.PropertyBindingSetting = exports.UserRequestFormSetting = exports.PropertyBindingDisplay = exports.IdentityCreationRequestSettings = exports.ApprovalState = exports.ConfirmEmailStatus = void 0;
|
4
4
|
const BusinessProfile_1 = require("../BusinessProfile");
|
5
5
|
const ManifestIds_1 = require("../ManifestIds");
|
6
6
|
var ConfirmEmailStatus;
|
@@ -24,6 +24,9 @@ class IdentityCreationRequestSettings {
|
|
24
24
|
}
|
25
25
|
}
|
26
26
|
exports.IdentityCreationRequestSettings = IdentityCreationRequestSettings;
|
27
|
+
class PropertyBindingDisplay {
|
28
|
+
}
|
29
|
+
exports.PropertyBindingDisplay = PropertyBindingDisplay;
|
27
30
|
class UserRequestFormSetting {
|
28
31
|
constructor() {
|
29
32
|
this.propertyBindings = [];
|