@omnia/fx-models 8.0.77-dev → 8.0.78-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.
@@ -2,14 +2,19 @@ import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/sha
|
|
2
2
|
import { PropertyValueBinding } from "../properties";
|
3
3
|
import { BusinessProfileProperty } from "../BusinessProfile";
|
4
4
|
import { BoolFilter } from "../Enums";
|
5
|
-
import { ResolvedUserType } from "./UserType";
|
6
5
|
import { Identity } from "./Identity";
|
7
6
|
import { UserAuthenticationInformation } from "./UserIdentity";
|
7
|
+
import { MultilingualString } from "../MultilingualString";
|
8
8
|
export interface ResolvedIdentityCreationRequestSettings {
|
9
|
-
|
9
|
+
userRequestFormDisplaySettings: Array<UserRequestFormDisplaySetting>;
|
10
10
|
captchaEnabled: boolean;
|
11
11
|
captchaSiteKey: string;
|
12
12
|
}
|
13
|
+
export interface UserRequestFormDisplaySetting {
|
14
|
+
userTypeId: GuidValue;
|
15
|
+
userTypeDisplayName: MultilingualString;
|
16
|
+
propertyBindings: Array<PropertyBindingSetting>;
|
17
|
+
}
|
13
18
|
export declare enum ConfirmEmailStatus {
|
14
19
|
Incomplete = 0,
|
15
20
|
Expired = 1,
|
@@ -55,7 +60,21 @@ export declare class IdentityCreationRequestSettings {
|
|
55
60
|
enabled: boolean;
|
56
61
|
requireApproval: boolean;
|
57
62
|
notifiedIdentities: Array<Identity>;
|
58
|
-
|
63
|
+
userRequestFormSettings: Array<UserRequestFormSetting>;
|
64
|
+
}
|
65
|
+
export declare class UserRequestFormSetting {
|
66
|
+
userTypeId: GuidValue;
|
67
|
+
propertyBindings: Array<PropertyBindingSetting>;
|
68
|
+
}
|
69
|
+
export declare class PropertyBindingSetting {
|
70
|
+
propertyBindingId: GuidValue;
|
71
|
+
}
|
72
|
+
export declare class IdentityPropertyBindingSetting extends PropertyBindingSetting {
|
73
|
+
lookupValues: Array<IdentityLookupValue>;
|
74
|
+
}
|
75
|
+
export interface IdentityLookupValue {
|
76
|
+
identity: Identity;
|
77
|
+
title: string;
|
59
78
|
}
|
60
79
|
export declare class IdentityCreationRequestQuery {
|
61
80
|
ownerId: string;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.BusinessProfileIdentityCreationRequestSettings = exports.IdentityCreationRequestQuery = exports.IdentityCreationRequestSettings = exports.ApprovalState = exports.ConfirmEmailStatus = void 0;
|
3
|
+
exports.BusinessProfileIdentityCreationRequestSettings = exports.IdentityCreationRequestQuery = exports.IdentityPropertyBindingSetting = exports.PropertyBindingSetting = exports.UserRequestFormSetting = 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;
|
@@ -20,10 +20,26 @@ class IdentityCreationRequestSettings {
|
|
20
20
|
this.enabled = false;
|
21
21
|
this.requireApproval = false;
|
22
22
|
this.notifiedIdentities = [];
|
23
|
-
this.
|
23
|
+
this.userRequestFormSettings = [];
|
24
24
|
}
|
25
25
|
}
|
26
26
|
exports.IdentityCreationRequestSettings = IdentityCreationRequestSettings;
|
27
|
+
class UserRequestFormSetting {
|
28
|
+
constructor() {
|
29
|
+
this.propertyBindings = [];
|
30
|
+
}
|
31
|
+
}
|
32
|
+
exports.UserRequestFormSetting = UserRequestFormSetting;
|
33
|
+
class PropertyBindingSetting {
|
34
|
+
}
|
35
|
+
exports.PropertyBindingSetting = PropertyBindingSetting;
|
36
|
+
class IdentityPropertyBindingSetting extends PropertyBindingSetting {
|
37
|
+
constructor() {
|
38
|
+
super(...arguments);
|
39
|
+
this.lookupValues = [];
|
40
|
+
}
|
41
|
+
}
|
42
|
+
exports.IdentityPropertyBindingSetting = IdentityPropertyBindingSetting;
|
27
43
|
class IdentityCreationRequestQuery {
|
28
44
|
constructor(ownerId, isEmailConfirmed, approvalState) {
|
29
45
|
this.ownerId = ownerId;
|
@@ -3,7 +3,6 @@ import { ImagePropertyDefinition, LanguagePropertyDefinition, PropertyBinding, T
|
|
3
3
|
export interface UserTypeFormProperties {
|
4
4
|
new: FormProperties;
|
5
5
|
edit: FormProperties;
|
6
|
-
request: FormProperties;
|
7
6
|
orderProperties: FormProperties;
|
8
7
|
[key: string]: FormProperties;
|
9
8
|
}
|
@@ -23,9 +23,6 @@ exports.UserTypeSettingsFactory = {
|
|
23
23
|
edit: {
|
24
24
|
propertyBindingIds: buitinUserPropertiesBindingIdList
|
25
25
|
},
|
26
|
-
request: {
|
27
|
-
propertyBindingIds: buitinUserPropertiesBindingIdList
|
28
|
-
},
|
29
26
|
orderProperties: {
|
30
27
|
propertyBindingIds: buitinUserPropertiesBindingIdList
|
31
28
|
}
|